/**
 * La Rose de Guelma - Premium Stylesheet
 * Luxury e-commerce design with professional UI/UX
 * 
 * @author Oussama Makhbouche
 * @copyright 2025
 */

/* ===== PREMIUM CSS VARIABLES ===== */
:root {
    /* Luxury Color Palette */
    --color-gold: #C9A962;
    --color-gold-light: #E8D5A3;
    --color-gold-dark: #9A7B3C;
    --color-rose: #B76E79;
    --color-rose-light: #D4A5AC;
    --color-champagne: #F7E7CE;
    
    /* Neutrals */
    --color-black: #0A0A0A;
    --color-charcoal: #1A1A1A;
    --color-gray-900: #1F1F1F;
    --color-gray-800: #2D2D2D;
    --color-gray-700: #404040;
    --color-gray-600: #525252;
    --color-gray-500: #737373;
    --color-gray-400: #A3A3A3;
    --color-gray-300: #D4D4D4;
    --color-gray-200: #E5E5E5;
    --color-gray-100: #F5F5F5;
    --color-white: #FFFFFF;
    --color-cream: #FDFBF7;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-normal: 0.3s var(--ease-smooth);
    --transition-slow: 0.5s var(--ease-elegant);
    --transition-slower: 0.8s var(--ease-elegant);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.25);
    --shadow-elegant: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-gray-200);
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--color-gray-200);
}

html::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background: var(--color-cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 12px 24px;
    z-index: 10000;
    transition: top var(--transition-fast);
    border-radius: var(--radius-md);
}

.skip-link:focus {
    top: 10px;
}

/* ===== SELECTION ===== */
::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-black) 100%);
    color: var(--color-gold-light);
    text-align: center;
    font-size: 11px;
    padding: 12px 20px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 50px;
    border-bottom: 1px solid var(--color-gray-200);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    padding: 15px 50px;
    box-shadow: var(--shadow-md);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    flex: 1;
    transition: var(--transition-normal);
}

.logo a {
    text-decoration: none;
    color: var(--color-charcoal);
    position: relative;
    display: inline-block;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.logo a:hover::after {
    width: 100%;
}

.left-nav, .right-icons {
    flex: 1;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--color-gray-600);
    font-family: var(--font-body);
}

.left-nav { justify-content: flex-start; align-items: center; }
.right-icons { justify-content: flex-end; align-items: center; }

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.header-logo:hover {
    transform: scale(1.05);
}

/* ===== SEARCH ===== */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-icon-btn {
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-charcoal);
    transition: all var(--transition-normal);
    border-radius: var(--radius-full);
}

.search-icon-btn:hover {
    background: var(--color-gray-100);
    color: var(--color-gold);
    border-color: var(--color-gray-200);
}

.search-input-wrapper {
    position: relative;
    width: 0;
    overflow: hidden;
    transition: width 0.4s var(--ease-elegant);
}

.search-input-wrapper.active {
    width: 300px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 20px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-family: var(--font-body);
    transition: all var(--transition-normal);
    background: var(--color-white);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.search-input::placeholder {
    color: var(--color-gray-400);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    font-size: 20px;
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    padding: 0;
    width: 24px;
    height: 24px;
    line-height: 1;
    transition: color var(--transition-fast);
}

.clear-search:hover {
    color: var(--color-gold);
}

/* ===== NAVIGATION ===== */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 0 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    font-family: var(--font-body);
    font-weight: 500;
    transition: color var(--transition-normal);
    flex-shrink: 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-elegant);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

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

.nav-links a.active {
    color: var(--color-gold-dark);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--color-black);
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

.hero-image {
    background-size: cover !important;
    background-position: center 30% !important;
    background-repeat: no-repeat !important;
}

.hero-overlay {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    z-index: 2;
    padding: 30px;
}

