/* ════════════════════════════════════════════════════════════
   Shanthi Gold Covering — Main Stylesheet
   Luxury Gold Jewellery Theme
════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-light: #E5C97A;
  --gold-dark: #A07830;
  --gold-pale: #F9F3E3;
  --charcoal: #1A1A2E;
  --charcoal-light: #252540;
  --cream: #FAF8F3;
  --cream-dark: #F0EDE4;
  --text-primary: #1A1A2E;
  --text-secondary: #555568;
  --text-muted: #9899A6;
  --white: #FFFFFF;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  --border: #E8E4DA;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
  --shadow: 0 4px 20px rgba(26,26,46,0.10);
  --shadow-lg: 0 8px 40px rgba(26,26,46,0.15);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.20);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --transition: 0.25s ease;
  --nav-h: 70px;
  --announce-h: 36px;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ─── Container ──────────────────────────────────────────── */
.container { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  font-family: var(--font-sans);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal); border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: translateY(-2px); box-shadow: 0 6px 25px rgba(201,168,76,0.4);
}
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-whatsapp {
  background: #25D366; color: var(--white); border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; justify-content: center; }
.btn-icon { padding: 12px; width: 48px; justify-content: center; }
.flex-1 { flex: 1; }
.mt-2 { margin-top: 12px; }

/* ─── Announcement Bar ───────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
  color: var(--gold-light); text-align: center;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.03em; height: var(--announce-h);
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 24px; max-width: 1260px; margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: bold;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-serif); font-size: 1.1rem; color: var(--charcoal); font-weight: 700; }
.logo-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-links a, .nav-dropdown > a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: all var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: var(--gold-pale); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 180px;
  display: none; z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: 0.88rem;
}
.dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold); }
.dropdown-menu a i { width: 16px; color: var(--gold); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 1rem; transition: all var(--transition);
  position: relative; background: transparent;
}
.nav-btn:hover { background: var(--gold-pale); color: var(--gold); }
.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -2px; right: -2px;
  background: var(--gold); color: var(--charcoal);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* User Dropdown */
.nav-user-menu { position: relative; }
.user-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 200px;
  display: none; z-index: 100;
}
.nav-user-menu:hover .user-dropdown { display: block; }
.user-dropdown-header {
  padding: 8px 12px 12px; border-bottom: 1px solid var(--border); margin-bottom: 4px;
  font-size: 0.88rem;
}
.user-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text-secondary);
}
.user-dropdown a:hover { background: var(--gold-pale); color: var(--gold); }
.user-dropdown a i { width: 16px; }
.user-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.logout-link { color: var(--danger) !important; }
.logout-link:hover { background: #fef2f2 !important; }

/* Search Bar */
.search-bar-dropdown {
  background: var(--charcoal); padding: 16px 24px;
  display: none; border-top: 1px solid rgba(255,255,255,0.1);
}
.search-bar-dropdown.open { display: block; }
.search-form { display: flex; gap: 8px; max-width: 600px; margin: 0 auto; }
.search-input {
  flex: 1; padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1);
  color: var(--white); font-size: 0.95rem;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-input:focus { outline: none; border-color: var(--gold); }
.search-submit {
  padding: 12px 20px; background: var(--gold); color: var(--charcoal);
  border-radius: var(--radius); cursor: pointer; font-size: 1rem; border: none;
}

.mobile-menu-toggle { display: none; }

/* ─── Flash Toasts ───────────────────────────────────────── */
.flash-toast {
  position: fixed; top: 20px; right: 20px; z-index: 9999;
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  max-width: 380px; font-size: 0.9rem; animation: slideInRight 0.3s ease;
}
.flash-success { background: var(--success); color: var(--white); }
.flash-error   { background: var(--danger);  color: var(--white); }
.flash-close {
  background: rgba(255,255,255,0.3); color: var(--white);
  width: 24px; height: 24px; border-radius: 50%;
  margin-left: auto; font-size: 1rem; cursor: pointer; border: none;
}
@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

/* ─── Main Content ───────────────────────────────────────── */
.main-content { min-height: calc(100vh - var(--nav-h) - var(--announce-h)); }

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h) - var(--announce-h));
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D1F0E 50%, #1A0F05 100%);
  overflow: hidden; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 80px 24px; position: relative; z-index: 1;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3); border-radius: 999px;
  color: var(--gold-light); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.05em; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em { color: var(--gold-light); font-style: normal; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 440px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.trust-item i { color: var(--gold); }

.hero-image { position: relative; display: flex; justify-content: center; }
.hero-image-wrap { position: relative; }
.hero-img-bg {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img {
  width: 480px; height: 540px; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative; z-index: 1;
}
.hero-tag-card {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 18px; box-shadow: var(--shadow-lg); z-index: 2;
}
.hero-tag-label { font-size: 0.72rem; color: var(--text-muted); display: block; }
.hero-tag-price { font-size: 1rem; font-weight: 600; color: var(--gold); }
.hero-scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; z-index: 1;
}
.hero-scroll-indicator i { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ─── Stats Bar ──────────────────────────────────────────── */
.stats-bar { background: var(--charcoal); padding: 28px 0; }
.stats-grid {
  display: flex; align-items: center; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 12px 40px; }
.stat-item strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold); font-family: var(--font-serif); }
.stat-item span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; padding: 4px 16px;
  background: var(--gold-pale); color: var(--gold-dark);
  border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.section-tag.light { background: rgba(201,168,76,0.2); color: var(--gold-light); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--charcoal); margin-bottom: 12px; }
