/* Trendsabz - Main Stylesheet */
/* Exact copy of EebaStore Design System */

/* ================================
   CSS CUSTOM PROPERTIES (Variables)
   ================================ */
:root {
  /* Visual System Colors - Exact EebaStore Match */
  --bg-1: #F6F4F2;
  --bg-2: #FFFFFF;
  --text-1: #0E0E0E;
  --text-2: #4A4A4A;
  --accent-1: #DCC9BA;
  --cta-bg: #222222;
  --badge: #E46A4E;
  
  /* Extended Palette */
  --gold: #DCC9BA;
  --gold-light: #E8DDD4;
  --gold-dark: #C4B0A0;
  --black: #0E0E0E;
  --dark-gray: #222222;
  --mid-gray: #4A4A4A;
  --light-gray: #9A9A9A;
  --off-white: #F6F4F2;
  --white: #FFFFFF;
  --error: #E46A4E;
  --success: #22C55E;
  
  /* Typography */
  --font-hero: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  
  /* Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  overscroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-1);
  background-color: var(--bg-1);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================================
   TYPOGRAPHY - EebaStore Exact
   ================================ */
.font-hero {
  font-family: var(--font-hero);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}
.font-body { font-family: var(--font-body); font-size: 14px; line-height: 1.6; }

h1, h2, h3 { font-family: var(--font-hero); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
h1 { font-size: 48px; line-height: 1.1; }
h2 { font-size: 36px; line-height: 1.2; }
h3 { font-size: 24px; line-height: 1.3; }

.text-text-1 { color: var(--text-1); }
.text-text-2 { color: var(--text-2); }

/* ================================
   LAYOUT
   ================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}
@media (min-width: 640px) {
  .container { padding-left: var(--space-6); padding-right: var(--space-6); }
}
@media (min-width: 1024px) {
  .container { padding-left: var(--space-8); padding-right: var(--space-8); }
}

/* ================================
   NAVBAR - EebaStore Style
   ================================ */
.navbar {
  background-color: var(--bg-1);
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar-logo {
  font-family: var(--font-hero);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-1);
  text-transform: uppercase;
}
.navbar-links {
  display: none;
}
@media (min-width: 768px) {
  .navbar-links { display: flex; align-items: center; gap: var(--space-8); }
}
.navbar-link {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.navbar-link:hover { color: var(--text-1); }
.navbar-actions { display: flex; align-items: center; gap: var(--space-4); }
.navbar-icon {
  position: relative;
  padding: var(--space-2);
  color: var(--text-1);
  transition: transform 0.2s ease;
}
.navbar-icon:hover { transform: scale(1.1); }
.navbar-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--badge);
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-2);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-1);
}
@media (min-width: 768px) { .menu-toggle { display: none; } }

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/hero-fashion.jpg');
  background-size: cover;
  background-position: center;
}
.hero-content { text-align: center; color: #FFFFFF; max-width: 600px; padding: var(--space-8); }
.hero-title {
  font-family: var(--font-hero);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  margin-bottom: var(--space-8);
  opacity: 0.9;
}
.hero-buttons { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ================================
   BUTTONS - EebaStore Exact
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.btn-primary {
  background-color: var(--cta-bg);
  color: #FFFFFF;
  border: 1px solid var(--cta-bg);
}
.btn-primary:hover { background-color: #374151; transform: scale(1.05); }
.btn-outline {
  background-color: transparent;
  color: var(--text-1);
  border: 1px solid var(--accent-1);
}
.btn-outline:hover { background-color: rgba(220,201,186,0.1); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ================================
   CARDS - EebaStore Exact
   ================================ */
.card {
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* Product Card */
.product-card {
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.product-card:hover .product-image img { transform: scale(1.05); }

.product-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: var(--bg-1);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-info {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.product-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-family: var(--font-hero);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
}
.product-original-price {
  font-size: 14px;
  color: var(--text-2);
  text-decoration: line-through;
  margin-left: var(--space-2);
}

/* Category Card */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-6);
}
.category-title {
  font-family: var(--font-hero);
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================
   PRODUCT GRID
   ================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
}

/* ================================
   BADGES
   ================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-sale { background-color: #DC2626; color: #FFFFFF; }
.badge-gold { background-color: var(--accent-1); color: var(--text-1); }
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
}
.status-pending { background-color: #FEF3C7; color: #92400E; }
.status-confirmed { background-color: #DBEAFE; color: #1E40AF; }
.status-shipped { background-color: #E0E7FF; color: #3730A3; }
.status-delivered { background-color: #D1FAE5; color: #065F46; }
.status-cancelled { background-color: #FEE2E2; color: #991B1B; }

/* ================================
   FORMS
   ================================ */
.form-group { margin-bottom: var(--space-4); }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: var(--space-2);
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-1);
  background-color: #FFFFFF;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 2px rgba(220,201,186,0.5);
}
.form-input::placeholder { color: var(--light-gray); }

.form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-1);
  background-color: #FFFFFF;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-select:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 2px rgba(220,201,186,0.5);
}

/* ================================
   SECTIONS
   ================================ */
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-1);
  margin-bottom: var(--space-2);
}
.section-title {
  font-family: var(--font-hero);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--space-3);
}
.section-desc {
  font-size: 16px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background-color: var(--bg-1);
  border-top: 1px solid var(--accent-1);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand {
  font-family: var(--font-hero);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-1);
  margin-bottom: var(--space-4);
}
.footer-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 300px;
}
.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--text-1); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--accent-1);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-copyright { font-size: 14px; color: var(--text-2); }

/* ================================
   GRID & FLEX UTILITIES
   ================================ */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }

/* ================================
   SPACING UTILITIES
   ================================ */
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }

.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.ml-2 { margin-left: var(--space-2); }
.ml-3 { margin-left: var(--space-3); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ================================
   OTHER UTILITIES
   ================================ */
.hidden { display: none !important; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-7xl { max-width: 80rem; }
.text-center { text-align: center; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-accent-1 { border-color: var(--accent-1); }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
  border-radius: var(--radius-lg);
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--dark-gray);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 100;
  animation: slideIn 0.3s ease;
}
.toast-success { border-left: 4px solid var(--success); }
.toast-error { border-left: 4px solid var(--error); }
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}
.pagination-btn {
  padding: 8px 16px;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-1);
  background: #FFFFFF;
  transition: all 0.2s ease;
}
.pagination-btn:hover { background-color: var(--accent-1); }
.pagination-btn.active { background-color: var(--cta-bg); color: #FFFFFF; border-color: var(--cta-bg); }

/* Tabs */
.tabs { display: flex; border-bottom: 1px solid var(--accent-1); gap: var(--space-6); }
.tab {
  padding: var(--space-3) var(--space-4);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab:hover { color: var(--text-1); }
.tab.active { color: var(--text-1); border-bottom-color: var(--accent-1); }
.tab-content { display: none; padding-top: var(--space-6); }
.tab-content.active { display: block; }

/* Luxury Women's Fashion E-Commerce - Following EebaStore Design System */

/* ================================
   CSS CUSTOM PROPERTIES (Variables)
   ================================ */
:root {
  /* Visual System Colors - Matching EebaStore */
  --bg-1: #F6F4F2;
  --bg-2: #FFFFFF;
  --text-1: #0E0E0E;
  --text-2: #4A4A4A;
  --accent-1: #DCC9BA;
  --cta-bg: #222222;
  --badge: #E46A4E;
  
  /* Extended Palette */
  --gold: #DCC9BA;
  --gold-light: #E8DDD4;
  --gold-dark: #B8A090;
  --black: #0E0E0E;
  --dark-gray: #222222;
  --mid-gray: #4A4A4A;
  --light-gray: #9A9A9A;
  --off-white: #F6F4F2;
  --white: #FFFFFF;
  --error: #E46A4E;
  --success: #1A6B3A;
  
  /* Typography */
  --font-hero: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Inter', 'Poppins', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-1);
  background-color: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ================================
   TYPOGRAPHY
   ================================ */
.font-hero {
  font-family: var(--font-hero);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }
.text-4xl { font-size: 2.5rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ================================
   LAYOUT UTILITIES
   ================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 960px;
}

.container-wide {
  max-width: 1440px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }
.gap-4 { gap: var(--space-lg); }
.gap-6 { gap: var(--space-xl); }
.gap-8 { gap: var(--space-2xl); }

.grid {
  display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
.grid-cols-7 { grid-template-columns: repeat(7, 1fr); }
.grid-cols-8 { grid-template-columns: repeat(8, 1fr); }
.grid-cols-9 { grid-template-columns: repeat(9, 1fr); }
.grid-cols-10 { grid-template-columns: repeat(10, 1fr); }
.grid-cols-11 { grid-template-columns: repeat(11, 1fr); }
.grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-span-9 { grid-column: span 9; }
.col-span-10 { grid-column: span 10; }
.col-span-11 { grid-column: span 11; }
.col-span-12 { grid-column: span 12; }

/* Responsive grid classes */
@media (min-width: 1024px) {
  .lg\:col-span-1 { grid-column: span 1; }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:col-span-3 { grid-column: span 3; }
  .lg\:col-span-4 { grid-column: span 4; }
  .lg\:col-span-5 { grid-column: span 5; }
  .lg\:col-span-6 { grid-column: span 6; }
  .lg\:col-span-7 { grid-column: span 7; }
  .lg\:col-span-8 { grid-column: span 8; }
  .lg\:col-span-9 { grid-column: span 9; }
  .lg\:col-span-10 { grid-column: span 10; }
  .lg\:col-span-11 { grid-column: span 11; }
  .lg\:col-span-12 { grid-column: span 12; }
}

/* ================================
   SPACING UTILITIES
   ================================ */
.m-0 { margin: 0; }
.m-1 { margin: var(--space-xs); }
.m-2 { margin: var(--space-sm); }
.m-3 { margin: var(--space-md); }
.m-4 { margin: var(--space-lg); }
.m-6 { margin: var(--space-xl); }
.m-8 { margin: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-6 { margin-top: var(--space-xl); }
.mt-8 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-6 { margin-bottom: var(--space-xl); }
.mb-8 { margin-bottom: var(--space-2xl); }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: var(--space-xs); }
.ml-2 { margin-left: var(--space-sm); }
.ml-3 { margin-left: var(--space-md); }
.ml-4 { margin-left: var(--space-lg); }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: var(--space-xs); }
.mr-2 { margin-right: var(--space-sm); }
.mr-3 { margin-right: var(--space-md); }
.mr-4 { margin-right: var(--space-lg); }
.mr-auto { margin-right: auto; }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-6 { padding: var(--space-xl); }
.p-8 { padding: var(--space-2xl); }

.px-2 { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-3 { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-4 { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-6 { padding-left: var(--space-xl); padding-right: var(--space-xl); }

.py-1 { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-2 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-3 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-4 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-6 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-8 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-12 { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

/* ================================
   COLOR UTILITIES
   ================================ */
.bg-bg-1 { background-color: var(--bg-1); }
.bg-bg-2 { background-color: var(--bg-2); }
.bg-gold { background-color: var(--gold); }
.bg-gold-light { background-color: var(--gold-light); }
.bg-black { background-color: var(--black); }
.bg-dark { background-color: var(--dark-gray); }
.bg-white { background-color: var(--white); }

.text-text-1 { color: var(--text-1); }
.text-text-2 { color: var(--text-2); }
.text-gold { color: var(--gold); }
.text-gold-dark { color: var(--gold-dark); }
.text-white { color: var(--white); }
.text-error { color: var(--error); }
.text-success { color: var(--success); }

/* ================================
   COMPONENTS - BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--cta-bg);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--gold);
  color: var(--text-1);
}

.btn-secondary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--text-1);
  border: 2px solid var(--gold-dark);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-1);
  border: 2px solid var(--text-1);
}

.btn-outline:hover {
  background-color: var(--text-1);
  color: var(--white);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-dark);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--text-1);
}

.btn-white {
  background-color: var(--white);
  color: var(--text-1);
}

.btn-white:hover {
  background-color: var(--off-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 16px;
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ================================
   COMPONENTS - CARDS
   ================================ */
.card {
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: var(--space-lg);
}

.card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--text-1);
}

.card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
}

.card-original-price {
  font-size: 14px;
  color: var(--light-gray);
  text-decoration: line-through;
  margin-left: var(--space-sm);
}

/* ================================
   COMPONENTS - FORMS
   ================================ */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--text-1);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: 14px;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-md);
  background-color: var(--bg-2);
  color: var(--text-1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(220, 201, 186, 0.2);
}

.form-input::placeholder {
  color: var(--light-gray);
}

.form-error {
  color: var(--error);
  font-size: 12px;
  margin-top: var(--space-xs);
}

.form-hint {
  color: var(--text-2);
  font-size: 12px;
  margin-top: var(--space-xs);
}

/* ================================
   COMPONENTS - BADGES
   ================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
}

.badge-gold {
  background-color: var(--gold);
  color: var(--text-1);
}

.badge-dark {
  background-color: var(--dark-gray);
  color: var(--white);
}

.badge-sale {
  background-color: var(--error);
  color: var(--white);
}

.badge-new {
  background-color: var(--success);
  color: var(--white);
}

/* ================================
   COMPONENTS - ALERTS
   ================================ */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.alert-error {
  background-color: rgba(228, 106, 78, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

.alert-success {
  background-color: rgba(26, 107, 58, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.alert-info {
  background-color: rgba(220, 201, 186, 0.3);
  border: 1px solid var(--gold);
  color: var(--text-1);
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-1);
  border-bottom: 1px solid var(--accent-1);
}

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

.navbar-logo {
  font-family: var(--font-hero);
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--text-1);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-1);
  transition: color 0.3s ease;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar-icon {
  position: relative;
  padding: var(--space-sm);
  color: var(--text-1);
  transition: color 0.3s ease;
}

.navbar-icon:hover {
  color: var(--gold-dark);
}

.navbar-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background-color: var(--error);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Header - Clean circular icon buttons */
.mobile-menu-header {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--accent-1);
  margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-lg);
  background-color: var(--bg-2);
}

.navbar-links.active .mobile-menu-header {
  display: grid;
}

/* Mobile Menu Action Buttons - Elegant horizontal pill buttons */
.mobile-menu-actions {
  display: none;
  flex-direction: row;
  justify-content: center;
  gap: var(--space-lg);
  padding-top: var(--space-xl);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--accent-1);
}

.navbar-links.active .mobile-menu-actions {
  display: flex;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-1);
  background-color: var(--bg-1);
  border: 1px solid var(--accent-1);
  border-radius: 100px;
  transition: all 0.2s ease;
  position: relative;
  min-width: auto;
  justify-content: center;
}

.mobile-menu-btn:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-btn svg {
  width: 18px;
  height: 18px;
}

/* Smaller buttons on very small screens */
@media (max-width: 380px) {
  .mobile-menu-btn {
    padding: 6px 12px;
    font-size: 12px;
    gap: 4px;
  }
  
  .mobile-menu-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .mobile-menu-actions {
    gap: var(--space-sm);
  }
}

/* Cart badge on mobile menu */
.mobile-menu-btn .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background-color: var(--error);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cart - left column */
.mobile-menu-header > a:first-child {
  justify-self: start;
}

/* Close button - center column, larger with rotation hover */
.mobile-menu-close {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background-color: var(--bg-1);
  color: var(--text-1);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
  border: 1px solid var(--accent-1);
}

.mobile-menu-close:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-dark);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