.hero-overlay h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--color-white);
    text-shadow: 
        0 2px 20px rgba(0,0,0,0.8),
        0 4px 40px rgba(0,0,0,0.6);
    letter-spacing: -0.02em;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-elegant) 0.3s forwards;
}

.btn-white {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-charcoal);
    padding: 18px 55px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.4s var(--ease-elegant);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-elegant) 0.6s forwards;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
    transition: left 0.5s var(--ease-elegant);
}

.btn-white:hover::before {
    left: 100%;
}

.btn-white:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 98, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MARQUEE ===== */
.marquee-container {
    display: flex;
    align-items: center;
    background: var(--color-charcoal);
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 0;
    animation: marquee 35s linear infinite;
}

.marquee-item {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 50px;
    color: var(--color-gray-300);
}

.marquee-separator {
    color: var(--color-gold);
    font-size: 12px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SHOP COLLECTIONS ===== */
.shop-collections {
    padding: 100px 0;
    background: var(--color-white);
}

.shop-collections-title {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-charcoal);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.shop-collections-title::before,
.shop-collections-title::after {
    content: '';
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.collections-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 50px 40px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--color-gray-200);
}

.collections-carousel::-webkit-scrollbar {
    height: 4px;
}

.collections-carousel::-webkit-scrollbar-track {
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
}

.collections-carousel::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

.collection-slide {
    position: relative;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: 400px;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s var(--ease-elegant);
}

.collection-slide:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elegant);
}

.collection-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
    transition: transform 0.8s var(--ease-elegant);
    filter: brightness(0.9);
}

.collection-slide:hover img {
    transform: scale(1.08);
    filter: brightness(0.75);
}

.collection-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    transition: background var(--transition-slow);
    z-index: 1;
    pointer-events: none;
}

.collection-slide:hover .collection-slide-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.collection-slide-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 600;
    text-align: center;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 8px 16px rgba(0, 0, 0, 0.6);
    transition: transform var(--transition-slow);
    z-index: 2;
    position: relative;
    pointer-events: none;
}

.collection-slide:hover .collection-slide-title {
    transform: translateY(-5px);
}

/* ===== PRODUCTS SECTION ===== */
.vogue-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.vogue-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}

/* ===== PRODUCTS GRID ===== */
.vogue-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* ===== PRODUCT CARDS ===== */
.vogue-product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease-elegant);
    opacity: 0;
    transform: translateY(40px);
}

.vogue-product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.vogue-product-card:hover { 
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.vogue-product-card:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.vogue-product-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--color-gray-100);
    position: relative;
}

.vogue-product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.vogue-product-card:hover .vogue-product-image::after {
    opacity: 1;
}

.vogue-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-elegant);
}

.vogue-product-card:hover .vogue-product-image img {
    transform: scale(1.08);
}

/* Product Label */
.vogue-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-charcoal);
    padding: 6px 12px;
    display: inline-block;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.vogue-product-card:hover .vogue-label {
    background: var(--color-gold);
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-white);
    color: var(--color-charcoal);
    border: none;
    padding: 12px 25px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-normal);
    border-radius: var(--radius-sm);
    z-index: 10;
}

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

.quick-view-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* Product Info */
.vogue-product-info {
    padding: 20px;
    text-align: center;
    background: var(--color-white);
}

.vogue-product-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.5;
    letter-spacing: 0.3px;
    margin: 0 0 8px 0;
    transition: color var(--transition-fast);
}

.vogue-product-card:hover .vogue-product-title {
    color: var(--color-gold-dark);
}

.vogue-product-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gold-dark);
    letter-spacing: 0.5px;
    margin: 0;
}

