/* ═══════════════════════════════════════════════════
   GlowHaven — Main Stylesheet
   Purple/Pink Gradient · Soft Luxury · Mobile First
═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --primary:       #7C5CFC;
  --primary-light: #A78BFA;
  --primary-dark:  #5B3FD4;
  --secondary:     #F472B6;
  --accent-pink:   #EC4899;
  --accent-gold:   #F59E0B;
  --accent-peach:  #FDBA74;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --light-gray:    #F8F8F8;
  --mid-gray:      #E5E7EB;
  --text-dark:     #1F2937;
  --text-mid:      #4B5563;
  --text-muted:    #9CA3AF;
  --border:        #F0F0F0;
  --radius-sm:     10px;
  --radius:        15px;
  --radius-lg:     20px;
  --radius-xl:     25px;
  --shadow-sm:     0 2px 8px rgba(124,92,252,.08);
  --shadow:        0 4px 20px rgba(124,92,252,.12);
  --shadow-lg:     0 8px 40px rgba(124,92,252,.18);
  --gradient:      linear-gradient(135deg,#7C5CFC,#F472B6);
  --gradient-soft: linear-gradient(135deg,rgba(124,92,252,.08),rgba(244,114,182,.08));
  --transition:    .25s ease;
  --font-body:     'Inter', sans-serif;
  --font-heading:  'Playfair Display', serif;
}

/* ─── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.letter-spacing { letter-spacing: .06em; }
.bg-light-gray { background: var(--light-gray); }

/* ─── TOPBAR ────────────────────────────────────── */
.topbar {
  background: var(--text-dark);
  color: #ccc;
  font-size: 12px;
  padding: 6px 0;
}
.topbar-link { color: #ccc; transition: var(--transition); }
.topbar-link:hover { color: var(--primary-light); }
.currency-badge {
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* ─── HEADER ────────────────────────────────────── */
.site-header {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  height: 68px;
  padding: 0 4px;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Search */
.search-wrap {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}
.search-wrap:focus-within {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124,92,252,.1);
}
.search-cat-select {
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  border-right: 1px solid var(--mid-gray);
  outline: none;
  min-width: 130px;
}
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  color: var(--text-dark);
  min-width: 0;
}
.search-btn {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }

/* Search Suggestions */
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid var(--border);
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--transition);
}
.suggestion-item:hover { background: var(--light-gray); }
.suggestion-img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.suggestion-name { font-weight: 500; font-size: 13px; }
.suggestion-meta { font-size: 12px; color: var(--text-muted); }
.suggestion-price { font-weight: 600; color: var(--primary); font-size: 13px; margin-left: auto; }
.suggestion-discount { background: var(--accent-pink); color: #fff; font-size: 11px; padding: 1px 6px; border-radius: 20px; margin-left: 4px; }

/* Header Actions */
.header-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: var(--transition);
  cursor: pointer;
  font-size: 18px;
  border: none;
  background: transparent;
  position: relative;
}
.header-icon-btn:hover { color: var(--primary); background: var(--gradient-soft); }
.icon-label { font-size: 11px; font-weight: 500; }
.cart-badge, .notif-badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--accent-pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* User button */
.header-user-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent; border: none;
  padding: 6px 10px; border-radius: var(--radius);
  cursor: pointer; color: var(--text-dark);
  transition: var(--transition); font-size: 14px;
}
.header-user-btn:hover { background: var(--gradient-soft); }
.user-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.user-avatar-placeholder {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}

/* User dropdown */
.user-dropdown { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 8px; min-width: 220px; }
.dropdown-user-info { padding: 8px 12px; }
.dropdown-user-info strong { display: block; font-size: 14px; }
.dropdown-user-info small { color: var(--text-muted); }
.user-dropdown .dropdown-item { border-radius: 8px; padding: 8px 12px; font-size: 13px; }
.user-dropdown .dropdown-item:hover { background: var(--gradient-soft); color: var(--primary); }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex; flex-direction: column; gap: 5px;
  background: transparent; border: none; padding: 6px; cursor: pointer;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: var(--transition);
}