/* Profile/Login - right column */
.mobile-menu-header > div:last-of-type,
.mobile-menu-header > .mobile-header-item {
  justify-self: end;
}

/* Desktop icons - visible only on desktop */
.navbar-icon-desktop {
  display: flex;
}

/* Mobile & Tablet styles (up to 1023px) */
@media (max-width: 1023px) {
  .navbar-icon-desktop {
    display: none !important;
  }
  
  .navbar-actions {
    display: none;
  }
  
  .navbar-links {
    padding-top: 0;
  }
}

/* Desktop styles (1024px and up) */
@media (min-width: 1024px) {
  .mobile-menu-header,
  .mobile-menu-close,
  .mobile-menu-actions {
    display: none !important;
  }
  
  .navbar-actions {
    display: flex;
  }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-1);
  transition: all 0.3s ease;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  font-family: var(--font-hero);
  font-size: 24px;
  margin-bottom: var(--space-md);
}

.footer-desc {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: var(--light-gray);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

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

.footer-copyright {
  color: var(--light-gray);
  font-size: 14px;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-1);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: var(--space-lg);
  animation: slideUp 0.8s ease-out forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-2);
  margin-bottom: var(--space-xl);
  animation: slideUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  animation: slideUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================
   PRODUCT GRID
   ================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================================
   PRODUCT CARD SPECIFIC
   ================================ */
