:root {
  --ivory: #fff9f2;
  --warm-white: #fffdf9;
  --champagne: #f7e7ce;
  --petal: #e8b7b7;
  --wine: #5a1f2e;
  --wine-dark: #3d1420;
  --charcoal: #2b1d1a;
  --gold: #c8a45d;
  --sage: #a8bfa2;
  --lavender: #8d6a7f;
  --mist: #f4f1ed;
  --line: rgba(90, 31, 46, 0.18);
  --shadow: 0 22px 64px rgba(43, 29, 26, 0.1);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--wine);
  color: var(--ivory);
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 42px;
  padding: 0.45rem 1rem;
  background: linear-gradient(90deg, var(--wine), #431722);
  color: var(--ivory);
  text-align: center;
}

.topbar p {
  margin: 0;
  font-size: 0.9rem;
}

.topbar a {
  flex: 0 0 auto;
  color: var(--champagne);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 249, 242, 0.9);
  border-bottom: 1px solid rgba(200, 164, 93, 0.25);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 2rem, var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.86rem;
  color: var(--wine);
  font-weight: 850;
}

.brand__mark {
  width: 42px;
  height: 64px;
  object-fit: contain;
}

.brand__wordmark {
  width: clamp(150px, 17vw, 230px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-links a {
  color: rgba(43, 29, 26, 0.78);
}

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

.nav-cta,
.cart-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 1rem;
  border-radius: 6px;
  background: var(--wine);
  color: var(--ivory) !important;
}

.cart-nav-button {
  gap: 0.45rem;
  border: 1px solid rgba(200, 164, 93, 0.3);
  font-weight: 850;
}

.cart-nav-button span {
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.16);
  color: var(--champagne);
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--wine);
  color: var(--ivory);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ivory);
  border-bottom: 1px solid rgba(200, 164, 93, 0.22);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.96) 0%, rgba(255, 249, 242, 0.83) 43%, rgba(255, 249, 242, 0.1) 100%);
  pointer-events: none;
}

.hero-bottles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 4.8rem 0 5.4rem;
  max-width: var(--max-width);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--lavender);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.wholesale-copy h2,
.contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  color: var(--wine);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 5.25rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.25rem 0 0;
  font-size: 1.2rem;
  color: rgba(43, 29, 26, 0.82);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.08rem;
  border-radius: 6px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(43, 29, 26, 0.14);
}

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

.button span[aria-hidden="true"] {
  margin-left: 0.35rem;
}

.button-secondary {
  border: 1px solid rgba(90, 31, 46, 0.35);
  background: rgba(255, 253, 249, 0.7);
  color: var(--wine);
}

.hero-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-prices span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(200, 164, 93, 0.5);
  background: rgba(255, 253, 249, 0.76);
  color: var(--wine);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
  font-weight: 820;
}

.section {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 5rem 0;
  scroll-margin-top: 110px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.section-heading h2,
.wholesale-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.55rem;
}

.section-heading p:last-child,
.wholesale-copy p,
.contact-copy p {
  margin: 0.85rem 0 0;
  color: rgba(43, 29, 26, 0.76);
  font-size: 1.05rem;
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.25rem;
  align-items: start;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card,
.step-card,
.shop-summary,
.category-card,
.product-card,
details,
.order-form {
  border: 1px solid rgba(200, 164, 93, 0.24);
  border-radius: var(--radius);
  background: var(--warm-white);
  box-shadow: var(--shadow);
}

.price-card {
  min-height: 260px;
  padding: 1.35rem;
}

.price-card--featured {
  background: linear-gradient(145deg, var(--wine), #3d1420);
  color: var(--ivory);
}

.price-card__label {
  margin: 0 0 1.2rem;
  color: var(--lavender);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.price-card--featured .price-card__label {
  color: var(--champagne);
}

.price-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: inherit;
  font-size: 1.7rem;
  font-weight: 500;
}

.price {
  margin: 0.85rem 0;
  color: var(--gold);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.price-card p:last-child {
  margin: 0;
  color: rgba(43, 29, 26, 0.75);
}

.price-card--featured p:last-child {
  color: rgba(255, 249, 242, 0.82);
}

.promo-art {
  margin: 0;
  padding: 0;
}

.promo-art img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promo-art figcaption {
  margin-top: 0.7rem;
  color: rgba(43, 29, 26, 0.68);
  font-size: 0.9rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(43, 29, 26, 0.14);
}

.category-card img {
  width: 100%;
  height: 220px;
  padding: 0;
  object-fit: cover;
  background: var(--mist);
}

.category-card div {
  padding: 1.2rem;
}

.category-card h3 {
  margin: 0 0 0.45rem;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.category-card p {
  margin: 0;
  color: rgba(43, 29, 26, 0.72);
}

.category-hero {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 4rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 2rem;
  align-items: center;
}

.category-hero__copy {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  color: rgba(43, 29, 26, 0.62);
  font-size: 0.9rem;
  font-weight: 760;
}

.breadcrumb a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.category-hero h1 {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.85rem;
  font-weight: 500;
  line-height: 0.98;
}

.category-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 1rem 0 0;
  color: rgba(43, 29, 26, 0.76);
  font-size: 1.08rem;
}

.category-hero__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.category-hero__prices span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(200, 164, 93, 0.32);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.84);
  color: var(--wine);
  padding: 0.4rem 0.72rem;
  font-weight: 850;
}

.category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.category-hero__image {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 164, 93, 0.28);
  box-shadow: 0 26px 70px rgba(43, 29, 26, 0.14);
}

