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

:root {
  --white: #FFFFFF;
  --rose-gold: #D4A5A5;
  --soft-pink: #F8D7DA;
  --slate: #334155;
  --champagne: #F5E6D3;
  --light-gray: #F8FAFC;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ─── UTILITY ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-muted { color: var(--text-muted); }
.text-rose { color: var(--rose-gold); }
.section-gap { padding: 80px 0; }
.section-gap-sm { padding: 48px 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── TYPOGRAPHY ─── */
.heading-xl { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 600; line-height: 1.15; color: var(--slate); }
.heading-lg { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; line-height: 1.2; color: var(--slate); }
.heading-md { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; line-height: 1.3; color: var(--slate); }
.heading-sm { font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--slate); }
.subtitle { font-size: 18px; font-weight: 400; color: var(--text-muted); line-height: 1.6; }
.label-rose { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--rose-gold); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--slate); color: var(--white);
}
.btn-primary:hover { background: #1E293B; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-rose {
  background: var(--rose-gold); color: var(--white);
}
.btn-rose:hover { background: #C49090; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--slate);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 8px 16px;
}
.btn-ghost:hover { color: var(--slate); background: var(--light-gray); border-radius: var(--radius-sm); }
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }

/* ─── HEADER ─── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-top {
  background: var(--slate);
  color: var(--white);
  font-size: 12px;
  padding: 6px 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.header-top a { color: var(--champagne); }
.header-main { padding: 16px 0; }
.header-inner {
  display: flex; align-items: center; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px; background: var(--slate);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.logo-mark span {
  color: var(--champagne); font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: -1px;
}
.logo-text {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 600; color: var(--slate); letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 9px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rose-gold);
  display: block; margin-top: -2px;
}
.header-search {
  flex: 1; max-width: 480px;
  position: relative;
}
.header-search input {
  width: 100%; padding: 10px 44px 10px 16px;
  border: 1.5px solid var(--border); border-radius: 100px;
  font-size: 14px; font-family: var(--font-body);
  background: var(--light-gray); color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
}
.header-search input:focus { border-color: var(--rose-gold); background: var(--white); }
.header-search button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: var(--rose-gold); color: var(--white);
  border: none; border-radius: 100px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.header-search button:hover { background: var(--slate); }
.header-actions {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.header-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 10px; border-radius: var(--radius-sm);
  background: none; color: var(--slate);
  font-size: 11px; font-weight: 500;
  transition: all var(--transition); position: relative;
}
.header-action-btn:hover { background: var(--light-gray); color: var(--rose-gold); }
.header-action-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 2px; right: 6px;
  background: var(--rose-gold); color: var(--white);
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── NAV ─── */
.nav-bar {
  border-top: 1px solid var(--border);
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; font-size: 14px; font-weight: 500;
  color: var(--text-dark); transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--rose-gold); }
.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
  z-index: 200; padding: 8px;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 14px;
  font-size: 14px; color: var(--text-muted);
  border-radius: var(--radius-sm); transition: all var(--transition);
}
.dropdown a:hover { background: var(--light-gray); color: var(--slate); }
.mega-dropdown {
  position: absolute; top: 100%; left: -120px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  width: 600px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
  z-index: 200; padding: 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.nav-item:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 10px; }
