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

:root {
  --white: #FFFFFF;
  --gold: #C8A24D;
  --gold-light: #E0C47A;
  --gold-dark: #A8832A;
  --charcoal: #2D3748;
  --slate: #334155;
  --ivory: #F7F5F0;
  --light-gray: #F8FAFC;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #64748B;
  --text-dark: #1A202C;
  --text-body: #4A5568;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { 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, h6 { font-family: 'Playfair Display', serif; color: var(--charcoal); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 500; }
p { line-height: 1.7; color: var(--text-body); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ========== LAYOUT ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ========== HEADER ========== */
.top-bar {
  background: var(--charcoal);
  color: var(--gray-400);
  font-size: 0.78rem;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-bar a { color: var(--gray-400); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-right a { display: flex; align-items: center; gap: 6px; }

.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--charcoal);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.02em; }
.logo-tagline { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: -2px; }

.header-search { flex: 1; max-width: 420px; position: relative; }
.header-search input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 24px;
  font-size: 0.875rem;
  background: var(--light-gray);
  outline: none;
  transition: var(--transition);
}
.header-search input:focus { border-color: var(--gold); background: var(--white); }
.header-search button {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); display: flex; align-items: center; justify-content: center;
}
.header-search button:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-action-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 8px;
  color: var(--charcoal); font-size: 0.875rem; font-weight: 500;
  position: relative; transition: var(--transition);
}
.header-action-btn:hover { background: var(--ivory); color: var(--gold); }
.header-action-btn .badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ========== NAVIGATION ========== */
.nav { background: var(--white); border-bottom: 2px solid var(--gold); }
.nav .container { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px; font-size: 0.875rem; font-weight: 500;
  color: var(--slate); transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link svg { width: 14px; height: 14px; transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 999;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 20px;
  font-size: 0.875rem; color: var(--slate);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--ivory); color: var(--gold); padding-left: 28px; }

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(45,55,72,0.92) 40%, rgba(45,55,72,0.65) 100%);
  z-index: 1;
}
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 80px 0;
}
.hero-content .section-label { color: var(--gold-light); }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content p { color: rgba(255,255,255,0.80); font-size: 1.1rem; max-width: 520px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
}
.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 6px 20px rgba(200,162,77,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover { background: var(--slate); border-color: var(--slate); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ========== TRUST BAR ========== */
.trust-bar { background: var(--ivory); padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.trust-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; color: var(--gold); }
.trust-label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.trust-sub { font-size: 0.72rem; color: var(--gray-600); }

/* ========== CATEGORIES GRID ========== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer; background: var(--charcoal);
}
.category-card img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.75;
}
.category-card:hover img { transform: scale(1.06); opacity: 0.65; }
.category-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  background: linear-gradient(0deg, rgba(45,55,72,0.85) 0%, transparent 55%);
}
.category-card-content h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.category-card-content span { color: var(--gold-light); font-size: 0.8rem; font-weight: 500; }
.category-card-link {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.product-card-image {
  position: relative; overflow: hidden;
  background: var(--ivory);
}
.product-card-image img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; }
.product-action-btn {
  width: 36px; height: 36px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.product-action-btn:hover { background: var(--gold); color: var(--white); }
.product-action-btn svg { width: 16px; height: 16px; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.product-badge.new { background: var(--charcoal); }
.product-badge.sale { background: #E53E3E; }

.product-card-body { padding: 16px 20px 20px; }
.product-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--charcoal); margin-bottom: 8px; line-height: 1.35; }
.product-name a:hover { color: var(--gold); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); color: var(--gold); }
.stars svg.empty { fill: var(--gray-200); color: var(--gray-200); }
.rating-count { font-size: 0.78rem; color: var(--gray-600); }
.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.price-current { font-size: 1.2rem; font-weight: 700; color: var(--charcoal); }
.price-original { font-size: 0.9rem; color: var(--gray-400); text-decoration: line-through; }
.price-discount { font-size: 0.78rem; font-weight: 600; color: #E53E3E; }
.product-card-footer { display: flex; gap: 8px; }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-header-left { text-align: left; margin: 0 0 40px; max-width: 100%; }
.section-header-split {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; margin-bottom: 40px;
}

/* ========== DIVIDER ========== */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--gold); margin: 16px auto;
  border-radius: 2px;
}
.gold-divider-left { margin: 16px 0; }