.category-switcher {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.category-switcher a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(90, 31, 46, 0.16);
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.8);
  color: var(--wine);
  font-weight: 850;
  text-align: center;
}

.category-switcher a:hover,
.category-switcher a:focus-visible,
.category-switcher a.is-active {
  border-color: rgba(90, 31, 46, 0.32);
  background: linear-gradient(145deg, var(--wine), var(--wine-dark));
  color: var(--ivory);
}

.category-catalog {
  margin-top: 0;
}

.catalog-tools--single {
  grid-template-columns: minmax(260px, 420px);
}

.catalog-section {
  width: 100%;
  max-width: none;
  padding: 5rem 1rem;
  background: linear-gradient(180deg, #fffdf9 0%, #fff9f2 100%);
  border-block: 1px solid rgba(200, 164, 93, 0.22);
}

.catalog-tools {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.search-field {
  display: grid;
  gap: 0.42rem;
  font-weight: 800;
  color: var(--wine);
}

.search-field input,
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(90, 31, 46, 0.22);
  background: #fff;
  color: var(--charcoal);
  border-radius: 6px;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  outline: none;
}

.search-field input:focus,
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(90, 31, 46, 0.12);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-tab {
  min-height: 44px;
  padding: 0.58rem 0.88rem;
  border-radius: 6px;
  background: rgba(255, 253, 249, 0.78);
  color: var(--wine);
  font-weight: 820;
  border: 1px solid rgba(90, 31, 46, 0.14);
}

.filter-tab.is-active {
  background: linear-gradient(145deg, var(--wine), #3d1420);
  color: var(--ivory);
}

.catalog-count {
  margin: 0 0 1rem;
  color: rgba(43, 29, 26, 0.68);
  font-weight: 760;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  min-height: 286px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card__category {
  align-self: flex-start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.52rem;
  border-radius: 6px;
  background: rgba(232, 183, 183, 0.28);
  color: var(--wine);
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.32;
}

.product-card p {
  margin: 0;
  color: rgba(43, 29, 26, 0.68);
  font-size: 0.92rem;
}

.product-card__actions {
  margin-top: auto;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: space-between;
}

.product-card__sizes {
  color: var(--wine);
  font-size: 0.84rem;
  font-weight: 820;
}

.product-card__quote {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.48rem 0.72rem;
  background: var(--wine);
  color: var(--ivory);
  font-size: 0.87rem;
  font-weight: 850;
}

.product-card__shop {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: end;
}

.product-card__select {
  display: grid;
  gap: 0.32rem;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card__select select {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(90, 31, 46, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--charcoal);
  padding: 0.52rem 0.58rem;
  outline: none;
}

.product-card__select select:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(90, 31, 46, 0.1);
}

.product-card__add {
  min-height: 40px;
  border-radius: 6px;
  padding: 0.52rem 0.75rem;
  background: linear-gradient(145deg, var(--wine), #3d1420);
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 900;
}

.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--champagne);
  margin: 1rem 0 0;
  padding: 1rem;
  color: var(--wine);
  font-weight: 780;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  min-height: 220px;
  padding: 1.2rem;
}

.step-card span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--ivory);
  font-weight: 900;
}