/* ===== SKELETON LOADER ===== */
.skeleton {
    background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.skeleton-image {
    aspect-ratio: 3 / 4;
}

.skeleton-text {
    height: 14px;
    margin: 10px 20px;
}

.skeleton-text.short {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== LOADING INDICATOR ===== */
.loading-indicator {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-gray-200);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== BUTTONS ===== */
.vogue-btn {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 16px 40px;
    border: 2px solid var(--color-charcoal);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.vogue-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.4s var(--ease-elegant);
    z-index: -1;
}

.vogue-btn:hover::before {
    left: 0;
}

.vogue-btn:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.vogue-btn:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

/* ===== SALES POPUP ===== */
.sales-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elegant);
    padding: 20px 25px;
    max-width: 380px;
    z-index: 9999;
    transform: translateX(-120%);
    transition: transform 0.6s var(--ease-elegant);
    border: 1px solid var(--color-gray-200);
    border-left: 4px solid var(--color-gold);
}

.sales-popup.show {
    transform: translateX(0);
}

.sales-popup-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sales-popup-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.sales-popup-text {
    flex: 1;
}

.sales-popup-customer {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.sales-popup-product {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-gray-600);
    margin-bottom: 4px;
}

.sales-popup-time {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--color-gold-dark);
    font-style: italic;
}

.sales-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--color-gray-400);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
    padding: 5px;
}

.sales-popup-close:hover {
    color: var(--color-charcoal);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--color-cream);
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    transition: transform var(--transition-normal);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--color-gold);
}

.service-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 13px;
    color: var(--color-gray-600);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, var(--color-charcoal) 0%, var(--color-black) 100%);
    color: var(--color-gray-300);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-link {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-fast);
    display: block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--color-gold);
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    text-decoration: none;
    transition: all var(--transition-normal);
    border-radius: var(--radius-sm);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
.fade-in { 
    animation: fadeIn 0.6s var(--ease-elegant); 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* Staggered animation delays */
.vogue-product-card { 
    transition: all 0.6s var(--ease-elegant);
}

.vogue-product-card:nth-child(1) { transition-delay: 0.05s; }
.vogue-product-card:nth-child(2) { transition-delay: 0.1s; }
.vogue-product-card:nth-child(3) { transition-delay: 0.15s; }
.vogue-product-card:nth-child(4) { transition-delay: 0.2s; }
.vogue-product-card:nth-child(5) { transition-delay: 0.25s; }
.vogue-product-card:nth-child(6) { transition-delay: 0.3s; }
.vogue-product-card:nth-child(7) { transition-delay: 0.35s; }
.vogue-product-card:nth-child(8) { transition-delay: 0.4s; }
.vogue-product-card:nth-child(9) { transition-delay: 0.45s; }
.vogue-product-card:nth-child(10) { transition-delay: 0.5s; }
.vogue-product-card:nth-child(11) { transition-delay: 0.55s; }
.vogue-product-card:nth-child(12) { transition-delay: 0.6s; }
.vogue-product-card:nth-child(n+13) { transition-delay: 0s; }

/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: var(--color-gray-100);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-charcoal);
    margin: 5px auto;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAVIGATION OVERLAY ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.show {
    display: block;
    opacity: 1;
}

