/* ═══════════════════════════════════════════════════════════════
   AYLIN — Where Elegance Meets Affordability
   Main Stylesheet
═══════════════════════════════════════════════════════════════ */

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

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --cream:       #FDFAF6;
  --beige-light: #F5EDD9;
  --beige:       #EDE0C8;
  --beige-dark:  #DCC9A8;
  --gold:        #C9A96E;
  --gold-dark:   #A8845A;
  --gold-hover:  #B8935D;
  --brown-light: #9E8070;
  --brown:       #8B5E3C;
  --brown-dark:  #3D2B1F;
  --text:        #2C1810;
  --text-muted:  #8A7060;
  --border:      #E8D5BA;
  --white:       #FFFFFF;
  --error:       #C0392B;
  --success:     #27AE60;
  --warning:     #F39C12;

  --shadow-sm: 0 2px 8px rgba(139,94,60,0.08);
  --shadow-md: 0 4px 20px rgba(139,94,60,0.12);
  --shadow-lg: 0 8px 40px rgba(139,94,60,0.16);
  --shadow-xl: 0 16px 64px rgba(139,94,60,0.20);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', -apple-system, sans-serif;

  --header-height: 80px;
  --container: 1280px;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 500; line-height: 1.25; color: var(--brown-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

/* ─── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ─── Section Heading ───────────────────────────────────────── */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading .label {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.section-heading h2 { margin-bottom: 0.75rem; }
.section-heading p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* ─── Divider ───────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--brown-dark);
  color: var(--beige-light);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.header-top a { color: var(--gold); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 2rem;
  gap: 1rem;
}

.site-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.site-logo .name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.04em;
}
.site-logo .tagline {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Search bar */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.header-search form { display: flex; }
.header-search input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  background: var(--cream);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: var(--transition-fast);
}
.header-search input:focus { border-color: var(--gold); background: var(--white); }
.header-search button {
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.header-search button:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.7rem;
  gap: 0.2rem;
  position: relative;
  transition: var(--transition-fast);
}
.action-btn:hover { background: var(--beige-light); color: var(--gold-dark); }
.action-btn svg { width: 22px; height: 22px; }
.action-btn .badge {
  position: absolute;
  top: 4px; right: 6px;
  background: var(--gold);
  color: var(--white);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ─── Navigation ────────────────────────────────────────────── */
.site-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 2rem;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text);
  position: relative;
  transition: var(--transition-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
}
.nav-link:hover, .nav-link.active { color: var(--gold-dark); }
.nav-link:hover::after, .nav-link.active::after { left: 0; right: 0; }

/* Dropdown */
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  z-index: 500;
  overflow: hidden;
}
.dropdown a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--beige-light);
}
.dropdown a:hover { background: var(--beige-light); color: var(--gold-dark); padding-left: 1.6rem; }
.dropdown a:last-child { border-bottom: none; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: clamp(480px, 75vh, 700px);
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 40%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44,24,16,0.85) 0%, rgba(44,24,16,0.3) 60%, transparent 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(139,94,60,0.3) 0%, transparent 50%);
}
/* Decorative circles */
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
}
.hero-bg::before { width: 600px; height: 600px; right: -100px; top: -100px; }
.hero-bg::after  { width: 400px; height: 400px; right: 100px; bottom: -150px; }

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 620px;
  padding: 0 2rem 0 max(2rem, calc((100vw - var(--container))/2 + 1.5rem));
}
.hero-label {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
  line-height: 1.15;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,132,90,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--brown-dark);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.78rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.92rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-dark {
  background: var(--brown-dark);
  color: var(--white);
  border-color: var(--brown-dark);
}
.btn-dark:hover { background: var(--brown); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════════════════
   CATEGORIES STRIP
═══════════════════════════════════════════════════════════ */
.categories-strip {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.5rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-4px); color: var(--gold-dark); }
.category-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--beige-light);
  overflow: hidden;
  border: 3px solid var(--border);
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.category-card:hover .category-img {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.15);
}
.category-img img { width: 100%; height: 100%; object-fit: cover; }
.category-img .cat-icon { font-size: 2.5rem; }
.category-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.category-count { font-size: 0.72rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}
.products-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .products-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products-grid-4 { grid-template-columns: 1fr; } }

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

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background: var(--beige-light);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