.product-card {
  position: relative;
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.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.05);
}

.product-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
}

.product-card-actions {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: var(--space-sm);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

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

.product-card-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.product-card-action-btn:hover {
  background-color: var(--gold);
  color: var(--text-1);
}

.product-card-content {
  padding: var(--space-lg);
}

.product-card-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: var(--space-xs);
}

.product-card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--text-1);
}

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

.product-card-price {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.product-card-current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
}

.product-card-original-price {
  font-size: 14px;
  color: var(--light-gray);
  text-decoration: line-through;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-slideUp {
  animation: slideUp 0.5s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ================================
   LOADING STATES
   ================================ */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--off-white) 25%,
    var(--gold-light) 50%,
    var(--off-white) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

/* Detailed Product Card Skeleton */
.product-card-skeleton {
  position: relative;
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.product-card-skeleton .skeleton-image {
  position: relative;
  height: 12rem;
  background: linear-gradient(
    90deg,
    var(--off-white) 25%,
    var(--gold-light) 50%,
    var(--off-white) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@media (min-width: 640px) {
  .product-card-skeleton .skeleton-image {
    height: 14rem;
  }
}

@media (min-width: 1024px) {
  .product-card-skeleton .skeleton-image {
    height: 15rem;
  }
}

@media (min-width: 1280px) {
  .product-card-skeleton .skeleton-image {
    height: 16rem;
  }
}

.product-card-skeleton .skeleton-content {
  padding: 1rem;
}

.product-card-skeleton .skeleton-badges-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  min-height: 32px;
}

.product-card-skeleton .skeleton-badge-new {
  width: 40px;
  height: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.product-card-skeleton .skeleton-badge-discount {
  width: 60px;
  height: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    rgba(228, 106, 78, 0.3) 25%,
    rgba(228, 106, 78, 0.5) 50%,
    rgba(228, 106, 78, 0.3) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.product-card-skeleton .skeleton-heart-btn {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    #333 25%,
    #555 50%,
    #333 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.product-card-skeleton .skeleton-title {
  width: 100%;
  height: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    var(--off-white) 25%,
    var(--gold-light) 50%,
    var(--off-white) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 0.5rem;
}

.product-card-skeleton .skeleton-category {
  width: 80px;
  height: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 0.75rem;
}

.product-card-skeleton .skeleton-price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.product-card-skeleton .skeleton-current-price {
  width: 60px;
  height: 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    var(--off-white) 25%,
    var(--gold-light) 50%,
    var(--off-white) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.product-card-skeleton .skeleton-original-price {
  width: 50px;
  height: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    90deg,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.product-card-skeleton .skeleton-button {
  width: 100%;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(
    90deg,
    #333 25%,
    #555 50%,
    #333 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ================================
   MODAL
   ================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal {
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--accent-1);
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-close {
  padding: var(--space-sm);
  color: var(--text-2);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-1);
}

.modal-body {
  padding: var(--space-lg);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-top: 1px solid var(--accent-1);
}

/* ================================
   TABS
   ================================ */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--accent-1);
  margin-bottom: var(--space-lg);
}

.tab {
  padding: var(--space-md) var(--space-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab:hover {
  color: var(--text-1);
}

.tab.active {
  color: var(--text-1);
  border-bottom-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ================================
   PAGINATION
   ================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background-color: var(--gold-light);
}

.pagination-btn.active {
  background-color: var(--cta-bg);
  border-color: var(--cta-bg);
  color: var(--white);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-image {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .navbar-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-1);
    flex-direction: column;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--accent-1);
    gap: var(--space-md);
  }
  
  .navbar-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-3xl) 0;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-image {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .grid-cols-5,
  .grid-cols-6 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: var(--space-sm) var(--space-lg);
    font-size: 14px;
  }
}

/* ================================
   EEBA DESIGN SYSTEM ADDITIONS
   ================================ */

/* Layout Utilities - Matching eeba */
.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Animations from eeba */
@keyframes slideUpLeft {
  from {
    opacity: 0;
    transform: translateY(30px) translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 201, 186, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(220, 201, 186, 0);
  }
}

.animate-slideUpLeft {
  animation: slideUpLeft 0.8s ease-out forwards;
}

.animate-slideUpRight {
  animation: slideUpRight 0.8s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Hero Section - Eeba Style 2-Column Layout */
.hero-section {
  background-color: var(--bg-2);
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-text-col {
  order: 2;
  animation: slideUpLeft 0.8s ease-out forwards;
}

@media (min-width: 1024px) {
  .hero-text-col {
    order: 1;
  }
}

.hero-carousel-col {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUpRight 0.8s ease-out forwards;
}

@media (min-width: 1024px) {
  .hero-carousel-col {
    order: 2;
  }
}

.hero-title-main {
  font-family: var(--font-hero);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text-1);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.hero-carousel-wrapper {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}

.hero-slide-card {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-swiper-pagination {
  bottom: 10px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  background: var(--gold-dark);
  opacity: 0.5;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* Collections Swiper */
.collections-swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.collection-slide {
  width: 280px;
}

@media (min-width: 768px) {
  .collection-slide {
    width: 320px;
  }
}

.collection-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.collection-title {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.collection-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

.collections-pagination {
  bottom: 0 !important;
}

.collections-pagination .swiper-pagination-bullet {
  background: var(--gold-dark);
  opacity: 0.5;
}

.collections-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* Swiper Coverflow Effect */
.swiper-slide {
  transition-property: transform;
}

/* Button variants matching eeba */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.5px;
  border: none;
}

.btn-primary {
  background-color: var(--cta-bg);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #374151;
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-1);
  border: 2px solid var(--text-1);
}

.btn-outline:hover {
  background-color: var(--text-1);
  color: #FFFFFF;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Typography utilities */
.font-hero {
  font-family: var(--font-hero);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.font-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #000;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

/* Footer matching eeba style */
.footer {
  background-color: var(--cta-bg);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 300px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s ease;
}

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

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

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

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--gold);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--text-1);
}

/* ================================
   EEBASTORE TAILWIND-STYLE UTILITIES
   These classes match the React client styling
   ================================ */

/* Background Colors */
.bg-bg-1 { background-color: var(--bg-1); }
.bg-bg-2 { background-color: var(--bg-2); }
.bg-cta { background-color: var(--cta-bg); }
.bg-accent-1 { background-color: var(--accent-1); }
.bg-badge { background-color: var(--badge); }
.bg-white { background-color: var(--white); }

/* Text Colors */
.text-text-1 { color: var(--text-1); }
.text-text-2 { color: var(--text-2); }
.text-white { color: #FFFFFF; }
.text-black { color: #000000; }

/* Font Families */
.font-hero {
  font-family: var(--font-hero);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  word-spacing: 2px;
}

.font-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
}

/* Text truncation */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 1;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-box-align: center;
  box-align: center;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-box-align: center;
  box-align: center;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-box-align: center;
  box-align: center;
}
.ring-2 { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.ring-offset-2 { --tw-ring-offset-width: 2px; }
.ring-gold { --tw-ring-color: var(--gold); }

/* Product List View */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-list .product-card,
.product-list [data-product-id] {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.product-list .product-card > div:first-child,
.product-list [data-product-id] > div:first-child {
  aspect-ratio: 1;
}

/* Active states for filters */
.size-filter-btn.active,
.color-filter-btn.active {
  position: relative;
}

/* Accent color for checkboxes/radio */
.accent-gold {
  accent-color: var(--gold);
}

/* Hover text color */
.hover\:text-gold-dark:hover {
  color: var(--gold-dark);
}

/* Tracking */
.tracking-wide {
  letter-spacing: 0.025em;
}

.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Spacing */
.space-y-2 > * + * { margin-top: var(--space-sm); }
.space-y-3 > * + * { margin-top: var(--space-md); }
.space-y-4 > * + * { margin-top: var(--space-lg); }
.space-y-6 > * + * { margin-top: var(--space-xl); }

.space-x-2 > * + * { margin-left: var(--space-sm); }
.space-x-4 > * + * { margin-left: var(--space-lg); }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }

/* Hover Effects */
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:scale-105:hover { transform: scale(1.05); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* Height Utilities */
.h-4 { height: 1rem !important; }
.h-8 { height: 2rem !important; }
.h-16 { height: 4rem !important; }
.h-32 { height: 8rem !important; }
.h-64 { height: 16rem !important; }

/* Responsive product card image heights - override h-64 */
.product-grid .bg-bg-2 img.h-64,
.product-grid [data-product-id] img,
.featured-products img,
#product-grid img,
#related-products img {
  height: 12rem !important;
}

@media (min-width: 640px) {
  .product-grid .bg-bg-2 img.h-64,
  .product-grid [data-product-id] img,
  .featured-products img,
  #product-grid img,
  #related-products img {
    height: 14rem !important;
  }
}

@media (min-width: 1024px) {
  .product-grid .bg-bg-2 img.h-64,
  .product-grid [data-product-id] img,
  .featured-products img,
  #product-grid img,
  #related-products img {
    height: 15rem !important;
  }
}

@media (min-width: 1280px) {
  .product-grid .bg-bg-2 img.h-64,
  .product-grid [data-product-id] img,
  .featured-products img,
  #product-grid img,
  #related-products img {
    height: 16rem !important;
  }
}

/* Width Utilities */
.w-4 { width: 1rem !important; }
.w-8 { width: 2rem !important; }
.w-10 { width: 2.5rem !important; }
.w-16 { width: 4rem !important; }

/* Typography - Text Sizes */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }

/* Border Radius */
.rounded-md { border-radius: var(--radius-md); }
.rounded-full { border-radius: 9999px; }

/* Border */
.border { border-width: 1px; }
.border-accent-1 { border-color: var(--accent-1); }

/* Gap utilities */
.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }

/* Hover utilities */
.hover\:text-accent-1:hover { color: var(--accent-1); }

/* Line Clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Object Fit */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }

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

/* Group utility for hover effects */
.group { position: relative; }

/* Position utilities */
.top-2 { top: 0.5rem; }
.right-2 { right: 0.5rem; }
.bottom-2 { bottom: 0.5rem; }
.left-2 { left: 0.5rem; }

/* Text decoration */
.line-through { text-decoration: line-through; }

/* ================================
   SHOP LAYOUT - Matching EebaStore
   ================================ */
.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .shop-layout {
    flex-direction: row;
    gap: 2.5rem;
  }
}

/* Desktop Sidebar - Hidden on mobile */
.shop-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .shop-sidebar {
    display: block;
    width: 220px;
    flex-shrink: 0;
  }
}

