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

:root {
  --primary: #00B2A9;
  --primary-dark: #008F87;
  --primary-light: #E8F8F7;
  --accent: #FF6B00;
  --accent-dark: #CC5500;
  --dark: #1C1C1C;
  --gray-900: #2D2D2D;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #CCCCCC;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --success: #22C55E;
  --warning: #EAB308;
  --danger: #EF4444;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== ICONS ===== */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  color: inherit;
}
.icon-xs { width: 12px; height: 12px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 40px; height: 40px; }
.icon-2xl { width: 64px; height: 64px; }
.icon-3xl { width: 80px; height: 80px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--gray-900); }
.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1; }
.logo-text .grab { color: var(--primary); }
.logo-text .gains { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--primary); background: var(--primary-light); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 60%; }

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

.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
}
.header-icon-btn:hover { background: var(--gray-100); color: var(--primary); }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  animation: badgeBounce 0.4s ease;
}

@keyframes badgeBounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.lang-toggle {
  padding: 6px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-toggle:hover { background: var(--primary); color: var(--white); }

/* User dropdown */
.user-dropdown-wrap { position: relative; }
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.user-dropdown-wrap:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
}
.user-dropdown a:hover { background: var(--gray-100); color: var(--primary); }
.user-dropdown-divider { height: 1px; background: var(--gray-100); margin: 4px 0; }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-links a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  color: var(--dark);
}

/* Flash Messages */
.flash-container { position: fixed; top: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.flash {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.flash-success { background: #ECFDF5; color: #166534; border-left: 4px solid var(--success); }
.flash-error { background: #FEF2F2; color: #991B1B; border-left: 4px solid var(--danger); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 92vh;
  background: radial-gradient(1200px 600px at 85% 20%, rgba(0,178,169,0.22), transparent 60%),
              radial-gradient(900px 500px at 15% 80%, rgba(255,107,0,0.18), transparent 55%),
              linear-gradient(135deg, #0F1115 0%, #1C1C1C 45%, #0F2B29 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero-premium { padding: 72px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 26, 26, 0.7);
  border: 1px solid rgba(93, 217, 211, 0.35);
  color: #B7F2EE;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  line-height: 1.8;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.metric-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.metric-value { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #E8FFFD; }
.metric-label { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.6px; }

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding: 14px;
}
.hero-media-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(440px, 100%);
  padding: 0;
}
.hero-portrait-frame {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: #0F1316;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 48px rgba(0,0,0,0.4);
  text-decoration: none;
}
.hero-portrait-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, rgba(15,20,24,0.8), rgba(10,14,18,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-portrait-placeholder { color: rgba(255,255,255,0.35); }
.hero-portrait-info {
  padding: 12px 16px 14px;
  display: grid;
  gap: 4px;
  color: #fff;
  background: #111417;
}
.hero-portrait-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(93,217,211,0.7);
  font-weight: 700;
}
.hero-portrait-name { font-size: 16px; font-weight: 700; }
.hero-portrait-price { font-size: 15px; font-weight: 700; color: #5DD9D3; }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.orders-section { min-height: calc(100vh - 360px); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header p { color: var(--gray-500); font-size: 16px; max-width: 500px; margin: 0 auto; }
.section-header .accent { color: var(--accent); }
.section-header .primary { color: var(--primary); }
.premium-header h2 { letter-spacing: 0.2px; }
.premium-header p { max-width: 560px; }
.section-cta { text-align: center; margin-top: 40px; }

/* ===== PREMIUM COLLECTIONS ===== */
.premium-collections { padding-top: 40px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.collection-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}
.collection-card-men .collection-bg {
  background: linear-gradient(135deg, #111827 0%, #0F172A 50%, #1F2937 100%);
}
.collection-card-women .collection-bg {
  background: linear-gradient(135deg, #2B1217 0%, #3B131B 55%, #5B1E2A 100%);
}
.collection-bg {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.collection-card:hover .collection-bg { transform: scale(1.04); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 65%);
}
.collection-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: var(--white);
}
.collection-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 14px;
}
.collection-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 10px;
}
.collection-content p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 18px; }
.collection-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* ===== PREMIUM ASSURANCE ===== */
.premium-assurance { background: var(--gray-100); }
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.assurance-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}
.assurance-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 16px;
}
.assurance-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.assurance-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===== NEWSLETTER PREMIUM ===== */
.premium-newsletter { background: linear-gradient(135deg, #0E1115 0%, #1D1F22 100%); }
.premium-newsletter h2 { font-family: var(--font-display); }
.premium-newsletter p { max-width: 560px; margin: 0 auto 24px; }

/* ===== CATEGORY CARDS ===== */
.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  text-decoration: none;
}
.category-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.category-card-men .category-card-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.category-card-women .category-card-bg {
  background: linear-gradient(135deg, #2d1515 0%, #3d1a1a 50%, #5c2626 100%);
}
.category-card:hover .category-card-bg { transform: scale(1.05); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.category-card-deco {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 80px;
  opacity: 0.15;
  line-height: 1;
}
.category-card-deco .icon { width: 80px; height: 80px; }
.category-card-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}
.category-card-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.category-card-women .category-card-tag { background: var(--accent); }
.category-card-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.category-card-content p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }

/* ===== PRODUCT GRID ===== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }

.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8F8F7 0%, #D0F0EE 50%, #B8E8E6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-placeholder svg { opacity: 0.4; }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--danger);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-badge-new { background: var(--primary); }

.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  gap: 8px;
}
.product-card:hover .product-card-actions { transform: translateY(0); }

.product-card-info { padding: 16px; }
.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-prices { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-price { font-size: 16px; font-weight: 700; color: var(--primary); }
.product-original-price { font-size: 13px; color: var(--gray-500); text-decoration: line-through; }
.product-discount { font-size: 12px; font-weight: 600; color: var(--success); }

/* ===== SHOP PAGE ===== */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }

