:root {
  --ink: #171717;
  --muted: #69645f;
  --line: #ded8cf;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --accent: #b43128;
  --accent-dark: #8c241e;
  --sage: #697463;
  --gold: #c7953f;
  --footer: #11100f;
  --shadow: 0 18px 48px rgba(35, 31, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.modal-open,
body.drawer-open,
body.cart-open,
body.marketing-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -48px;
  z-index: 30;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
}

.topbar__marquee {
  min-height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.topbar__track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: topbar-marquee 28s linear infinite;
}

.topbar__track span {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  padding: 0 42px;
}

@keyframes topbar-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #302d2a;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.nav-link {
  padding: 10px 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-link--featured {
  font-size: 16px;
  font-weight: 950;
}

.nav-icon {
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
  display: inline-block;
}

.nav-icon--pole {
  position: relative;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      -35deg,
      #c62828 0 4px,
      #fff 4px 8px,
      #1e58b7 8px 12px,
      #fff 12px 16px
    );
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.nav-icon--pole::before,
.nav-icon--pole::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0.62em;
  height: 0.13em;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.nav-icon--pole::before {
  top: -0.16em;
}

.nav-icon--pole::after {
  bottom: -0.16em;
}

.nav-icon--chair {
  position: relative;
}

.nav-icon--chair::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.12em;
  width: 0.48em;
  height: 0.44em;
  border-radius: 0.12em 0.12em 0.04em 0.04em;
  background: var(--ink);
  box-shadow: 0.18em 0.36em 0 -0.04em var(--ink);
}