.shop-sidebar-inner {
  position: sticky;
  top: 90px;
}

.shop-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

/* Products Area - Full width on mobile */
.shop-products {
  width: 100%;
  flex: 1;
  min-width: 0; /* Prevent flex item from overflowing */
}

/* Mobile Filter Button */
.btn-filter-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-md);
  background-color: var(--bg-2);
  color: var(--text-1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-filter-mobile:hover {
  border-color: var(--gold-dark);
  background-color: var(--gold-light);
}

@media (min-width: 1024px) {
  .btn-filter-mobile {
    display: none;
  }
}

/* Mobile Filter Modal */
.filter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.filter-modal.active {
  display: block;
}

.filter-modal-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.filter-modal-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background-color: var(--bg-1);
  display: flex;
  flex-direction: column;
  animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.filter-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--accent-1);
}

.filter-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: none;
  background: none;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-modal-close:hover {
  background-color: var(--bg-2);
  color: var(--text-1);
}

.filter-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.filter-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--accent-1);
  background-color: var(--bg-1);
}

/* Filter Sections */
.filter-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--bg-2);
  border-radius: var(--radius-lg);
}

.filter-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-checkbox,
.filter-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s ease;
}

.filter-checkbox:hover,
.filter-radio:hover {
  color: var(--text-1);
}

