/* =============================================
   VISTAGIFTS V3 — Clean Editorial Gift Site
   Inspired by: awesomestufftobuy.com
   Aesthetic: Warm white, friendly, scannable
   Fonts: Fraunces + Plus Jakarta Sans
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,600;0,700;0,900;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --white:      #ffffff;
  --bg:         #f9f8f6;
  --bg2:        #f2f0eb;
  --border:     #e5e2db;
  --border2:    #d4d0c8;
  --ink:        #1a1714;
  --ink-mid:    #3d3830;
  --ink-light:  #6b6459;
  --ink-muted:  #9e968c;
  --teal:       #0d7c66;
  --teal-light: #e6f4f1;
  --teal-pale:  #f0faf8;
  --amber:      #c8620a;
  --amber-light:#fff3e8;
  --red:        #c0392b;
  --red-light:  #fdf0ee;
  --navy:       #1a2744;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 4px rgba(26,23,20,0.06);
  --shadow-md:  0 4px 16px rgba(26,23,20,0.10);
  --shadow-lg:  0 8px 32px rgba(26,23,20,0.14);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--teal); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-light);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--ink); background: var(--bg2); }
.nav-hot {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
}
.nav-hot:hover { background: #0a6654 !important; }
.nav-active { color: var(--teal) !important; background: var(--teal-pale) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--ink);
  margin-left: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}
.mobile-nav a:hover { color: var(--teal); background: var(--teal-pale); padding-left: 32px; }
.mobile-nav.open { display: flex; }

/* ============ HERO HIGHLIGHTED PRODUCTS ============ */
.hero-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0 32px;
}
.hero-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.hero-header-left {}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  display: block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.05;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 8px;
}
.hero-see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 1px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.hero-see-all:hover { opacity: 0.7; }

/* Hero cards grid — 3 columns */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hero-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.hero-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--white);
  letter-spacing: 0.04em;
}
.hero-card-badge.hot { background: var(--amber); }
.hero-card-badge.new { background: var(--navy); }
.hero-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border-bottom: 1px solid var(--border);
  padding: 20px; /* breathing room for hero images */
}
.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show full image without cropping */
  object-position: center;
  transition: transform 0.4s ease;
}
.hero-card:hover .hero-card-img img { transform: scale(1.04); }
.hero-card:hover .hero-card-img .hci-emoji { transform: scale(1.08); }
.hci-emoji { transition: transform 0.4s ease; }
.hero-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.hero-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}
.hero-card-name a { color: inherit; }
.hero-card-name a:hover { color: var(--teal); }
.hero-card-desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.hero-card-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.hero-card-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-muted);
  font-style: italic;
}
.hero-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.hero-card-btn:hover { background: #0a6654; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,124,102,0.3); }

/* ============ OCCASION STRIP ============ */
.occasion-strip {
  background: var(--navy);
  padding: 0;
}
.occasion-scroll-wrap {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.occasion-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.occasion-grid::-webkit-scrollbar { height: 2px; }
.occasion-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }
.occasion-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: all 0.15s;
  flex-shrink: 0;
}
.occasion-chip:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.occasion-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.occasion-arrow:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.occasion-arrow:disabled { opacity: 0.25; cursor: default; }
.occasion-arrow-left { margin-right: 12px; }
.occasion-arrow-right { margin-left: 12px; }
@media (max-width: 640px) { .occasion-arrow { display: none; } }

/* ============ MAIN CONTENT AREA ============ */
.content-area {
  padding: 32px 0 64px;
}
.content-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}

/* ============ SIDEBAR ============ */
.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: all 0.15s;
}
.sidebar-link:hover { background: var(--bg2); color: var(--teal); }
.sidebar-link.active { background: var(--teal-pale); color: var(--teal); font-weight: 600; }
.sidebar-link span {
  font-size: 11px;
  color: var(--ink-muted);
  background: var(--bg2);
  padding: 2px 7px;
  border-radius: 100px;
}
.sidebar-link.active span { background: var(--teal-light); color: var(--teal); }
.price-links { display: flex; flex-direction: column; gap: 4px; }
.price-link {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: all 0.15s;
}
.price-link:hover { background: var(--bg2); color: var(--teal); }

/* ============ PRODUCTS AREA ============ */
.products-area {}
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.products-count {
  font-size: 13px;
  color: var(--ink-muted);
}
.products-count strong { color: var(--ink); font-weight: 600; }
.toolbar-right { display: flex; align-items: center; gap: 10px; }
.sort-select {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.sort-select:focus { border-color: var(--teal); }
.grid-toggle { display: flex; gap: 4px; }
.grid-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border2);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink-muted);
  transition: all 0.15s;
}
.grid-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.grid-btn:hover:not(.active) { border-color: var(--teal); color: var(--teal); }

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

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.22s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--teal);
  color: var(--white);
  letter-spacing: 0.04em;
}
.product-badge.new { background: var(--navy); }
.product-badge.deal { background: var(--amber); }