.nav-icon--chair::after {
  content: "";
  position: absolute;
  left: 0.1em;
  top: 0.68em;
  width: 0.82em;
  height: 0.14em;
  border-radius: 999px;
  background: var(--ink);
  box-shadow:
    -0.02em 0.24em 0 -0.03em var(--ink),
    0.68em 0.24em 0 -0.03em var(--ink);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  z-index: 25;
  width: 248px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown--compact {
  width: 168px;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown a {
  border-radius: 4px;
  padding: 10px 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus {
  background: #f5eee4;
  color: var(--accent-dark);
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.icon-button,
.quote-button,
.cart-button,
.text-button,
.secondary-link,
.primary-link,
.contact-card button {
  border: 0;
  border-radius: 4px;
  min-height: 42px;
}

.icon-button,
.text-button {
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.quote-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 0 18px;
  font-weight: 800;
}

.quote-button:hover,
.primary-link:hover {
  background: var(--accent-dark);
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font-weight: 850;
}

.cart-symbol {
  position: relative;
  width: 17px;
  height: 14px;
  display: inline-block;
  border: 2px solid var(--ink);
  border-top: 0;
}

.cart-symbol::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -7px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  transform: skewX(-12deg);
}

.cart-symbol::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -5px;
  height: 3px;
  border-radius: 999px;
  background:
    radial-gradient(circle at left center, var(--ink) 0 2px, transparent 2.5px),
    radial-gradient(circle at right center, var(--ink) 0 2px, transparent 2.5px);
}

.cart-button strong {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 800;
}

.secondary-link--plain {
  border: 1px solid var(--line);
  background: #fff;
}

.nav-toggle {
  display: grid;
  place-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

@media (min-width: 981px) {
  .nav-toggle {
    display: none;
  }
}

.hero-section {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #211f1d;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 96px 0 88px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #f2cc89;
}

.hero-content h1 {
  max-width: 720px;
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.category-band,
.product-section,
.shop-surface,
.faq-section,
.review-band,
.about-section,
.subscribe-band {
  padding: 72px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2,
.filter-panel h2,
.wholesale-grid h2,
.faq-layout h2,
.review-grid h2,
.about-copy h2,
.subscribe-layout h2,
.inquiry-form h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

.text-link,
.text-button {
  color: var(--accent);
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 6px;
  background: #222;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.35s ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card__text {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.category-card strong,
.category-card span {
  display: block;
}

.category-card strong {
  font-size: 19px;
  line-height: 1.16;
}

.category-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  min-width: 0;
}

.product-card.reveal-card {
  opacity: 0;
  transform: translate3d(-34px, 34px, 0);
  transition:
    opacity 0.38s ease,
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.product-card.reveal-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.product-card__image {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  aspect-ratio: 1 / 1;
  background: #eee8de;
  overflow: hidden;
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.product-image--hover {
  opacity: 0;
  transform: scale(1.02);
}

.product-image--hover-fallback {
  transform: scale(1.08);
  filter: contrast(1.04);
}

.product-card:hover .product-card__image img {
  transform: scale(1.035);
}

.product-card:hover .product-image--primary {
  opacity: 0;
}

.product-card:hover .product-image--hover {
  opacity: 1;
}

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
}

.product-card__body {
  padding: 14px;
}

.product-card__body h3 {
  margin: 0;
  min-height: 46px;
  font-size: 15px;
  line-height: 1.3;
}

.product-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.price {
  font-weight: 900;
  color: var(--ink);
}

.card-link {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
}

.product-actions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8px;
  margin-top: 12px;
}

.product-actions .card-link,
.cart-add-button {
  min-height: 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
}

.cart-add-button {
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 0 12px;
}

.cart-add-button:hover {
  background: var(--accent-dark);
}

.shop-surface {
  background: #eee7db;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 98px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
}

.search-box,
.inquiry-form label,
.subscribe-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.search-box {
  margin: 20px 0;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
}

textarea {
  resize: vertical;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
  text-align: left;
}

.filter-chip.is-active {
  border-color: var(--accent);
  background: #fff4f1;
  color: var(--accent-dark);
  font-weight: 900;
}

.contact-card {
  margin-top: 22px;
  padding: 16px;
  border-radius: 6px;
  background: #243025;
  color: #fff;
}

.contact-card p {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.contact-card button {
  width: 100%;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.catalog-panel {
  min-width: 0;
}

.catalog-toolbar,
.load-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.catalog-toolbar {
  margin-bottom: 16px;
}

.load-row {
  justify-content: center;
  margin-top: 24px;
}

.wholesale-band {
  padding: 78px 0;
  background: var(--footer);
  color: #fff;
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.wholesale-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.promise-grid article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.promise-grid span {
  color: var(--gold);
  font-weight: 900;
}

.promise-grid strong {
  display: block;
  margin-top: 42px;
  font-size: 18px;
}

.faq-layout,
.review-grid,
.subscribe-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.section-copy {
  color: var(--muted);
}

.accordion-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.review-band {
  background: #dfe5d8;
}

.about-hero,
.about-section {
  scroll-margin-top: 92px;
}

.about-hero {
  position: relative;
  min-height: clamp(220px, 20vw, 382px);
  overflow: hidden;
  background: #171717;
}

.about-hero img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 20vw, 382px);
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.04);
}

.about-hero__content {
  position: absolute;
  inset: 0;
}

.about-section {
  background: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}

.about-media {
  min-width: 0;
}

.about-carousel {
  width: 100%;
}

.about-carousel__viewport {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #f1ece4;
  perspective: 1400px;
}

.about-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform: rotateY(88deg);
  transform-origin: left center;
  backface-visibility: hidden;
}

.about-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: rotateY(0);
}

.about-slide.is-leaving {
  z-index: 3;
  opacity: 1;
  animation: about-page-out 0.58s ease forwards;
}

.about-slide.is-entering {
  z-index: 4;
  opacity: 1;
  animation: about-page-in 0.58s ease forwards;
}

.about-carousel.is-reverse .about-slide.is-leaving {
  transform-origin: right center;
  animation-name: about-page-out-reverse;
}

.about-carousel.is-reverse .about-slide.is-entering {
  transform-origin: left center;
  animation-name: about-page-in-reverse;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.about-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.about-arrow:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

@keyframes about-page-out {
  from {
    opacity: 1;
    transform: rotateY(0);
  }

  to {
    opacity: 0;
    transform: rotateY(-82deg);
  }
}

@keyframes about-page-in {
  from {
    opacity: 0;
    transform: rotateY(82deg);
  }

  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

@keyframes about-page-out-reverse {
  from {
    opacity: 1;
    transform: rotateY(0);
  }

  to {
    opacity: 0;
    transform: rotateY(82deg);
  }
}

@keyframes about-page-in-reverse {
  from {
    opacity: 0;
    transform: rotateY(-82deg);
  }

  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

.about-copy {
  min-width: 0;
}

.about-copy h2 {
  max-width: 660px;
}

.about-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #423d38;
  font-size: 15px;
  line-height: 1.72;
}

.about-copy p:last-child {
  color: var(--ink);
  font-weight: 650;
}

figure {
  margin: 0;
  background: #fff;
  border-radius: 6px;
  padding: 26px;
}

blockquote {
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
}

figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.subscribe-band {
  background: #f7e4d7;
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 48px 0;
  background: var(--footer);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.brand--footer .brand__mark {
  border-color: #fff;
  color: #fff;
}

.brand--footer small,
.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}

.modal,
.inquiry-drawer,
.cart-drawer,
.marketing-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.is-open,
.inquiry-drawer.is-open,
.cart-drawer.is-open,
.marketing-modal.is-open {
  display: block;
}

.modal__backdrop,
.inquiry-drawer__backdrop,
.cart-drawer__backdrop,
.marketing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.modal__panel {
  position: relative;
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  margin: 18px auto;
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 8px 10px;
  font-weight: 900;
}

.modal-product {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 28px;
}

.modal-gallery {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
}

.thumb-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.thumb-list button {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #eee;
}

.thumb-list button.is-active {
  border-color: var(--accent);
}

.thumb-list img,
.main-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.main-product-image {
  border-radius: 6px;
  overflow: hidden;
  background: #eee8de;
}

.modal-info h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
}

.modal-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 18px 0;
  font-size: 14px;
}

.modal-info dt {
  color: var(--muted);
  font-weight: 800;
}

.modal-info dd {
  margin: 0;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-add-button--modal {
  min-height: 42px;
  padding: 0 18px;
}

.payment-panel {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.paypal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: #ffc439;
  color: #111;
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
}

.paypal-button span {
  color: #003087;
  font-weight: 950;
}

.paypal-button:not(:disabled):hover {
  background: #f4b900;
}

.paypal-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  filter: saturate(0.55);
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.inquiry-form {
  position: absolute;
  right: 0;
  top: 0;
  width: min(460px, 100%);
  height: 100%;
  overflow: auto;
  background: #fff;
  padding: 34px 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  background: #fff;
  padding: 34px 24px;
  box-shadow: var(--shadow);
}

.cart-panel .modal__close {
  position: static;
  float: right;
  margin-left: 12px;
}

.cart-panel h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.16;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.cart-item img {
  width: 86px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: cover;
  background: #eee8de;
}

.cart-item__body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.cart-item__body strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item__body span {
  color: var(--muted);
  font-size: 12px;
}

.cart-item__body b {
  font-size: 14px;
}

.cart-stepper,
.cart-remove {
  grid-column: 2;
  justify-self: start;
}

.cart-stepper {
  display: inline-grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.cart-stepper button {
  min-height: 32px;
  border: 0;
  background: #f7f2ea;
  font-weight: 900;
}

.cart-stepper span {
  text-align: center;
  font-weight: 900;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  padding: 0;
  font-size: 12px;
  font-weight: 900;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-summary span {
  color: var(--muted);
  font-weight: 800;
}

.cart-summary strong {
  font-size: 22px;
}

.cart-actions {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.cart-actions .secondary-link,
.cart-actions .paypal-button,
.cart-actions .primary-link {
  width: 100%;
}

.live-chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-weight: 900;
}

.live-chat-launcher__icon {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
  border-radius: 5px;
  background: #fff;
}

.live-chat-launcher__icon::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -5px;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.live-chat {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 55;
  display: none;
  width: min(390px, calc(100% - 28px));
}

.live-chat.is-open {
  display: block;
}

.live-chat__panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.live-chat__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: #243025;
  color: #fff;
}

.live-chat__header .eyebrow {
  color: #f2cc89;
}

.live-chat__header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

.live-chat__header .modal__close {
  position: static;
}

.live-chat__messages {
  display: grid;
  gap: 10px;
  padding: 16px 18px 0;
}

.chat-bubble {
  max-width: 94%;
  margin: 0;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.chat-bubble--agent {
  background: #f3eee6;
  color: var(--ink);
}

.live-chat__form,
.marketing-form {
  display: grid;
  gap: 12px;
}

.live-chat__form {
  padding: 16px 18px 18px;
}

.live-chat__form label,
.marketing-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.marketing-card {
  position: relative;
  width: min(520px, calc(100% - 28px));
  margin: 10vh auto 0;
  border-radius: 8px;
  background: #fff;
  padding: 34px 28px 26px;
  box-shadow: var(--shadow);
}

.marketing-card h2 {
  margin: 0;
  max-width: 420px;
  font-size: 32px;
  line-height: 1.12;
}

.marketing-card p:not(.eyebrow):not(.form-status) {
  margin: 12px 0 18px;
  color: var(--muted);
}

.marketing-form {
  grid-template-columns: 1fr;
}

.inquiry-form .modal__close {
  position: static;
  justify-self: end;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 6px;
  padding: 28px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
  }

  .nav-toggle {
    display: grid !important;
    place-content: center;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 10px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin-top: 2px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .header-actions {
    padding-bottom: 16px;
  }

  .hero-content h1 {
    font-size: 42px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

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

  .shop-layout,
  .wholesale-grid,
  .faq-layout,
  .review-grid,
  .about-layout,
  .subscribe-layout,
  .modal-product {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .topbar__marquee {
    min-height: 34px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand small {
    font-size: 12px;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-content {
    padding: 72px 0 56px;
  }

  .hero-content h1 {
    max-width: 340px;
    font-size: 30px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 16px;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .category-grid,
  .product-grid,
  .footer-grid,
  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .thumb-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .modal-product {
    padding: 20px;
  }

  .about-hero,
  .about-hero img {
    min-height: 190px;
  }

  .about-carousel__viewport {
    aspect-ratio: 1 / 1;
  }

  .cart-actions {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cart-item img {
    width: 72px;
  }

  .live-chat-launcher {
    right: 14px;
    bottom: 14px;
  }

  .live-chat {
    right: 14px;
    bottom: 74px;
    width: calc(100% - 28px);
  }

  .marketing-card {
    margin-top: 7vh;
    padding: 30px 20px 22px;
  }

  .marketing-card h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar__track,
  .product-card.reveal-card {
    animation: none;
    transition: none;
  }

  .product-card.reveal-card {
    opacity: 1;
    transform: none;
  }
}