/* Product badges */
.badge-wrap {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-sale     { background: #C0392B; color: #fff; }
.badge-new      { background: var(--gold); color: #fff; }
.badge-featured { background: var(--brown-dark); color: #fff; }
.badge-oos      { background: var(--text-muted); color: #fff; }

/* Quick actions */
.product-actions {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
  transform: translateX(60px);
  transition: var(--transition);
}
.product-card:hover .product-actions { transform: translateX(0); }
.action-icon {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text);
}
.action-icon:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.action-icon.wishlisted { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* Quick add bar */
.quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(44,24,16,0.92);
  color: var(--white);
  text-align: center;
  padding: 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(100%);
  transition: var(--transition);
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--gold-dark); }

/* Product info */
.product-info { padding: 1.1rem 1.1rem 1.25rem; }
.product-category {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.stars { display: flex; gap: 1px; }
.star { color: var(--border); font-size: 0.8rem; }
.star.filled { color: var(--gold); }
.rating-count { font-size: 0.72rem; color: var(--text-muted); }
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-current {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brown-dark);
  font-weight: 600;
}
.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-sale { color: #C0392B !important; }

/* ═══════════════════════════════════════════════════════════
   PROMO BANNER
═══════════════════════════════════════════════════════════ */
.promo-banner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 60%, var(--gold-dark) 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at center, rgba(201,169,110,0.15) 0%, transparent 70%);
}
.promo-banner * { position: relative; z-index: 1; }
.promo-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.promo-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════════════════════ */
.features-strip {
  background: var(--beige-light);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.feature-item h4 { font-size: 0.88rem; margin-bottom: 0.2rem; color: var(--brown-dark); }
.feature-item p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--beige);
  overflow: hidden;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.author-name { font-size: 0.88rem; font-weight: 700; color: var(--brown-dark); }
.author-meta { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════════ */
.newsletter {
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige) 100%);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.newsletter h2 { margin-bottom: 0.75rem; }
.newsletter p { color: var(--text-muted); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: none;
  background: var(--white);
  font-size: 0.88rem;
  outline: none;
  color: var(--text);
}
.newsletter-form button {
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .name {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand .tagline {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.6rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.15);
}
.social-link:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.5rem; display: flex; gap: 0.5rem; }
.footer-contact p span { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige) 100%);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.page-banner h1 { font-size: 2rem; margin-bottom: 0.25rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  align-items: start;
}

/* Filters sidebar */
.filters-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.filter-section { margin-bottom: 1.75rem; }
.filter-section:last-child { margin-bottom: 0; }
.filter-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  cursor: pointer;
  font-size: 0.88rem;
}
.filter-option input[type="checkbox"], .filter-option input[type="radio"] {
  accent-color: var(--gold);
  width: 15px; height: 15px;
}
.filter-option label { cursor: pointer; color: var(--text); }
.filter-option .count { margin-left: auto; font-size: 0.75rem; color: var(--text-muted); }

/* Price range */
.price-range-inputs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}
.price-range-inputs input {
  width: 80px;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  text-align: center;
  background: var(--cream);
}