.step-card h3 {
  margin: 1rem 0 0.45rem;
  color: var(--wine);
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  color: rgba(43, 29, 26, 0.72);
}

.shop-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 1.6rem;
  align-items: center;
}

.shop-copy {
  max-width: 680px;
}

.shop-copy h2 {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  font-weight: 500;
  line-height: 1.04;
}

.shop-copy p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: rgba(43, 29, 26, 0.76);
  font-size: 1.05rem;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.shop-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.shop-summary div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 0.4rem;
  padding: 1.15rem;
  border-right: 1px solid rgba(200, 164, 93, 0.22);
}

.shop-summary div:last-child {
  border-right: 0;
}

.shop-summary span {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.95rem;
  line-height: 1;
}

.shop-summary p {
  margin: 0;
  color: rgba(43, 29, 26, 0.66);
  font-size: 0.88rem;
  font-weight: 760;
}

.wholesale-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 2rem;
  align-items: center;
}

.wholesale-section {
  width: 100%;
  max-width: none;
  padding: 5rem 1rem;
  background:
    linear-gradient(90deg, rgba(90, 31, 46, 0.96), rgba(61, 20, 32, 0.94)),
    url("assets/hero-luxury.jpg") center / cover;
  color: var(--ivory);
}

.wholesale-copy {
  max-width: 660px;
}

.wholesale-copy .eyebrow,
.wholesale-copy h2,
.wholesale-copy p {
  color: inherit;
}

.wholesale-copy p {
  color: rgba(255, 249, 242, 0.84);
}

