/*
  ARAM TEMPLATE
  Split CSS version (desktop + mobile)
  NOTE: No sections removed. Flash Sale section redesigned as a clean list.
*/

/* ═════════════════════════════════════════════════════════════════════
   AUTOBUS-BOLD FONT: Place your font files in /fonts
   ═════════════════════════════════════════════════════════════════════ */
@font-face {
    font-family: 'Autobus';
    src: url('../../fonts/Autobus-Bold.woff2') format('woff2'),
         url('../../fonts/Autobus-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES - EASY IMAGE CUSTOMIZATION
   ═══════════════════════════════════════════════════════════════ */
:root {
    /* ══════ HERO SLIDER IMAGES (local) ══════ */
    --slide-1-image: url('../img/1.png');
    --slide-2-image: url('../img/2.png');
    --slide-3-image: url('../img/3.png');

    /* ══════ CATEGORY IMAGES ══════ */
    --cat-black-abaya: url('../img/4.png');
    --cat-winter: url('../img/5.png');
    --cat-kaftan: url('../img/6.png');
    --cat-sets: url('../img/7.png');
    --cat-soiree: url('../img/8.png');

    /* ══════ BANNER IMAGE ══════ */
    --banner-image: url('../img/9.png');

    /* ══════ COLORS ══════ */
    --gold: #C9A962;
    --gold-light: #E5D4A1;
    --gold-dark: #8B7355;
    --black: #0A0A0A;
    --white: #FEFEFE;
    --cream: #FAF7F2;
    --rose: #E8D5D5;
    --accent-2: #8E7B6B;
    --accent-3: #D4C4B5;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #C9A962 0%, #E5D4A1 50%, #C9A962 100%);
    --gradient-luxury: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 100%);

    /* Typography */
    --font-display: 'Autobus', 'Bebas Neue', sans-serif;
    --font-main: 'Poppins', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════════ */
.announcement-bar {
    background: var(--black);
    padding: 10px 0;
    overflow: hidden;
}

.announcement-track {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.announcement-item i { font-size: 14px; }

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

/* ═══════════════════════════════════════════════════════════════
   HEADER - DESKTOP
   ═══════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    top: 0;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--black);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--accent-3);
    color: var(--black);
    font-size: 18px;
    transition: var(--transition-smooth);
    position: relative;
}

.header-btn:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--gold);
}

.header-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Toggle - Hidden on Desktop */
.menu-toggle { display: none; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    transform: translateX(-100%);
    transition: var(--transition-smooth);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

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

.mobile-menu-header .logo { font-size: 24px; }

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black);
    background: var(--cream);
}

.mobile-menu-links {
    list-style: none;
    padding: 20px;
}

.mobile-menu-links li {
    border-bottom: 1px solid var(--cream);
}

.mobile-menu-links a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--black);
    transition: var(--transition-fast);
}

.mobile-menu-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   MINI CART
   ═══════════════════════════════════════════════════════════════ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1101;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.mini-cart.active { transform: translateX(0); }

.mini-cart-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
}

.mini-cart-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black);
    background: var(--cream);
    transition: var(--transition-fast);
}

.mini-cart-close:hover {
    background: var(--black);
    color: var(--gold);
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--cream);
}

.cart-item-image {
    width: 75px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info { flex: 1; }

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--black);
}

.cart-item-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}

.cart-item-qty {
    font-size: 12px;
    color: var(--accent-2);
    margin-top: 5px;
}

.cart-item-remove {
    color: #ccc;
    font-size: 18px;
    transition: var(--transition-fast);
    align-self: center;
}

.cart-item-remove:hover { color: #e74c3c; }

.mini-cart-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--cream);
    background: var(--cream);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cart-total-label {
    font-size: 15px;
    font-weight: 600;
}