.product-img-wrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding: 16px; /* breathing room around image */
}
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show full image without cropping */
  object-position: center;
  transition: transform 0.35s ease;
}
.product-card:hover .product-real-img { transform: scale(1.04); }
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  transition: transform 0.35s ease;
}
.product-card:hover .product-img-placeholder { transform: scale(1.06); }

.pi-1 { background: linear-gradient(135deg, #ede9ff, #f5f2ff); }
.pi-2 { background: linear-gradient(135deg, #fff0f0, #fff5f5); }
.pi-3 { background: linear-gradient(135deg, #e8f5ff, #f0f9ff); }
.pi-4 { background: linear-gradient(135deg, #fff8e8, #fffbf0); }
.pi-5 { background: linear-gradient(135deg, #e8fff5, #f0fff8); }
.pi-6 { background: linear-gradient(135deg, #fffff0, #fdfdf0); }

.product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 5px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
}
.product-name a { color: inherit; }
.product-name a:hover { color: var(--teal); }
.product-desc {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.product-footer.has-two-buttons {
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.price-wrap { display: flex; flex-direction: column; gap: 1px; }
.product-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.price-disclaimer {
  font-size: 9px;
  color: var(--ink-muted);
  font-style: italic;
}
.btn-buy, .btn-buy-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 13px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-buy:hover, .btn-buy-primary:hover {
  background: #0a6654;
  transform: translateY(-1px);
}
.btn-buy-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 13px;
  background: transparent;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  border: 1.5px solid var(--teal);
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-buy-secondary:hover { background: var(--teal); color: var(--white); }
.buy-buttons { display: flex; flex-direction: column; gap: 6px; }

/* ============ NO RESULTS ============ */
.no-results { text-align: center; padding: 80px 20px; }
.no-results-icon { font-size: 48px; margin-bottom: 16px; }
.no-results h3 { font-family: var(--font-display); font-size: 28px; color: var(--ink); margin-bottom: 8px; }
.no-results p { color: var(--ink-muted); margin-bottom: 24px; }
.hidden { display: none !important; }
.load-more-wrap { text-align: center; padding: 40px 0 0; }
.btn-load {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  border: 1.5px solid var(--border2);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-load:hover { border-color: var(--teal); color: var(--teal); }

/* ============ PAGE HERO (category pages) ============ */
.page-hero {
  background: var(--navy);
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.0;
  margin-bottom: 10px;
}
.page-sub { font-size: 15px; color: rgba(255,255,255,0.5); }

/* ============ NEWSLETTER ============ */
.newsletter-section {
  background: var(--teal);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.newsletter-text p { font-size: 15px; color: rgba(255,255,255,0.75); }
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  min-width: 360px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.nl-submit {
  padding: 14px 24px;
  background: var(--white);
  color: var(--teal);
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 100px;
  margin: 3px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nl-submit:hover { background: var(--bg2); }
.newsletter-note { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--white); font-size: 22px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 6px; line-height: 1.6; }
.affiliate-disclosure { font-size: 11px !important; color: rgba(255,255,255,0.25) !important; margin-top: 16px !important; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); text-align: center; }

/* ============ INFO PAGES ============ */
.info-page-content { max-width: 720px; margin: 0 auto; }
.info-page-content h2 { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--ink); margin-bottom: 20px; }
.info-page-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin: 32px 0 12px; }
.info-page-content p { font-size: 15px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 16px; }
.info-page-content a { color: var(--teal); text-decoration: underline; }
.info-page-content ul { margin: 12px 0 16px 24px; color: var(--ink-mid); font-size: 15px; line-height: 2; }
.contact-form-wrap { margin-top: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; max-width: 560px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink-mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-submit:hover { background: #0a6654; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .content-inner { grid-template-columns: 200px 1fr; gap: 24px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .content-inner { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hero-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.grid-3 { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { min-width: unset; width: 100%; flex-direction: column; border-radius: var(--radius-lg); }
  .nl-submit { margin: 0; border-radius: var(--radius-sm); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 40px 0; }
}

/* ============ FILTER CHIPS ACTIVE (category pages) ============ */
.chip:hover { border-color: var(--teal) !important; color: var(--teal) !important; background: var(--teal-pale) !important; }
.chip.active { background: var(--teal) !important; border-color: var(--teal) !important; color: var(--white) !important; }