/* ========== BLOG CARDS ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-category {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.78rem; color: var(--gray-400); }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
  padding: 16px 0; font-size: 0.82rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  background: var(--light-gray);
}
.breadcrumbs .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--gray-600); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { color: var(--gray-400); }
.breadcrumbs .current { color: var(--charcoal); font-weight: 500; }

/* ========== PAGE HEADER ========== */
.page-header {
  background: var(--charcoal); padding: 64px 0;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(200,162,77,0.12) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.7); max-width: 540px; font-size: 1.05rem; }

/* ========== FILTERS SIDEBAR ========== */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filters-sidebar {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 90px;
}
.filter-group { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-200); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-title {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  font-weight: 600; color: var(--charcoal);
  margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center;
}
.filter-title button { font-size: 0.75rem; color: var(--gold); font-weight: 600; font-family: 'Inter', sans-serif; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }
.filter-option label { font-size: 0.875rem; color: var(--text-body); cursor: pointer; flex: 1; }
.filter-option .count { font-size: 0.75rem; color: var(--gray-400); }

.price-range { display: flex; gap: 10px; align-items: center; }
.price-range input[type="number"] {
  width: 100%; padding: 8px 10px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 0.82rem; outline: none;
}
.price-range input[type="number"]:focus { border-color: var(--gold); }
.price-range span { color: var(--gray-400); font-size: 0.875rem; flex-shrink: 0; }

/* ========== COLOR SWATCHES ========== */
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); position: relative;
}
.color-swatch:hover, .color-swatch.active { border-color: var(--gold); transform: scale(1.15); }

/* ========== SORT BAR ========== */
.sort-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; padding: 14px 20px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.sort-bar-left { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--gray-600); }
.sort-bar select {
  padding: 6px 12px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: 0.875rem; outline: none;
  cursor: pointer; accent-color: var(--gold);
}
.sort-bar select:focus { border-color: var(--gold); }
.view-toggle { display: flex; gap: 6px; }
.view-btn {
  width: 34px; height: 34px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  transition: var(--transition);
}
.view-btn.active, .view-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--ivory); }

/* ========== COMPARISON TABLE ========== */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.compare-table th {
  background: var(--charcoal); color: var(--white);
  padding: 14px 16px; text-align: left; font-weight: 600;
}
.compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.compare-table tr:nth-child(even) { background: var(--light-gray); }
.compare-table tr:hover { background: var(--ivory); }
.check-yes { color: #38A169; font-weight: 600; }
.check-no { color: #E53E3E; }

/* ========== NEWSLETTER ========== */
.newsletter { background: var(--charcoal); padding: 72px 0; }
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.newsletter h2 { color: var(--white); margin-bottom: 14px; }
.newsletter p { color: rgba(255,255,255,0.7); }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white); font-size: 0.9rem;
  outline: none; transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-success {
  display: none; background: rgba(200,162,77,0.15);
  border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 14px 20px; color: var(--gold); font-weight: 500;
  font-size: 0.9rem; margin-top: 12px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote { font-size: 2.5rem; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ivory); overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--charcoal); }
.testimonial-location { font-size: 0.75rem; color: var(--gray-600); }

/* ========== BRANDS ========== */
.brands-strip { background: var(--ivory); padding: 40px 0; }
.brands-grid { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.brand-item {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--gray-400); letter-spacing: 0.08em;
  transition: var(--transition);
}
.brand-item:hover { color: var(--charcoal); }

/* ========== PRODUCT DETAIL ========== */
.product-detail-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.product-main-image {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ivory); margin-bottom: 16px;
}
.product-main-image img { width: 100%; height: 520px; object-fit: cover; }
.product-thumbnails { display: flex; gap: 10px; }
.product-thumb {
  width: 80px; height: 80px; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; border: 2px solid var(--gray-200);
  transition: var(--transition); flex-shrink: 0;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info-panel { padding: 8px 0; }
.product-info-panel .product-brand { font-size: 0.8rem; margin-bottom: 6px; }
.product-info-panel h1 { font-size: 2rem; margin-bottom: 12px; }
.product-info-panel .product-price { margin-bottom: 20px; }
.product-info-panel .price-current { font-size: 1.8rem; }
.product-specs-list { margin: 24px 0; }
.product-spec-row {
  display: flex; gap: 16px; padding: 10px 0;
  border-bottom: 1px solid var(--gray-200); font-size: 0.875rem;
}
.product-spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--gray-600); min-width: 140px; font-weight: 500; }
.spec-value { color: var(--charcoal); font-weight: 500; }
.product-qty { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.qty-btn {
  width: 40px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--light-gray); color: var(--charcoal); font-size: 1.1rem;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--white); }