/* ─── MAIN NAV ──────────────────────────────────── */
.main-nav {
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-list {
  display: flex; align-items: center; gap: 2px;
  list-style: none; padding: 0; margin: 0;
  flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-link-item {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px; font-size: 14px; font-weight: 500;
  color: var(--text-mid); white-space: nowrap;
  transition: var(--transition); border-radius: var(--radius-sm);
  position: relative;
}
.nav-link-item:hover, .nav-link-item.active { color: var(--primary); }
.nav-link-item.active::after {
  content: ''; position: absolute; bottom: -1px; left: 14px; right: 14px;
  height: 2px; background: var(--gradient); border-radius: 2px;
}
.nav-badge {
  background: var(--accent-pink); color: #fff;
  font-size: 10px; font-weight: 700; padding: 1px 6px;
  border-radius: 20px; margin-left: 4px;
}

/* Mega Menu */
.has-mega { position: relative; }
.mega-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px;
  min-width: 520px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition);
  border: 1px solid var(--border); z-index: 999;
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.mega-item {
  padding: 8px 12px; border-radius: 8px; font-size: 13px;
  color: var(--text-mid); transition: var(--transition);
  display: flex; align-items: center;
}
.mega-item:hover { background: var(--gradient-soft); color: var(--primary); }

/* Mobile Search Bar */
.mobile-search .search-wrap { border-radius: var(--radius-sm); }

/* ─── MOBILE SIDEBAR ────────────────────────────── */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100; opacity: 0;
  visibility: hidden; transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-sidebar {
  position: fixed; top: 0; left: 0;
  width: 300px; height: 100vh;
  background: #fff; z-index: 1200;
  transform: translateX(-100%); transition: .3s ease;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-sidebar.open { transform: translateX(0); }
.mobile-sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mobile-sidebar-header button { background: transparent; border: none; font-size: 20px; cursor: pointer; color: var(--text-mid); }
.mobile-user-info { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--gradient-soft); }
.mobile-nav-list { list-style: none; padding: 12px 0; flex: 1; }
.mobile-nav-list li a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; font-size: 14px; font-weight: 500;
  color: var(--text-mid); transition: var(--transition);
}
.mobile-nav-list li a:hover, .mobile-nav-list li a.active { color: var(--primary); background: var(--gradient-soft); }
.mobile-nav-list li a i { width: 18px; text-align: center; }
.mobile-sidebar-footer {
  padding: 16px 20px; border-top: 1px solid var(--border);
  display: flex; gap: 12px;
}
.mobile-sidebar-footer a { font-size: 20px; color: var(--text-muted); transition: var(--transition); }
.mobile-sidebar-footer a:hover { color: var(--primary); }

/* ─── SLIDE CART ────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1100; opacity: 0; visibility: hidden; transition: var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.slide-cart {
  position: fixed; top: 0; right: 0;
  width: 380px; max-width: 100vw; height: 100vh;
  background: #fff; z-index: 1200;
  transform: translateX(100%); transition: .3s ease;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.slide-cart.open { transform: translateX(0); }
.slide-cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.slide-cart-header h5 { margin: 0; font-weight: 700; }
.slide-cart-header button { background: transparent; border: none; font-size: 20px; cursor: pointer; color: var(--text-mid); }
.slide-cart-body { flex: 1; overflow-y: auto; padding: 16px; }

/* Cart Items */
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 60px; height: 60px; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.cart-item-name a { font-weight: 500; font-size: 13px; color: var(--text-dark); }
.cart-item-price { color: var(--primary); font-weight: 600; font-size: 13px; }
.cart-item-total { color: var(--primary); font-weight: 700; font-size: 14px; margin-top: 4px; }
.cart-remove { background: transparent; border: none; color: var(--text-muted); cursor: pointer; font-size: 14px; transition: var(--transition); }
.cart-remove:hover { color: #ef4444; }

.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--mid-gray); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 11px; transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.qty-val, .qty-field { font-weight: 600; font-size: 14px; min-width: 32px; text-align: center; }
.qty-field { border: 1px solid var(--mid-gray); border-radius: 8px; padding: 4px; width: 48px; }

.cart-coupon { margin: 12px 0; }
.cart-totals { padding: 12px 0; }
.cart-totals > div { margin-bottom: 6px; font-size: 14px; }
.cart-actions { display: flex; gap: 8px; margin-top: 12px; }
.might-like h6 { font-size: 13px; font-weight: 600; }

