/* =========================================
   RESET + VARIABLES
========================================= */

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

:root {
  --background: #f7f3ed;
  --white: #ffffff;

  --black: #0f0e0d;
  --dark: #181614;
  --dark-soft: #24201d;

  --text: #211d19;
  --muted: #776d64;

  --wine: #741f32;
  --wine-dark: #4e121f;

  --gold: #cb9d52;
  --gold-light: #edd19b;

  --green: #71d69c;
  --red: #f19191;

  --border: #e3dbcf;

  --shadow:
    0 20px 55px rgba(44, 30, 20, 0.09);

  --container:
    min(1180px, calc(100% - 40px));
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  line-height: 1.5;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================
   AGE GATE
========================================= */

.age-gate {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background:
    radial-gradient(
      circle at top,
      rgba(203, 157, 82, 0.22),
      transparent 35%
    ),
    #0d0c0b;
}

.age-gate.hidden {
  display: none;
}

.age-card {
  width: min(470px, 100%);

  padding: 42px 38px;

  border-radius: 26px;

  text-align: center;

  color: white;

  background:
    linear-gradient(
      145deg,
      #211e1a,
      #141210
    );

  border:
    1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.55);
}

.denied-card {
  display: none;
}

.age-logo {
  width: 80px;
  height: 80px;

  margin:
    0 auto
    20px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      var(--gold),
      #996b2f
    );

  color: #1e140b;

  font-family: Georgia, serif;
  font-weight: 900;
  font-size: 26px;
}

