
    /* ═══════════════════════════════════════════════════
       EKOMSTORE GLOBAL DESIGN SYSTEM — LUXURY EDITION
    ═══════════════════════════════════════════════════ */

    :root {
        --gold: #C9A34A;
        --gold-light: #D4B05F;
        --gold-dark: #B08A35;
        --charcoal: #111111;
        --dark: #0D0C0A;
        --cream: #F4EFE6;
        --cream-dim: rgba(244, 239, 230, 0.6);
        --maroon: #5A1E23;
        --card-radius: 4px;
        --transition-luxury: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --transition-slow: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    }

    /* ── Global Layout Fixes ── */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        width: 100%;
        position: relative;
        box-sizing: border-box;
    }

    *, ::before, ::after {
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* ── Container Optimization ── */
    .container-custom {
        width: 100%;
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
        padding-left: clamp(1rem, 5vw, 2rem);
        padding-right: clamp(1rem, 5vw, 2rem);
    }

    /* ── Tailwind Compatibility Layer & Utility Fixes ── */
    .bg-gold { background-color: var(--gold) !important; }
    .bg-gold\/5 { background-color: rgba(201, 163, 74, 0.05) !important; }
    .bg-gold\/10 { background-color: rgba(201, 163, 74, 0.1) !important; }
    .bg-gold\/20 { background-color: rgba(201, 163, 74, 0.2) !important; }
    .text-gold { color: var(--gold) !important; }
    .text-gold-dark { color: var(--gold-dark) !important; }
    .border-gold { border-color: var(--gold) !important; }
    .border-gold\/10 { border-color: rgba(201, 163, 74, 0.1) !important; }
    .border-gold\/20 { border-color: rgba(201, 163, 74, 0.2) !important; }
    .border-gold\/30 { border-color: rgba(201, 163, 74, 0.3) !important; }
    
    .from-gold { --tw-gradient-from: var(--gold) !important; --tw-gradient-to: rgba(201, 163, 74, 0) !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important; }
    .to-gold-dark { --tw-gradient-to: var(--gold-dark) !important; }

    @media (min-width: 640px) {
        .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
        .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    }

    @media (min-width: 768px) {
        .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
        .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
        .md\:flex-row { flex-direction: row !important; }
        .md\:items-center { align-items: center !important; }
        .md\:text-right { text-align: right !important; }
    }

    @media (min-width: 1024px) {
        .lg\:w-64 { width: 16rem !important; }
        .lg\:w-72 { width: 18rem !important; }
        .lg\:w-80 { width: 20rem !important; }
        .lg\:flex-1 { flex: 1 1 0% !important; }
        .lg\:flex-row { flex-direction: row !important; }
        .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
        .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    }

    /* Fix for border-bottom vs border-b issues */
    .border-bottom { border-bottom-width: 1px !important; }

    /* Enhanced Glass Effects */
    .glass-dark {
        background: rgba(13, 12, 10, 0.8) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(201, 163, 74, 0.15) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    }


    /* ── Base ── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', 'Poppins', sans-serif;
        font-size: 15px;
        line-height: 1.8;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: -0.0125em;
        background: var(--dark);
        color: var(--cream);
    }

    /* ── Typography ── */
    .page-title,
    .font-cinzel {
        font-family: 'Cinzel', serif;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1.1;
    }

    .font-playfair {
        font-family: 'Playfair Display', serif;
    }

    .sect-label {
        font-family: 'Cinzel', serif;
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-bottom: 1rem;
    }

    .text-gradient-gold {
        background: linear-gradient(135deg, #d4b05f 0%, #C9A34A 50%, #b89340 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ── Mobile Optimization Utilities ── */
    @media (max-width: 640px) {
        h1, .h1 { font-size: 1.75rem !important; }
        h2, .h2 { font-size: 1.5rem !important; }
        h3, .h3 { font-size: 1.25rem !important; }
        .section-padding { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    }

    /* ── Glass Effects ── */
    .glass-dark {
        background: rgba(17, 17, 17, 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(201, 163, 74, 0.1);
    }

    .glass-premium {
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .mesh-gradient {
        background-color: #111111;
        background-image:
            radial-gradient(at 0% 0%, rgba(201, 163, 74, 0.05) 0, transparent 50%),
            radial-gradient(at 100% 0%, rgba(90, 30, 35, 0.05) 0, transparent 50%),
            radial-gradient(at 100% 100%, rgba(201, 163, 74, 0.03) 0, transparent 50%),
            radial-gradient(at 0% 100%, rgba(90, 30, 35, 0.03) 0, transparent 50%);
    }

    /* ── Animations ── */
    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    @keyframes shimmer {
        0% {
            background-position: -200% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    @keyframes fadeSlideUp {
        from {
            opacity: 0;
            transform: translateY(16px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-float {
        animation: float 6s ease-in-out infinite;
    }

    /* ── Scrollbar ── */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: #F9FAFB;
    }

    ::-webkit-scrollbar-thumb {
        background: #D1D5DB;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold);
    }

    /* Sale Badge & Price Styling */
    .sale-badge {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        background: #14034bff !important;
        color: #fff !important;
        padding: 6px 10px !important;
        border-radius: 50px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        z-index: 20 !important;
    }

    .old-price {
        text-decoration: line-through !important;
        color: #888 !important;
        margin-right: 8px !important;
        font-size: 0.85em !important;
    }

    .sale-price {
        font-weight: 700 !important;
        color: #F4EFE6 !important; /* Changed from #000 to work with dark theme, while keeping logic */
        font-size: 1.1rem !important;
    }

    .discount-percent {
        color: #d4b06a !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        display: block !important;
    }

    /* ══════════════════════════════════════════════════════
       PREMIUM LUXURY PRODUCT CARD SYSTEM (Apple x Dior)
    ══════════════════════════════════════════════════════ */
    
    .product-card {
        position: relative;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 18px;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        height: 100%;
    }

    .product-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(201, 163, 74, 0.3);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    /* ── Image Zone ── */
    .product-card-image-wrapper {
        position: relative;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.01);
        margin-bottom: 16px;
    }

    .product-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .product-card:hover .product-card-image {
        transform: scale(1.08);
    }

    /* Image Overlay */
    .product-card-image-wrapper::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .product-card:hover .product-card-image-wrapper::after {
        opacity: 1;
    }

    /* ── Badges ── */
    .product-card-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #C9A34A;
        color: #0D0C0A;
        font-family: 'Inter', sans-serif;
        font-size: 0.55rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 4px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(201, 163, 74, 0.3);
    }

    /* ── Wishlist ── */
    .product-card-wishlist {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(244, 239, 230, 0.4);
        z-index: 10;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .product-card-wishlist:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #E53E3E;
        transform: scale(1.1);
    }

    /* ── Info Section ── */
    .product-card-info {
        display: flex;
        flex-direction: column;
        flex: 1;
        text-decoration: none !important;
    }

    .product-card-category {
        font-family: 'Inter', sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 6px;
        opacity: 0.8;
    }

    .product-card-name {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-weight: 600;
        color: #F4EFE6;
        line-height: 1.4;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.8em;
    }

    /* ── Price Section ── */
    .product-card-price-row {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-top: auto;
        margin-bottom: 16px;
    }

    .product-card-price {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #FFFFFF;
    }

    .product-card-price-usd {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        color: rgba(244, 239, 230, 0.3);
        font-weight: 400;
    }

    /* ── CTA Button ── */
    .product-card-btn {
        background: #C9A34A;
        color: #0D0C0A;
        border: none;
        border-radius: 50px;
        padding: 12px 20px;
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        width: 100%;
        transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        margin-top: auto;
    }

    .product-card-btn:hover {
        background: #FFFFFF;
        color: #0D0C0A;
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    /* ── Dark Theme Cards (Premium) ── */
    .product-card-dark {
        background: #111111;
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .product-card-dark:hover {
        background: #151515;
        border-color: rgba(201, 163, 74, 0.3);
    }

    .product-card-dark .product-card-name {
        color: #F4EFE6;
    }

    .product-card-dark .product-card-price {
        color: #FFFFFF;
    }

    .product-card-dark .product-card-category {
        color: rgba(201, 163, 74, 0.8);
    }

    .product-card-dark .product-card-image-wrapper {
        background: #0D0C0A;
    }

    .product-card-dark .product-card-btn {
        background: #C9A34A;
        color: #000000;
    }
    
    .product-card-dark .product-card-btn:hover {
        background: #FFFFFF;
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    }

    /* ── Quick View Modal ── */
    .quick-view-modal {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .quick-view-modal.active {
        opacity: 1;
        pointer-events: all;
    }

    .quick-view-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
    }

    .quick-view-content {
        position: relative;
        z-index: 10;
        background: #FFFFFF;
        border-radius: 8px;
        max-width: 800px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        transform: translateY(20px) scale(0.97);
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    }

    .quick-view-modal.active .quick-view-content {
        transform: translateY(0) scale(1);
    }

    /* ── Filter Buttons ── */
    .filter-btn {
        font-family: 'Cinzel', serif;
        font-size: 0.5rem;
        font-weight: 600;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        padding: 0.6rem 1.5rem;
        border: 1px solid #E5E7EB;
        background: transparent;
        color: #6B7280;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: #111111;
        border-color: #111111;
        color: #FFFFFF;
    }

    /* ── Card placeholder (no image) ── */
    .product-card-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #F5F2ED, #EDE9E1);
    }

    /* ── Card grid layout ── */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        width: 100%;
    }

    @media (max-width: 1024px) {
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
    }

    @media (max-width: 480px) {
        .products-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            gap: 0.5rem !important;
        }

        .product-card-name {
            font-size: 0.65rem !important;
            margin-bottom: 0.3rem !important;
        }

        .product-card-info {
            padding: 0.6rem !important;
        }

        .product-card-price {
            font-size: 0.9rem !important;
        }
        
        .product-card-category {
            font-size: 0.45rem !important;
            margin-bottom: 0.2rem !important;
        }
        
        /* Show CTA buttons on mobile since there is no hover */
        .product-card-overlay {
            transform: translateY(0) !important;
            opacity: 1 !important;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent) !important;
            padding: 0.5rem !important;
        }
        
        .product-card-cta {
            opacity: 1 !important;
            transform: translateY(0) !important;
            gap: 0.25rem !important;
        }
        
        .btn-ritual-add, .btn-quick-view {
            padding: 0.4rem !important;
            font-size: 0.45rem !important;
        }
        
        .product-card-subtitle, .product-card-stars {
            display: none !important; /* Hide secondary info to save space */
        }
    }

    /* ── Premium UI Components ── */
    .card-premium {
        background: #FFFFFF;
        border: 1px solid #F3F4F6;
        border-radius: 16px;
        padding: 1.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .card-premium:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    .btn-premium {
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
    }

    .btn-premium-primary {
        background-color: #111111;
        color: #FFFFFF;
    }

    .btn-premium-primary:hover {
        background-color: #374151;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .product-card-btn:hover {
        background: #000;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    }

    /* ── Quick View Button (Premium) ── */
    .product-card-quick-view {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #dec183;
        color: #000000;
        border: none;
        padding: 10px 24px;
        border-radius: 50px;
        font-family: 'Inter', sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        cursor: pointer;
        opacity: 1; /* Always visible */
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        white-space: nowrap;
    }

    .product-card-quick-view:hover {
        background: #000000;
        color: #dec183;
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .btn-premium-gold {
        background-color: var(--gold);
        color: #FFFFFF;
    }

    .btn-premium-gold:hover {
        background-color: var(--gold-dark);
        transform: translateY(-1px);
    }

    /* ── Sacred Form Buttons (Luxury Dark Theme) ── */
    .btn-sacred, .btn-primary-sacred {
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
        color: var(--charcoal);
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(201, 163, 74, 0.2);
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        border: none;
        cursor: pointer;
    }

    .btn-sacred:hover, .btn-primary-sacred:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 20px 50px rgba(201, 163, 74, 0.4);
    }

    /* ── Form Fields ── */
    .input-premium {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #D1D5DB;
        border-radius: 8px;
        font-size: 0.875rem;
        transition: all 0.2s;
        font-family: 'Inter', sans-serif;
    }

    .input-premium:focus {
        outline: none;
        border-color: #111111;
        box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
    }

    /* ── Dashboard (admin) ── */
    .sidebar-link {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        color: #4B5563;
        font-weight: 500;
        font-size: 0.875rem;
        transition: all 0.2s;
    }

    .sidebar-link:hover,
    .sidebar-link.active {
        background-color: #F3F4F6;
        color: #111111;
    }

    .sidebar-link i {
        width: 20px;
        margin-right: 12px;
        font-size: 1.1rem;
    }

    /* ── Badges (admin) ── */
    .badge-status {
        padding: 0.25rem 0.75rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .badge-success {
        background-color: #DEF7EC;
        color: #03543F;
    }

    .badge-pending {
        background-color: #FEF3C7;
        color: #92400E;
    }

    .badge-failed {
        background-color: #FDE8E8;
        color: #9B1C1C;
    }

    /* ── Why Card (homepage) ── */
    .why-card {
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(201, 163, 74, .12);
        padding: 2.5rem 2rem;
        border-radius: 1.5rem;
        transition: all .4s;
    }

    .why-card:hover {
        background: rgba(201, 163, 74, .06);
        border-color: rgba(201, 163, 74, .35);
        transform: translateY(-6px);
    }

    .why-icon {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(201, 163, 74, .2), rgba(201, 163, 74, .05));
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(201, 163, 74, .2);
        font-size: 1.2rem;
        color: var(--gold);
        margin-bottom: 1.5rem;
    }

    /* ── Collection card ── */
    .col-card {
        position: relative;
        overflow: hidden;
        border-radius: 1.5rem;
        aspect-ratio: 3/4;
        cursor: pointer;
    }

    .col-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .8s;
    }

    .col-card:hover img {
        transform: scale(1.06);
    }

    .col-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #0D0C0A 35%, transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 2rem;
    }

    /* ── Testimonial ── */
    .swiper-testimonial .swiper-slide {
        background: rgba(255, 255, 255, .02);
        border: 1px solid rgba(201, 163, 74, .1);
        border-radius: 1.5rem;
        padding: 2.5rem;
        height: auto;
    }

    .swiper-testimonial .swiper-pagination-bullet {
        background: rgba(201, 163, 74, .3);
        opacity: 1;
    }

    .swiper-testimonial .swiper-pagination-bullet-active {
        background: var(--gold);
    }

    /* ── Newsletter ── */
    .newsletter-wrap {
        background: linear-gradient(135deg, rgba(201, 163, 74, .1), rgba(90, 30, 35, .1));
        border: 1px solid rgba(201, 163, 74, .15);
        border-radius: 2rem;
        padding: 4rem;
    }

    /* ── Experience Card ── */
    .exp-card {
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(201, 163, 74, .12);
        border-radius: 1.5rem;
        padding: 2rem;
        transition: all .4s;
    }

    .exp-card:hover {
        border-color: rgba(201, 163, 74, .3);
        transform: translateY(-4px);
    }

    /* ── Ingredient ── */
    .ing-item {
        position: relative;
        border-radius: 1rem;
        overflow: hidden;
        aspect-ratio: 1;
    }

    .ing-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: sepia(.2) brightness(.85);
        transition: all .5s;
    }

    .ing-item:hover img {
        filter: sepia(0) brightness(1);
        transform: scale(1.05);
    }

    .ing-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(13, 12, 10, .9), transparent);
        padding: 1rem .8rem .7rem;
        font-size: .65rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--cream);
    }

    /* ── Section utils ── */
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
