/* =========================================================
   Del Mesa Liquor — pixel-perfect replica
   Reverse-engineered from delmesaliquor.com (Shopify "Empire" theme)
   ========================================================= */

:root {
  --type-header: "Playfair Display", "Times New Roman", serif;
  --type-base: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --color-body: #f8f8f8;
  --color-body-dim: #ebebeb;
  --color-border: #e8e8e1;
  --color-text: #232323;
  --color-text-muted: #6e6e6e;
  --color-link: #232323;

  --color-burgundy: #861111;
  --color-burgundy-dark: #6a0d0d;
  --color-burgundy-light: #a31515;

  --color-btn-primary: #232323;
  --color-btn-primary-dim: #161616;
  --color-btn-primary-text: #ffffff;

  --color-announce: #232323;
  --color-announce-text: #ffffff;

  --color-footer: #f1f1f1;
  --color-footer-text: #232323;

  --gutter: 17px;
  --container: 1340px;
  --header-height: 90px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--type-base);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.3;
  color: var(--color-text);
  background: var(--color-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--type-header);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.025em;
  margin: 0;
  color: var(--color-text);
}

input, button, select, textarea { font: inherit; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }
.container--wide { max-width: 1500px; }
.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.025em;
}
.section-title__decor {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--color-text);
  margin: 18px auto 28px;
  opacity: 0.4;
}
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--color-btn-primary);
  color: var(--color-btn-primary-text);
  font-family: var(--type-base);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--color-btn-primary-dim); color: #fff; }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn--outline-light:hover { background: #fff; color: var(--color-text); }
.btn--burgundy { background: var(--color-burgundy); }
.btn--burgundy:hover { background: var(--color-burgundy-dark); }
.btn--block { display: flex; width: 100%; }
.btn--small { padding: 10px 20px; font-size: 11px; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--color-announce);
  color: var(--color-announce-text);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 80;
}
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 60px;
  text-align: center;
}
.announcement-slider {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  position: relative;
  height: 20px;
  flex: 1;
  max-width: 760px;
  justify-content: center;
}
.announcement-slider__track { display: flex; gap: 60px; animation: announce 22s linear infinite; }
@keyframes announce {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.announcement-text { white-space: nowrap; font-weight: 400; }
.announcement-text a { color: inherit; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 1px; }

.announcement-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0.6;
}
.announcement-arrow:hover { opacity: 1; }
.announcement-arrow--prev { left: 16px; }
.announcement-arrow--next { right: 16px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--color-body);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 70;
}
.site-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 30px;
  max-width: 1500px;
  margin: 0 auto;
}
.site-header__left,
.site-header__right { display: flex; align-items: center; gap: 18px; }
.site-header__right { justify-content: flex-end; }
.site-header__logo {
  display: flex; align-items: center; justify-content: center;
}
.site-header__logo img { width: 130px; height: auto; }

/* Text-based brand mark — Staymars */
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--type-header);
  line-height: 0.95;
  color: var(--color-text);
  text-align: center;
  user-select: none;
}
.brand-mark__top {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-bottom: 4px;
}
.brand-mark__main {
  font-family: var(--type-header);
  font-size: 38px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--color-text);
  position: relative;
  padding-bottom: 6px;
}
.brand-mark__main::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  bottom: 0;
  height: 2px;
  background: var(--color-burgundy);
  border-radius: 1px;
}
.brand-mark--small .brand-mark__top { font-size: 10px; letter-spacing: 0.28em; margin-bottom: 2px; }
.brand-mark--small .brand-mark__main { font-size: 26px; }
.brand-mark--large .brand-mark__top { font-size: 14px; }
.brand-mark--large .brand-mark__main { font-size: 44px; }

/* search */
.search-box {
  display: flex; align-items: center;
  width: 100%;
  max-width: 520px;
  height: 42px;
  border: 1px solid #d8d6cf;
  background: #fff;
  border-radius: 0;
}
.search-box input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
.search-box input::placeholder { color: #888; }
.search-box button {
  width: 46px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid #ececec;
  color: var(--color-text);
}
.search-box button:hover { color: var(--color-burgundy); }

/* predictive search dropdown */
.search-box { position: relative; }
.search-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  max-height: 460px;
  overflow-y: auto;
  z-index: 90;
  display: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}