.age-kicker {
  margin-bottom: 10px;

  color: var(--gold-light);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.age-card h1 {
  margin-bottom: 12px;

  font-family: Georgia, serif;
  font-size: 34px;
}

.age-card p {
  max-width: 355px;

  margin:
    0 auto
    27px;

  color: #beb7b1;

  font-size: 13px;
}

.age-actions {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 10px;
}

.age-btn {
  min-height: 49px;

  border-radius: 11px;

  font-size: 12px;
  font-weight: 850;
}

.age-yes {
  border: 0;

  background: var(--gold);
  color: #1d140b;
}

.age-no {
  color: white;

  background: transparent;

  border:
    1px solid rgba(255, 255, 255, 0.18);
}

.age-disclaimer {
  margin-top: 17px;

  color: #756e68;

  font-size: 10px;
}


/* =========================================
   TOP BAR
========================================= */

.top-bar {
  background: var(--black);
  color: #cec6bf;
}

.top-bar-inner {
  width: var(--container);

  min-height: 35px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 10px;
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar strong {
  color: var(--gold-light);
}

.top-divider {
  color: #5d5651;
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
  position: sticky;
  top: 0;

  z-index: 200;

  border-bottom:
    1px solid var(--border);

  background:
    rgba(247, 243, 237, 0.95);

  backdrop-filter: blur(16px);
}

.nav-inner {
  width: var(--container);

  min-height: 77px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;

  gap: 11px;
}

.brand-mark {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 11px;

  background: var(--wine);

  color: var(--gold-light);

  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 900;
}

.brand-text {
  line-height: 1.05;
}

.brand-text strong {
  display: block;

  font-family: Georgia, serif;
  font-size: 18px;
}

.brand-text span {
  display: block;

  margin-top: 5px;

  color: var(--muted);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

.nav-links {
  display: flex;

  gap: 28px;

  font-size: 12px;
  font-weight: 750;
}

.nav-links a {
  transition: 0.18s ease;
}

.nav-links a:hover {
  color: var(--wine);
}

.nav-call {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding:
    0 16px;

  border-radius: 9px;

  background: var(--wine);
  color: white;

  font-size: 11px;
  font-weight: 850;

  transition: 0.18s ease;
}

.nav-call:hover {
  background: var(--wine-dark);
}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;

  min-height: 655px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #0f0e0d 0%,
      #1b1714 58%,
      #3b1420 100%
    );

  color: white;
}

.hero-decoration {
  position: absolute;

  border-radius: 50%;
}

.hero-decoration-one {
  width: 520px;
  height: 520px;

  right: -100px;
  top: 10px;

  background:
    radial-gradient(
      circle,
      rgba(203, 157, 82, 0.17),
      transparent 66%
    );
}

.hero-decoration-two {
  width: 550px;
  height: 550px;

  left: -270px;
  bottom: -350px;

  background:
    radial-gradient(
      circle,
      rgba(116, 31, 50, 0.5),
      transparent 67%
    );
}

.hero-inner {
  position: relative;

  z-index: 2;

  width: var(--container);

  margin: auto;

  display: grid;

  grid-template-columns:
    1.1fr 0.9fr;

  gap: 70px;

  align-items: center;
}

.eyebrow,
.section-eyebrow {
  margin-bottom: 13px;

  color: var(--gold-light);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 730px;

  margin-bottom: 23px;

  font-family: Georgia, serif;

  font-size:
    clamp(47px, 6vw, 77px);

  line-height: 0.97;

  letter-spacing: -0.04em;
}

.hero-content h1 span {
  color: var(--gold-light);
}

.hero-description {
  max-width: 620px;

  margin-bottom: 23px;

  color: #c5bcb6;

  font-size: 15px;

  line-height: 1.75;
}

.rating-row {
  display: flex;
  align-items: center;

  gap: 10px;

  flex-wrap: wrap;

  margin-bottom: 28px;
}

.rating-row > strong {
  font-size: 19px;
}

.stars {
  color: #ffc85b;

  font-size: 18px;

  letter-spacing: 1px;
}

.review-text {
  color: #99918b;

  font-size: 11px;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;
}


/* =========================================
   BUTTONS
========================================= */

.button {
  min-height: 49px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding:
    0 19px;

  border-radius: 10px;

  font-size: 11px;
  font-weight: 850;

  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.button:hover {
  transform:
    translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: #1c130a;
}

.button-gold:hover {
  background: #dbad62;
}

.button-outline {
  color: white;

  background:
    rgba(255, 255, 255, 0.06);

  border:
    1px solid rgba(255, 255, 255, 0.14);
}

.button-outline:hover {
  background:
    rgba(255, 255, 255, 0.12);
}

.button-wine {
  background: var(--wine);
  color: white;
}

.button-light {
  background: #eee7de;
  color: var(--text);
}


/* =========================================
   HERO STORE CARD
========================================= */

.hero-store-card {
  padding: 29px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );

  border:
    1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(13px);

  box-shadow:
    0 28px 75px rgba(0, 0, 0, 0.25);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 15px;

  margin-bottom: 13px;
}

.small-label {
  margin-bottom: 7px;

  color: var(--gold-light);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.hero-store-card h2 {
  font-family: Georgia, serif;
  font-size: 27px;
}

.status-pill {
  flex-shrink: 0;

  padding:
    7px 10px;

  border-radius: 100px;

  background:
    rgba(255, 255, 255, 0.08);

  color: #c1b9b3;

  font-size: 9px;
  font-weight: 850;
}

.status-pill.open {
  color: var(--green);

  background:
    rgba(113, 214, 156, 0.12);
}

.status-pill.closed {
  color: var(--red);

  background:
    rgba(241, 145, 145, 0.12);
}

.hero-info-row {
  display: grid;

  grid-template-columns:
    35px 1fr;

  gap: 13px;

  padding:
    14px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}

.info-icon {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 8px;

  background:
    rgba(203, 157, 82, 0.13);
}

.hero-info-row small {
  display: block;

  margin-bottom: 3px;

  color: #817872;

  font-size: 8px;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.hero-info-row strong {
  display: block;

  color: #e9e1dc;

  font-size: 12px;

  line-height: 1.5;
}

.hero-call-button {
  width: 100%;

  min-height: 45px;

  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--gold);
  color: #1d140b;

  font-size: 11px;
  font-weight: 850;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.highlights {
  position: relative;

  z-index: 20;

  margin-top: -31px;
}

.highlights-inner {
  width: var(--container);

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  overflow: hidden;

  border:
    1px solid var(--border);

  border-radius: 17px;

  background: white;

  box-shadow: var(--shadow);
}

.highlight {
  display: flex;

  gap: 13px;

  padding: 21px;

  border-right:
    1px solid var(--border);
}

.highlight:last-child {
  border-right: 0;
}

.highlight-icon {
  font-size: 21px;
}

.highlight strong {
  display: block;

  margin-bottom: 3px;

  font-size: 12px;
}

.highlight p {
  color: var(--muted);

  font-size: 10px;
}


/* =========================================
   GENERAL SECTION
========================================= */

.section {
  padding:
    88px 0;
}

.container {
  width: var(--container);

  margin: auto;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 25px;

  margin-bottom: 30px;
}

.section-eyebrow {
  color: var(--wine);
}

.section-heading h2 {
  margin-bottom: 9px;

  font-family: Georgia, serif;

  font-size:
    clamp(32px, 4vw, 47px);

  line-height: 1;
}

.section-heading p {
  max-width: 650px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

.product-count-box {
  min-width: 90px;

  padding:
    12px 16px;

  border:
    1px solid var(--border);

  border-radius: 11px;

  background: white;

  text-align: center;
}

.product-count-box strong {
  display: block;

  font-size: 20px;
}

.product-count-box span {
  color: var(--muted);

  font-size: 9px;
}


/* =========================================
   PRODUCT TOOLBAR
========================================= */

.product-toolbar {
  display: grid;

  grid-template-columns:
    1fr 200px;

  gap: 12px;

  margin-bottom: 14px;
}

.search-box {
  position: relative;
}

.search-box > span {
  position: absolute;

  left: 15px;
  top: 50%;

  transform:
    translateY(-50%);

  font-size: 14px;
}

.search-box input,
.product-toolbar select {
  width: 100%;

  min-height: 50px;

  border:
    1px solid var(--border);

  border-radius: 10px;

  background: white;

  outline: none;
}

.search-box input {
  padding:
    0 15px
    0 44px;
}

.product-toolbar select {
  padding:
    0 13px;
}

.search-box input:focus,
.product-toolbar select:focus {
  border-color: var(--wine);

  box-shadow:
    0 0 0 4px rgba(116, 31, 50, 0.06);
}


/* =========================================
   PRODUCT FILTERS
========================================= */

.filters {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 28px;
}

.filter {
  padding:
    9px 14px;

  border:
    1px solid var(--border);

  border-radius: 100px;

  background: white;

  color: var(--muted);

  font-size: 10px;
  font-weight: 850;

  transition: 0.17s ease;
}

.filter:hover,
.filter.active {
  border-color: var(--wine);

  background: var(--wine);

  color: white;
}


/* =========================================
   PRODUCT GRID
========================================= */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.product-card {
  overflow: hidden;

  border:
    1px solid var(--border);

  border-radius: 16px;

  background: white;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.product-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 20px 40px rgba(37, 25, 17, 0.1);
}

.product-image {
  position: relative;

  height: 225px;

  display: grid;
  place-items: center;

  background:
    radial-gradient(
      circle,
      rgba(203, 157, 82, 0.16),
      transparent 40%
    ),
    #f0ebe4;
}

.product-badge {
  position: absolute;

  top: 13px;
  left: 13px;

  z-index: 2;

  padding:
    6px 9px;

  border-radius: 100px;

  background: var(--wine);

  color: white;

  font-size: 8px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


/* =========================================
   CSS BOTTLE
========================================= */

.bottle {
  position: relative;

  width: 66px;
  height: 144px;

  border-radius:
    10px 10px 17px 17px;

  background:
    linear-gradient(
      90deg,
      var(--bottle-dark),
      var(--bottle-mid),
      var(--bottle-dark)
    );

  box-shadow:
    0 18px 25px rgba(0, 0, 0, 0.2);
}

.bottle::before {
  content: "";

  position: absolute;

  top: -31px;
  left: 50%;

  width: 27px;
  height: 35px;

  transform:
    translateX(-50%);

  border-radius:
    5px 5px 2px 2px;

  background:
    var(--bottle-dark);
}

.bottle::after {
  content: "";

  position: absolute;

  left: 7px;
  right: 7px;
  top: 49px;

  height: 55px;

  border:
    1px solid rgba(50, 35, 20, 0.2);

  background:
    var(--label);
}

.product-card.wine .bottle {
  width: 49px;
  height: 159px;
}

.product-card.beer .bottle,
.product-card.rtd .bottle {
  width: 69px;
  height: 122px;

  border-radius:
    5px 5px 12px 12px;
}

.product-card.beer .bottle::before,
.product-card.rtd .bottle::before {
  top: -5px;

  width: 65px;
  height: 9px;

  border-radius: 5px;
}


/* =========================================
   PRODUCT CONTENT
========================================= */

.product-content {
  padding: 18px;
}

.product-category {
  margin-bottom: 5px;

  color: var(--wine);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.product-name {
  min-height: 42px;

  margin-bottom: 5px;

  font-size: 15px;
  font-weight: 850;

  line-height: 1.35;
}

.product-meta {
  margin-bottom: 14px;

  color: var(--muted);

  font-size: 10px;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 8px;
}

.product-price {
  font-size: 18px;
  font-weight: 900;
}

.product-price small {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 7px;
  font-weight: 600;
}

.product-view {
  padding:
    8px 10px;

  border:
    1px solid var(--border);

  border-radius: 8px;

  background: #eee8df;

  color: var(--text);

  font-size: 9px;
  font-weight: 850;

  transition: 0.17s ease;
}

.product-view:hover {
  border-color: var(--wine);

  background: var(--wine);

  color: white;
}

.price-disclaimer {
  margin-top: 20px;

  padding:
    13px 15px;

  border-radius: 9px;

  background: #ebe5dc;

  color: var(--muted);

  font-size: 10px;

  line-height: 1.6;
}

.price-disclaimer a {
  color: var(--wine);

  font-weight: 850;
}

.no-results {
  grid-column:
    1 / -1;

  padding:
    60px 20px;

  border:
    1px solid var(--border);

  border-radius: 15px;

  background: white;

  text-align: center;

  color: var(--muted);
}


/* =========================================
   DELIVERY
========================================= */

.delivery-section {
  padding:
    90px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(203, 157, 82, 0.15),
      transparent 30%
    ),
    linear-gradient(
      125deg,
      #11100f,
      #201714 60%,
      #451523
    );

  color: white;
}

.delivery-layout {
  display: grid;

  grid-template-columns:
    1.05fr 0.95fr;

  gap: 65px;

  align-items: center;
}

.delivery-content h2 {
  max-width: 650px;

  margin-bottom: 18px;

  font-family: Georgia, serif;

  font-size:
    clamp(38px, 5vw, 57px);

  line-height: 1;

  letter-spacing: -0.03em;
}

.delivery-content h2 span {
  color: var(--gold-light);
}

.delivery-content p {
  max-width: 590px;

  margin-bottom: 25px;

  color: #c1b7b0;

  font-size: 13px;

  line-height: 1.8;
}

.delivery-steps {
  padding: 28px;

  border:
    1px solid rgba(255, 255, 255, 0.09);

  border-radius: 19px;

  background:
    rgba(255, 255, 255, 0.06);
}

.delivery-steps h3 {
  margin-bottom: 13px;

  font-family: Georgia, serif;
  font-size: 25px;
}

.step {
  display: grid;

  grid-template-columns:
    32px 1fr;

  gap: 11px;

  padding:
    13px 0;

  border-bottom:
    1px solid rgba(255, 255, 255, 0.07);
}

.step:last-child {
  border-bottom: 0;
}

.step-number {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--gold);

  color: #1f150c;

  font-size: 10px;
  font-weight: 900;
}

.step strong {
  display: block;

  margin-bottom: 2px;

  font-size: 12px;
}

.step p {
  color: #a39a94;

  font-size: 10px;
}


/* =========================================
   STORE
========================================= */

.store-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 20px;
}

.store-card {
  padding: 29px;

  border:
    1px solid var(--border);

  border-radius: 17px;

  background: white;

  box-shadow: var(--shadow);
}

.store-card-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  margin-bottom: 15px;

  border-radius: 10px;

  background:
    rgba(116, 31, 50, 0.08);

  color: var(--wine);
}

.store-card h3 {
  margin-bottom: 17px;

  font-family: Georgia, serif;
  font-size: 26px;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  padding:
    10px 0;

  border-bottom:
    1px solid var(--border);

  font-size: 11px;
}

.hours-list > div:last-child {
  border-bottom: 0;
}

.hours-list span {
  color: var(--muted);
}

.location-list > div {
  padding:
    12px 0;

  border-bottom:
    1px solid var(--border);
}

.location-list > div:last-child {
  border-bottom: 0;
}

.location-list small {
  display: block;

  margin-bottom: 3px;

  color: var(--muted);

  font-size: 8px;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.location-list strong,
.location-list a {
  font-size: 12px;
}

.location-list a {
  color: var(--wine);

  font-weight: 800;
}

.google-rating {
  color: #b77b1b;
}

.location-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  margin-top: 21px;
}


/* =========================================
   FOOTER
========================================= */

footer {
  padding:
    52px 0
    27px;

  background: var(--black);

  color: white;
}

.footer-inner {
  width: var(--container);

  margin: auto;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr 1fr 1fr;

  gap: 45px;

  margin-bottom: 35px;
}

.footer-brand-text strong {
  color: white;
}

.footer-description {
  max-width: 420px;

  margin-top: 13px;

  color: #8f8781;

  font-size: 10px;

  line-height: 1.7;
}

.footer-column > strong {
  display: block;

  margin-bottom: 12px;

  font-size: 11px;
}

.footer-column a {
  display: block;

  margin:
    8px 0;

  color: #8f8781;

  font-size: 10px;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;

  gap: 20px;

  padding-top: 19px;

  border-top:
    1px solid rgba(255, 255, 255, 0.06);

  color: #645d58;

  font-size: 9px;
}


/* =========================================
   PRODUCT MODAL
========================================= */

.modal {
  position: fixed;
  inset: 0;

  z-index: 1000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background:
    rgba(10, 8, 7, 0.76);

  backdrop-filter: blur(6px);
}

.modal.show {
  display: flex;
}

.modal-card {
  position: relative;

  width: min(520px, 100%);

  padding: 32px;

  border-radius: 20px;

  background: white;

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;

  top: 15px;
  right: 15px;

  width: 37px;
  height: 37px;

  border: 0;

  border-radius: 50%;

  background: #eee9e2;

  font-size: 19px;
}

.modal-category {
  margin-bottom: 6px;

  color: var(--wine);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.modal-card h3 {
  padding-right: 40px;

  margin-bottom: 7px;

  font-family: Georgia, serif;
  font-size: 30px;
}

.modal-meta {
  margin-bottom: 17px;

  color: var(--muted);

  font-size: 10px;
}

.modal-price {
  margin-bottom: 13px;

  font-size: 28px;
  font-weight: 900;
}

.modal-description {
  margin-bottom: 15px;

  color: var(--muted);

  font-size: 12px;

  line-height: 1.75;
}

.modal-notice {
  margin-bottom: 17px;

  padding:
    11px 12px;

  border-radius: 8px;

  background: #eee8df;

  color: var(--muted);

  font-size: 9px;
}

.modal-call {
  width: 100%;

  min-height: 47px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  background: var(--wine);

  color: white;

  font-size: 11px;
  font-weight: 850;
}


/* =========================================
   FLOATING CALL
========================================= */

.floating-call {
  position: fixed;

  right: 19px;
  bottom: 19px;

  z-index: 500;

  min-height: 49px;

  display: flex;
  align-items: center;

  gap: 8px;

  padding:
    0 17px;

  border-radius: 100px;

  background: var(--wine);

  color: white;

  font-size: 10px;
  font-weight: 850;

  box-shadow:
    0 15px 35px rgba(70, 17, 31, 0.32);

  transition:
    transform 0.18s ease;
}

.floating-call:hover {
  transform:
    translateY(-3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1020px) {

  .product-grid {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .hero-inner {
    gap: 35px;
  }

}


@media (max-width: 820px) {

  .nav-links {
    display: none;
  }

  .hero {
    padding:
      75px 0
      95px;
  }

  .hero-inner,
  .delivery-layout {
    grid-template-columns:
      1fr;
  }

  .hero-store-card {
    max-width: 550px;
  }

  .highlights-inner {
    grid-template-columns:
      1fr 1fr;
  }

  .highlight:nth-child(2) {
    border-right: 0;
  }

  .highlight:nth-child(-n + 2) {
    border-bottom:
      1px solid var(--border);
  }

  .product-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .store-grid {
    grid-template-columns:
      1fr;
  }

  .footer-grid {
    grid-template-columns:
      1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column:
      1 / -1;
  }

}


@media (max-width: 580px) {

  :root {
    --container:
      min(100% - 24px, 1180px);
  }

  .top-bar-inner {
    padding:
      7px 0;

    flex-wrap: wrap;

    gap:
      5px 8px;
  }

  .top-divider {
    display: none;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .nav-call {
    padding:
      0 11px;

    font-size: 9px;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  .hero-description {
    font-size: 13px;
  }

  .highlights-inner {
    grid-template-columns:
      1fr;
  }

  .highlight {
    border-right: 0;

    border-bottom:
      1px solid var(--border);
  }

  .highlight:last-child {
    border-bottom: 0;
  }

  .section {
    padding:
      65px 0;
  }

  .product-count-box {
    display: none;
  }

  .product-toolbar {
    grid-template-columns:
      1fr;
  }

  .product-grid {
    grid-template-columns:
      1fr;
  }

  .product-image {
    height: 205px;
  }

  .footer-grid {
    grid-template-columns:
      1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-call {
    left: 12px;
    right: 12px;
    bottom: 12px;

    justify-content: center;

    border-radius: 11px;
  }

  .age-card {
    padding:
      31px 21px;
  }

}
/* =========================================
   REAL PRODUCT IMAGES
========================================= */

.real-product-image {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(
    0 16px 18px rgba(0, 0, 0, 0.16)
  );
}

.product-image {
  overflow: hidden;
}

@media (max-width: 580px) {
  .real-product-image {
    max-width: 150px;
    height: 185px;
  }
}


/* Hide floating call button on desktop.
   Your navigation already has Call Store. */

@media (min-width: 821px) {
  .floating-call {
    display: none !important;
  }
}