.section-title.light { color: var(--white); }
.section-subtitle { color: var(--text-secondary); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.section-subtitle.light { color: rgba(255,255,255,0.7); }
.section-footer { text-align: center; margin-top: 48px; }

/* ─── Categories Grid ────────────────────────────────────── */
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px;
}
.category-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s ease; display: block;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-img-wrap {
  position: relative; padding-top: 120%;
  background: var(--cream-dark);
}
.category-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-img-wrap img { transform: scale(1.08); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 60%);
}
.category-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; color: var(--white);
}
.category-name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.category-explore { font-size: 0.75rem; color: var(--gold-light); display: flex; align-items: center; gap: 4px; }

/* ─── Product Card ───────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: all 0.3s ease; overflow: hidden;
  border: 1px solid var(--border);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-img-wrap {
  position: relative; padding-top: 100%; background: var(--cream-dark); overflow: hidden;
}
.product-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
}
.badge-sale { background: var(--danger); color: var(--white); }
.badge-low  { background: var(--warning); color: var(--white); top: 40px; }
.badge-out  { background: var(--text-muted); color: var(--white); }
.badge-featured { background: var(--gold); color: var(--charcoal); }

.product-card-actions {
  position: absolute; bottom: -50px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; padding: 12px;
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
  transition: all 0.3s ease;
}
.product-card:hover .product-card-actions { bottom: 0; }
.product-action-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; transition: all 0.2s; cursor: pointer; border: none;
}
.product-action-btn:hover { background: var(--gold); color: var(--charcoal); }

.product-card-info { padding: 16px; }
.product-card-category { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.product-card-name { font-family: var(--font-serif); font-size: 1rem; margin: 4px 0 6px; line-height: 1.3; }
.product-card-name a:hover { color: var(--gold); }
.product-purity { font-size: 0.78rem; color: var(--text-muted); }
.product-card-price { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.price-current { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); }
.price-original { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.stars, .stars-large { color: var(--gold); font-size: 0.78rem; }
.stars-large { font-size: 1rem; }
.rating-count { font-size: 0.78rem; color: var(--text-muted); }

/* Empty States */
.empty-products, .empty-state {
  grid-column: 1 / -1; text-align: center; padding: 60px;
  color: var(--text-muted);
}
.empty-products i, .empty-state i { font-size: 3rem; margin-bottom: 16px; color: var(--gold); display: block; }
.empty-state h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 8px; color: var(--charcoal); }