.mega-col a { display: block; padding: 7px 0; font-size: 13px; color: var(--text-muted); border-bottom: 1px solid transparent; transition: all var(--transition); }
.mega-col a:hover { color: var(--slate); border-color: var(--rose-gold); padding-left: 4px; }
.nav-cta { margin-left: auto; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 14px 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb-list a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb-list a:hover { color: var(--rose-gold); }
.breadcrumb-list .sep { color: var(--border); }
.breadcrumb-list .current { color: var(--text-dark); font-weight: 500; }

/* ─── HERO ─── */
.hero {
  min-height: 85vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  overflow: hidden;
}
.hero-content {
  padding: 80px 80px 80px 0;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-title { margin-bottom: 24px; }
.hero-desc { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 36px; border-top: 1px solid var(--border);
}
.hero-stat-val { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--slate); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.3px; }

/* ─── CATEGORY GRID ─── */
.categories-section { background: var(--light-gray); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label-rose { margin-bottom: 12px; }
.section-header .heading-lg { margin-bottom: 16px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); display: block;
  position: relative;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card-image {
  height: 200px; overflow: hidden;
  background: var(--soft-pink);
}
.category-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover .category-card-image img { transform: scale(1.05); }
.category-card-body { padding: 20px; }
.category-card-name {
  font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 6px;
}
.category-card-count { font-size: 12px; color: var(--text-muted); }
.category-card-arrow {
  position: absolute; bottom: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold); transition: all var(--transition);
}
.category-card:hover .category-card-arrow { background: var(--rose-gold); color: var(--white); }

/* ─── PRODUCT CARD ─── */
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-card-image {
  position: relative; height: 240px; overflow: hidden;
  background: var(--light-gray);
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-actions {
  position: absolute; top: 12px; right: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(8px);
  transition: all var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--transition);
  border: none;
}
.product-action-btn:hover { background: var(--rose-gold); color: var(--white); }
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-brand { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 6px; }
.product-name { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-specs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.product-spec-tag {
  font-size: 11px; background: var(--soft-pink); color: var(--slate);
  padding: 3px 10px; border-radius: 100px; font-weight: 500;
}
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: #F59E0B; font-size: 13px; }
.rating-count { font-size: 12px; color: var(--text-muted); }
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
}
.product-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--slate); }
.product-price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.badge-new { background: var(--slate); color: var(--white); }
.badge-top { background: var(--rose-gold); color: var(--white); }

/* ─── FILTERS SIDEBAR ─── */
.catalog-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  align-items: start;
}
.filters-sidebar {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 28px;
  position: sticky; top: 100px;
}
.filter-title {
  font-size: 18px; font-weight: 700; color: var(--slate);
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 24px; }
.filter-group-title {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--slate); margin-bottom: 12px;
  text-transform: uppercase;
}
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted); cursor: pointer;
  transition: color var(--transition);
}
.filter-option:hover { color: var(--slate); }
.filter-option input[type=checkbox] {
  accent-color: var(--rose-gold);
  width: 16px; height: 16px; cursor: pointer;
}
.filter-option input[type=radio] {
  accent-color: var(--rose-gold);
  width: 16px; height: 16px; cursor: pointer;
}
.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-inputs { display: flex; gap: 10px; align-items: center; }
.price-inputs input {
  flex: 1; padding: 8px 12px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 13px; outline: none;
  font-family: var(--font-body);
}
.price-inputs input:focus { border-color: var(--rose-gold); }
.range-slider {
  width: 100%; accent-color: var(--rose-gold);
}
.filter-apply { width: 100%; margin-top: 8px; }

/* ─── PRODUCT GRID ─── */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.catalog-results { font-size: 14px; color: var(--text-muted); }
.sort-select {
  padding: 8px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px;
  font-family: var(--font-body); color: var(--slate);
  background: var(--white); outline: none; cursor: pointer;
}
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--light-gray); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); border: none;
}
.view-btn.active { background: var(--slate); color: var(--white); }

