/* ========================================
   PROFESSIONAL LUXURY HEADER & HOMEPAGE
   ======================================== */

/* === LUXURY HEADER === */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    /* Transparent gradient */
    backdrop-filter: blur(0px);
    border-bottom: none;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.luxury-header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Brand Logo */
.brand-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-burgundy);
    text-decoration: none;
    transition: color 0.3s;
}

.brand-logo a:hover {
    color: var(--accent-gold);
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-burgundy);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-burgundy);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icon-button {
    background: none;
    border: none;
    color: var(--charcoal);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s;
}

.icon-button:hover {
    color: var(--primary-burgundy);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
}

/* =============================================
   NEW HERO CAROUSEL — Clean Split Layout
   ============================================= */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    background: #1a0a0f;
}

/* Each slide: absolute, full size, only .active is visible */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* LEFT: product image (60% width) */
.hero-img-side {
    flex: 0 0 60%;
    overflow: hidden;
    background: #111;
}

.hero-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* RIGHT: brand text panel (40% width) */
.hero-text-side {
    flex: 0 0 40%;
    background: linear-gradient(160deg, #5a0e24 0%, #8B1538 50%, #4a0a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem 3rem 3rem;
    color: white;
}

.hero-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4AF37;
    border-left: 3px solid #D4AF37;
    padding-left: 0.7rem;
    margin-bottom: 1.2rem;
}

.hero-text-side h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 1rem;
}

.hero-text-side p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    max-width: 300px;
}

.hero-btns {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #D4AF37;
    color: #3a0a18;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #D4AF37;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #D4AF37;
}

.btn-hero-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.btn-hero-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Prev / Next buttons */
.hc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hc-btn:hover {
    background: #D4AF37;
    color: #3a0a18;
    border-color: #D4AF37;
}

.hc-prev {
    left: 1rem;
}

.hc-next {
    right: 1rem;
}

/* Dots */
.hc-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 30%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.hc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.hc-dot.active {
    background: #D4AF37;
    transform: scale(1.35);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-carousel {
        height: auto;
        min-height: unset;
        max-height: unset;
    }

    .hero-slide {
        flex-direction: column;
        position: relative;
    }

    .hero-slide:not(.active) {
        display: none;
    }

    .hero-img-side {
        flex: 0 0 300px;
    }

    .hero-text-side {
        flex: 0 0 auto;
        padding: 2.5rem 1.5rem;
    }

    .hero-text-side h1 {
        font-size: 2.2rem;
    }

    .hc-dots {
        position: static;
        transform: none;
        justify-content: center;
        padding: 1rem 0;
        background: #5a0e24;
    }
}

/* === HOMEPAGE SECTIONS === */
body {
    padding-top: 0;
}

/* Featured Categories */
.featured-section {
    padding: 6rem 0;
    background: var(--ivory);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.7;
    font-weight: 300;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 70px;
        /* Reduced to fit better */
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: block;
        /* Ensure it shows when class is added */
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(139, 21, 56, 0.1);
    }

    .hero-slider,
    .hero-slide {
        height: 85vh;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .brand-logo a {
        font-size: 1.4rem;
    }

    .header-actions {
        gap: 1rem;
    }

    .icon-button {
        font-size: 1rem;
    }
}

/* === SCROLL BEHAVIOR === */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}