/* ─── Why Us ─────────────────────────────────────────────── */
.why-us-section { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); text-align: center; transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--gold-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
}
.why-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── Dark Section ───────────────────────────────────────── */
.dark-section { background: var(--charcoal); }
.dark-section .product-card { background: var(--charcoal-light); border-color: rgba(255,255,255,0.1); }
.dark-section .product-card-name a { color: var(--white); }
.dark-section .price-current { color: var(--gold-light); }

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-gold); border-color: var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--charcoal);
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D1B0E 100%);
  padding: 60px 0;
}
.cta-content {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-content h2 { font-family: var(--font-serif); color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-content p { color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal), #2D1B0E);
  padding: 48px 0 40px; color: var(--white);
}
.page-hero-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 8px; }
.page-hero-sub { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb span.capitalize { text-transform: capitalize; color: rgba(255,255,255,0.6); }

/* ─── Shop Layout ────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.shop-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: sticky; top: 100px; }
.sidebar-filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.sidebar-filter-header h3 { font-family: var(--font-serif); font-size: 1rem; }
.clear-filters { font-size: 0.8rem; color: var(--gold); }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-of-type { border-bottom: none; }
.filter-title { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 10px; }
.filter-options { display: flex; flex-direction: column; gap: 6px; }
.filter-option { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.88rem; color: var(--text-secondary); padding: 4px 0; }
.filter-option:hover { color: var(--gold); }
.filter-option input[type="radio"] { accent-color: var(--gold); }
.filter-input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.88rem; color: var(--text-primary); background: var(--white);
}
.filter-input:focus { outline: none; border-color: var(--gold); }
.price-range-inputs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.price-range-inputs span { text-align: center; font-size: 0.8rem; color: var(--text-muted); }
.filter-select {
  width: 100%; padding: 9px 12px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.88rem; background: var(--white); color: var(--text-primary);
}
.filter-select:focus { outline: none; border-color: var(--gold); }
.btn-block + .btn-block { margin-top: 8px; }

/* Shop toolbar */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.shop-toolbar-left { display: flex; align-items: center; gap: 12px; }
.products-count { font-size: 0.88rem; color: var(--text-muted); }
.products-count strong { color: var(--text-primary); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: var(--text-muted); cursor: pointer;
}
.view-btn.active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; border: 1px solid var(--border);
  color: var(--text-secondary); background: var(--white); transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* ─── Product Detail ─────────────────────────────────────── */
.product-detail-section { padding: 32px 0 60px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 28px 0 48px; align-items: start; }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; position: relative; background: var(--cream-dark); }
.gallery-main-img { width: 100%; height: 500px; object-fit: cover; }
.badge-large { font-size: 0.88rem; padding: 6px 14px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.gallery-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  object-fit: cover; cursor: pointer; border: 2px solid var(--border);
  transition: border-color 0.2s;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--gold); }

.product-detail-cat { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.product-detail-name { font-size: clamp(1.5rem, 3vw, 2rem); margin: 8px 0; }
.product-detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 0.88rem; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.detail-price-current { font-size: 1.8rem; font-weight: 700; color: var(--charcoal); font-family: var(--font-serif); }
.detail-price-original { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.detail-savings { font-size: 0.85rem; color: var(--success); font-weight: 600; }

.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-bottom: 20px; padding: 16px; background: var(--cream); border-radius: var(--radius); }
.spec-item { display: flex; flex-direction: column; gap: 2px; }
.spec-item span { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.spec-item strong { font-size: 0.9rem; }

.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger  { color: var(--danger); }

.product-detail-desc { margin-bottom: 24px; font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

.product-detail-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn {
  width: 40px; height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; background: var(--cream); color: var(--text-primary);
  cursor: pointer; border: none; transition: background var(--transition);
}
.qty-btn:hover { background: var(--gold-pale); }
.qty-input, .qty-display {
  width: 50px; text-align: center; padding: 10px 0;
  font-size: 0.95rem; font-weight: 600; border: none; background: var(--white);
}
.qty-input:focus { outline: none; }
.qty-control-sm .qty-btn { width: 30px; height: 34px; font-size: 1rem; }
.qty-display { display: flex; align-items: center; justify-content: center; }

.out-of-stock-banner {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; text-align: center;
  color: var(--text-secondary); margin-bottom: 16px;
}

.product-trust { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.trust-badge {
  display: flex; align-items: center; gap: 6px; padding: 6px 12px;
  background: var(--cream); border-radius: 999px; font-size: 0.75rem; color: var(--text-secondary);
}
.trust-badge i { color: var(--gold); }

/* ─── Product Tabs ───────────────────────────────────────── */
.product-tabs { margin-top: 48px; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.tab-btn {
  padding: 12px 24px; font-size: 0.92rem; font-weight: 500;
  color: var(--text-secondary); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all var(--transition); cursor: pointer;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-body { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; }

.care-guide ul { display: flex; flex-direction: column; gap: 10px; }
.care-guide li { display: flex; align-items: flex-start; gap: 10px; }
.care-guide li i { color: var(--gold); margin-top: 2px; }

/* Reviews */
.review-form-wrap { background: var(--cream); border-radius: var(--radius); padding: 24px; margin-bottom: 28px; }
.review-form-wrap h4 { font-family: var(--font-serif); margin-bottom: 16px; }
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; margin-bottom: 12px; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 1.5rem; color: #ddd; cursor: pointer; }
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: var(--gold); }
.form-textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); resize: vertical; font-family: inherit; font-size: 0.9rem;
  min-height: 100px; margin-bottom: 12px;
}
.form-textarea:focus { outline: none; border-color: var(--gold); }
.review-login-prompt { padding: 20px; text-align: center; color: var(--text-muted); }
.review-login-prompt a { color: var(--gold); }
.reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-item { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); }
.review-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--charcoal); font-size: 0.9rem; flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 0.9rem; }
.review-stars { font-size: 0.8rem; margin: 2px 0; }
.review-date { font-size: 0.75rem; color: var(--text-muted); }
.review-comment { font-size: 0.9rem; color: var(--text-secondary); }
.empty-reviews { text-align: center; padding: 40px; color: var(--text-muted); }
.empty-reviews i { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 10px; }