.filter-checkbox input,
.filter-radio input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-dark);
  cursor: pointer;
}

/* Size Filter Grid */
.size-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.size-filter-btn,
.size-filter-btn-mobile {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-md);
  background-color: var(--bg-2);
  color: var(--text-1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-filter-btn:hover,
.size-filter-btn-mobile:hover {
  border-color: var(--gold-dark);
  background-color: var(--gold-light);
}

.size-filter-btn.active,
.size-filter-btn-mobile.active {
  background-color: var(--cta-bg);
  color: var(--white);
  border-color: var(--cta-bg);
}

/* Color Filter Grid */
.color-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.color-filter-btn,
.color-filter-btn-mobile {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.color-filter-btn:hover,
.color-filter-btn-mobile:hover {
  transform: scale(1.1);
}

.color-filter-btn.active,
.color-filter-btn-mobile.active {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--gold-dark);
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--accent-1);
}

@media (min-width: 640px) {
  .shop-toolbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Custom Sort Dropdown - Themed */
.custom-select {
  position: relative;
  min-width: 180px;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  background-color: var(--bg-2);
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select-trigger:hover {
  border-color: var(--gold-dark);
}

.custom-select-trigger:focus,
.custom-select.active .custom-select-trigger {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(220, 201, 186, 0.3);
}

.custom-select-trigger svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.custom-select.active .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: var(--bg-2);
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}

.custom-select.active .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-1);
  cursor: pointer;
  transition: all 0.15s ease;
  border-bottom: 1px solid var(--accent-1);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background-color: var(--gold-light);
  color: var(--text-1);
}

.custom-select-option.active,
.custom-select-option:active {
  background-color: var(--gold);
  color: var(--text-1);
}

/* Remove old select styling */
#sort-select {
  display: none;
}

/* View Toggle Buttons - Hidden on mobile */
.view-btn {
  display: none;
}

@media (min-width: 640px) {
  .view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-1);
    background-color: var(--bg-2);
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .view-btn:hover {
    border-color: var(--gold-dark);
    background-color: var(--gold-light);
  }
  
  .view-btn.active {
    background-color: var(--cta-bg);
    color: var(--white);
    border-color: var(--cta-bg);
  }
}

