:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #B8860B;
    /* Darker Gold (Dark Goldenrod) for contrast against cream */
    /* Richer Gold Gradients */
    --gold-light: #F8F4E8;
    --gold-cream: #FAF8F0;
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #F0D67B 50%, #B8860B 100%);

    --text-color: #222222;
    /* Slightly darker black for crispness */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-logo: 'Cinzel', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    /* Luxury Gold Gradient Background */
    background: linear-gradient(135deg,
            #faf8f0 0%,
            #f5f0e0 25%,
            #faf6eb 50%,
            #f8f4e5 75%,
            #fdfbf5 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Header */
header {
    background-color: var(--secondary-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Navigation */
nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* Centered as requested */
    padding-right: 15rem;
    /* Offset logo width to truly center visually if needed, or just center */
}

#nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Animations Scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


#nav-menu li {
    position: relative;
    padding: 10px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
    padding: 1rem 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border: 1px solid var(--gold-primary);
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.85rem;
}

.dropdown-content a:hover {
    background-color: var(--gold-secondary);
    color: var(--black-bg);
}

/* Hover & Active State - Gold */
#nav-menu a:hover,
#nav-menu a.active {
    color: var(--accent-color);
}

#nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

#nav-menu a:hover::after,
#nav-menu a.active::after {
    width: 100%;
}

/* Navbar Dropdown Styles */
.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 3px solid var(--accent-color);
    text-align: left;
    padding: 10px 0;
    border-radius: 0 0 4px 4px;
}

.nav-dropdown-content a {
    color: #444 !important;
    /* Force dark text for sub-items so they are readable */
    padding: 12px 20px;
    display: block;
    text-transform: capitalize !important;
    font-weight: 500 !important;
    border-bottom: none;
}

.nav-dropdown-content a:hover {
    background-color: #f7f7f7;
    color: var(--accent-color) !important;
}

.nav-dropdown-item:hover .nav-dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    /* Match reference height approx */
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Ensure video doesn't spill out */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    /* Fallback color */
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    /* Ensure it covers the area */
}