/* ─── FLOATING ACTIONS ──────────────────────────── */
.floating-actions {
  position: fixed; bottom: 24px; right: 20px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 900;
}
.fab-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: none; cursor: pointer;
  box-shadow: var(--shadow); transition: var(--transition);
  position: relative;
}
.fab-btn:hover { transform: translateY(-2px) scale(1.05); }
.fab-whatsapp { background: #25D366; color: #fff; }
.fab-cart { background: var(--primary); color: #fff; }
.fab-top { background: #fff; color: var(--primary); display: none; }
.fab-top.visible { display: flex; }
.fab-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--accent-pink); color: #fff;
  font-size: 10px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

/* ─── SECTIONS ──────────────────────────────────── */
.section-pad { padding: 50px 0; }
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700; margin: 0;
}
.section-link {
  font-size: 13px; font-weight: 600; color: var(--primary);
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}
.section-link:hover { color: var(--primary-dark); }
.ai-badge {
  background: var(--gradient); color: #fff;
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; margin-left: 8px; vertical-align: middle;
}
.fire-badge { margin-left: 4px; font-size: 1.1rem; }

/* ─── HERO ──────────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; }
.heroSwiper { width: 100%; }
.hero-slide {
  min-height: 480px;
  background: var(--gradient);
  display: flex; align-items: center;
  padding: 40px 40px;
  background-size: cover; background-position: center;
  position: relative;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, transparent 70%);
}
.hero-placeholder { background: var(--gradient) !important; }
.hero-content {
  position: relative; z-index: 2; max-width: 520px; color: #fff;
}
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3);
  padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 14px;
}
.gradient-text {
  background: linear-gradient(135deg,#fff,#F9A8D4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 16px; opacity: .9; margin-bottom: 24px; line-height: 1.6; }
.btn-hero {
  background: #fff; color: var(--primary);
  border-radius: var(--radius); padding: 12px 28px;
  font-weight: 600; font-size: 15px; border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); box-shadow: var(--shadow);
}
.btn-hero:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* Hero Nav */
.hero-prev, .hero-next {
  width: 44px !important; height: 44px !important;
  background: rgba(255,255,255,.9) !important;
  border-radius: 50% !important; color: var(--primary) !important;
  box-shadow: var(--shadow); top: 50% !important;
}
.hero-prev::after, .hero-next::after { font-size: 14px !important; font-weight: 700 !important; }
.hero-pagination { bottom: 16px !important; }
.hero-pagination .swiper-pagination-bullet { background: #fff; opacity: .6; width: 8px; height: 8px; }
.hero-pagination .swiper-pagination-bullet-active { opacity: 1; width: 24px; border-radius: 4px; }

/* ─── CATEGORIES ────────────────────────────────── */
.catSwiper { padding-bottom: 4px !important; }
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 16px; background: #fff; border-radius: var(--radius-lg);
  border: 2px solid var(--border); transition: var(--transition);
  text-decoration: none; color: var(--text-dark);
  text-align: center; cursor: pointer;
}
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--primary); }
.category-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-soft); display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  transition: var(--transition);
}
.category-card:hover .category-icon { background: var(--gradient); color: #fff; }
.category-name { font-weight: 600; font-size: 13px; }

/* ─── PROMO CARDS ───────────────────────────────── */
.promo-section { padding: 0 0 40px; }
.promo-card {
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: center; gap: 16px;
  color: #fff; min-height: 120px; position: relative; overflow: hidden;
}
.promo-flash { background: linear-gradient(135deg,#7C5CFC,#A855F7); }
.promo-shipping { background: linear-gradient(135deg,#10B981,#059669); }
.promo-new { background: linear-gradient(135deg,#F59E0B,#D97706); }
.promo-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.promo-icon { font-size: 2rem; opacity: .9; }
.promo-card h5 { margin: 0 0 4px; font-weight: 700; }
.promo-card p { margin: 0 0 10px; font-size: 13px; opacity: .9; }
.promo-countdown {
  margin-left: auto; background: rgba(0,0,0,.2);
  padding: 8px 14px; border-radius: 10px;
  font-size: 1.2rem; font-weight: 700; letter-spacing: .04em;
}

/* ─── PRODUCT CARDS ─────────────────────────────── */
.productSwiper .swiper-slide { width: 220px; }
.product-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); height: 100%;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-light); }

.product-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.06); }

/* Badges */
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.badge-discount, .badge-new, .badge-best, .badge-luxury, .badge-organic, .badge-out {
  display: inline-block; padding: 2px 8px; border-radius: 20px;
  font-size: 11px; font-weight: 700; white-space: nowrap;
}
.badge-discount { background: var(--accent-pink); color: #fff; }
.badge-new { background: #10B981; color: #fff; }
.badge-best { background: var(--accent-gold); color: #fff; }
.badge-luxury { background: linear-gradient(135deg,#92400E,#F59E0B); color: #fff; }
.badge-organic { background: #065F46; color: #fff; }
.badge-out { background: #6B7280; color: #fff; }

/* Product Actions */
.product-actions {
  position: absolute; top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; }
.product-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px; color: var(--text-mid);
  transition: var(--transition); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.product-action-btn:hover, .product-action-btn.active {
  background: var(--primary); color: #fff; transform: scale(1.1);
}
.product-action-btn.active .fa-heart { color: #fff; }

/* Cart Overlay */
.product-cart-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px; background: linear-gradient(transparent,rgba(0,0,0,.3));
  opacity: 0; transform: translateY(6px); transition: var(--transition);
}
.product-card:hover .product-cart-overlay { opacity: 1; transform: translateY(0); }
.btn-cart-overlay { border-radius: var(--radius); font-size: 13px; }

/* Card Body */
.product-card-body { padding: 14px; }
.product-rating { margin-bottom: 4px; }
.product-brand { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.product-name { font-weight: 600; font-size: 14px; margin: 4px 0 6px; line-height: 1.3; }
.product-name a { color: var(--text-dark); }
.product-name a:hover { color: var(--primary); }

/* Shades */
.product-shades { display: flex; align-items: center; gap: 3px; margin-bottom: 6px; }
.shade-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  cursor: pointer; transition: var(--transition);
}
.shade-dot:hover { transform: scale(1.2); }
.shade-more { font-size: 11px; color: var(--text-muted); font-weight: 500; }

/* Prices */
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-current, .price-main { font-weight: 700; font-size: 16px; color: var(--primary); }
.price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.price-save { font-size: 11px; color: #10B981; font-weight: 600; }

/* Star Ratings */
.star-rating { display: inline-flex; align-items: center; gap: 1px; font-size: 13px; }
.text-warning { color: #F59E0B !important; }

/* ─── BRANDS ────────────────────────────────────── */
.brandSwiper .swiper-slide { width: 160px; }
.brand-card {
  display: flex; align-items: center; justify-content: center;
  height: 80px; background: #fff; border-radius: var(--radius);
  border: 2px solid var(--border); padding: 12px;
  transition: var(--transition); cursor: pointer;
}
.brand-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-card img { max-height: 48px; max-width: 120px; object-fit: contain; filter: grayscale(40%); transition: var(--transition); }
.brand-card:hover img { filter: grayscale(0); }
.brand-name-text { font-weight: 700; color: var(--text-mid); font-size: 16px; }
.brand-page-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 16px; background: #fff; border-radius: var(--radius-lg);
  border: 2px solid var(--border); transition: var(--transition);
  text-decoration: none; color: var(--text-dark); text-align: center;
}
.brand-page-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-page-card img { max-height: 60px; max-width: 100%; object-fit: contain; }
.brand-page-name { font-weight: 700; font-size: 14px; }
.brand-initials {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
}

/* ─── BLOG ──────────────────────────────────────── */
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); height: 100%; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }
.blog-img-placeholder { aspect-ratio: 16/9; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.blog-body { padding: 18px; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.blog-title a { color: var(--text-dark); }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.blog-article-title { font-family: var(--font-heading); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; }
.blog-content { font-size: 16px; line-height: 1.8; color: var(--text-mid); }
.blog-content h2,h3,h4 { font-family: var(--font-heading); margin: 24px 0 12px; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip { background: var(--gradient-soft); color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.tag-chip:hover { background: var(--gradient); color: #fff; }
.blog-share .share-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--light-gray); color: var(--text-mid); margin-right: 6px; transition: var(--transition); font-size: 14px; }
.blog-share .share-btn:hover { background: var(--primary); color: #fff; }
.blog-sidebar .sidebar-title { font-weight: 700; font-size: 15px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block; }
.sidebar-list { list-style: none; padding: 0; }
.sidebar-list li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar-list a { font-size: 14px; color: var(--text-mid); }
.sidebar-list a:hover, .sidebar-list a.active { color: var(--primary); }
.comment-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.comment-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }

/* ─── TESTIMONIALS ──────────────────────────────── */
.testimonialSwiper { padding-bottom: 40px !important; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); margin: 6px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin: 12px 0 16px; font-style: italic; }
.testimonial-photo { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); margin-bottom: 12px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.testimonial-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* ─── INSTAGRAM GALLERY ─────────────────────────── */
.instagram-gallery { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.insta-item { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.insta-placeholder { width: 100%; height: 100%; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; }
.insta-overlay { position: absolute; inset: 0; background: rgba(124,92,252,.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ─── NEWSLETTER ────────────────────────────────── */
.footer-newsletter { background: var(--gradient); padding: 40px 0; }
.footer-newsletter h4 { color: #fff; font-family: var(--font-heading); font-size: 1.4rem; }
.footer-newsletter p { color: rgba(255,255,255,.85); }
.footer-newsletter .form-control { border-radius: var(--radius); border: none; padding: 12px 18px; }
.footer-newsletter .btn { border-radius: var(--radius); padding: 12px 28px; background: #fff; color: var(--primary); font-weight: 700; border: none; }
.footer-newsletter .btn:hover { background: var(--text-dark); color: #fff; }

/* ─── FOOTER ────────────────────────────────────── */
.footer-trust { background: #fff; padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item i { font-size: 2rem; color: var(--primary); }
.trust-item strong { display: block; font-weight: 700; font-size: 14px; }
.trust-item small { color: var(--text-muted); font-size: 12px; }
.footer-main { background: #1a1a2e; color: #bbb; padding: 50px 0 30px; }
.footer-brand .logo-text { font-size: 1.3rem; color: var(--primary-light); -webkit-text-fill-color: var(--primary-light); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: #bbb; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-heading { color: #fff; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #9CA3AF; font-size: 13px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 13px; color: #9CA3AF; }
.footer-contact i { color: var(--primary-light); margin-top: 2px; width: 14px; }
.footer-contact a { color: #9CA3AF; }
.footer-contact a:hover { color: var(--primary-light); }
.payment-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.payment-icons img { height: 24px; opacity: .7; filter: brightness(2); transition: var(--transition); }
.payment-icons img:hover { opacity: 1; }
.footer-bottom { background: #111; padding: 16px 0; }

/* ─── AUTH PAGES ────────────────────────────────── */
.auth-page { min-height: calc(100vh - 200px); display: flex; align-items: center; }
.auth-card { background: #fff; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.auth-title { font-family: var(--font-heading); font-weight: 700; }
.divider { text-align: center; position: relative; color: var(--text-muted); font-size: 13px; }
.divider::before, .divider::after { content: ''; position: absolute; top: 50%; height: 1px; width: 42%; background: var(--border); }
.divider::before { left: 0; } .divider::after { right: 0; }

/* ─── PRODUCT PAGE ──────────────────────────────── */
.product-brand-link { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); margin-bottom: 6px; display: block; }
.product-title { font-family: var(--font-heading); font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; margin-bottom: 10px; }
.product-detail-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 12px 0; }
.price-main { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.in-stock { color: #10B981; font-weight: 600; font-size: 13px; }
.out-stock { color: #ef4444; font-weight: 600; font-size: 13px; }
.variant-label { font-weight: 600; font-size: 13px; display: block; margin-bottom: 8px; }
.variant-section { margin-bottom: 14px; }
.shade-selector { display: flex; flex-wrap: wrap; gap: 6px; }
.shade-option { width: 30px; height: 30px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; transition: var(--transition); }
.shade-option.selected, .shade-option:hover { border-color: var(--primary); transform: scale(1.1); }
.size-selector { display: flex; flex-wrap: wrap; gap: 6px; }
.size-option { padding: 6px 14px; border: 2px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.size-option.selected, .size-option:hover { border-color: var(--primary); color: var(--primary); background: var(--gradient-soft); }
.qty-selector { margin-bottom: 16px; }
.qty-control { display: inline-flex; align-items: center; gap: 8px; background: var(--light-gray); border-radius: var(--radius); padding: 4px; }
.cert-badge { background: var(--light-gray); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--text-mid); }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--light-gray); color: var(--text-mid); margin-right: 6px; transition: var(--transition); font-size: 14px; }
.share-btn:hover { background: var(--primary); color: #fff; }
.product-gallery { position: sticky; top: 90px; }
.product-main-img-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.product-main-img-placeholder { aspect-ratio: 1; background: var(--gradient-soft); display: flex; align-items: center; justify-content: center; }
.product-thumb { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; border: 2px solid var(--border); cursor: pointer; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active { border-color: var(--primary); }
.tabs-line { border-bottom: 2px solid var(--border) !important; gap: 4px; }
.tabs-line .nav-link { color: var(--text-mid); font-weight: 600; padding: 12px 20px; border: none !important; border-radius: 0 !important; margin-bottom: -2px; }
.tabs-line .nav-link.active { color: var(--primary); border-bottom: 2px solid var(--primary) !important; }
.specs-table td { font-size: 13px; padding: 4px 8px; }
.review-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.rating-big { font-size: 3.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.star-input { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-input input { display: none; }
.star-input label { font-size: 1.6rem; color: var(--border); cursor: pointer; transition: var(--transition); }
.star-input input:checked ~ label, .star-input label:hover, .star-input label:hover ~ label { color: var(--accent-gold); }
.qa-item { padding: 12px 0; border-bottom: 1px solid var(--border); }
.btn-xs { padding: 2px 8px !important; font-size: 11px !important; border-radius: 6px !important; }

/* ─── CART PAGE ─────────────────────────────────── */
.cart-table-head { display: grid; grid-template-columns: 3fr 1fr 1fr 1fr auto; gap: 12px; padding: 10px 16px; font-weight: 600; font-size: 13px; color: var(--text-muted); background: var(--light-gray); border-radius: var(--radius); margin-bottom: 8px; }
.cart-row { display: grid; grid-template-columns: 3fr 1fr 1fr 1fr auto; gap: 12px; align-items: center; padding: 14px 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 8px; transition: var(--transition); }
.cart-row:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.cart-summary { border-radius: var(--radius-lg) !important; }

/* ─── CHECKOUT ──────────────────────────────────── */
.checkout-steps { display: flex; align-items: center; gap: 0; }
.step { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.step.active { color: var(--primary); }
.step span { width: 28px; height: 28px; border-radius: 50%; background: var(--mid-gray); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.step.active span { background: var(--primary); }
.step-line { flex: 1; height: 2px; background: var(--mid-gray); margin: 0 8px; }
.step-line.active { background: var(--primary); }
.checkout-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.checkout-card-title { font-weight: 700; font-size: 16px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.delivery-options { display: flex; flex-direction: column; gap: 10px; }
.delivery-option { display: flex; align-items: center; gap: 14px; padding: 14px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: var(--transition); }
.delivery-option:has(input:checked), .delivery-option.recommended:has(input:checked) { border-color: var(--primary); background: var(--gradient-soft); }
.delivery-option-info { flex: 1; }
.delivery-option-info strong { display: block; font-size: 14px; }
.delivery-option-info small { color: var(--text-muted); font-size: 12px; }
.payment-methods { display: flex; flex-direction: column; gap: 8px; }
.payment-option { display: flex; align-items: center; gap: 14px; padding: 14px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: var(--transition); }
.payment-option:has(input:checked) { border-color: var(--primary); background: var(--gradient-soft); }
.payment-option img { height: 28px; object-fit: contain; }
.payment-option strong { display: block; font-size: 14px; }
.order-summary-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); position: sticky; top: 90px; }
.saved-address { cursor: pointer; padding: 8px; border-radius: 8px; margin-bottom: 6px; }
.saved-address:hover { background: var(--gradient-soft); }

/* ─── ORDER SUCCESS ─────────────────────────────── */
.order-success-card { background: #fff; border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.success-animation { display: flex; justify-content: center; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; box-shadow: 0 8px 30px rgba(124,92,252,.35); animation: bounceIn .6s ease; }
@keyframes bounceIn { 0%{transform:scale(.3);opacity:0} 60%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
.order-info-box { background: var(--light-gray); border-radius: var(--radius); padding: 20px; }
.order-info-item { text-align: center; }
.order-info-item small { display: block; color: var(--text-muted); font-size: 12px; margin-bottom: 4px; }
.order-info-item strong { font-weight: 700; font-size: 15px; }

/* ─── ACCOUNT ───────────────────────────────────── */
.account-sidebar { background: #fff; border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--border); }
.account-user { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.account-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.account-avatar-lg { width: 72px; height: 72px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 800; }
.account-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text-mid); transition: var(--transition); margin-bottom: 2px; }
.account-nav-link:hover, .account-nav-link.active { background: var(--gradient-soft); color: var(--primary); }
.account-nav-link i { width: 16px; text-align: center; }
.membership-badge { background: var(--gradient); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; display: inline-block; }
.reward-points { font-size: 13px; font-weight: 600; color: var(--accent-gold); }
.stat-card { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); }
.stat-card i { font-size: 1.6rem; color: var(--primary); }
.stat-card strong { display: block; font-size: 1.3rem; font-weight: 800; }
.stat-card small { color: var(--text-muted); font-size: 12px; }
.order-row { border: 1px solid var(--border); }
.badge-status { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.status-pending { background: #FEF3C7; color: #92400E; }
.status-processing { background: #DBEAFE; color: #1E40AF; }
.status-shipped { background: #E0E7FF; color: #3730A3; }
.status-delivered { background: #D1FAE5; color: #065F46; }
.status-cancelled { background: #FEE2E2; color: #991B1B; }
.status-returned { background: #F3F4F6; color: #374151; }
.address-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 16px; margin-bottom: 12px; }
.address-card.default { border-color: var(--primary); border-width: 2px; }
.notif-item { border-radius: var(--radius); border: 1px solid var(--border); }

/* ─── SHOP PAGE ─────────────────────────────────── */
.filter-sidebar { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.filter-section { padding: 16px 20px; border-bottom: 1px solid var(--border); }
.filter-title { font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.shop-toolbar { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 12px 16px; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 6px; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; transition: var(--transition); color: var(--text-muted); }
.view-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.empty-state { padding: 60px 20px; }

/* ─── PAGINATION ────────────────────────────────── */
.pagination .page-link { border-radius: 8px !important; margin: 0 2px; color: var(--primary); border-color: var(--border); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.pagination .page-link:hover { background: var(--gradient-soft); border-color: var(--primary); }

/* ─── SWIPER OVERRIDES ──────────────────────────── */
.swiper-button-prev, .swiper-button-next {
  width: 38px !important; height: 38px !important;
  background: #fff !important; border-radius: 50% !important;
  box-shadow: var(--shadow) !important;
  color: var(--primary) !important;
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 13px !important; font-weight: 800 !important; }

/* ─── TOAST NOTIFICATIONS ───────────────────────── */
.toast-container { pointer-events: none; }
.toast { pointer-events: all; border-radius: var(--radius) !important; font-size: 14px; }

/* ─── QUICK VIEW MODAL ──────────────────────────── */
.modal-content { border-radius: var(--radius-xl) !important; border: none !important; }

/* ─── BUTTONS ───────────────────────────────────── */
.btn-primary { background: var(--gradient) !important; border: none !important; border-radius: var(--radius) !important; font-weight: 600 !important; transition: var(--transition) !important; }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: var(--shadow) !important; }
.btn-outline-primary { border-color: var(--primary) !important; color: var(--primary) !important; border-radius: var(--radius) !important; font-weight: 600 !important; }
.btn-outline-primary:hover { background: var(--gradient) !important; color: #fff !important; }
.btn-secondary { background: var(--text-dark) !important; border: none !important; border-radius: var(--radius) !important; font-weight: 600 !important; }
.btn-outline-secondary { border-radius: var(--radius) !important; }

/* ─── LUXURY SECTION ────────────────────────────── */
.luxury-section { background: linear-gradient(135deg,#1a1a2e,#2d1b69); }
.luxury-section .section-title { color: #fff; }
.luxury-section .section-link { color: var(--primary-light); }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 768px) {
  .hero-slide { min-height: 320px; padding: 24px 20px; }
  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 13px; display: none; }
  .section-pad { padding: 30px 0; }
  .instagram-gallery { grid-template-columns: repeat(3,1fr); }
  .checkout-steps { gap: 0; }
  .step { font-size: 11px; }
  .step span { width: 22px; height: 22px; font-size: 10px; }
  .cart-row { grid-template-columns: 1fr; }
  .cart-table-head { display: none; }
  .mega-menu { min-width: 280px; }
  .mega-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 576px) {
  .header-inner { height: 60px; }
  .logo-text { font-size: 1.2rem; }
  .hero-slide { min-height: 260px; padding: 20px; }
  .productSwiper .swiper-slide { width: 180px; }
  .catSwiper .swiper-slide { width: 100px; }
  .category-icon { width: 50px; height: 50px; font-size: 20px; }
  .instagram-gallery { grid-template-columns: repeat(2,1fr); gap: 4px; }
  .footer-newsletter h4 { font-size: 1.1rem; }
}

/* ─── ANIMATIONS ────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }

/* ─── SKELETON LOADER ───────────────────────────── */
.skeleton { background: linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