/* ===== MOBILE SLIDE MENU ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1000;
    transition: right 0.4s var(--ease-elegant);
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav.show {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-cream);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-nav-logo span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-charcoal);
    letter-spacing: 1px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: var(--color-gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.mobile-nav-close:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.mobile-nav-search {
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-gray-200);
}

.mobile-nav-search input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--color-gray-100);
    transition: all var(--transition-normal);
}

.mobile-nav-search input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
}

.mobile-nav-links {
    padding: 10px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: var(--color-charcoal);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-gray-100);
    transition: all var(--transition-normal);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--color-cream);
    color: var(--color-gold-dark);
    padding-left: 30px;
}

.mobile-nav-link.active {
    border-left: 3px solid var(--color-gold);
}

.mobile-nav-link svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.mobile-nav-footer {
    padding: 20px;
    background: var(--color-cream);
    margin-top: auto;
}

.mobile-nav-footer-text {
    font-size: 12px;
    color: var(--color-gray-500);
    text-align: center;
    margin-bottom: 15px;
}

.mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-nav-social a {
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-charcoal);
    transition: all var(--transition-normal);
}

.mobile-nav-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .vogue-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .main-header {
        padding: 15px 30px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .collection-slide {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        height: 380px;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hide desktop search on mobile */
    .left-nav .search-container {
        display: none;
    }
    
    /* Simplified header for mobile */
    .header-top {
        margin-bottom: 10px;
    }
    
    .main-header {
        padding: 12px 15px;
    }
    
    .left-nav {
        flex: 0;
    }
    
    .logo {
        font-size: 16px;
        letter-spacing: 1.5px;
        flex: 1;
        text-align: center;
    }
    
    .right-icons {
        flex: 0;
        gap: 8px;
    }
    
    .header-logo {
        height: 35px;
        width: 35px;
        border-radius: 50%;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-links {
        display: none;
    }
    
    /* Product grid */
    .vogue-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 12px;
    }
    
    /* Hero section */
    .hero-section {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-overlay {
        bottom: 15%;
        padding: 20px;
    }
    
    .hero-overlay h2 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .btn-white {
        padding: 14px 32px;
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    /* Collections */
    .shop-collections {
        padding: 50px 0;
    }
    
    .shop-collections-title {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .shop-collections-title::before,
    .shop-collections-title::after {
        width: 30px;
    }
    
    .collections-carousel {
        padding: 10px 15px 25px;
        gap: 12px;
    }
    
    .collection-slide {
        width: 220px;
        min-width: 220px;
        max-width: 220px;
        height: 300px;
    }
    
    .collection-slide-title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }
    
    /* Product section */
    .vogue-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .vogue-section-title::after {
        width: 40px;
    }
    
    .vogue-product-info {
        padding: 12px;
    }
    
    .vogue-product-title {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .vogue-product-price {
        font-size: 12px;
    }
    
    .vogue-label {
        font-size: 8px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
    
    /* Top bar */
    .top-bar {
        font-size: 9px;
        padding: 10px 15px;
        letter-spacing: 1px;
    }
    
    /* Marquee */
    .marquee-item {
        font-size: 9px;
        padding: 0 25px;
        letter-spacing: 1px;
    }
    
    .marquee-container {
        height: 38px;
    }
    
    /* Sales popup */
    .sales-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
        padding: 15px 18px;
        border-radius: var(--radius-md);
    }
    
    .sales-popup-icon {
        font-size: 2rem;
    }
    
    .sales-popup-customer {
        font-size: 12px;
    }
    
    .sales-popup-product {
        font-size: 11px;
    }
    
    .quick-view-btn {
        display: none;
    }
    
    /* Buttons */
    .vogue-btn {
        padding: 14px 30px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    /* Services section */
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-title {
        font-size: 10px;
    }
    
    .service-desc {
        font-size: 12px;
    }
    
    /* Footer adjustments */
    .footer-logo {
        font-size: 20px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .logo {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
    .hero-overlay h2 {
        font-size: 1.6rem;
    }
    
    .btn-white {
        padding: 12px 28px;
        font-size: 9px;
    }
    
    .collection-slide {
        min-width: 250px;
        height: 340px;
    }
    
    .vogue-products-grid {
        gap: 10px;
        padding: 0 10px;
    }
    
    .vogue-product-info {
        padding: 12px;
    }
    
    .vogue-label {
        font-size: 8px;
        padding: 4px 8px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .vogue-product-card {
        opacity: 1;
        transform: none;
    }
    
    .hero-overlay h2,
    .btn-white {
        opacity: 1;
        animation: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .sales-popup,
    .search-container,
    .nav-links,
    .top-bar,
    .marquee-container {
        display: none !important;
    }
    
    .vogue-product-card {
        opacity: 1;
        transform: none;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .hero-section {
        height: auto;
        min-height: 200px;
    }
}
