/* ============================================
   ATELIER FASHION — Premium Design System
   Luxury Girls' Dress Boutique
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #B76E79;
  --primary-dark: #9A5A63;
  --secondary: #F8E8EE;
  --accent: #D4AF37;
  --accent-light: #E6C88C;
  --dark: #1A1A2E;
  --dark-lighter: #2D2B3F;
  --light: #FFF8F0;
  --text: #2D1B33;
  --text-light: #6B5B73;
  --mauve: #C9A0DC;
  --hover: #E8B4B8;
  --surface: #FAF5EF;
  --border: #E6C88C;
  --border-light: #F0E4D4;
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #f44336;
  --info: #2196F3;
  --white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 30px rgba(183,110,121,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 75px;
  --container-max: 1400px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

::selection { background: var(--primary); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--hover); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

/* --- Container --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; width: 100%; }

/* --- Section --- */
.section { padding: 90px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 55px; }
.section-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--dark); position: relative; padding-bottom: 18px; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; }
.section-subtitle { font-size: 15px; color: var(--text-light); margin-top: 12px; max-width: 550px; margin-left: auto; margin-right: auto; }
.section-header .view-all { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 14px; margin-top: 10px; }
.section-header .view-all:hover { color: var(--accent); gap: 10px; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader-logo { font-family: var(--font-heading); font-size: 36px; color: var(--accent); letter-spacing: 2px; animation: pulse 1.5s ease-in-out infinite; }
.preloader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-top: 30px; overflow: hidden; }
.preloader-bar::after { content: ''; display: block; width: 40%; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; animation: progressBar 1.5s ease-in-out infinite; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ===== WELCOME OVERLAY ===== */
.welcome-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at center, #1e1b2e 0%, #0d0b14 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 1s ease, visibility 1s ease;
}
.welcome-overlay .particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.8), rgba(183,110,121,0.4));
  pointer-events: none; animation: particleFloat linear infinite;
}
.welcome-content { text-align: center; z-index: 2; opacity: 0; animation: fadeInUp 1s ease 0.5s forwards; }
.welcome-small { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.6); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 10px; }
.welcome-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5rem); color: var(--accent); text-shadow: 0 0 40px rgba(212,175,55,0.3); }
.welcome-tagline { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 15px; letter-spacing: 2px; }
.welcome-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,248,240,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(183,110,121,0.08);
}
.header.scrolled { padding: 8px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.08); }
.header.header-hidden { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.logo-sub { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--text-light); margin-top: -4px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: right; transition: transform 0.35s ease; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.header-icons { display: flex; align-items: center; gap: 6px; }
.header-icon-btn { width: 42px; height: 42px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; position: relative; transition: var(--transition); color: var(--text); }
.header-icon-btn:hover { background: var(--secondary); color: var(--primary); }
.header-icon-btn svg { width: 20px; height: 20px; }
.icon-badge { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: var(--radius-full); background: var(--primary); color: var(--white); font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center; line-height: 1; }
.lang-switcher { display: flex; gap: 2px; font-size: 12px; margin-left: 8px; }
.lang-btn { padding: 4px 8px; border-radius: 6px; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.lang-btn.active, .lang-btn:hover { background: var(--primary); color: var(--white); }

/* Search Bar */
.search-bar { position: absolute; top: 100%; right: 0; width: 350px; padding: 15px; background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-lg); transform: translateY(-10px); opacity: 0; visibility: hidden; transition: var(--transition); }
.search-bar.active { transform: translateY(0); opacity: 1; visibility: visible; }
.search-input-wrap { display: flex; border: 1.5px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }
.search-input-wrap input { flex: 1; padding: 12px 16px; border: none; font-size: 14px; background: transparent; }
.search-input-wrap button { padding: 12px 16px; background: var(--primary); color: var(--white); }

/* Account Dropdown */
.account-dropdown-wrap { position: relative; }
.account-dropdown { position: absolute; top: calc(100% + 8px); right: 0; width: 200px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); }
.account-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.account-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; }
.account-dropdown a:hover { background: var(--secondary); color: var(--primary); }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.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); }
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav { position: fixed; top: 0; right: 0; width: 320px; height: 100vh; background: var(--light); z-index: 2000; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 80px 30px 30px; overflow-y: auto; }
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a { display: block; padding: 14px 16px; font-size: 16px; font-weight: 500; border-radius: var(--radius-sm); transition: var(--transition); }
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: var(--secondary); color: var(--primary); }

