/* custom-style.css - Versi Barbershop Premium */


/* --- 1. Pengaturan Font & Variabel Warna (Barbershop Theme) --- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
:root{
    /* Identitas Utama Barbershop: Gold & Charcoal/Black */
    --primary-color: #D4AF37;       /* Metallic Gold */
    --secondary-color: #AA7C11;     /* Dark Gold / Bronze */
    --dark: #121212;                /* Pure Obsidian Black */
    --dark-soft: #1C1C1E;           /* Charcoal Gray */
    --light: #F4F4F6;               /* Vintage Off-White */
    --gray: #8E8E93;                /* Muted Slate Gray */

    /* Gradasi Maskulin & Mewah */
    --gradient-primary: linear-gradient(135deg, #121212, #2C2C2E, #AA7C11);

    --text-dark: #1A1A1A;
    --text-muted: #636366;
    --border-light: #E5E5EA;
    --body-bg: #FAF9F6;             /* Soft Alabaster / Vintage Cream */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-dark);
}


/* --- 2. Desain Header & Navigasi Estetik --- */

.navbar-custom {
    padding: 0.85rem 1rem;
    background: #121212;    
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand strong {
    font-size: 1.65rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFF, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;  
}

.navbar-custom .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(244, 244, 246, 0.75); /* Menggunakan warna terang karena navbar hitam */
    font-weight: 600;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.25px;
    font-size: 0.92rem;
}

.navbar-custom .nav-link .nav-icon {
    font-size: 1.05rem;
    color: rgba(244, 244, 246, 0.5);
    transition: color 0.3s ease;
}

.navbar-custom .nav-link span {
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus,
.navbar-custom .nav-link.active {
    color: #121212;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.navbar-custom .nav-link:hover .nav-icon,
.navbar-custom .nav-link:focus .nav-icon,
.navbar-custom .nav-link.active .nav-icon {
    color: #121212;
}

.navbar-custom .navbar-nav {
    gap: 0.3rem;
}

.navbar-custom .nav-link::after {
    display: none;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    color: #121212;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover,
.btn-cta:focus {
    color: #121212;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 35px rgba(212, 175, 55, 0.4);
}

.cart-icon {
    font-size: 1.35rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cart-icon:hover,
.cart-icon:focus-within {
    color: #121212;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 0.65rem;
    padding: 0.3em 0.45em;
    background: #FF3B30; /* Tetap merah untuk indikator penting */
    border: 2px solid #121212;
    color: #fff;
}

.navbar-custom .navbar-toggler {
    border-radius: 999px;
    border: none;
    padding: 0.4rem 0.75rem;
    background: rgba(212, 175, 55, 0.15);
    transition: background 0.3s ease;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.35);
}

.navbar-custom .navbar-toggler:hover {
    background: rgba(212, 175, 55, 0.25);
}

.navbar-custom .navbar-toggler-icon {
    background-image: none;
    width: 1.2em;
    height: 1.2em;
    position: relative;
    display: inline-block;
}

.navbar-custom .navbar-toggler-icon::before,
.navbar-custom .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 999px;
    transition: transform 0.3s ease;
}

.navbar-custom .navbar-toggler-icon::before {
    top: 0;
}

.navbar-custom .navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-custom .navbar-toggler-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 999px;
    transform: translateY(-50%);
}

@media (max-width: 991.98px) {
    .navbar-custom .navbar-nav {
        align-items: stretch !important;
        padding: 0.75rem 0;
        gap: 0.6rem;
    }

    .navbar-custom .nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px;
    }

    .navbar-custom .nav-link span {
        flex: 1;
        text-align: left;
    }

    .navbar-custom .navbar-nav.align-items-center {
        gap: 0.75rem;
        padding-top: 0.5rem;
    }

    .navbar-custom .navbar-nav.align-items-center .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .navbar-custom .navbar-nav.align-items-center .nav-link {
        justify-content: center;
    }

    .cart-icon {
        width: 48px;
        height: 48px;
    }
}


/* --- 3. Gaya Konten Umum --- */