.qty-input {
  width: 56px; height: 42px;
  text-align: center; border: none; border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200); font-size: 0.95rem;
  font-weight: 600; outline: none; color: var(--charcoal);
}
.product-add-actions { display: flex; gap: 12px; margin-top: 20px; }
.product-tabs { margin-top: 48px; }
.tab-nav { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 28px; }
.tab-btn {
  padding: 12px 24px; font-size: 0.9rem; font-weight: 600;
  color: var(--gray-600); border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: var(--transition);
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ========== CART ========== */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.cart-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 20px; align-items: center; padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item-image { border-radius: var(--radius); overflow: hidden; background: var(--ivory); }
.cart-item-image img { width: 100px; height: 100px; object-fit: cover; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--charcoal); margin-bottom: 4px; }
.cart-item-meta { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 10px; }
.cart-item-remove { font-size: 0.78rem; color: #E53E3E; font-weight: 600; }
.cart-summary {
  background: var(--ivory); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 100px;
}
.cart-summary h3 { margin-bottom: 20px; font-size: 1.1rem; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.875rem; }
.summary-total { display: flex; justify-content: space-between; padding-top: 16px; border-top: 2px solid var(--gold); font-weight: 700; font-size: 1.05rem; margin-top: 8px; }

/* ========== CHECKOUT ========== */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.form-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.form-section h3 { margin-bottom: 20px; font-size: 1.05rem; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 0.875rem; outline: none; transition: var(--transition);
  color: var(--charcoal);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.success-message {
  display: none; text-align: center; padding: 48px 32px;
  background: var(--white); border: 1px solid #38A169;
  border-radius: var(--radius-lg); margin-top: 24px;
}
.success-message .success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #F0FFF4; border: 2px solid #38A169;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-message h3 { color: #276749; margin-bottom: 12px; }
.success-message p { color: var(--gray-600); }

/* ========== CONTACT ========== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info-block { margin-bottom: 32px; }
.contact-info-block h4 { color: var(--charcoal); margin-bottom: 8px; font-size: 1rem; }
.contact-info-block p, .contact-info-block a { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.contact-info-block a:hover { color: var(--gold); }
.contact-form-wrapper {
  background: var(--ivory); border-radius: var(--radius-lg); padding: 40px;
}

/* ========== ABOUT ========== */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-hero img { border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.value-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ivory); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--gold); }
.value-card h4 { margin-bottom: 8px; font-size: 0.95rem; }
.value-card p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.6; }

/* ========== STATS ========== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-block { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.82rem; color: var(--gray-600); margin-top: 4px; }

/* ========== FOOTER ========== */
.footer { background: var(--charcoal); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-tagline { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-top: 16px; line-height: 1.7; }
.footer-brand-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; }

.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.78rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ========== COOKIE NOTICE ========== */
.cookie-notice {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 740px; margin: 0 auto;
  background: var(--charcoal); border: 1px solid rgba(200,162,77,0.3);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-lg); z-index: 9999;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-notice.hidden { display: none; }
.cookie-notice p { color: rgba(255,255,255,0.75); font-size: 0.82rem; flex: 1; line-height: 1.5; }
.cookie-notice p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 990;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ========== BADGES / MISC ========== */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  background: var(--ivory); color: var(--charcoal);
  border: 1px solid var(--gray-200);
}
.tag-gold { background: rgba(200,162,77,0.1); color: var(--gold-dark); border-color: rgba(200,162,77,0.3); }

.info-banner {
  background: linear-gradient(90deg, rgba(200,162,77,0.08) 0%, rgba(200,162,77,0.03) 100%);
  border: 1px solid rgba(200,162,77,0.25); border-radius: var(--radius);
  padding: 16px 20px; font-size: 0.875rem; color: var(--charcoal);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.info-banner svg { color: var(--gold); flex-shrink: 0; }

/* ========== ACCORDION ========== */
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 600;
  color: var(--charcoal); font-size: 0.95rem; transition: var(--transition);
}
.accordion-header:hover { color: var(--gold); }
.accordion-header svg { width: 18px; height: 18px; transition: var(--transition); flex-shrink: 0; }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); color: var(--gold); }
.accordion-body { display: none; padding: 0 0 18px; font-size: 0.875rem; color: var(--gray-600); line-height: 1.8; }
.accordion-item.open .accordion-body { display: block; }