/* ===== HERO CAROUSEL ===== */
.hero { position: relative; height: 88vh; min-height: 550px; max-height: 800px; overflow: hidden; margin-top: var(--header-height); }
.hero-slides { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-slide { min-width: 100%; height: 100%; position: relative; background-size: cover; background-position: center; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.55) 0%, rgba(26,26,46,0.3) 100%); }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; z-index: 2; width: 90%; max-width: 700px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.2rem); color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-subtitle { font-family: var(--font-body); font-size: clamp(14px, 2vw, 18px); color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-dots { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.hero-dot { width: 12px; height: 12px; border-radius: var(--radius-full); border: 2px solid rgba(255,255,255,0.7); background: transparent; cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--white); transform: scale(1.2); border-color: var(--white); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: var(--radius-full); background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 22px; z-index: 3; cursor: pointer; transition: var(--transition); }
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow.prev { left: 25px; }
.hero-arrow.next { right: 25px; }

/* ===== CATEGORIES ===== */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 420px; cursor: pointer; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.category-card:hover img { transform: scale(1.1); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.1) 60%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: var(--transition); }
.category-card:hover .category-overlay { background: linear-gradient(to top, rgba(183,110,121,0.8) 0%, rgba(26,26,46,0.2) 60%, transparent 100%); }
.category-name { font-family: var(--font-heading); font-size: 24px; color: var(--white); margin-bottom: 6px; }
.category-count { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-primary); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge-new, .badge-sale, .badge-low-stock, .badge-video { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-new { background: var(--accent); color: var(--white); }
.badge-sale { background: var(--danger); color: var(--white); }
.badge-video { background: var(--primary); color: var(--white); }
.badge-low-stock { background: var(--warning); color: var(--white); animation: pulse 2s infinite; }
.wishlist-btn { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: var(--radius-full); background: var(--white); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; z-index: 2; color: var(--text-light); transition: var(--transition); }
.wishlist-btn:hover { color: var(--danger); transform: scale(1.1); }
.wishlist-btn.active { color: var(--danger); }
.wishlist-btn.active svg { fill: var(--danger); }
.quick-view-overlay { position: absolute; inset: 0; background: rgba(26,26,46,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); z-index: 1; }
.product-card:hover .quick-view-overlay { opacity: 1; }
.quick-view-text { color: var(--white); font-weight: 600; font-size: 14px; padding: 10px 24px; border: 2px solid var(--white); border-radius: var(--radius-md); backdrop-filter: blur(4px); }
.product-info { padding: 20px; }
.product-category-tag { font-size: 11px; text-transform: uppercase; color: var(--primary); letter-spacing: 1.5px; font-weight: 600; margin-bottom: 6px; }
.product-name { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.current-price { font-size: 18px; font-weight: 700; color: var(--primary); }
.original-price { font-size: 14px; color: #999; text-decoration: line-through; }
.discount-percent { font-size: 11px; background: var(--secondary); color: var(--danger); padding: 2px 8px; border-radius: 10px; font-weight: 600; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.stars { color: var(--accent); font-size: 14px; display: flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; fill: var(--accent); }
.stars svg.empty { fill: #ddd; }
.rating-count { font-size: 12px; color: #999; }
.stock-status { font-size: 12px; display: flex; align-items: center; gap: 5px; margin-top: 4px; }
.stock-dot { width: 6px; height: 6px; border-radius: var(--radius-full); }
.in-stock .stock-dot { background: var(--success); }
.in-stock { color: var(--success); }
.low-stock .stock-dot { background: var(--warning); animation: pulse 1.5s infinite; }
.low-stock { color: var(--warning); font-weight: 600; }
.out-of-stock .stock-dot { background: var(--danger); }
.out-of-stock { color: var(--danger); }
.product-actions { padding: 0 20px 20px; display: flex; gap: 10px; }
.add-to-cart-btn { flex: 1; padding: 12px 16px; background: var(--primary); color: var(--white); border-radius: var(--radius-md); font-weight: 600; font-size: 13px; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.add-to-cart-btn:hover { background: var(--dark); transform: scale(1.02); }
.add-to-cart-btn:active { transform: scale(0.98); }

/* Filter Bar */
.filter-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-bottom: 35px; }
.filter-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { padding: 9px 22px; border-radius: 25px; border: 1.5px solid var(--border-light); background: transparent; font-size: 13px; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.sort-select { padding: 10px 18px; border: 1.5px solid var(--border-light); border-radius: var(--radius-md); font-size: 13px; color: var(--text); background: var(--white); cursor: pointer; }

/* ===== SALE BANNER ===== */
.sale-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--mauve) 50%, var(--accent) 100%);
  padding: 65px 30px; text-align: center; color: var(--white);
  border-radius: var(--radius-xl); margin: 0 auto; max-width: 1200px;
  position: relative; overflow: hidden;
}
.sale-banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; border-radius: var(--radius-full); background: rgba(255,255,255,0.08); }
.sale-banner::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 300px; height: 300px; border-radius: var(--radius-full); background: rgba(255,255,255,0.06); }
.sale-banner-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; position: relative; z-index: 1; }
.sale-banner-sub { font-size: 16px; opacity: 0.9; margin-bottom: 30px; position: relative; z-index: 1; }
.countdown { display: flex; justify-content: center; gap: 18px; margin-bottom: 30px; position: relative; z-index: 1; }
.countdown-item { background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border-radius: var(--radius-md); padding: 16px 22px; min-width: 80px; text-align: center; }
.countdown-number { font-size: 32px; font-weight: 700; display: block; line-height: 1; }
.countdown-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-top: 6px; display: block; }