/* Clear Filters Button */
.btn-clear {
  font-size: 13px;
  color: var(--gold-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.btn-clear:hover {
  color: var(--text-1);
}

/* Product Grid - Responsive Columns */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Product List View */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-list .product-card {
  display: flex;
  flex-direction: row;
  height: auto;
}

.product-list .product-image {
  width: 150px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .product-list .product-image {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .product-list .product-card {
    flex-direction: column;
  }
  
  .product-list .product-image {
    width: 100%;
  }
}

/* ================================
   MISSING RESPONSIVE UTILITIES
   Added to fix broken pages
   ================================ */

/* Width Utilities */
.w-20 { width: 5rem; }
.w-6 { width: 1.5rem; }
.w-full { width: 100%; }

/* Height Utilities */
.h-6 { height: 1.5rem; }
.h-20 { height: 5rem; }

/* Max Width */
.max-w-md { max-width: 28rem; }

/* Aspect Ratio */
.aspect-\[3\/4\] { aspect-ratio: 3/4; }

/* Opacity */
.opacity-50 { opacity: 0.5; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Divide utilities */
.divide-y > * + * { border-top: 1px solid var(--accent-1); }
.divide-accent-1 > * + * { border-color: var(--accent-1); }

/* Border utilities */
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }

/* Sticky positioning */
.sticky { position: sticky; }

/* Hover underline */
.hover\:underline:hover { text-decoration: underline; }

/* Form Radio */
.form-radio {
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold);
}

/* Responsive Width Utilities */
@media (min-width: 768px) {
  .md\:w-1\/2 { width: 50%; }
  .md\:w-1\/3 { width: 33.333333%; }
  .md\:w-2\/3 { width: 66.666667%; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:text-4xl { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .lg\:w-1\/3 { width: 33.333333%; }
  .lg\:w-2\/3 { width: 66.666667%; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:col-span-1 { grid-column: span 1; }
  .lg\:col-span-3 { grid-column: span 3; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Text Badge Color */
.text-badge { color: var(--badge); }

/* Responsive padding variants */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Profile page responsive grid fixes */
@media (max-width: 1023px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-sidebar {
    order: 2;
  }
  .profile-content {
    order: 1;
  }
}

/* Cart Item Responsive Styles */
.cart-item-image {
  width: 96px;
  height: 128px;
  flex-shrink: 0;
}

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

@media (max-width: 640px) {
  .cart-item-image {
    width: 80px;
    height: 100px;
  }
  
  .cart-item .flex.gap-4 {
    gap: 0.75rem;
  }
  
  .cart-item .flex-1 {
    min-width: 0;
  }
  
  .cart-item h4 {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  
  .cart-item .text-sm {
    font-size: 0.75rem;
  }
  
  .cart-item .font-hero.text-lg {
    font-size: 1rem;
  }
  
  .cart-item .qty-btn {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .cart-item .qty-value {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    min-width: 36px;
  }
}

@media (max-width: 480px) {
  .cart-item-image {
    width: 70px;
    height: 90px;
  }
  
  .cart-item .flex.items-center.gap-2 {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 1023px) {
  .cart-layout,
  .checkout-layout {
    flex-direction: column;
  }
  .cart-items,
  .cart-summary,
  .checkout-form,
  .checkout-summary {
    width: 100%;
  }
}

/* Product detail responsive */
@media (max-width: 1023px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* Register/Login form fixes */
@media (max-width: 640px) {
  .auth-container {
    padding: 0 1rem;
  }
  .auth-form {
    padding: 1.5rem;
  }
}/* ================================
   BACK BUTTON
   ================================ */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.back-btn:hover {
  background: var(--bg-1);
  color: var(--text-1);
  border-color: var(--gold-dark);
}

.back-btn svg {
  width: 1rem;
  height: 1rem;
}

.back-btn-container {
  margin-bottom: 1rem;
}

/* ================================
   LOADING SPINNER & OVERLAY
   Theme-matching loaders
   ================================ */

/* Button loading state */
.loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Spinner animation */
.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--gold-light);
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Large spinner for page overlays */
.spinner-lg {
  width: 3rem;
  height: 3rem;
  border-width: 3px;
}

/* Full page loading overlay */
.page-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  background: rgba(246, 244, 242, 0.95);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
  box-sizing: border-box;
}

.page-loader-overlay.dark {
  background: rgba(14, 14, 14, 0.9);
}

.page-loader-overlay.dark .page-loader-text {
  color: var(--gold);
}

.page-loader-content {
  text-align: center;
  padding: 2rem;
}

.page-loader-spinner {
  width: 4rem;
  height: 4rem;
  border: 3px solid var(--gold-light);
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
  display: block;
  box-sizing: border-box;
}

.page-loader-text {
  font-family: var(--font-hero);
  font-size: 1.25rem;
  color: var(--text-1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.page-loader-subtext {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-2);
  margin-top: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Button loading with spinner */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -0.625rem;
  margin-left: -0.625rem;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  color: inherit;
}

.btn-primary.btn-loading::after {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

/* Form overlay loader (for auth forms) */
.form-loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: fadeIn 0.2s ease-out;
}

.form-loader-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--gold-light);
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 1rem;
}

.form-loader-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-2);
  font-weight: 500;
}

/* Checkout card loader */
.checkout-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  background: rgba(246, 244, 242, 0.95);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-out;
  box-sizing: border-box;
  padding: 1rem;
}

.checkout-loader-content {
  background: var(--bg-2);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.checkout-loader-spinner {
  width: 3.5rem;
  height: 3.5rem;
  border: 3px solid var(--gold-light);
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

.checkout-loader-title {
  font-family: var(--font-hero);
  font-size: 1.5rem;
  color: var(--text-1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.checkout-loader-message {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* Dots loader alternative */
.dots-loader {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.dots-loader span {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--gold-dark);
  border-radius: 50%;
  animation: bounce 1.4s ease-in-out infinite both;
}

.dots-loader span:nth-child(1) { animation-delay: -0.32s; }
.dots-loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Order Cards */
.order-card {
  background: var(--bg-2);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--accent-1);
}

.order-id {
  font-weight: 600;
  color: var(--text-1);
  font-size: 0.95rem;
}

.order-id span {
  color: var(--gold-dark);
}

.order-date {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 0.25rem;
}

.order-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-transform: capitalize;
}

.order-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.order-status.processing {
  background: #dbeafe;
  color: #1e40af;
}

.order-status.shipped {
  background: #e0e7ff;
  color: #3730a3;
}

.order-status.delivered {
  background: #d1fae5;
  color: #065f46;
}

.order-status.cancelled {
  background: #fee2e2;
  color: #991b1b;
}

/* Order Body - Row-wise layout for items */
.order-body {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.order-body > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-1);
  border-radius: 8px;
  flex: 1 1 calc(50% - 0.375rem);
  min-width: 280px;
  max-width: 100%;
}

.order-body img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--bg-2);
}

.order-body .item-info {
  flex: 1;
  min-width: 0;
}

.order-body .item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-body .item-meta {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-top: 0.25rem;
}

.order-body .item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--accent-1);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .order-body > div {
    flex: 1 1 100%;
  }
  
  .order-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .order-body img {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 1024px) {
  .order-body > div {
    flex: 1 1 calc(33.333% - 0.5rem);
  }
}

/* ================================
   DARAZ STYLE MAIN BANNER
   Full-width panorama carousel
   ================================ */

.main-banner {
  position: relative;
  width: 100%;
  background: var(--bg-1);
  overflow: hidden;
}

/* Banner Swiper Container */
.banner-swiper {
  width: 100%;
  height: auto;
  position: relative;
}

/* Banner Slides */
.banner-slide {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Banner Link - Full clickable area */
.banner-link {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Banner Images - Landscape/Panorama Style */
.banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 6s ease;
}

.banner-slide-active .banner-img {
  transform: scale(1.02);
}

/* Responsive Aspect Ratios for different screen sizes */
@media (max-width: 1280px) {
  .banner-img {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 1024px) {
  .banner-img {
    aspect-ratio: 16 / 6;
  }
}

@media (max-width: 768px) {
  .banner-img {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 480px) {
  .banner-img {
    aspect-ratio: 16 / 9;
  }
}

/* Banner Navigation Arrows */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

.main-banner:hover .banner-nav {
  opacity: 1;
}

.banner-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

.banner-nav svg {
  width: 24px;
  height: 24px;
}

/* Banner Pagination */
.banner-pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.banner-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.banner-pagination .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
}

.banner-pagination .swiper-pagination-bullet-active {
  background: white;
  width: 28px;
  border-radius: 5px;
}

/* Loading State */
.banner-slide .banner-img {
  background: linear-gradient(90deg, var(--bg-2) 0%, var(--accent-1) 50%, var(--bg-2) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.banner-slide .banner-img[src] {
  animation: none;
  background: none;
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .banner-nav {
    width: 44px;
    height: 44px;
  }
  
  .banner-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .banner-prev {
    left: 15px;
  }
  
  .banner-next {
    right: 15px;
  }
  
  .banner-pagination {
    bottom: 15px !important;
  }
  
  .banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  
  .banner-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }
}

@media (max-width: 640px) {
  .banner-nav {
    width: 40px;
    height: 40px;
    opacity: 0.8;
  }
  
  .banner-nav svg {
    width: 18px;
    height: 18px;
  }
  
  .banner-prev {
    left: 10px;
  }
  
  .banner-next {
    right: 10px;
  }
  
  .banner-pagination {
    bottom: 10px !important;
    gap: 6px;
  }
  
  .banner-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  
  .banner-pagination .swiper-pagination-bullet-active {
    width: 20px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .banner-img {
    transition: none;
  }
  
  .banner-nav {
    transition: none;
  }
}

/* Banner Skeleton Loading */
.skeleton-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-skeleton {
  width: 100%;
  aspect-ratio: 21 / 9;
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--accent-1) 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@media (max-width: 1280px) {
  .banner-skeleton {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 1024px) {
  .banner-skeleton {
    aspect-ratio: 16 / 6;
  }
}

@media (max-width: 768px) {
  .banner-skeleton {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 480px) {
  .banner-skeleton {
    aspect-ratio: 16 / 9;
  }
}

/* ================================
   PROFESSIONAL HERO BANNER (OLD)
   - Kept for reference but commented
   ================================ */

.hero-banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 50%, var(--bg-1) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 40px;
}

/* Background Pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(220, 201, 186, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(220, 201, 186, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(228, 106, 78, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

/* Decorative Elements */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-decor-1 {
  width: 400px;
  height: 400px;
  background: var(--gold-light);
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-decor-2 {
  width: 300px;
  height: 300px;
  background: rgba(220, 201, 186, 0.3);
  bottom: -50px;
  left: 10%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Container */
.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .hero-container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 0 3rem;
  }
}

/* Content Wrapper */
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Text Section */
.hero-text-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideUpLeft 0.8s ease-out forwards;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(220, 201, 186, 0.2);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-1);
  width: fit-content;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--badge);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Headline */
.hero-headline {
  font-family: var(--font-hero);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-headline-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-1);
  letter-spacing: 0.5px;
}

.hero-headline-accent {
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
}

.hero-headline-accent::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  right: 0;
  height: 0.15em;
  background: var(--gold);
  opacity: 0.4;
  z-index: -1;
}

/* Description */
.hero-description {
  font-size: 1.125rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 500px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: var(--font-hero);
  font-size: 1.75rem;
  color: var(--text-1);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-2);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--accent-1);
}

/* Actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Buttons */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.hero-btn-primary {
  background: var(--cta-bg);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary svg {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--text-1);
  border: 2px solid var(--text-1);
}

.hero-btn-secondary:hover {
  background: var(--text-1);
  color: white;
  transform: translateY(-2px);
}

/* Trust Badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--accent-1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-2);
}

.hero-trust-item svg {
  color: var(--gold-dark);
}

/* Visual Section */
.hero-visual-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUpRight 0.8s ease-out forwards;
}

/* Carousel Container */
.hero-carousel-container {
  width: 100%;
  max-width: 400px;
  position: relative;
}

@media (min-width: 640px) {
  .hero-carousel-container {
    max-width: 450px;
  }
}

@media (min-width: 1024px) {
  .hero-carousel-container {
    max-width: 500px;
  }
}

/* Swiper */
.hero-swiper {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-slide-card {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
}

.hero-slide-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-slide-card:hover .hero-slide-img {
  transform: scale(1.05);
}

.hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.hero-slide-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--text-1);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
}

/* Swiper Navigation */
.hero-swiper-nav {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-swiper-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--accent-1);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.hero-swiper-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.hero-swiper-btn svg {
  width: 20px;
  height: 20px;
}

/* Swiper Pagination */
.hero-swiper-pagination {
  bottom: 10px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gold-dark);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatCard 6s ease-in-out infinite;
  z-index: 10;
}

.hero-float-card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.hero-float-card-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-1);
}

.hero-float-card-icon-gold {
  background: var(--gold);
}

.hero-float-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-float-card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}

.hero-float-card-text {
  font-size: 0.75rem;
  color: var(--text-2);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: fadeIn 1s ease-out 1s forwards;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-scroll-text {
  font-size: 0.75rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .hero-banner {
    min-height: auto;
    padding: 100px 0 80px;
  }
  
  .hero-float-card {
    display: none;
  }
  
  .hero-visual-section {
    order: -1;
  }
  
  .hero-carousel-container {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .hero-swiper-nav {
    bottom: -50px;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-text-section {
    text-align: center;
    align-items: center;
  }
  
  .hero-description {
    text-align: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
}

@media (max-width: 639px) {
  .hero-banner {
    padding: 80px 0 60px;
  }
  
  .hero-headline-line {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .hero-stat-number {
    font-size: 1.5rem;
  }
  
  .hero-stat-divider {
    height: 30px;
  }
  
  .hero-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .hero-carousel-container {
    max-width: 280px;
  }
  
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 479px) {
  .hero-headline-line {
    font-size: 1.75rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .hero-stat {
    align-items: center;
  }
  
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