.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.filter-sidebar h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.filter-group { margin-bottom: 24px; }
.filter-group h4 { font-size: 13px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; font-size: 14px; }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.filter-option input[type="radio"] { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }

.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.shop-results { font-size: 14px; color: var(--gray-500); }
.shop-sort select {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
}
.shop-sort select:focus { border-color: var(--primary); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-500); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--gray-300); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.product-gallery { position: sticky; top: 90px; }
.product-main-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  margin-bottom: 16px;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 12px; overflow-x: auto; }
.product-thumb {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.product-gender-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.product-pricing { margin-bottom: 28px; }
.product-pricing .price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.product-pricing .original { font-size: 1.1rem; color: var(--gray-500); text-decoration: line-through; margin-left: 10px; }
.product-pricing .discount { font-size: 14px; font-weight: 700; color: var(--success); margin-left: 10px; }

.selector-group { margin-bottom: 24px; }
.selector-label { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-btn {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  font-family: var(--font-primary);
  font-weight: 500;
}
.size-btn:hover { border-color: var(--primary); color: var(--primary); }
.size-btn.selected { background: var(--primary); color: var(--white); border-color: var(--primary); }
.color-options { display: flex; gap: 12px; flex-wrap: wrap; }
.color-btn {
  padding: 6px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  font-family: var(--font-primary);
}
.color-btn:hover { border-color: var(--primary); }
.color-btn.selected { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }

.quantity-control { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.qty-btn:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.qty-btn:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.qty-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.qty-input {
  width: 60px;
  height: 40px;
  border: 1.5px solid var(--gray-300);
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 600;
  outline: none;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--primary-dark);
}

/* ===== CART PAGE ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}
.cart-item-image {
  width: 100px;
  height: 125px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.cart-item-meta { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--primary); }
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  font-size: 18px;
  line-height: 1;
}
.cart-remove-btn:hover { color: var(--danger); }

.order-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}
.order-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 700; border-top: 2px solid var(--gray-100); margin-top: 8px; padding-top: 16px; color: var(--primary); }
.free-delivery { color: var(--success); font-weight: 600; }
.cod-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #92400E;
  margin: 16px 0;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--gray-700); }
.form-label .required { color: var(--danger); margin-left: 2px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,178,169,0.1); }
.form-input::placeholder { color: var(--gray-300); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,178,169,0.1); }
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-primary);
  color: var(--dark);
  resize: vertical;
  min-height: 100px;
  outline: none;
  transition: var(--transition);
}
.form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,178,169,0.1); }

/* ===== WHY GRABGAINS ===== */
.why-section { background: var(--gray-100); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
  font-size: 28px;
}
.why-icon .icon { width: 28px; height: 28px; }
.why-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.about-hero h1 { font-family: var(--font-display); font-size: 3rem; margin-bottom: 16px; }
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-feature-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--primary);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
}
.about-feature-icon .icon { width: 28px; height: 28px; }
.about-feature-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--primary); }
.about-feature-card p { font-size: 13px; color: var(--gray-700); }

/* ===== ORDER SUCCESS ===== */
.success-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px 0; }
.success-card { background: var(--white); border-radius: var(--radius-lg); padding: 60px 48px; text-align: center; box-shadow: var(--shadow-lg); max-width: 520px; width: 100%; }
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--success);
  font-size: 36px;
}
.success-icon .icon { width: 36px; height: 36px; }
.success-card h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; }
.success-card p { color: var(--gray-500); margin-bottom: 8px; }
.order-number-display {
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  display: inline-block;
  margin: 16px 0 24px;
  letter-spacing: 2px;
}

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

/* ===== STATUS BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.badge-pending { background: #FFFBEB; color: #92400E; }
.badge-confirmed { background: #EFF6FF; color: #1D4ED8; }
.badge-processing { background: #F5F3FF; color: #5B21B6; }
.badge-shipped { background: #ECFDF5; color: #065F46; }
.badge-delivered { background: #F0FDF4; color: #166534; }
.badge-cancelled { background: #FEF2F2; color: #991B1B; }

/* ===== ORDERS LIST ===== */
.orders-list { display: flex; flex-direction: column; gap: 16px; }
.order-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  transition: var(--transition);
}
.order-card:hover { box-shadow: var(--shadow-md); }
.order-card-num { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.order-card-date { font-size: 13px; color: var(--gray-500); }
.order-card-items { font-size: 13px; color: var(--gray-700); margin-top: 6px; }
.order-card-total { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; text-align: right; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { font-size: 24px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-top: 12px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== 404 PAGE ===== */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page h1 { font-family: var(--font-display); font-size: 8rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 16px; }
.error-page h2 { font-size: 1.5rem; margin-bottom: 12px; }
.error-page p { color: var(--gray-500); margin-bottom: 32px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.newsletter-section h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 8px; }
.newsletter-section p { opacity: 0.9; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-primary);
  outline: none;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; opacity: 0.3; }
.empty-state-icon .icon { width: 80px; height: 80px; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; }
  .collection-grid { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero { min-height: auto; }
  .hero-premium { padding: 90px 0 70px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-media { min-height: 320px; }
  .hero-metrics { grid-template-columns: 1fr; }

  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 280px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .filter-sidebar.open { display: block; position: fixed; inset: 0; z-index: 999; overflow-y: auto; border-radius: 0; top: 70px; }

  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }

  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 48px 0; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .product-grid { gap: 10px; }
  .product-card-info { padding: 12px; }
  .product-name { font-size: 13px; }
  .why-grid { grid-template-columns: 1fr; }
  .success-card { padding: 36px 24px; }
}