/* ─── COMPARE TABLE ─── */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border);
}
.compare-table th {
  background: var(--slate); color: var(--white);
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  text-align: left;
}
.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-dark);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light-gray); }
.compare-table td:first-child { font-weight: 600; color: var(--text-muted); font-size: 13px; }
.compare-check { color: #22C55E; font-size: 16px; }
.compare-x { color: #EF4444; font-size: 16px; }

/* ─── SPECS TABLE ─── */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table td { padding: 12px 16px; font-size: 14px; }
.specs-table td:first-child { color: var(--text-muted); width: 40%; }
.specs-table td:last-child { font-weight: 500; color: var(--text-dark); }
.specs-table tr:nth-child(even) { background: var(--light-gray); }

/* ─── PRODUCT PAGE ─── */
.product-page { padding: 48px 0 80px; }
.product-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(--light-gray); height: 480px;
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 12px; margin-top: 16px; }
.product-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  overflow: hidden; border: 2px solid transparent; cursor: pointer;
  transition: border-color var(--transition);
}
.product-thumb.active { border-color: var(--rose-gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 8px 0; }
.product-info-brand { margin-bottom: 8px; }
.product-info-name {
  font-family: var(--font-display); font-size: 32px; font-weight: 600;
  color: var(--slate); margin-bottom: 16px; line-height: 1.2;
}
.product-info-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.product-info-price {
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  color: var(--slate); margin-bottom: 8px;
}
.product-info-price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; margin-bottom: 24px; }
.product-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; }
.product-features { margin-bottom: 28px; }
.product-feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted);
}
.feature-icon { color: var(--rose-gold); flex-shrink: 0; margin-top: 1px; }
.qty-selector {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border); border-radius: 100px;
  width: fit-content; margin-bottom: 20px;
}
.qty-btn {
  width: 40px; height: 40px; background: none; border: none;
  font-size: 18px; color: var(--slate); cursor: pointer;
  transition: color var(--transition);
}
.qty-btn:hover { color: var(--rose-gold); }
.qty-input {
  width: 52px; text-align: center; border: none; outline: none;
  font-size: 16px; font-weight: 600; color: var(--slate);
  font-family: var(--font-body);
}
.product-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.product-meta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.product-meta-item { display: flex; gap: 8px; font-size: 13px; margin-bottom: 8px; }
.product-meta-label { color: var(--text-muted); }
.product-meta-val { font-weight: 500; }

/* ─── TABS ─── */
.tabs { margin: 60px 0; }
.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}
.tab-btn {
  padding: 14px 28px; font-size: 15px; font-weight: 500;
  color: var(--text-muted); background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all var(--transition); cursor: pointer;
}
.tab-btn.active { color: var(--slate); border-bottom-color: var(--rose-gold); }
.tab-btn:hover { color: var(--slate); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── INFO CARDS ─── */
.info-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 32px;
  transition: box-shadow var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--soft-pink); display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold); margin-bottom: 20px;
}
.info-card-icon svg { width: 24px; height: 24px; }
.info-card-title { font-size: 18px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.info-card-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── BLOG / ARTICLES ─── */
.article-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.article-card-image { height: 220px; overflow: hidden; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-card-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--rose-gold); margin-bottom: 10px;
}
.article-card-title { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.article-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.article-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.article-date { font-size: 12px; color: var(--text-muted); }
.article-read-more { font-size: 13px; font-weight: 600; color: var(--rose-gold); display: flex; align-items: center; gap: 4px; }

/* ─── EDITORIAL FEATURES ─── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-split-image {
  border-radius: var(--radius-lg); overflow: hidden; height: 480px;
}
.feature-split-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-label { margin-bottom: 16px; }
.feature-title { margin-bottom: 20px; }
.feature-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.feature-list { margin-bottom: 32px; }
.feature-list-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; font-size: 15px; color: var(--text-muted);
}
.feature-list-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--rose-gold); margin-top: 7px; flex-shrink: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--slate); color: var(--white); }
.testimonials-section .section-header .heading-lg { color: var(--white); }
.testimonials-section .label-rose { color: var(--champagne); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid rgba(255,255,255,0.12);
}
.testimonial-quote { font-size: 32px; color: var(--rose-gold); margin-bottom: 16px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--rose-gold); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--white); }
.testimonial-name { font-weight: 600; color: var(--white); font-size: 14px; }
.testimonial-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--soft-pink) 100%);
  border-radius: var(--radius-lg); padding: 60px;
  text-align: center;
}
.newsletter-title { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--slate); margin-bottom: 12px; }
.newsletter-desc { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border-radius: 100px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.newsletter-input {
  flex: 1; padding: 16px 24px; border: none; outline: none;
  font-size: 14px; font-family: var(--font-body);
}
.newsletter-btn {
  padding: 0 32px; background: var(--slate); color: var(--white);
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: background var(--transition);
}
.newsletter-btn:hover { background: #1E293B; }

/* ─── TRUST BADGES ─── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.trust-items { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--soft-pink); display: flex; align-items: center; justify-content: center; color: var(--rose-gold); }
.trust-icon svg { width: 20px; height: 20px; }
.trust-label { font-size: 13px; font-weight: 600; color: var(--slate); }
.trust-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--slate); color: var(--white); }
.footer-main { padding: 64px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px;
}
.footer-logo-col .logo-text { color: var(--white); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; margin: 20px 0 28px; max-width: 280px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--rose-gold); flex-shrink: 0; margin-top: 1px; }
.footer-col-title { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--champagne); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--champagne); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--champagne); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: all var(--transition);
}
.social-link:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.social-link svg { width: 16px; height: 16px; }

/* ─── CART / CHECKOUT ─── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 14px 16px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 14px; }
.cart-product-img { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-product-name { font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.cart-product-brand { font-size: 12px; color: var(--text-muted); }
.cart-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; transition: color var(--transition); }
.cart-remove:hover { color: #EF4444; }
.order-summary { background: var(--light-gray); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.order-summary-title { font-size: 18px; font-weight: 700; color: var(--slate); margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.summary-row.total { font-weight: 700; font-size: 18px; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 12px; }
.checkout-form .form-group { margin-bottom: 20px; }
.checkout-form label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition);
  background: var(--white);
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus { border-color: var(--rose-gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--light-gray); padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero-content { max-width: 640px; }
.page-hero-title { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--slate); margin-bottom: 16px; }
.page-hero-desc { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ─── GUIDE / ARTICLE PAGE ─── */
.article-header { padding: 60px 0 40px; }
.article-image { border-radius: var(--radius-lg); overflow: hidden; height: 480px; margin: 40px 0; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--slate); margin: 48px 0 16px; }
.article-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--slate); margin: 32px 0 12px; }
.article-body p { font-size: 16px; color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.article-body ul { margin: 0 0 20px 0; }
.article-body ul li { font-size: 16px; color: var(--text-muted); padding: 6px 0 6px 20px; position: relative; line-height: 1.7; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--rose-gold); }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-widget-title { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); margin-bottom: 16px; }
.toc-list { list-style: none; }
.toc-item { padding: 7px 0; border-bottom: 1px solid var(--border); }
.toc-item:last-child { border-bottom: none; }
.toc-item a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.toc-item a:hover { color: var(--rose-gold); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info-card { background: var(--slate); color: var(--white); border-radius: var(--radius-lg); padding: 40px; }
.contact-info-title { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 12px; }
.contact-info-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--champagne); flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-detail-val { font-size: 15px; color: var(--white); font-weight: 500; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-title { font-family: var(--font-display); font-size: 28px; color: var(--slate); margin-bottom: 8px; }
.contact-form-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--font-body); outline: none;
  transition: border-color var(--transition); background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--rose-gold); }