.cart-total-price {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 1px;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.checkout-btn:hover {
    background: var(--black);
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════ */
.hero {
    margin-top: 113px;
    height: calc(100vh - 113px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.slide.active .slide-bg { transform: scale(1); }

.slide:nth-child(1) .slide-bg { background-image: var(--slide-1-image); }
.slide:nth-child(2) .slide-bg { background-image: var(--slide-2-image); }
.slide:nth-child(3) .slide-bg { background-image: var(--slide-3-image); }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.5) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title span { color: var(--gold); }

.slide-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
    color: rgba(255,255,255,0.85);
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.8s;
}

.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide-btn:hover {
    background: var(--white);
    box-shadow: var(--shadow-gold);
}

/* Slider Nav */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 80px 0; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════════ */
.categories-section { background: var(--white); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.category-card:nth-child(1) .category-bg { background-image: var(--cat-black-abaya); }
.category-card:nth-child(2) .category-bg { background-image: var(--cat-winter); }
.category-card:nth-child(3) .category-bg { background-image: var(--cat-kaftan); }
.category-card:nth-child(4) .category-bg { background-image: var(--cat-sets); }
.category-card:nth-child(5) .category-bg { background-image: var(--cat-soiree); }

.category-card:hover .category-bg { transform: scale(1.1); }

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%, transparent 100%);
    transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(201, 169, 98, 0.9) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: var(--white);
}

.category-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
    background: var(--white);
    color: var(--black);
}

.category-name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.category-count {
    font-size: 12px;
    opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════════════════════════════ */
.products-section { background: var(--cream); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
}

.product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(-15px);
    transition: var(--transition-smooth);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--black);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.product-action:hover {
    background: var(--gold);
    color: var(--white);
}

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(254,254,254,0.97);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.product-card:hover .product-quick-add { transform: translateY(0); }

.add-btn {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.add-btn:hover {
    background: var(--black);
    color: var(--gold);
}

.product-info { padding: 20px; }

.product-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.product-price span {
    font-size: 14px;
    font-weight: 500;
}

/* Product colors */
.product-colors {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    align-items: center;
}

.product-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.product-color.active {
    transform: scale(1.2);
    border: 2px solid var(--gold);
}

.product-color::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    background: currentColor;
}

/* ═══════════════════════════════════════════════════════════════
   BANNER
   ═══════════════════════════════════════════════════════════════ */
.banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--banner-image) center/cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 100%);
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 60px 40px;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 25px;
}

.banner-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 50px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.banner-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.banner-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════
   FLASH SALE (UPDATED -> SIMPLE LIST)
   ═══════════════════════════════════════════════════════════════ */
.flash-sale {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.flash-sale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
}

.flash-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.flash-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.flash-title span { color: var(--gold); }

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.countdown-item { text-align: center; }

.countdown-box {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--gold);
    letter-spacing: 2px;
}

.countdown-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.countdown-sep {
    font-size: 28px;
    color: var(--gold);
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* NEW: Flash List */
.flash-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.flash-list-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201, 169, 98, 0.18);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.flash-list-item:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 98, 0.35);
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
}

.flash-thumb {
    width: 78px;
    height: 92px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.06);
}

.flash-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flash-info {
    flex: 1;
    min-width: 0;
}

.flash-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
}

.flash-item-name {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flash-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: rgba(231, 76, 60, 0.18);
    border: 1px solid rgba(231, 76, 60, 0.35);
    color: #ff6b5f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 999px;
    white-space: nowrap;
}

.flash-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.flash-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.flash-price-new {
    color: #ff6b5f;
    font-weight: 800;
    font-size: 18px;
}

.flash-price-old {
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
    font-size: 13px;
}

.flash-progress {
    width: 210px;
    max-width: 100%;
    background: rgba(255,255,255,0.07);
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.flash-progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 999px;
}

.flash-qty {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    letter-spacing: 0.5px;
}