/* Shop toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.results-count { font-size: 0.85rem; color: var(--text-muted); }
.results-count strong { color: var(--text); }
.toolbar-right { display: flex; align-items: center; gap: 0.75rem; }
.sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
  outline: none;
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}
.view-btn.active, .view-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 3rem;
}
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--white);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL
═══════════════════════════════════════════════════════════ */
.product-detail { padding: 3rem 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Gallery */
.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--beige-light);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex;
  gap: 0.6rem;
}
.thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--beige-light);
  cursor: pointer;
  border: 2px solid var(--border);
  transition: var(--transition-fast);
}
.thumb:hover, .thumb.active { border-color: var(--gold); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info panel */
.product-info-panel .category-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}
.product-info-panel h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.product-price-row .current { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: var(--brown-dark); }
.product-price-row .original { font-size: 1.2rem; color: var(--text-muted); text-decoration: line-through; }
.product-price-row .discount-badge {
  background: #C0392B;
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Variant selection */
.variant-section { margin-bottom: 1.25rem; }
.variant-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
}
.variant-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.variant-btn {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--white);
  color: var(--text);
}
.variant-btn:hover, .variant-btn.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* Add to cart row */
.add-to-cart-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--beige-light);
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}
.qty-btn:hover { background: var(--gold); color: var(--white); }
.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 0;
  outline: none;
}

/* Product tabs */
.product-tabs { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.tab-nav { display: flex; gap: 0; border-bottom: 1.5px solid var(--border); margin-bottom: 2rem; }
.tab-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.tab-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.avg-rating { text-align: center; }
.avg-score {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--brown-dark);
  line-height: 1;
}
.rating-bars .bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.bar-row label { font-size: 0.8rem; color: var(--text-muted); width: 48px; }
.rating-bar { flex: 1; height: 8px; background: var(--beige); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }

.review-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.review-header { display: flex; justify-content: space-between; margin-bottom: 0.6rem; }
.reviewer-info { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--border);
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-title { font-weight: 700; margin-bottom: 0.3rem; }
.review-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Review form */
.review-form { background: var(--beige-light); border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem; }
.review-form h4 { margin-bottom: 1.25rem; }
.star-picker { display: flex; gap: 0.25rem; margin-bottom: 0.5rem; }
.star-picker .star { font-size: 1.6rem; cursor: pointer; color: var(--border); transition: var(--transition-fast); }
.star-picker .star:hover, .star-picker .star.selected { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   CART
═══════════════════════════════════════════════════════════ */
.cart-page { padding: 3rem 0; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.cart-table thead { background: var(--beige-light); }
.cart-table th { padding: 1rem 1.25rem; text-align: left; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-dark); border-bottom: 1px solid var(--border); }
.cart-table td { padding: 1.25rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-product { display: flex; align-items: center; gap: 1rem; }
.cart-img { width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; background: var(--beige-light); border: 1px solid var(--border); flex-shrink: 0; }
.cart-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-family: var(--font-heading); font-size: 0.95rem; color: var(--brown-dark); }
.cart-product-variant { font-size: 0.78rem; color: var(--text-muted); }
.remove-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; padding: 0.3rem; border-radius: 50%; transition: var(--transition-fast); }
.remove-btn:hover { color: #C0392B; background: rgba(192,57,43,0.1); }

/* Cart summary */
.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.cart-summary h3 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--beige-light);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  border-top: 1.5px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.coupon-form { display: flex; gap: 0.5rem; margin: 1rem 0; }
.coupon-form input {
  flex: 1;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  outline: none;
}
.coupon-form input:focus { border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   CHECKOUT
═══════════════════════════════════════════════════════════ */
.checkout-page { padding: 3rem 0; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.checkout-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.checkout-section h3 {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.checkout-section h3 .step {
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Order summary in checkout */
.checkout-order-summary { background: var(--beige-light); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.order-product { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: center; }
.order-product-img { width: 56px; height: 56px; border-radius: var(--radius-md); overflow: hidden; background: var(--beige); border: 1px solid var(--border); flex-shrink: 0; }
.order-product-img img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; color: var(--brown-dark); margin-bottom: 0.4rem; }
.form-label .req { color: #C0392B; }
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,169,110,0.15); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-error { font-size: 0.78rem; color: var(--error); margin-top: 0.3rem; }
.form-hint  { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }

/* Payment methods */
.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}
.payment-option:hover { border-color: var(--gold); background: var(--beige-light); }
.payment-option input { accent-color: var(--gold); }
.payment-option label { cursor: pointer; font-size: 0.9rem; font-weight: 500; }
.payment-option .icons { margin-left: auto; font-size: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES
═══════════════════════════════════════════════════════════ */
.auth-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--cream) 100%);
  padding: 3rem 1rem;
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo .name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brown-dark);
}
.auth-logo .tagline {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.auth-card h2 { text-align: center; font-size: 1.4rem; margin-bottom: 0.5rem; }
.auth-card .subtitle { text-align: center; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 2rem; }
.auth-footer { text-align: center; margin-top: 1.25rem; font-size: 0.88rem; color: var(--text-muted); }
.auth-footer a { color: var(--gold-dark); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   USER DASHBOARD / PROFILE
═══════════════════════════════════════════════════════════ */
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  align-items: start;
}
.user-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.user-profile-box {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 1.75rem;
  text-align: center;
  color: var(--white);
}
.user-avatar-lg {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 0.75rem;
  border: 3px solid rgba(255,255,255,0.3);
}
.user-profile-box .name { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 0.25rem; }
.user-profile-box .email { font-size: 0.78rem; opacity: 0.75; }
.user-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--beige-light);
  transition: var(--transition-fast);
}
.user-nav a:hover, .user-nav a.active {
  background: var(--beige-light);
  color: var(--gold-dark);
  padding-left: 1.6rem;
}
.user-nav a:last-child { border-bottom: none; }
.user-nav .icon { font-size: 1.1rem; width: 20px; }

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.content-card h3 { margin-bottom: 1.25rem; font-size: 1.05rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }

/* Order status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-pending    { background: #FEF3C7; color: #92400E; }
.status-processing { background: #DBEAFE; color: #1E40AF; }
.status-shipped    { background: #D1FAE5; color: #065F46; }
.status-delivered  { background: #D1FAE5; color: #065F46; }
.status-cancelled  { background: #FEE2E2; color: #991B1B; }
.status-refunded   { background: #F3F4F6; color: #374151; }

/* ═══════════════════════════════════════════════════════════
   ALERTS / FLASH MESSAGES
═══════════════════════════════════════════════════════════ */
.alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid;
}
.alert-success { background: #D1FAE5; color: #065F46; border-color: #6EE7B7; }
.alert-error   { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }
.alert-warning { background: #FEF3C7; color: #92400E; border-color: #FCD34D; }
.alert-info    { background: #DBEAFE; color: #1E40AF; border-color: #93C5FD; }

/* Toast notifications */
.toast-container {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  background: var(--brown-dark);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 280px;
  animation: slideInRight 0.3s ease;
  border-left: 4px solid var(--gold);
}
.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: var(--error); }
@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT / CONTACT PAGES
═══════════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; background: var(--beige); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .label { font-family: var(--font-accent); font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   EMPTY STATES
═══════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-state .icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: 0.5rem; color: var(--brown-dark); }
.empty-state p { font-size: 0.9rem; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-main { padding: 0 1rem; }
  .header-search { display: none; }
  .menu-toggle { display: flex; }
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; padding: 0.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-summary { grid-template-columns: 1fr; }
  .add-to-cart-row { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .auth-card { padding: 1.5rem; }
}

/* ─── Utilities ────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-muted  { color: var(--text-muted); }
.text-gold   { color: var(--gold); }
.text-sm     { font-size: 0.85rem; }
.text-xs     { font-size: 0.75rem; }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.gap-1       { gap: 0.5rem; }
.gap-2       { gap: 1rem; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.p-0   { padding: 0; }
.fw-bold { font-weight: 700; }
.italic { font-style: italic; }

/* Loading spinner */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Overlay */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 800;
  display: none;
}
.overlay.active { display: block; }

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px; height: 100vh;
  background: var(--white);
  z-index: 900;
  box-shadow: var(--shadow-xl);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--beige-light);
}
.drawer-header h3 { font-size: 1rem; }
.close-drawer {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}
.close-drawer:hover { background: var(--gold); color: var(--white); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); background: var(--beige-light); }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem; left: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0; pointer-events: none;
  border: none;
  z-index: 700;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* No image placeholder SVG */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--beige-light), var(--beige));
  color: var(--gold);
  font-size: 3rem;
}