/* ===== BESPOKE TEASER ===== */
.bespoke-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.bespoke-image { border-radius: var(--radius-xl); overflow: hidden; height: 500px; }
.bespoke-image img { width: 100%; height: 100%; object-fit: cover; }
.bespoke-info .section-title { text-align: left; }
.bespoke-info .section-title::after { left: 0; transform: none; }
.bespoke-description { font-size: 15px; color: var(--text-light); margin: 20px 0 25px; line-height: 1.8; }
.bespoke-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.bespoke-feature { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 15px; }
.bespoke-feature-icon { width: 32px; height: 32px; border-radius: var(--radius-full); background: var(--secondary); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%; padding: 0 20px; box-sizing: border-box;
}
.testimonial-inner {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm); max-width: 700px; margin: 0 auto;
  position: relative; text-align: center;
}
.testimonial-inner::before { content: '\201C'; font-family: var(--font-heading); font-size: 80px; color: var(--secondary); position: absolute; top: 10px; left: 25px; line-height: 1; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; margin: 0 auto 15px; }
.testimonial-text { font-size: 16px; font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 18px; position: relative; z-index: 1; }
.testimonial-name { font-weight: 600; font-size: 16px; color: var(--dark); }
.testimonial-verified { font-size: 12px; color: var(--success); display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 4px; }
.testimonial-stars { color: var(--accent); margin-bottom: 12px; font-size: 16px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.testimonial-dot { width: 10px; height: 10px; border-radius: var(--radius-full); background: var(--border-light); cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--primary); transform: scale(1.2); }