/* Ensure overlays sit on top of video */
.hero::after {
    /* Optional light overlay for readability if needed, or keeping it subtle */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Banner overlay at top of hero */
.hero-overlay-text {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
    /* Ensure above video */
    text-align: center;
}

.new-account-banner {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 10px 20px;
    display: inline-block;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Ensure above video */
}



/* Section Text */
.text-section {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title,
.page-t.filters h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 1rem auto 0;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    text-align: left;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Premium Section */
.premium-section {
    background-color: #111;
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.premium-card {
    border: 1px solid var(--accent-color);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.premium-card h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.premium-list {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
    display: inline-block;
}

.premium-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.premium-list li::before {
    content: '✦';
    color: var(--accent-color);
    margin-right: 1rem;
}

/* Support Section */
.support-section {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 100;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.tab-btn {
    background: none;
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 160px;
    font-weight: bold;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 101;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #eee;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--accent-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Shop Layout */
.shop-layout {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: flex-start;
}

/* Sidebar Styles */
.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    /* Below header */
    text-align: left;
    padding-right: 1rem;
}

.sidebar-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.sidebar-list li {
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #444;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    /* Subtle gold divider */
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.sidebar-list li:hover {
    color: var(--accent-color);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    padding-left: 1.5rem;
    font-weight: 700;
}

.sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-list li:hover::before,
.sidebar-list li.active::before {
    transform: scaleY(1);
}

.sidebar-list li.active {
    color: var(--accent-color);
    font-weight: 800;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

/* Product Grid Adjustments */
.product-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    padding: 0;
    /* Removing padding as parent handles it */
}

/* Updated Product Card for Luxury 1.1 Clone */
.product-card {
    background: transparent;
    /* Cleaner look */
    border: none;
    box-shadow: none;
    /* Flat design like reference */
    overflow: visible;
    /* Allow buttons to overlap if needed */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: width 0.4s ease, left 0.4s ease;
}

.product-card:hover::after {
    width: 80%;
    left: 10%;
}

.product-card:hover {
    transform: translateY(-8px);
    z-index: 5;
}

.product-image-container {
    position: relative;
    height: 380px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
    /* Maintain clean background for luxury */
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Initial elegance */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-container::before {
    opacity: 0.8;
}

.product-card:hover .product-image-container {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    /* Deep luxury shadow */
    transform: translateY(-4px);
    border-color: var(--accent-color);
    /* Gold border on hover */
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Center and show full image without cropping */
    object-position: center center;
    padding: 15px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, filter 0.4s ease;
    filter: brightness(1) contrast(1.02);
}

.product-image-container img.main-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
}

.product-image-container img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* On top, but hidden initially */
    opacity: 0;
}

.product-card:hover .product-image-container img.hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.product-card:hover .product-image-container img.main-img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.03);
}

/* Quick View Button - Premium Style */
.quick-view-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    /* Gold background */
    color: #000;
    border: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    letter-spacing: 1.5px;
}

.quick-view-btn:hover {
    background-color: #000;
    color: #cca43b;
    /* Gold text */
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    text-align: center;
    /* Center align for luxury feel */
    padding-top: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-info {
    transform: translateY(-5px);
}

.product-brand {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent-color) !important;
    /* Force Gold */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 700;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #111;
    line-height: 1.3;
}

.product-card:hover .product-name {
    color: var(--accent-color);
    /* Gold on hover */
}

.product-price {
    font-family: 'Cinzel', serif;
    color: var(--accent-color);
    /* GOLD PRICE */
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding: 0 5px;
    background: linear-gradient(135deg, #d4af37 0%, #f0d67b 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

/* Add a gold line under price */
.product-price::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s;
    margin: 2px auto 0;
}

.product-card:hover .product-price::after {
    width: 100%;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 0.85rem;
}

/* Mobile Sidebar Handling */
@media(max-width: 900px) {
    .shop-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .shop-sidebar {
        width: 100%;
        position: static;
        overflow-x: auto;
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
    }

    .sidebar-list {
        display: flex;
        gap: 1.5rem;
        white-space: nowrap;
        padding-bottom: 0.5rem;
    }

    .sidebar-list li {
        padding: 0.5rem 0;
        border-bottom: 2px solid transparent;
    }

    .sidebar-list li.active {
        border-bottom: 2px solid var(--accent-color);
    }
}

/* Mobile - Inline Navigation */
.hamburger {
    display: none !important;
    /* Hide hamburger completely */
}

@media(max-width: 900px) {

    /* Header Layout Adjustment */
    header {
        flex-direction: row;
        justify-content: space-between;
        /* Space out logo and nav */
        align-items: center;
        padding: 0.5rem 0.5rem;
        /* Tight padding */
        flex-wrap: nowrap;
        /* Prevent wrapping */
    }

    /* Logo scaling for mobile */
    .logo img {
        height: 35px !important;
        /* Smaller logo to fit */
        margin-right: 5px;
    }

    /* Reset Nav to appear inline */
    nav ul {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        /* Horizontal tabs */
        justify-content: flex-end;
        box-shadow: none;
        padding: 0;
        gap: 12px;
        /* Tight spacing between tabs */
        transform: none;
        opacity: 1;
        right: auto;
        top: auto;
        display: flex !important;
        /* Force flex */
    }

    /* Tabs Styling */
    nav ul li a {
        font-size: 0.75rem !important;
        /* Compact text */
        color: #000;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        text-shadow: none;
        padding: 2px 0;
    }

    /* Active/Hover underline for mobile */
    nav ul li a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: width 0.3s;
        margin-top: 2px;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

    /* Hide Dropdown content completely on mobile inline to prevent mess */
    .dropdown-content {
        display: none !important;
    }

    /* ==========================================
       PREMIUM MOBILE ENHANCEMENTS
       ========================================== */

    /* Product grid for mobile */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }

    /* Premium Product Cards Mobile */
    /* Premium Product Cards Mobile */
    .product-card {
        background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 1px solid rgba(212, 175, 55, 0.1);
        opacity: 1 !important;
        transform: none !important;
    }

    /* Touch feedback animation */
    .product-card:active {
        transform: scale(0.97) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        border-color: var(--accent-color);
    }

    /* Product Image Container Mobile */
    .product-image-container {
        border-radius: 10px;
        overflow: hidden;
        position: relative;
    }

    .product-image-container img {
        border-radius: 10px;
    }

    /* GOLD PRICES - Premium Styling */
    .product-price {
        color: var(--accent-color) !important;
        font-size: 1rem !important;
        font-weight: 800 !important;
        font-family: 'Cinzel', serif !important;
        text-shadow: 0 1px 2px rgba(212, 175, 55, 0.2);
        background: linear-gradient(135deg, #d4af37 0%, #f0d67b 50%, #d4af37 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: 0.5px;
    }

    /* Product Name Mobile */
    .product-name {
        font-size: 0.75rem !important;
        font-weight: 600;
        line-height: 1.3;
        color: #1a1a1a;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    /* Product Info Container */
    .product-info {
        padding: 8px 4px;
        text-align: center;
    }

    /* Brand Badge Mobile */
    .product-card span[style*="position:absolute"] {
        font-size: 0.55rem !important;
        padding: 2px 5px !important;
        border-radius: 3px;
        background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%) !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    /* Quick View Button Mobile */
    .quick-view-btn {
        display: none !important;
        /* Hide on mobile for cleaner look */
    }

    /* Fade in animation for cards (re-enable gentle version) */
    .fade-in-up {
        animation: mobileCardFadeIn 0.4s ease-out forwards !important;
    }

    @keyframes mobileCardFadeIn {
        from {
            opacity: 0.5;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Premium Shimmer Effect on Load */
    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent,
                rgba(212, 175, 55, 0.1),
                transparent);
        animation: shimmerOnce 1.5s ease-out;
        pointer-events: none;
    }

    @keyframes shimmerOnce {
        0% {
            left: -100%;
        }

        100% {
            left: 100%;
        }
    }

    /* Load More Button Mobile */
    #load-more-btn {
        margin: 1.5rem auto !important;
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 1.5rem !important;
    }

    .hero p {
        font-size: 0.85rem !important;
    }

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }

    /* Better touch targets */
    .product-card-link {
        display: block;
        -webkit-tap-highlight-color: transparent;
    }
}

/* ========================================
   PROFESSIONAL ANIMATIONS & EFFECTS
   ======================================== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Skeleton Loader for Images */
.product-image-container.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Product Card Animations */
/* .product-card animation removed to avoid conflict with fade-in-up transition */
/* 
.product-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
*/

/* Ripple Effect on Buttons */
.quick-view-btn {
    position: relative;
    overflow: hidden;
}

.quick-view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.quick-view-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Image Hover with Scale */
.product-image-container img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.product-card:hover .product-image-container img.main-img {
    transform: scale(1.05);
}

/* Smooth Price Animation */
.product-price {
    transition: color 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-price {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Floating Animation for Icons */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.step-number {
    animation: float 3s ease-in-out infinite;
}

/* Gradient Text Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-title {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

/* Parallax Effect on Hero */
.hero-bg-video {
    transition: transform 0.1s ease-out;
}

/* Enhanced Nav Link Hover */
#nav-menu a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#nav-menu a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#nav-menu a:hover::before {
    transform: scaleX(1);
}

/* Pulse Animation for New Badge */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.new-account-banner {
    animation: pulse 2s ease-in-out infinite;
}

/* Smooth Card Elevation */
.step-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Blur on Load */
.product-image-container img {
    filter: blur(0);
    transition: filter 0.3s ease;
}

.product-image-container img.loading {
    filter: blur(10px);
}

/* Stagger Animation for Grid Items */
@keyframes staggerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-grid.loaded .product-card {
    animation: staggerFadeIn 0.5s ease-out backwards;
}

/* Enhanced Button States */
.tab-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tab-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tab-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Smooth Dropdown Animations */
.dropdown-content {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Text Selection Styling */
::selection {
    background-color: var(--accent-color);
    color: white;
}

::-moz-selection {
    background-color: var(--accent-color);
    color: white;
}

/* Smooth Focus States */
button:focus,
a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    transition: outline-offset 0.2s ease;
}

/* Loading Spinner */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

/* Smooth Page Transitions */
body {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Enhanced Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Gold Glow Effect */
.premium-card {
    position: relative;
    transition: all 0.4s ease;
    background-color: #000;
    /* Black background */
    color: #fff;
    /* White text */
    padding: 2rem;
    /* Ensure padding for look */
    border: 1px solid var(--accent-color);
    /* Gold border */
}

.premium-card h2 {
    color: var(--accent-color);
    /* Gold Title */
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
    background-size: 400% 400%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.premium-card:hover::before {
    opacity: 1;
}

/* Micro-interaction: Button Press Effect */
.quick-view-btn:active,
.tab-btn:active {
    transform: scale(0.95);
}

/* Enhanced Product Name Hover */
.product-name {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.product-card:hover .product-name {
    letter-spacing: 1px;
}

/* Smooth Sidebar Transitions */
.sidebar-list li {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar-list li::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transition: all 0.3s ease;
}

.sidebar-list li:hover::before {
    opacity: 1;
    margin-right: 8px;
}

/* Performance Optimizations */
.product-card,
.step-card,
.tab-btn {
    will-change: transform;
}

.product-image-container img {
    will-change: transform, opacity;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   LUXE & PRO ENHANCEMENTS (APPENDED)
   ========================================= */

/* 1. Global Typography & Atmosphere */
body {
    background-color: #ffffff;
    color: #222;
    /* Softer black */
}

h1,
h2,
h3,
.logo,
.product-name {
    letter-spacing: -0.02em;
    /* Tighter headings for modern look */
}

.logo {
    letter-spacing: 0.15em;
    /* Except logo which needs air */
}

/* 2. Glassmorphism Header */
header.catalog-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

/* 3. Refined Product Cards */
.product-card {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image-container {
    border-radius: 4px;
    background: #fdfdfd;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover .product-image-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.product-name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #111;
    margin-top: 1rem;
}

.product-price {
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
}

/* 4. Filter Sidebar Pro Look */
.shop-sidebar {
    background: #fafafa;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.sidebar-list li {
    font-size: 0.9rem;
    color: #555;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-list li:hover {
    color: #000;
    padding-left: 8px;
}

.sidebar-list li.active {
    color: #000;
    font-weight: 700;
    border-bottom: 1px solid #000;
}

/* 5. Buttons */
.btn-primary,
.quick-view-btn {
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #fff;
    color: #000;
}

/* 6. Page Fade In */
body {
    animation: fadeInPage 0.8s ease-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 7. Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Tighten spacing for Premium section */
.premium-section {
    margin-top: 0;
    padding-top: 0;
}

/ *   F i x   f o r   L i n k s   t o   a v o i d   b l u e   d e f a u l t   * /     a    {
                 c o l o r :    i n h e r i t ;
                 t e x t - d e c o r a t i o n :    n o n e ;
         
}

         / *   P r o d u c t   T a g   ( B r a n d   o n   I m a g e )   * /     . p r o d u c t - t a g    {
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    1 0 p x ;
                 r i g h t :    1 0 p x ;
                 b a c k g r o u n d :    # f f f ;
                 p a d d i n g :    4 p x   8 p x ;
                 f o n t - s i z e :    0 . 7 5 r e m ;
                 f o n t - w e i g h t :    8 0 0 ;
                 l e t t e r - s p a c i n g :    1 p x ;
                 c o l o r :    v a r ( - - a c c e n t - c o l o r )    ! i m p o r t a n t ;
                 / *   G O L D   T E X T   * /             b o r d e r :    1 p x   s o l i d   v a r ( - - a c c e n t - c o l o r ) ;
                 b o r d e r - r a d i u s :    2 p x ;
                 z - i n d e x :    1 0 ;
                 b o x - s h a d o w :    0   2 p x   5 p x   r g b a ( 0 ,    0 ,    0 ,    0 . 1 ) ;
                 f o n t - f a m i l y :    v a r ( - - f o n t - b o d y ) ;
         
}

     