/* ─── Cart ───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-header { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 12px; padding: 12px 0; border-bottom: 2px solid var(--border); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.cart-item { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 40px; gap: 12px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-product { display: flex; align-items: center; gap: 14px; }
.cart-item-img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-name { font-weight: 600; font-size: 0.9rem; }
.cart-item-name a:hover { color: var(--gold); }
.cart-item-meta { font-size: 0.78rem; color: var(--text-muted); }
.cart-item-price, .cart-item-subtotal { font-size: 0.9rem; font-weight: 600; }
.cart-remove-btn { color: var(--text-muted); font-size: 1rem; padding: 8px; border-radius: 50%; }
.cart-remove-btn:hover { color: var(--danger); background: #fef2f2; }
.cart-actions { display: flex; justify-content: space-between; margin-top: 20px; }
.cart-summary { position: sticky; top: 100px; }
.cart-summary-card, .checkout-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 16px; }
.cart-summary-title, .checkout-section-title { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 20px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--gold); color: var(--charcoal); border-radius: 50%; font-size: 0.85rem; font-weight: 700; margin-right: 8px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 0.9rem; }
.summary-row span:first-child { color: var(--text-secondary); }
.summary-total { font-size: 1.1rem; font-weight: 700; padding-top: 4px; }
.summary-divider { height: 1px; background: var(--border); margin: 12px 0; }
.free-shipping-notice { background: var(--gold-pale); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.82rem; color: var(--gold-dark); margin-bottom: 16px; }
.free-shipping-active { background: #ecfdf5; border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.82rem; color: var(--success); margin-bottom: 16px; }
.secure-badges { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }
.secure-badges i { color: var(--success); margin-right: 4px; }
.whatsapp-order-box { background: var(--cream); border-radius: var(--radius); padding: 16px; text-align: center; }
.whatsapp-order-box p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }

/* ─── Checkout ───────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.checkout-card + .checkout-card { margin-top: 16px; }
.saved-addresses { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.saved-address-card {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px;
  border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer;
  transition: border-color 0.2s;
}
.saved-address-card:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); }
.saved-address-info { font-size: 0.88rem; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); }
.form-hint { font-size: 0.72rem; color: var(--text-muted); }
.form-input {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--text-primary); background: var(--white); transition: border-color 0.2s;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input:disabled { background: var(--cream); color: var(--text-muted); }
.form-select { padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; background: var(--white); color: var(--text-primary); }
.form-select:focus { outline: none; border-color: var(--gold); }
.input-wrap { position: relative; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; }
.input-with-icon { padding-left: 40px; }
.password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.payment-options { display: flex; flex-direction: column; gap: 12px; }
.payment-option {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer;
  transition: all 0.2s;
}
.payment-option:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); }
.payment-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.payment-info strong { display: block; font-size: 0.92rem; }
.payment-info span { font-size: 0.78rem; color: var(--text-muted); }
.payment-logos { display: flex; gap: 6px; margin-left: auto; }
.payment-chip { padding: 3px 8px; background: var(--cream-dark); border-radius: 4px; font-size: 0.7rem; font-weight: 600; }
.checkout-items-list { max-height: 300px; overflow-y: auto; margin-bottom: 16px; padding-right: 4px; }
.checkout-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.checkout-item-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); }
.checkout-item-info { flex: 1; }
.checkout-item-name { font-size: 0.88rem; font-weight: 500; margin-bottom: 2px; }
.checkout-item-qty { font-size: 0.78rem; color: var(--text-muted); }
.checkout-item-price { font-size: 0.9rem; font-weight: 600; }

/* ─── Orders ─────────────────────────────────────────────── */
.orders-list { display: flex; flex-direction: column; gap: 20px; }
.order-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--cream); border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.order-number { font-weight: 700; }
.order-date { font-size: 0.82rem; color: var(--text-muted); }
.order-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.order-card-body { padding: 16px 20px; }
.order-items-preview { display: flex; flex-direction: column; gap: 10px; }
.order-item-preview { display: flex; align-items: center; gap: 12px; }
.order-item-preview img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); }
.order-item-info p { font-size: 0.88rem; }
.order-item-info p:last-child { font-size: 0.78rem; color: var(--text-muted); }
.more-items { font-size: 0.82rem; color: var(--text-muted); padding: 4px 0; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.order-total { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.order-total strong { font-size: 1.05rem; }
.order-actions { display: flex; gap: 8px; }

/* Status Badges */
.badge { padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; text-transform: capitalize; }
.badge-pending    { background: #fef3c7; color: #92400e; }
.badge-confirmed  { background: #dbeafe; color: #1e40af; }
.badge-processing { background: #ede9fe; color: #5b21b6; }
.badge-shipped    { background: #cffafe; color: #0e7490; }
.badge-delivered  { background: #d1fae5; color: #065f46; }
.badge-cancelled  { background: #fee2e2; color: #991b1b; }
.badge-payment-paid    { background: #d1fae5; color: #065f46; }
.badge-payment-pending { background: #fef3c7; color: #92400e; }
.badge-payment-failed  { background: #fee2e2; color: #991b1b; }
.badge-active   { background: #d1fae5; color: #065f46; }
.badge-inactive { background: #f3f4f6; color: #374151; }
.badge-blocked  { background: #fee2e2; color: #991b1b; }

/* ─── Order Detail ───────────────────────────────────────── */
.order-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.order-status-card, .order-items-card, .order-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.order-status-card h3, .order-items-card h3, .order-info-card h4 { font-family: var(--font-serif); margin-bottom: 20px; }
.order-timeline { display: flex; align-items: center; overflow-x: auto; padding-bottom: 4px; }
.timeline-step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 80px; }
.timeline-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.9rem; transition: all 0.3s; }
.timeline-step.completed .timeline-icon { background: var(--gold); color: var(--charcoal); }
.timeline-step.current .timeline-icon { background: var(--gold); color: var(--charcoal); box-shadow: 0 0 0 4px rgba(201,168,76,0.3); }
.timeline-label { font-size: 0.72rem; color: var(--text-muted); text-transform: capitalize; }
.timeline-step.completed .timeline-label { color: var(--gold-dark); font-weight: 600; }
.timeline-line { flex: 1; height: 2px; background: var(--border); min-width: 30px; transition: background 0.3s; }
.timeline-line.completed { background: var(--gold); }
.order-item-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.order-item-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.order-item-detail { flex: 1; }
.order-item-name { font-weight: 600; font-size: 0.92rem; }
.order-item-meta { font-size: 0.78rem; color: var(--text-muted); }
.order-item-qty { font-size: 0.85rem; color: var(--text-muted); }
.order-item-price { font-weight: 700; }
.order-pricing-summary { margin-top: 16px; }
.order-sidebar .order-info-card { margin-bottom: 12px; }
.address-block { font-size: 0.88rem; line-height: 1.8; }
.payment-detail { display: flex; flex-direction: column; gap: 8px; }
.text-mono { font-family: monospace; font-size: 0.78rem; }

/* ─── Auth Pages ─────────────────────────────────────────── */
.auth-section { min-height: calc(100vh - var(--nav-h) - var(--announce-h)); display: flex; align-items: center; background: linear-gradient(135deg, var(--charcoal) 0%, #2D1B0E 100%); padding: 48px 24px; }
.auth-container { width: 100%; max-width: 900px; margin: 0 auto; }
.auth-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.auth-branding { background: linear-gradient(135deg, var(--charcoal), #2D1B0E); color: var(--white); padding: 48px 36px; display: flex; flex-direction: column; justify-content: center; }
.auth-brand-logo { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.auth-branding h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); margin-bottom: 12px; }
.auth-branding p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.7; }
.auth-brand-benefits { display: flex; flex-direction: column; gap: 12px; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.benefit-item i { color: var(--gold); width: 16px; }
.auth-form-wrap { padding: 48px 36px; }
.auth-title { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 6px; }
.auth-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; }
.auth-link { color: var(--gold); font-weight: 600; }
.form-errors { background: #fef2f2; border: 1px solid rgba(239,68,68,0.3); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 20px; }
.form-error-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--danger); padding: 3px 0; }
.auth-form .form-group { margin-bottom: 16px; }
.auth-divider { text-align: center; position: relative; margin: 16px 0; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { position: relative; background: var(--white); padding: 0 12px; font-size: 0.78rem; color: var(--text-muted); }
.auth-terms { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 16px; line-height: 1.6; }
.auth-terms a { color: var(--gold); }
.forgot-link { float: right; font-size: 0.78rem; color: var(--gold); }
.password-strength { margin-bottom: 12px; }
.strength-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 4px; }
.strength-fill { height: 100%; border-radius: 2px; transition: all 0.3s; width: 0%; }
#strengthLabel { font-size: 0.72rem; color: var(--text-muted); }

/* ─── Profile ────────────────────────────────────────────── */
.profile-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.profile-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: sticky; top: 100px; }
.profile-avatar-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.profile-name-info strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.profile-name-info span { font-size: 0.78rem; color: var(--text-muted); }
.profile-nav { display: flex; flex-direction: column; gap: 4px; }
.profile-nav-link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text-secondary); transition: all var(--transition); }
.profile-nav-link:hover, .profile-nav-link.active { background: var(--gold-pale); color: var(--gold); }
.profile-nav-link i { width: 16px; }
.profile-main { display: flex; flex-direction: column; gap: 20px; }
.profile-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.profile-card-title { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 24px; }
.profile-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.profile-form .form-grid { margin-bottom: 20px; }
.addresses-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-bottom: 20px; }
.address-card { background: var(--cream); border-radius: var(--radius); padding: 16px; border: 2px solid var(--border); position: relative; font-size: 0.88rem; line-height: 1.8; }
.default-address { border-color: var(--gold); }
.default-badge { position: absolute; top: 10px; right: 10px; background: var(--gold); color: var(--charcoal); font-size: 0.68rem; padding: 2px 8px; border-radius: 999px; font-weight: 600; }
.address-name { font-weight: 600; margin-bottom: 4px; }
.address-card-actions { margin-top: 12px; }
.add-address-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: transparent; border: 2px dashed var(--border); border-radius: var(--radius); padding: 28px; cursor: pointer; color: var(--text-muted); transition: all 0.2s; }
.add-address-card:hover { border-color: var(--gold); color: var(--gold); }
.add-address-card i { font-size: 1.5rem; }
.add-address-form { background: var(--cream); border-radius: var(--radius); padding: 20px; margin-top: 16px; }
.add-address-form h4 { font-family: var(--font-serif); margin-bottom: 16px; }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; cursor: pointer; margin: 8px 0; }
.form-check input { accent-color: var(--gold); }
.form-check-group { display: flex; flex-direction: column; gap: 4px; }
.form-actions { display: flex; gap: 10px; margin-top: 16px; }

/* ─── Error Pages ────────────────────────────────────────── */
.error-section { padding: 80px 0; text-align: center; }
.error-content { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.error-code { font-size: 8rem; font-weight: 900; color: var(--gold); line-height: 1; font-family: var(--font-serif); opacity: 0.8; }
.error-title { font-family: var(--font-serif); font-size: 2rem; }
.error-msg { color: var(--text-secondary); max-width: 400px; }
.error-actions { display: flex; gap: 12px; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--charcoal); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-logo .logo-main { color: var(--white); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--charcoal); }
.footer-heading { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.footer-contact i { color: var(--gold); margin-top: 2px; width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-payment img { height: 24px; }

/* ─── Animations ─────────────────────────────────────────── */
.animate-fade-up { animation: fadeUp 0.7s ease both; }
.animate-fade-left { animation: fadeLeft 0.7s ease 0.2s both; }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 220px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content { gap: 40px; }
  .hero-img { width: 360px; height: 420px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; }
  .hero-image { display: none; }
  .hero-actions, .hero-trust { justify-content: center; }

  .stats-grid { gap: 0; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }

  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; position: fixed; top: 0; left: 0; width: 280px; height: 100vh; z-index: 500; overflow-y: auto; border-radius: 0; }
  .shop-sidebar.open { display: block; }

  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-main-img { height: 350px; }

  .cart-layout { grid-template-columns: 1fr; }
  .cart-header { display: none; }
  .cart-item { grid-template-columns: 1fr; gap: 10px; }

  .checkout-layout { grid-template-columns: 1fr; }
  .order-detail-layout { grid-template-columns: 1fr; }
  .profile-layout { grid-template-columns: 1fr; }

  .auth-card { grid-template-columns: 1fr; }
  .auth-branding { display: none; }

  .cta-content { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col { display: none; }

  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .stat-item { padding: 8px 12px; }
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}