/* ========== POLICY PAGES ========== */
.policy-content {
  max-width: 820px; margin: 0 auto;
  padding: 56px 0 80px;
}
.policy-content h2 { font-size: 1.4rem; color: var(--charcoal); margin: 36px 0 14px; }
.policy-content h3 { font-size: 1.1rem; color: var(--charcoal); margin: 24px 0 10px; }
.policy-content p { margin-bottom: 16px; font-size: 0.9rem; color: var(--text-body); line-height: 1.8; }
.policy-content ul { margin: 10px 0 16px 20px; list-style: disc; }
.policy-content ul li { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 6px; }
.policy-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.875rem; }
.policy-content table th { background: var(--charcoal); color: var(--white); padding: 12px 16px; text-align: left; }
.policy-content table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-200); }
.policy-content table tr:nth-child(even) { background: var(--light-gray); }
.policy-date { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 32px; padding: 12px 16px; background: var(--ivory); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }

/* ========== PAGINATION ========== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.page-num {
  width: 38px; height: 38px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gray-200); font-size: 0.875rem;
  color: var(--slate); transition: var(--transition);
}
.page-num:hover, .page-num.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.page-arrow { padding: 0 14px; height: 38px; border-radius: var(--radius); display: flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--slate); border: 1.5px solid var(--gray-200); transition: var(--transition); }
.page-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ========== MOBILE MENU ========== */
.mobile-menu-btn { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); border: 1.5px solid var(--gray-200); }
.mobile-menu-btn svg { width: 20px; height: 20px; }
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 2000; transform: translateX(-100%); transition: transform 0.35s ease; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.mobile-menu-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.mobile-nav-list { padding: 16px 0; }
.mobile-nav-link { display: block; padding: 14px 24px; font-size: 1rem; color: var(--charcoal); font-weight: 500; border-bottom: 1px solid var(--gray-200); }
.mobile-nav-link:hover { color: var(--gold); background: var(--ivory); }

/* ========== UTILITIES ========== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-charcoal { color: var(--charcoal); }
.bg-ivory { background: var(--ivory); }
.bg-light { background: var(--light-gray); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== FEATURED STRIP ========== */
.featured-strip {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
.featured-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--charcoal);
}
.featured-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; opacity: 0.7; transition: transform 0.5s ease; }
.featured-card:hover img { transform: scale(1.05); opacity: 0.6; }
.featured-card-content {
  position: absolute; inset: 0; padding: 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(0deg, rgba(45,55,72,0.88) 0%, transparent 55%);
}
.featured-card-content h3 { color: var(--white); margin-bottom: 6px; }
.featured-card-content p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 16px; }

/* ========== TIMELINE (About) ========== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--gold); opacity: 0.3; }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; left: -27px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(200,162,77,0.25);
}
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.timeline-item h4 { font-size: 1rem; color: var(--charcoal); margin-bottom: 6px; }
.timeline-item p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
  border-radius: var(--radius-lg); padding: 48px;
  color: var(--white); position: relative; overflow: hidden;
}
.highlight-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(200,162,77,0.12);
}
.highlight-box h2 { color: var(--white); margin-bottom: 16px; }
.highlight-box p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

/* ========== GUIDE CARD ========== */
.guide-card {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 40px; align-items: center;
  background: var(--ivory); border-radius: var(--radius-lg); padding: 40px;
  margin-bottom: 24px;
}
.guide-card.reverse { direction: rtl; }
.guide-card.reverse > * { direction: ltr; }
.guide-card img { border-radius: var(--radius); width: 100%; height: 280px; object-fit: cover; }
.guide-card h3 { margin-bottom: 12px; }
.guide-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }

/* ========== STEPS ========== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  text-align: center; padding: 32px 20px;
  position: relative;
}
.step-card::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-size: 1.2rem; font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
}
.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* auto-fix missing classes */
.footer-col h5,.footer-col .footer-heading{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;}

/* auto-fix: R13 footer structural classes */
.footer-col { }
.footer-col h5, .footer-col .footer-heading {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 14px; opacity: .6;
}
.footer-col ul { padding: 0; list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-brand .logo-text,
.footer-brand .site-logo__name,
.footer-brand .footer-logo-name { color: #fff; }
.footer-brand .logo-icon,
.footer-brand .site-logo__icon { background: rgba(255,255,255,.12); }