/* ═══════════════════════════════════════════════════════════════
   AYLIN — Animations & Effects
═══════════════════════════════════════════════════════════════ */

/* ─── Page Loader ─────────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-brand {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brown-dark);
  letter-spacing: 0.12em;
  font-style: italic;
  animation: loaderBrandPulse 1.6s ease-in-out infinite;
}
.loader-brand span { color: var(--gold); }

.loader-bar {
  width: 120px;
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSlide 1.2s ease-in-out infinite;
}
.loader-dots {
  display: flex;
  gap: 6px;
}
.loader-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: loaderDot 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderBrandPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes loaderDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* ─── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.reveal-scale { transform: scale(0.92); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
/* Stagger delays */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.26s; }
.reveal[data-delay="4"] { transition-delay: 0.34s; }
.reveal[data-delay="5"] { transition-delay: 0.42s; }
.reveal[data-delay="6"] { transition-delay: 0.50s; }
.reveal[data-delay="7"] { transition-delay: 0.58s; }
.reveal[data-delay="8"] { transition-delay: 0.66s; }

/* ─── Hero Entrance ───────────────────────────────────────────── */
.hero-content > * {
  animation: heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-content .hero-label   { animation-delay: 0.1s; }
.hero-content h1             { animation-delay: 0.25s; }
.hero-content p              { animation-delay: 0.4s; }
.hero-content .hero-btns     { animation-delay: 0.55s; }

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

/* ─── Hero floating sparkles ──────────────────────────────────── */
.hero-sparkle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.9) 0%, transparent 70%);
  animation: sparklePop 3s ease-in-out infinite;
}

@keyframes sparklePop {
  0%   { transform: scale(0) rotate(0deg); opacity: 0; }
  20%  { opacity: 1; }
  50%  { transform: scale(1) rotate(180deg); opacity: 0.7; }
  100% { transform: scale(0) rotate(360deg); opacity: 0; }
}

/* ─── Cursor sparkle trail ────────────────────────────────────── */
.cursor-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  animation: cursorFade 0.7s ease-out forwards;
}
@keyframes cursorFade {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
}

/* ─── Shimmer skeleton ────────────────────────────────────────── */
.shimmer {
  background: linear-gradient(90deg, var(--beige-light) 25%, var(--beige) 50%, var(--beige-light) 75%);
  background-size: 200% 100%;
  animation: shimmerSlide 1.5s infinite;
}
@keyframes shimmerSlide {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ─── Gold shimmer text ────────────────────────────────────────── */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), #F5D98B, var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}
@keyframes goldShimmer {
  to { background-position: 200% center; }
}

/* ─── Feature items animation ─────────────────────────────────── */
.feature-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
}
.feature-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-item:hover .feature-icon {
  transform: scale(1.25) rotate(-5deg);
}

/* ─── Product card hover ripple ───────────────────────────────── */
.product-card {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s ease;
}

/* ─── Count-up number ─────────────────────────────────────────── */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ─── Floating animation (hero elements) ──────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-y { animation: floatY 4s ease-in-out infinite; }

/* ─── Heartbeat for wishlist ──────────────────────────────────── */
.wishlist-btn.wishlisted .wish-icon {
  animation: heartbeat 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes heartbeat {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}

/* ─── Cart count bounce ───────────────────────────────────────── */
.cart-count.bump {
  animation: cartBump 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cartBump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.6); }
  100% { transform: scale(1); }
}

/* ─── Section heading underline animate ──────────────────────── */
.section-heading h2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.5rem auto 0;
  transition: width 0.8s ease;
}
.section-heading.visible h2::after {
  width: 80px;
}

/* ─── Btn pulse on hover ──────────────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after {
  transform: translateX(150%) skewX(-15deg);
}

/* ─── Page fade-in ────────────────────────────────────────────── */
.page-body {
  animation: pageFadeIn 0.5s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Scroll progress bar ─────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── Testimonial card pop ────────────────────────────────────── */
.testimonial-card {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
}