.flash-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.flash-add {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.flash-add:hover {
    background: var(--white);
}

.flash-view {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.flash-view:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   FEATURED TABS
   ═══════════════════════════════════════════════════════════════ */
.featured-section { background: var(--white); }

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-2);
    border: 2px solid transparent;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.tab:hover,
.tab.active {
    border-color: var(--gold);
    color: var(--gold);
}

.tab.active {
    background: var(--gold);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials { background: var(--cream); }

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 320px;
}

.testimonial {
    text-align: center;
    padding: 30px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.testimonial.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    padding: 4px;
    background: var(--white);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--black);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════════ */
.features {
    background: var(--black);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 18px;
    transition: var(--transition-smooth);
}

.feature-card:hover { border-color: var(--gold); }

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--black);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════ */
.newsletter {
    background: var(--gradient-gold);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-desc {
    font-size: 16px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 22px;
    background: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.newsletter-btn {
    padding: 16px 30px;
    background: var(--black);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 18px;
    display: inline-block;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition-fast);
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-payments {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 45px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV
   ═══════════════════════════════════════════════════════════════ */
.mobile-bottom-nav { display: none; }

/* ═══════════════════════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════════════════════ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 30px;
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    animation: load 2s ease-in-out forwards;
}

@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

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

/* ═══════════════════════════════════════════════════════════════
   MOBILE STYLES (max-width: 1023px) - ENHANCED FOR TOUCH
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
    * { -webkit-tap-highlight-color: transparent; }

    /* Loader */
    .loader { display: flex; align-items: center; justify-content: center; }
    .loader-logo { font-size: 36px; margin-bottom: 20px; }

    /* Announcement */
    .announcement-bar { padding: 8px 0; }
    .announcement-track { animation: marquee 15s linear infinite; }
    .announcement-item { font-size: 9px; padding: 0 20px; letter-spacing: 1px; }

    /* Header */
    .header {
        top: 30px;
        height: 70px;
        background: rgba(254, 254, 254, 0.95);
        backdrop-filter: blur(20px);
    }

    .header.scrolled { top: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }

    .header-inner { padding: 0 15px; height: 70px; }
    .logo { font-size: 22px; letter-spacing: 4px; }
    .nav-links { display: none; }
    .header-actions { gap: 8px; }

    .header-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border: none;
        background: var(--cream);
    }

    .header-btn:hover { background: var(--cream); color: var(--gold); }
    .header-btn.hide-mobile { display: none; }

    .header-btn .badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: 2px;
        right: 2px;
    }

    /* Burger */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        cursor: pointer;
        z-index: 1003;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--black);
        transition: var(--transition-fast);
        transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Hero */
    .hero {
        margin-top: 100px;
        height: calc(100vh - 100px);
        min-height: 500px;
        max-height: 700px;
    }

    .slide-subtitle { font-size: 11px; letter-spacing: 3px; margin-bottom: 15px; }
    .slide-title { font-size: 36px; line-height: 1.1; margin-bottom: 15px; letter-spacing: 2px; }
    .slide-desc { display: none; }
    .slide-btn { padding: 16px 32px; font-size: 12px; border-radius: 30px; }
    .slider-arrows { display: none; }

    .slider-dots { bottom: 20px; }
    .slider-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.4); }
    .slider-dot.active { width: 10px; height: 10px; background: var(--gold); }

    /* Sections */
    .section { padding: 50px 0; }
    .container { padding: 0 15px; }
    .section-header { margin-bottom: 30px; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 10px; letter-spacing: 3px; }

    /* Categories */
    .categories-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 10px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .categories-grid::-webkit-scrollbar { display: none; }

    .category-card {
        min-width: 160px;
        height: 220px;
        scroll-snap-align: start;
        flex-shrink: 0;
        border-radius: 15px;
    }

    .category-content { bottom: 15px; left: 15px; right: 15px; }
    .category-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; margin-bottom: 8px; }
    .category-name { font-size: 16px; }
    .category-count { font-size: 11px; }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-card { border-radius: 15px; }
    .product-badge { top: 8px; right: 8px; padding: 5px 10px; font-size: 8px; }
    .product-actions { top: 8px; left: 8px; gap: 6px; }
    .product-action { width: 32px; height: 32px; font-size: 14px; }
    .add-btn { padding: 10px; font-size: 10px; border-radius: 6px; }
    .product-info { padding: 15px 12px; }
    .product-category { font-size: 9px; }
    .product-name { font-size: 13px; line-height: 1.4; margin-bottom: 8px; }
    .product-price { font-size: 16px; }

    /* Product colors */
    .product-colors { gap: 4px; margin-top: 8px; }
    .product-color { width: 14px; height: 14px; }

    /* Banner */
    .banner { min-height: 380px; }
    .banner-content { padding: 40px 20px; }
    .banner-tag { padding: 8px 15px; font-size: 10px; margin-bottom: 20px; }
    .banner-title { font-size: 28px; margin-bottom: 12px; }
    .banner-desc { font-size: 14px; margin-bottom: 22px; }
    .banner-btn { padding: 14px 28px; font-size: 11px; }

    /* Flash sale list */
    .flash-sale { padding: 40px 0; }
    .flash-title { font-size: 32px; margin-bottom: 20px; }

    .countdown { gap: 6px; }
    .countdown-box { width: 50px; height: 50px; border-radius: 10px; }
    .countdown-num { font-size: 22px; }
    .countdown-label { font-size: 8px; letter-spacing: 1px; }
    .countdown-sep { font-size: 16px; padding-bottom: 15px; }

    .flash-list { gap: 10px; }

    .flash-list-item {
        padding: 12px;
        border-radius: 16px;
        gap: 12px;
    }

    .flash-thumb { width: 62px; height: 74px; border-radius: 12px; }
    .flash-item-name { font-size: 15px; }
    .flash-badge { font-size: 10px; padding: 6px 9px; }
    .flash-progress { width: 100%; }

    .flash-cta { align-items: flex-end; }
    .flash-add { padding: 9px 12px; font-size: 10px; }
    .flash-view { display: none; }

    /* Tabs */
    .tabs {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar { display: none; }
    .tab { padding: 10px 20px; font-size: 11px; white-space: nowrap; flex-shrink: 0; }

    /* Testimonials */
    .testimonials-slider { min-height: 300px; }
    .testimonial { padding: 20px 10px; }
    .testimonial-avatar { width: 70px; height: 70px; }
    .testimonial-text { font-size: 15px; }
    .testimonial-name { font-size: 16px; }

    /* Features */
    .features { padding: 50px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 15px; }

    .feature-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 20px;
    }

    .feature-icon { width: 55px; height: 55px; min-width: 55px; font-size: 22px; margin: 0; }
    .feature-title { font-size: 15px; margin-bottom: 5px; }
    .feature-desc { font-size: 12px; }

    /* Newsletter */
    .newsletter { padding: 50px 0; }
    .newsletter-title { font-size: 26px; }
    .newsletter-desc { font-size: 14px; }
    .newsletter-form { flex-direction: column; }
    .newsletter-input { padding: 14px 20px; border-radius: 12px; font-size: 14px; }
    .newsletter-btn { width: 100%; border-radius: 12px; padding: 14px 20px; }

    /* Footer */
    .footer { padding: 50px 0 90px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand { text-align: center; }
    .footer-brand .logo { font-size: 24px; }
    .footer-social { justify-content: center; }
    .footer-column { text-align: center; }
    .footer-contact p { justify-content: center; }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Mobile bottom nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid rgba(0,0,0,0.06);
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        z-index: 1000;
        justify-content: space-around;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        font-size: 9px;
        font-weight: 500;
        color: var(--accent-2);
        transition: var(--transition-fast);
        position: relative;
        padding: 8px 0;
    }

    .nav-item i { font-size: 20px; }

    .nav-item.active,
    .nav-item:hover { color: var(--gold); }

    .nav-item .nav-badge {
        position: absolute;
        top: -2px;
        right: 10px;
        width: 14px;
        height: 14px;
        background: var(--gold);
        color: var(--black);
        font-size: 8px;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mini cart */
    .mini-cart { width: 100%; }

    /* Touch fixes */
    @media (hover: none) {
        .product-card:hover { transform: none; box-shadow: var(--shadow-medium); }
        .category-card:hover .category-bg { transform: none; }
        .flash-list-item:hover { transform: none; box-shadow: none; }
    }
}