.form-success {
  display: none; background: #F0FFF4; border: 1px solid #86EFAC;
  border-radius: var(--radius-md); padding: 20px 24px;
  color: #166534; font-weight: 500; font-size: 15px;
  margin-top: 20px; align-items: center; gap: 12px;
}
.form-success.visible { display: flex; }
.form-success svg { width: 24px; height: 24px; color: #22C55E; flex-shrink: 0; }

/* ─── POLICY PAGES ─── */
.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; padding: 60px 0 100px; }
.policy-nav { position: sticky; top: 100px; }
.policy-nav-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.policy-nav-list { list-style: none; }
.policy-nav-item a { display: block; padding: 8px 14px; font-size: 13px; color: var(--text-muted); border-left: 2px solid transparent; transition: all var(--transition); }
.policy-nav-item a:hover { color: var(--rose-gold); border-left-color: var(--rose-gold); padding-left: 18px; }
.policy-nav-item a.active { color: var(--slate); border-left-color: var(--slate); font-weight: 500; }
.policy-content h1 { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.policy-content .policy-date { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.policy-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--slate); margin: 40px 0 16px; }
.policy-content h3 { font-size: 17px; font-weight: 600; color: var(--slate); margin: 28px 0 12px; }
.policy-content p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.policy-content ul { margin: 0 0 20px 0; }
.policy-content ul li { font-size: 15px; color: var(--text-muted); padding: 5px 0 5px 22px; position: relative; line-height: 1.7; }
.policy-content ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--rose-gold); }
.policy-highlight { background: var(--soft-pink); border-left: 3px solid var(--rose-gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; margin: 24px 0; }
.policy-highlight p { margin: 0; font-size: 14px; }

/* ─── WISHLIST ─── */
.wishlist-empty { text-align: center; padding: 80px 0; }
.wishlist-empty-icon { font-size: 64px; margin-bottom: 24px; opacity: 0.3; }
.wishlist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── SEARCH ─── */
.search-header { background: var(--light-gray); padding: 40px 0; }
.search-bar-large {
  display: flex; gap: 0; border-radius: 100px; overflow: hidden;
  box-shadow: var(--shadow-md); max-width: 680px;
}
.search-bar-large input {
  flex: 1; padding: 18px 28px; border: none; outline: none;
  font-size: 16px; font-family: var(--font-body);
  background: var(--white);
}
.search-bar-large button {
  padding: 0 32px; background: var(--slate); color: var(--white);
  border: none; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.search-bar-large button:hover { background: #1E293B; }

/* ─── MOBILE MENU ─── */
.mobile-menu-btn {
  display: none; background: none; border: none;
  padding: 8px; color: var(--slate); cursor: pointer;
}
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 2000;
  overflow-y: auto; padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--slate); }
.mobile-nav-link {
  display: block; padding: 14px 0;
  font-size: 17px; font-weight: 500; color: var(--text-dark);
  border-bottom: 1px solid var(--border); transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--rose-gold); }