.wholesale-section .button-primary {
  border: 1px solid rgba(200, 164, 93, 0.55);
  background: linear-gradient(145deg, var(--ivory), var(--champagne));
  color: var(--wine);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.wholesale-section .button-primary:hover,
.wholesale-section .button-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(255, 249, 242, 0.88);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.wholesale-section img {
  width: 100%;
  max-height: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 249, 242, 0.18);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

details {
  padding: 1.15rem;
}

summary {
  cursor: pointer;
  color: var(--wine);
  font-weight: 850;
}

details p {
  margin: 0.75rem 0 0;
  color: rgba(43, 29, 26, 0.72);
}

.contact-section {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.contact-list a {
  color: var(--wine);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 1.15rem;
}

.form-row {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.38rem;
  color: var(--wine);
  font-weight: 820;
}

.form-row--split {
  grid-column: auto;
}

.form-row textarea {
  resize: vertical;
}

.form-button {
  grid-column: 1 / -1;
  width: 100%;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 58;
  background: rgba(43, 29, 26, 0.38);
  backdrop-filter: blur(6px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(100%, 440px);
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem;
  background: var(--warm-white);
  border-left: 1px solid rgba(200, 164, 93, 0.28);
  box-shadow: -28px 0 70px rgba(43, 29, 26, 0.18);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-drawer__header h2 {
  margin: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.cart-icon-button {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: var(--wine);
  color: var(--ivory);
  font-size: 1.6rem;
  line-height: 1;
}

.cart-promo,
.cart-note {
  border: 1px solid rgba(200, 164, 93, 0.24);
  border-radius: var(--radius);
  background: rgba(247, 231, 206, 0.34);
  padding: 0.8rem;
}

.cart-promo {
  display: grid;
  gap: 0.15rem;
  color: var(--wine);
}

.cart-promo span,
.cart-note p,
.cart-empty {
  color: rgba(43, 29, 26, 0.68);
  font-size: 0.9rem;
}

.cart-items {
  min-height: 0;
  overflow: auto;
  display: grid;
  gap: 0.75rem;
  padding-right: 0.15rem;
}

.cart-empty {
  margin: auto 0;
  border: 1px dashed rgba(90, 31, 46, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  border: 1px solid rgba(200, 164, 93, 0.22);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.85rem;
}

.cart-item h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.28;
}

.cart-item p {
  margin: 0.28rem 0 0;
  color: rgba(43, 29, 26, 0.62);
  font-size: 0.84rem;
}

.cart-item strong {
  color: var(--wine);
  align-self: start;
}

.cart-item__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-item__controls button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--mist);
  color: var(--wine);
  font-weight: 900;
}

.cart-item__controls span {
  min-width: 26px;
  text-align: center;
  color: var(--charcoal);
  font-weight: 850;
}

.cart-item__remove {
  grid-column: 1 / -1;
  justify-self: start;
  background: transparent;
  color: var(--wine);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cart-totals {
  display: grid;
  gap: 0.5rem;
  border-top: 1px solid rgba(200, 164, 93, 0.28);
  padding-top: 0.85rem;
}

.cart-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(43, 29, 26, 0.72);
}

.cart-totals strong {
  color: var(--wine);
}

.cart-totals__total {
  font-size: 1.12rem;
}

.cart-checkout {
  width: 100%;
}

.cart-checkout:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cart-clear {
  align-self: center;
  background: transparent;
  color: rgba(90, 31, 46, 0.82);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.72rem 1rem;
  background: linear-gradient(145deg, #1f8f54, #177345);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(31, 143, 84, 0.3);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 3rem 1rem;
  background: linear-gradient(145deg, var(--charcoal), #1e1412);
  color: rgba(255, 249, 242, 0.82);
}

.site-footer img {
  width: 86px;
  height: auto;
  margin-bottom: 1rem;
  filter: invert(1);
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: var(--ivory);
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: block;
  margin-bottom: 0.48rem;
  color: var(--ivory);
  font-weight: 760;
}

@media (min-width: 1220px) {
  .catalog-section,
  .wholesale-section {
    padding-left: calc((100% - var(--max-width)) / 2);
    padding-right: calc((100% - var(--max-width)) / 2);
  }

  .site-footer {
    padding-left: calc((100% - var(--max-width)) / 2);
    padding-right: calc((100% - var(--max-width)) / 2);
  }
}

@media (max-width: 1020px) {
  .price-grid,
  .category-grid,
  .steps-grid,
  .shop-section,
  .category-hero,
  .category-switcher,
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-layout,
  .wholesale-section,
  .contact-section,
  .shop-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .promo-art {
    max-width: 420px;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .category-hero {
    padding-top: 3rem;
  }

  .wholesale-section img {
    max-width: 640px;
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.55rem 0.85rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    min-height: 100svh;
    padding: 6rem 1.2rem 2rem;
    background: var(--ivory);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.8rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-links button {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-top: 0.4rem;
    border-bottom: 0 !important;
  }

  .menu-toggle {
    position: relative;
    z-index: 45;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand__mark {
    width: 34px;
    height: 52px;
  }

  .brand__wordmark {
    width: 150px;
    max-height: 50px;
  }

  .hero {
    min-height: 72svh;
    align-items: flex-start;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.9) 0%, rgba(255, 249, 242, 0.76) 54%, rgba(255, 249, 242, 0.44) 100%);
  }

  .hero-bottles {
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    opacity: 1;
    object-position: 66% center;
  }

  .hero-content {
    padding: 3.4rem 0 3.8rem;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .section {
    padding: 3.6rem 0;
  }

  .catalog-section,
  .wholesale-section {
    padding-top: 3.6rem;
    padding-right: 1rem;
    padding-bottom: 3.6rem;
    padding-left: 1rem;
  }

  .section-heading h2,
  .shop-copy h2,
  .wholesale-copy h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .category-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 66px;
  }

  .hero-actions,
  .button,
  .floating-whatsapp {
    width: 100%;
  }

  .button,
  .floating-whatsapp {
    min-height: 50px;
  }

  .price-grid,
  .category-grid,
  .steps-grid,
  .shop-summary,
  .category-hero,
  .category-switcher,
  .catalog-grid,
  .faq-grid,
  .order-form {
    grid-template-columns: 1fr;
  }

  .form-row--split {
    grid-column: 1 / -1;
  }

  .price-card,
  .step-card {
    min-height: auto;
  }

  .category-card {
    min-height: auto;
  }

  .category-card img {
    height: 220px;
  }

  .category-hero {
    padding-top: 2.4rem;
  }

  .category-hero h1 {
    font-size: 2.48rem;
  }

  .category-hero__image {
    aspect-ratio: 16 / 11;
  }

  .category-switcher a {
    min-height: 48px;
  }

  .product-card {
    min-height: 250px;
  }

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

  .product-card__add {
    width: 100%;
  }

  .shop-summary div {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 164, 93, 0.22);
  }

  .shop-summary div:last-child {
    border-bottom: 0;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
  }
}