/* ===== FEATURES / WHY CHOOSE US ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.feature-card { text-align: center; padding: 40px 20px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); }
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-primary); }
.feature-icon { width: 75px; height: 75px; border-radius: var(--radius-full); background: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 32px; margin: 0 auto 20px; }
.feature-title { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.feature-text { font-size: 14px; color: var(--text-light); }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-top: 55px; }
.counter-item { text-align: center; }
.counter-number { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--primary); }
.counter-label { font-size: 14px; color: var(--text-light); margin-top: 4px; }

/* ===== BLOG PREVIEW ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-image { height: 220px; overflow: hidden; position: relative; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-tag { position: absolute; top: 15px; left: 15px; background: var(--accent); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; z-index: 1; }
.blog-content { padding: 25px; }
.blog-title { font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.blog-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #999; }
.blog-read-more { color: var(--primary); font-weight: 600; font-size: 13px; }
.blog-read-more:hover { color: var(--accent); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1f3d 50%, var(--dark-lighter) 100%);
  padding: 80px 0; text-align: center; color: var(--white);
  border-radius: var(--radius-xl); margin: 0 24px;
}
.newsletter-title { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 10px; }
.newsletter-subtitle { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 35px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.newsletter-input { flex: 1; padding: 16px 22px; border: none; font-size: 14px; background: var(--white); color: var(--text); }
.newsletter-btn { padding: 16px 30px; background: var(--accent); color: var(--dark); font-weight: 700; font-size: 14px; border: none; white-space: nowrap; transition: var(--transition); }
.newsletter-btn:hover { background: var(--primary); color: var(--white); }
.newsletter-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 14px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 80px 0 0; margin-top: 80px; }
.footer::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--mauve), var(--primary)); position: relative; top: -80px; margin-bottom: -80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo { color: var(--white); font-size: 26px; margin-bottom: 12px; display: inline-block; }
.footer-brand .logo .logo-sub { color: rgba(255,255,255,0.6); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: var(--radius-full); background: rgba(255,255,255,0.08); color: var(--white); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-heading { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-icon { font-size: 16px; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 50px; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-heart { color: var(--danger); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px;
  border-radius: var(--radius-full); background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 30px; height: 30px; }
.whatsapp-tooltip { position: absolute; right: 70px; top: 50%; transform: translateY(-50%); background: var(--dark); color: var(--white); padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.whatsapp-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--dark); }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark); color: rgba(255,255,255,0.85);
  padding: 18px 24px; z-index: 9998;
  transform: translateY(100%); transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 13px; flex: 1; min-width: 250px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 100px; right: 30px; width: 45px; height: 45px;
  border-radius: var(--radius-full); background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition); z-index: 998;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--dark); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-md); font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--dark); box-shadow: var(--shadow-primary); }
.btn-secondary { background: var(--secondary); color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: var(--primary); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--secondary); }
.btn-lg { padding: 18px 40px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container { position: fixed; top: 90px; right: 20px; z-index: 11000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { padding: 14px 20px; border-radius: var(--radius-md); color: var(--white); font-size: 14px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); animation: slideInRight 0.4s ease; min-width: 280px; pointer-events: all; }
.toast-success { background: var(--success); }
.toast-error { background: var(--danger); }
.toast-info { background: var(--info); }
.toast-warning { background: var(--warning); }
.toast-close { margin-left: auto; background: none; color: var(--white); font-size: 16px; cursor: pointer; opacity: 0.8; padding: 0 4px; }
.toast-close:hover { opacity: 1; }
.toast.removing { animation: slideOutRight 0.3s ease forwards; }

/* ===== MODALS ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 5000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; pointer-events: none; transition: var(--transition); }
.modal-overlay.active { opacity: 1; visibility: visible; pointer-events: all; }
.modal { background: var(--white); border-radius: var(--radius-xl); max-width: 650px; width: 90%; max-height: 85vh; overflow-y: auto; padding: 40px; position: relative; transform: scale(0.9) translateY(20px); transition: var(--transition-slow); }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: var(--radius-full); background: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: var(--transition); }
.modal-close:hover { background: var(--primary); color: var(--white); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { font-size: 14px; font-weight: 500; margin-bottom: 6px; display: block; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-md);
  font-size: 14px; transition: var(--transition); background: var(--white); color: var(--text);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(183,110,121,0.1); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-input.error { border-color: var(--danger); }
.form-error-text { color: var(--danger); font-size: 12px; margin-top: 5px; }

/* ===== COMPARE BAR ===== */
.compare-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); padding: 15px 24px; display: flex; align-items: center; justify-content: space-between; z-index: 998; transform: translateY(100%); transition: var(--transition); }
.compare-bar.active { transform: translateY(0); }
.compare-items { display: flex; gap: 10px; align-items: center; }
.compare-thumb { width: 50px; height: 50px; border-radius: var(--radius-sm); object-fit: cover; border: 2px solid var(--border-light); }

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header { padding: 120px 0 50px; background: var(--secondary); text-align: center; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 13px; margin-top: 10px; color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }

/* ===== SKELETON LOADING ===== */
.skeleton { background: linear-gradient(90deg, var(--secondary) 25%, #f0e0e6 50%, var(--secondary) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-md); }

/* ===== BG ACCENT SECTION ===== */
.bg-accent-soft { background: var(--secondary); }

/* ===== SEARCH RESULTS ===== */
.search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); max-height: 360px; overflow-y: auto; display: none; z-index: 200; }
.search-results.active { display: block; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border-light); transition: var(--transition); }
.search-result-item:hover { background: var(--secondary); }
.search-result-item img { width: 45px; height: 55px; object-fit: cover; border-radius: var(--radius-sm); }
.search-result-item strong { display: block; font-size: 14px; color: var(--dark); }
.search-result-item span { font-size: 13px; color: var(--primary); font-weight: 600; }
.search-no-result { padding: 20px; text-align: center; color: var(--text-light); font-size: 14px; }

/* ===== POSTERS MARQUEE ===== */
.posters-marquee { background: linear-gradient(90deg, var(--dark), #2a1f3d); padding: 14px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.posters-marquee-inner { overflow: hidden; }
.posters-marquee-track { display: flex; width: max-content; animation: marqueeScroll 35s linear infinite; gap: 0; }
.posters-marquee-track:hover { animation-play-state: paused; }
.poster-slide { display: flex; align-items: center; gap: 12px; padding: 8px 28px; color: white; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.poster-slide:hover { background: rgba(255,255,255,0.08); color: var(--accent); }
.poster-slide img { width: 48px; height: 32px; object-fit: cover; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); }
.poster-slide span { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; }

/* ===== DRESS PARADE (scroll animation) ===== */
.dress-parade { position: relative; min-height: 420px; background: linear-gradient(180deg, var(--light) 0%, var(--secondary) 50%, var(--light) 100%); overflow: hidden; padding: 60px 0; }
.dress-parade::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(183,110,121,0.08) 0%, transparent 70%); pointer-events: none; }
.dress-parade-header { text-align: center; margin-bottom: 40px; position: relative; z-index: 2; }
.dress-parade-header h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--dark); margin-bottom: 8px; }
.dress-parade-header p { color: var(--text-light); font-size: 15px; }
.dress-parade-track { display: flex; justify-content: center; align-items: flex-end; gap: 20px; flex-wrap: wrap; padding: 0 20px; position: relative; z-index: 2; }
.parade-dress { width: 140px; text-align: center; transition: transform 0.15s ease-out, opacity 0.15s ease-out; will-change: transform; }
.parade-dress img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 3px solid white; animation: dressFloat 4s ease-in-out infinite; animation-delay: calc(var(--i) * 0.3s); }
.parade-dress span { display: block; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--text-light); }

/* ===== PORTFOLIO CARDS (bespoke) ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.portfolio-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.portfolio-card-body { padding: 18px; }
.portfolio-card-body h4 { font-size: 15px; margin-bottom: 6px; }
.portfolio-card-body p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.portfolio-badge { display: inline-block; background: var(--secondary); color: var(--primary); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; margin-bottom: 8px; }
@media(max-width:992px){ .portfolio-grid{grid-template-columns:repeat(2,1fr);} .parade-dress{width:110px;} }
@media(max-width:576px){ .portfolio-grid{grid-template-columns:1fr;} .parade-dress{width:90px;} }

.product-img-upload.dragover { border-color: var(--primary); background: var(--secondary); }