/* ─── PAGINATION ─── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); cursor: pointer;
}
.page-btn:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.page-btn.active { background: var(--slate); color: var(--white); border-color: var(--slate); }

/* ─── MISC ─── */
.tag-pill {
  display: inline-block; padding: 4px 14px;
  background: var(--soft-pink); color: var(--slate);
  border-radius: 100px; font-size: 12px; font-weight: 500;
  transition: all var(--transition);
}
.tag-pill:hover { background: var(--rose-gold); color: var(--white); }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.sticky-cta {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 500; display: none;
}
.recently-viewed { background: var(--light-gray); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.stat-number { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--slate); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.map-section { background: var(--light-gray); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 400px; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.badge-ribbon {
  position: absolute; top: 0; right: 0;
  background: var(--rose-gold); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 6px 12px; border-radius: 0 var(--radius-md) 0 var(--radius-md);
}
.highlight-box {
  background: var(--champagne); border-radius: var(--radius-md);
  padding: 24px 28px; border-left: 4px solid var(--rose-gold);
}
.highlight-box p { margin: 0; font-size: 15px; color: var(--slate); line-height: 1.7; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.compact-product-card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: all var(--transition); text-align: center; padding: 20px;
}
.compact-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.compact-product-img { height: 140px; object-fit: contain; margin: 0 auto 12px; width: 100%; }
.compact-product-name { font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; line-height: 1.4; }
.compact-product-price { font-size: 16px; font-weight: 700; color: var(--rose-gold); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--slate); color: var(--white);
  padding: 20px 0; z-index: 9999;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.8); flex: 1; max-width: 680px; }
.cookie-text a { color: var(--champagne); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }
.cookie-accept { background: var(--rose-gold); color: var(--white); padding: 10px 24px; border-radius: 100px; border: none; font-size: 13px; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.cookie-accept:hover { background: #C49090; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); padding: 10px 24px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.2); font-size: 13px; cursor: pointer; transition: all var(--transition); }
.cookie-decline:hover { background: rgba(255,255,255,0.08); }

/* ─── ABOUT PAGE ─── */
.about-hero-image { border-radius: var(--radius-lg); overflow: hidden; height: 520px; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; background: var(--soft-pink); }
.team-name { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: box-shadow var(--transition); }
.value-card:hover { box-shadow: var(--shadow-md); }
.value-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--soft-pink); margin-bottom: 16px; }
.value-title { font-size: 18px; font-weight: 600; color: var(--slate); margin-bottom: 10px; }
.value-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-image { display: none; }
  .hero-content { padding: 60px 0; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-bar { display: none; }
  .mobile-menu-btn { display: block; }
  .header-search { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .newsletter-section { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-btn { padding: 14px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-gap { padding: 48px 0; }
  .trust-items { flex-direction: column; align-items: flex-start; }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
}