.jumbotron-custom {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    border-radius: 15px;
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.jumbotron-custom h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.section-title {
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.produk-card {
    border-radius: 15px;
    border: 1px solid var(--border-light);
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.produk-card .card-img-top {
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.produk-card .card-body {
    padding: 1.2rem;
}

.produk-card .card-title {
    font-weight: 600;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.produk-card .card-subtitle {
    font-size: 1.25rem;
}


/* --- 4. Tombol Keren --- */

.btn-keren {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-keren:hover,
.btn-keren:focus {
    color: #121212;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    background: #25D366; /* Tetap hijau asli WhatsApp */
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}


/* --- 5. Footer --- */

.footer {
    background: #121212;
    color: var(--light);
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}


/* --- 6. Desain Ulang Bagian Testimoni (Model Grid) --- */

.testimoni-section {
    padding: 4rem 0;
    background: linear-gradient(160deg, #1C1C1E, #121212);
}

.testi-card-grid {
    background-color: #2C2C2E;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.testi-card-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.testi-card-grid .card-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testi-card-grid .testi-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.testi-card-grid .testi-text {
    color: #E5E5EA;
    font-style: italic;
}

.testi-card-grid .blockquote-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    color: var(--primary-color);
}


/*********************************************
 * 7. Modern Landing Refresh - Barber Edition *
 *********************************************/

.text-gradient {
    background: linear-gradient(90deg, #f6f5f5 0%, #4a3b00 40%, #b8860b 70%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 700;
}

.glass-card {
    background: rgba(44, 44, 46, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-section {
    padding: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, #121212 0%, #1C1C1E 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
    position: relative;
    color: #ffffff;
}

.hero-background {
    position: absolute;
    inset: -40% -25% 0 40%;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.15), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(170, 124, 17, 0.15), transparent 60%),
        radial-gradient(circle at center, rgba(28, 28, 30, 0.8), transparent 70%);
    z-index: 0;
}

.hero-section .row {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-top: 1.5rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(244, 244, 246, 0.75);
    margin-top: 1rem;
    max-width: 540px;
}

.hero-search {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(44, 44, 46, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-search i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-left: 0.35rem;
}

.hero-search .form-control {
    border: none;
    background: transparent;
    box-shadow: none !important;
    padding: 0.35rem 0.5rem;
    font-size: 0.95rem;
    color: #ffffff;
}

.hero-search .form-control::placeholder {
    color: rgba(244, 244, 246, 0.5);
}

.btn-hero {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #121212;
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    color: #121212;
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(212, 175, 55, 0.45);
}

.btn-hero-secondary {
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
    background: transparent;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    color: #121212;
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-stats {
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    padding-top: 1.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 140px;
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(244, 244, 246, 0.6);
}

.hero-visual {
    position: relative;
    min-height: 420px;
    padding: 1rem;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(28, 28, 30, 0.95);
    box-shadow: 0 30px 55px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.25);
    width: clamp(250px, 60%, 330px);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff;
}

.floating-card i {
    font-size: 1.75rem;
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.15);
    padding: 0.75rem;
    border-radius: 16px;
}

.floating-card.primary {
    top: 0;
    right: 15%;
}

.floating-card.secondary {
    bottom: 40%;
    left: 5%;
}

.floating-card.tertiary {
    bottom: 5%;
    right: 5%;
    flex-direction: column;
    width: clamp(260px, 70%, 360px);
}

.feature-ribbon {
    background: #1C1C1E;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    height: 100%;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-item h5 {
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.feature-item p {
    margin-bottom: 0;
    color: rgba(244, 244, 246, 0.65);
    font-size: 0.95rem;
}

.section-heading .section-eyebrow {
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-view-all {
    border-radius: 999px;
    padding: 0.65rem 1.8rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: var(--primary-color);
    transition: all 0.25s ease;
}

.btn-view-all:hover,
.btn-view-all:focus {
    color: #121212;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 14px 24px rgba(212, 175, 55, 0.3);
}

.produk-card-modern {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.produk-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.produk-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #121212;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.produk-card-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.btn-add-to-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.btn-add-to-cart:hover,
.btn-add-to-cart:focus {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #121212;
    transform: scale(1.05);
}

.testimoni-section {
    background: linear-gradient(160deg, #1C1C1E, #121212);
    border-radius: 32px;
    padding: clamp(3rem, 4vw, 4.5rem);
}

.testi-card-modern {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: #2C2C2E;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testi-card-modern:hover {
    border-color: var(--primary-color);
}

.testi-avatar {
    border: 4px solid var(--secondary-color);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.testi-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #121212;
}

.testi-text {
    color: rgba(244, 244, 246, 0.8);
}

.testi-meta h6 {
    color: var(--primary-color);
}

.cta-section {
    padding: 2.25rem 2.75rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1C1C1E, #2C2C2E);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    color: #ffffff;
}
/* --- Styling Feature Card Barbershop --- */
.feature-card {
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efek Hover saat Kursor Diarahkan */
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15), 
                0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Lingkaran Ikon Emas */
.feature-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(181, 149, 47, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--primary, #d4af37);
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #d4af37, #b5952f);
    border-color: #d4af37;
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon-wrapper i {
    color: #111111; /* Ikon berubah jadi hitam saat diprioritaskan */
}

/* Teks Judul & Deskripsi */
.feature-title {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.feature-desc {
    color: rgba(248, 249, 250, 0.65);
    font-size: 0.92rem;
    line-height: 1.6;
}
/* ===================================
   FEATURE RIBBON SECTION (BLACK & GOLD)
=================================== */

/* Container Utama Berbentuk Ribbon Floating Bar */
.feature-ribbon {
    background: linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(12, 12, 12, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Akses Puncak Ribbon (Garis Emas Menyala) */
.feature-ribbon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Ambient Glow Di Belakang Ribbon */
.ribbon-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(212, 175, 55, 0.12);
    filter: blur(90px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Styling Card Individual Di Dalam Ribbon */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Efek Hover Pada Card */
.feature-card:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(212, 175, 55, 0.15);
}

/* Lingkaran Ikon Emas Premium */
.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper i {
    font-size: 1.65rem;
    color: #d4af37;
    transition: all 0.3s ease;
}

/* Efek Hover Ikon */
.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #d4af37, #b5952f);
    border-color: #d4af37;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.feature-card:hover .feature-icon-wrapper i {
    color: #111111; /* Ikon berubah jadi hitam pekat saat di-hover */
}

/* Typography Teks */
.feature-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.feature-desc {
    color: rgba(248, 249, 250, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}
/* ===================================
   KATALOG PRODUK BLACK & GOLD
=================================== */

/* Text & Divider Emas Header */
.text-gold {
    color: #d4af37 !important;
}

.text-gold-gradient {
    background: linear-gradient(120deg, #f9f1d8, #d4af37 50%, #b5952f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Sidebar Card */
.catalog-sidebar-card {
    background: rgba(20, 20, 20, 0.85) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Input Pencarian Sidebar */
.catalog-search-input {
    background: rgba(10, 10, 10, 0.8) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #ffffff !important;
    border-radius: 12px 0 0 12px !important;
}

.catalog-search-input:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

.btn-gold-icon {
    background: linear-gradient(120deg, #d4af37, #b5952f);
    color: #111111;
    border: none;
    border-radius: 0 12px 12px 0 !important;
}

/* List Kategori Filter */
.catalog-category-group .list-group-item {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 6px;
    border-radius: 12px !important;
    transition: all 0.25s ease;
}

.catalog-category-group .list-group-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: translateX(4px);
}

.catalog-category-group .active-gold {
    background: linear-gradient(120deg, #d4af37, #b5952f) !important;
    color: #111111 !important;
    font-weight: 700;
    border: none !important;
}

/* Card Produk */
.produk-card {
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.35s ease;
}

.produk-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 
                0 0 15px rgba(212, 175, 55, 0.15);
}

/* Pembungkus & Zoom Gambar Produk */
.produk-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 210px;
    background: #0d0d0d;
}

.produk-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produk-card:hover .produk-img {
    transform: scale(1.08);
}

/* Tag Badge Kategori Di Atas Gambar */
.badge-kategori-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    backdrop-filter: blur(5px);
}

.produk-title-link:hover {
    color: #d4af37 !important;
}

/* Pagination Gelap */
.catalog-pagination .page-link {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
    border-radius: 10px !important;
    padding: 8px 16px;
    transition: all 0.25s ease;
}

.catalog-pagination .page-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-color: #d4af37;
}

.catalog-pagination .page-item.active .page-link {
    background: linear-gradient(120deg, #d4af37, #b5952f);
    color: #111111;
    font-weight: 700;
    border: none;
}

/* Alert Jika Kosong */
.catalog-empty-alert {
    background: rgba(20, 20, 20, 0.8);
    border: 1px dashed rgba(212, 175, 55, 0.3);
}
/* --- OVERLAY HOVER PADA FOTO PRODUK --- */
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Tampilkan overlay saat gambar di-hover */
.produk-img-wrapper:hover .img-overlay {
    opacity: 1;
}

/* Badge Tombol "Lihat Detail" di Atas Foto */
.btn-preview-badge {
    background: linear-gradient(120deg, #d4af37, #b5952f);
    color: #111111;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.produk-img-wrapper:hover .btn-preview-badge {
    transform: translateY(0);
}

/* --- TRUNCATE DESKRIPSI PRODUK (2 BARIS) --- */
.produk-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Membatasi teks maksimal 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: 2.8em; /* Menjaga tinggi card tetap konsisten meskipun deskripsi pendek */
}
/* ===================================
   TOMBOL BELI SEKARANG (GOLD SHIMMER)
=================================== */

.btn-gold-action {
    position: relative;
    background: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #9e7d17 100%);
    color: #0e0e0e !important;
    border: none;
    border-radius: 12px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    cursor: pointer;
}

/* Efek Kilatan Emas Menyapu (Shimmer) */
.btn-gold-action::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 70%
    );
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.65s ease;
}

.btn-gold-action:hover::before {
    transform: rotate(30deg) translateX(100%);
}

.btn-gold-action:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #ffe391 0%, #e0ba42 50%, #b38f22 100%);
    color: #000000 !important;
}

.btn-gold-action:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.btn-gold-action i {
    transition: transform 0.3s ease;
}

.btn-gold-action:hover i {
    transform: scale(1.25) rotate(-10deg);
}

/* Pagination Gelap */
.catalog-pagination .page-link {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
    border-radius: 10px !important;
    padding: 8px 16px;
    transition: all 0.25s ease;
}

.catalog-pagination .page-link:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-color: #d4af37;
}

.catalog-pagination .page-item.active .page-link {
    background: linear-gradient(120deg, #d4af37, #b5952f);
    color: #111111;
    font-weight: 700;
    border: none;
}

.catalog-empty-alert {
    background: rgba(20, 20, 20, 0.8);
    border: 1px dashed rgba(212, 175, 55, 0.3);
}