.search-dropdown__item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
}
.search-dropdown__item:hover,
.search-dropdown__item--active { background: #fafafa; }
.search-dropdown__item img { width: 44px; height: 44px; object-fit: contain; flex: 0 0 44px; }
.search-dropdown__title { font-size: 13px; font-weight: 500; }
.search-dropdown__meta { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; letter-spacing: 0.02em; }
.search-dropdown__footer {
  padding: 12px 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  background: #fafafa;
  border-top: 1px solid var(--color-border);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.search-dropdown__footer:hover { background: #f4f0ec; }
.search-dropdown__empty {
  padding: 24px 14px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* header icons */
.icon-link {
  display: inline-flex; align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
}
.icon-link svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.icon-link:hover { color: var(--color-burgundy); }
.icon-link__label--small { font-size: 10px; }
.cart-bubble {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--color-burgundy);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.hamburger { display: none; }

/* ---------- Main nav ---------- */
.site-nav {
  border-top: 1px solid var(--color-border);
  background: var(--color-body);
}
.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.site-nav__item { position: relative; }
.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color 0.15s ease;
}
.site-nav__link:hover { color: var(--color-burgundy); }
.site-nav__link--accent { color: var(--color-burgundy); }
.site-nav__link svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; }

/* dropdown */
.site-nav__dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 22px 26px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.site-nav__item:hover > .site-nav__dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
.site-nav__dropdown a {
  display: block;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}
.site-nav__dropdown a:hover { color: var(--color-burgundy); }
.site-nav__dropdown--mega {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 22px 36px;
  min-width: 760px;
}
.site-nav__mega-title {
  font-family: var(--type-base);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 530px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero__media {
  position: absolute; inset: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
}
.hero__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
  color: #fff;
}
.hero__inner { max-width: 620px; }
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e8c98a;
  margin-bottom: 18px;
  font-weight: 500;
}
.hero__title {
  color: #fff;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero__title em { font-style: italic; color: #e8c98a; }
.hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  opacity: 0.92;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__dots {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 5;
}
.hero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.hero__dot--active { background: #fff; }
.hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  background: rgba(0,0,0,0.15);
  transition: background 0.18s ease;
}
.hero__nav:hover { background: rgba(0,0,0,0.5); }
.hero__nav--prev { left: 30px; }
.hero__nav--next { right: 30px; }

/* ---------- Category tiles ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 17px;
}
.category-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #2a2a2a;
  display: block;
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.category-tile:hover img { transform: scale(1.06); }
.category-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.6) 100%);
}
.category-tile__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  text-align: center;
  color: #fff;
  font-family: var(--type-header);
  font-size: 22px;
  letter-spacing: 0.05em;
}

/* ---------- Top rated band ---------- */
.top-rated {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.top-rated h2 {
  font-family: var(--type-base);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.top-rated__stars {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 12px;
  color: #f5b50a;
  font-size: 22px;
}
.top-rated__count {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}
.top-rated__count strong { color: var(--color-text); font-weight: 600; }

/* ---------- Product card grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s ease;
}
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--color-burgundy);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-card__badge--dark { background: var(--color-text); }
.product-card__wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  transition: color 0.15s ease;
}
.product-card__wishlist:hover { color: var(--color-burgundy); }
.product-card__body {
  padding: 16px 18px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__vendor {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.product-card__title {
  font-family: var(--type-base);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0 0 10px;
  min-height: 36px;
}
.product-card__price {
  font-family: var(--type-base);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}
.product-card__price del {
  color: var(--color-text-muted);
  font-weight: 400;
  margin-right: 6px;
}
.product-card__rating {
  display: flex; justify-content: center; gap: 3px;
  margin-bottom: 14px;
  color: #f5b50a;
  font-size: 12px;
}
.product-card__rating span { color: var(--color-text-muted); margin-left: 4px; font-size: 11px; }
.product-card__cta {
  margin-top: auto;
  padding: 10px 16px;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.18s ease;
}
.product-card__cta:hover { background: var(--color-text); color: #fff; }

/* ---------- Product of the Week (split feature) ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.spotlight__media {
  background: #1a1a1a;
  position: relative;
  min-height: 520px;
}
.spotlight__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.spotlight__media .spotlight__shade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
}
.spotlight__body {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.spotlight__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-burgundy);
  margin-bottom: 18px;
}
.spotlight__title {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.spotlight__price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}
.spotlight__price del { color: var(--color-text-muted); font-weight: 400; margin-right: 10px; }
.spotlight__copy {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #444;
  max-width: 460px;
}
.spotlight__cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: #fff;
  padding: 80px 0;
}
.testimonial-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 56px 0;
}
.testimonial-slider__track {
  position: relative;
  min-height: 240px;
}
.testimonial {
  text-align: center;
  padding: 30px 20px;
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.testimonial--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.testimonial__stars {
  color: #f5b50a;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial__quote {
  font-family: var(--type-header);
  font-size: 22px;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 22px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial__author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.testimonial-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: var(--color-burgundy, #861111);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}
.testimonial-slider__nav:hover {
  background: var(--color-burgundy, #861111);
  color: #fff;
  border-color: var(--color-burgundy, #861111);
}
.testimonial-slider__nav--prev { left: 0; }
.testimonial-slider__nav--next { right: 0; }
.testimonial-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.testimonial-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #d8d8d8;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonial-slider__dot--active {
  background: var(--color-burgundy, #861111);
  transform: scale(1.2);
}

/* ---------- Brand info / family-owned ---------- */
.brand-info {
  background: #1c1c1c url("../assets/promo-box.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}
.brand-info h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 18px;
}
.brand-info p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.9;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: #fff;
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.newsletter h2 { font-size: 36px; margin-bottom: 8px; }
.newsletter p { color: var(--color-text-muted); margin-bottom: 28px; font-size: 14px; }
.newsletter__form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 0;
}
.newsletter__form input {
  flex: 1;
  padding: 0 18px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-right: 0;
  font-size: 13px;
  background: #fff;
  outline: none;
}
.newsletter__form input:focus { border-color: var(--color-text); }
.newsletter__form button {
  padding: 0 32px;
  height: 48px;
  background: var(--color-text);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-footer);
  color: var(--color-footer-text);
  padding: 70px 0 0;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h3 {
  font-family: var(--type-base);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--color-text);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col a {
  color: var(--color-text);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-col a:hover { color: var(--color-burgundy); }
.footer-col p { line-height: 1.7; color: #444; }
.footer-col .footer-logo { width: 130px; margin-bottom: 16px; }

.footer__contact-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.footer__contact-row svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.6; }

.footer__socials { display: flex; gap: 12px; margin-top: 16px; }
.footer__socials a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  transition: all 0.18s ease;
}
.footer__socials a:hover { background: var(--color-text); color: #fff; }
.footer__socials svg { width: 14px; height: 14px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid #d8d8d2;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #444;
}
.footer-bottom__payments { display: flex; gap: 8px; align-items: center; }
.payment-pill {
  height: 22px;
  padding: 0 8px;
  background: #fff;
  border: 1px solid #d8d8d2;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  color: #333;
}

.prop65 {
  background: #ededed;
  padding: 14px 0;
  font-size: 11px;
  text-align: center;
  color: #555;
  line-height: 1.6;
}
.prop65 strong { color: var(--color-burgundy); }

/* ---------- Age verification modal ---------- */
.age-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 20px;
}
.age-modal[hidden] { display: none; }
.age-modal__content {
  background: #fff;
  max-width: 460px;
  width: 100%;
  padding: 50px 40px;
  text-align: center;
}
.age-modal__logo { width: 110px; margin: 0 auto 22px; }
.age-modal__title {
  font-size: 26px;
  margin-bottom: 14px;
}
.age-modal__copy {
  font-size: 13px;
  color: #555;
  margin-bottom: 28px;
  line-height: 1.6;
}
.age-modal__btns { display: flex; gap: 12px; }
.age-modal__btns .btn { flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero__title { font-size: 48px; }
}
@media (max-width: 860px) {
  .site-header__bar { grid-template-columns: 1fr auto 1fr; gap: 14px; padding: 14px 18px; }
  .search-box { display: none; }
  .icon-link__label { display: none; }
  .hamburger { display: inline-flex; }
  .site-nav { display: none; }
  .hero { height: 460px; }
  .hero__title { font-size: 38px; }
  .hero__content { padding: 0 24px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__media { min-height: 360px; }
  .spotlight__body { padding: 40px 28px; }
  .testimonial-slider { padding: 10px 36px 0; }
  .testimonial-slider__nav { width: 36px; height: 36px; font-size: 20px; }
  .testimonial__quote { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .container { padding: 0 18px; }
  .section { padding: 40px 0; }
  .section-title { font-size: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 32px; }
  .product-card__media img { padding: 14px; }
}
