:root {
  --bg: #f8f1f1;
  --paper: #fffafa;
  --ink: #151313;
  --muted: #756f70;
  --dark: #151414;
  --dark-2: #242222;
  --ivory: #f6f1ef;
  --line: rgba(21, 19, 19, 0.12);
  --line-dark: rgba(246, 241, 239, 0.15);
  --rose: #b8848b;
  --sage: #829681;
  --burgundy: #6f2f3b;
  --lilac: #b8a9c9;
  --whatsapp: #25d366;
  --shadow: 0 24px 70px rgba(30, 20, 20, 0.13);
  --shadow-deep: 0 32px 90px rgba(20, 14, 14, 0.2);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 250, 0.82), rgba(248, 241, 241, 0.98) 34%, rgba(255, 250, 250, 0.92) 100%),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(21, 19, 19, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 19, 19, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 72%, transparent);
}

body.modal-open,
body.order-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 36px;
  color: var(--ivory);
  background: rgba(21, 20, 20, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(21, 20, 20, 0.96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 0.88;
  letter-spacing: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.brand-copy {
  display: block;
}

.brand-copy span,
.brand-copy strong {
  display: block;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(246, 241, 239, 0.74);
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.icon-button {
  justify-self: end;
}

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

.header-cta,
.order-trigger {
  border: 1px solid rgba(246, 241, 239, 0.38);
  background: transparent;
  color: var(--ivory);
  border-radius: 4px;
  padding: 11px 18px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.order-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 241, 239, 0.68);
  background: rgba(246, 241, 239, 0.08);
}

.order-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(246, 241, 239, 0.08);
}

.order-trigger span,
.mobile-order-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 21px;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--dark);
  font-size: 10px;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  z-index: 29;
  top: 72px;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--dark);
  color: var(--ivory);
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 18px 24px;
  background: var(--dark-2);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 46px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 19, 19, 0.16), transparent);
}

.hero-copy {
  padding-top: 28px;
}

.kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rose);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 0.98;
}

h2 {
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-lead,
.section-text,
.showcase-copy p,
.wholesale-panel p,
.final-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-lead {
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  padding: 15px 22px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
}

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

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

.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(21, 19, 19, 0.25);
}

.button-on-dark {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(246, 241, 239, 0.36);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 560px);
  margin: 40px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-proof div {
  padding: 18px;
  background: rgba(255, 250, 250, 0.72);
}

.hero-proof dt {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.hero-proof dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-gallery {
  position: relative;
  min-height: 600px;
}

.hero-photo {
  overflow: hidden;
  margin: 0;
  background: var(--paper);
  box-shadow: var(--shadow-deep);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.hero-photo:hover img {
  transform: scale(1.035);
}

.hero-photo-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  aspect-ratio: 1 / 1.08;
  filter: saturate(0.95) contrast(1.03);
}

.hero-photo-small {
  position: absolute;
  width: 34%;
  aspect-ratio: 1 / 1.18;
  border: 10px solid var(--bg);
  box-shadow: 0 24px 56px rgba(32, 22, 22, 0.18);
}

.hero-photo-small.one {
  left: 0;
  top: 15%;
}

.hero-photo-small.two {
  left: 18%;
  bottom: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark);
  color: var(--ivory);
  border-block: 1px solid rgba(246, 241, 239, 0.12);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.trust-strip div {
  position: relative;
  min-height: 112px;
  padding: 28px 30px;
  border-right: 1px solid var(--line-dark);
  overflow: hidden;
  transition: background 220ms ease;
}

.trust-strip div::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 34px;
  height: 2px;
  background: var(--rose);
  opacity: 0.8;
}

.trust-strip div:hover {
  background: rgba(255, 255, 255, 0.035);
}

.trust-strip span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 20px;
}

.trust-strip p {
  margin: 0;
  color: rgba(246, 241, 239, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

.intro-section,
.catalog-section,
.showcase,
.wholesale,
.steps,
.final-cta {
  padding-block: 88px;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: end;
}

.section-heading {
  max-width: 620px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-text {
  margin-bottom: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 34px 0;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.filter.active,
.filter:hover {
  color: var(--ivory);
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 14px 34px rgba(21, 19, 19, 0.14);
}

.text-link {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  padding: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(21, 19, 19, 0.1);
  background: rgba(255, 250, 250, 0.78);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 19, 19, 0.26);
  background: rgba(255, 250, 250, 0.96);
  box-shadow: var(--shadow-deep);
}

.product-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ded6d4;
}

.product-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(21, 19, 19, 0.12));
  opacity: 0;
  transition: opacity 260ms ease;
}

.product-card:hover figure::after {
  opacity: 1;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

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

.product-card-content {
  padding: 18px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-meta span:last-child {
  color: var(--ink);
}

.product-add {
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border: 1px solid rgba(21, 19, 19, 0.18);
  border-radius: 4px;
  background: var(--dark);
  color: var(--ivory);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.product-add:hover {
  transform: translateY(-2px);
  background: var(--burgundy);
  box-shadow: 0 14px 34px rgba(111, 47, 59, 0.24);
}

.showcase {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

.showcase-image {
  height: 580px;
  min-height: 580px;
  overflow: hidden;
  line-height: 0;
  background: #ded6d4;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(21, 19, 19, 0.1);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-copy h2,
.wholesale-panel h2,
.final-card h2 {
  margin-bottom: 22px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.benefit-list span {
  border-left: 2px solid var(--rose);
  padding: 10px 14px;
  background: rgba(255, 250, 250, 0.62);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.benefit-list span:hover {
  transform: translateX(4px);
  background: rgba(255, 250, 250, 0.96);
}

.wholesale {
  width: 100%;
}

.wholesale-panel {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 42px;
  align-items: stretch;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 32%),
    var(--dark);
  color: var(--ivory);
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(246, 241, 239, 0.12);
}

.wholesale-panel p {
  color: rgba(246, 241, 239, 0.68);
}

.wholesale-panel figure {
  margin: 0;
  height: 360px;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  line-height: 0;
}

.wholesale-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wholesale-panel .button-primary,
.final-card .button-primary {
  background: var(--ivory);
  color: var(--dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.step-card {
  position: relative;
  min-height: 244px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--sage), var(--lilac));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 19, 19, 0.22);
  box-shadow: var(--shadow);
}

.step-card:hover::after {
  transform: scaleX(1);
}

.step-card span {
  display: block;
  margin-bottom: 56px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 28px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-section {
  padding-block: 90px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 32%),
    var(--dark);
  color: var(--ivory);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, background 180ms ease;
}

details[open],
details:hover {
  border-color: rgba(246, 241, 239, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(246, 241, 239, 0.68);
  line-height: 1.65;
}

.final-card {
  max-width: 920px;
  margin-inline: auto;
  padding: 64px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(184, 132, 139, 0.18), transparent 44%),
    var(--dark-2);
  color: var(--ivory);
  border: 1px solid rgba(21, 19, 19, 0.22);
  box-shadow: var(--shadow-deep);
}

.final-card p {
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(246, 241, 239, 0.72);
}

.final-card .button + .button {
  margin-left: 10px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 46px 36px 76px;
  background: var(--dark);
  color: var(--ivory);
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(246, 241, 239, 0.58);
  line-height: 1.6;
}

.footer-brand {
  display: inline-block;
}

.footer-brand {
  display: inline-flex;
}

.footer-brand .brand-logo {
  width: 58px;
  height: 58px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: rgba(246, 241, 239, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.mobile-action-bar {
  display: none;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: linear-gradient(135deg, #32e577, var(--whatsapp));
  color: #062d16;
  box-shadow:
    0 0 0 8px rgba(37, 211, 102, 0.11),
    0 20px 48px rgba(37, 211, 102, 0.34),
    0 12px 34px rgba(20, 14, 14, 0.18);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  filter: saturate(1.08);
  box-shadow:
    0 0 0 10px rgba(37, 211, 102, 0.13),
    0 26px 58px rgba(37, 211, 102, 0.42),
    0 16px 40px rgba(20, 14, 14, 0.22);
}

.floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: #062d16;
  font-weight: 900;
}

.floating-whatsapp span:last-child {
  position: absolute;
  right: 78px;
  top: 50%;
  min-width: max-content;
  padding: 10px 13px;
  border-radius: 4px;
  background: rgba(21, 20, 20, 0.94);
  color: var(--ivory);
  box-shadow: 0 16px 36px rgba(20, 14, 14, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover span:last-child {
  opacity: 1;
  transform: translate(0, -50%);
}

.order-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(9, 8, 8, 0.44);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease;
}

.order-backdrop.open {
  opacity: 1;
}

.order-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(460px, 100%);
  max-width: 100vw;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 241, 241, 0.98)),
    var(--paper);
  border-left: 1px solid rgba(21, 19, 19, 0.12);
  box-shadow: -26px 0 72px rgba(20, 14, 14, 0.24);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

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

.order-drawer-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex: 0 0 auto;
  padding: 34px 30px 24px;
  border-bottom: 1px solid var(--line);
}

.order-drawer-header .kicker {
  margin-bottom: 11px;
}

.order-drawer-header h2 {
  margin: 0;
  font-size: 34px;
}

.order-close {
  position: static;
  flex: 0 0 auto;
  margin-top: -4px;
}

.order-empty {
  display: grid;
  gap: 14px;
  flex: 1 1 auto;
  place-items: start;
  padding: 34px 30px;
}

.order-empty[hidden],
.order-footer[hidden] {
  display: none !important;
}

.order-empty span {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
}

.order-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.order-items {
  display: grid;
  flex: 1 1 auto;
  align-content: start;
  min-height: 0;
  gap: 12px;
  padding: 22px 22px 28px;
  overflow: auto;
  overscroll-behavior: contain;
}

.order-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(21, 19, 19, 0.1);
  background: rgba(255, 250, 250, 0.78);
  box-shadow: 0 12px 30px rgba(20, 14, 14, 0.06);
}

.order-item img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  background: #ded6d4;
}

.order-item-main {
  min-width: 0;
}

.order-item h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.order-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.order-remove {
  margin-top: 12px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--burgundy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px;
  justify-items: center;
  gap: 5px;
}

.quantity-control button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(21, 19, 19, 0.14);
  border-radius: 50%;
  background: var(--dark);
  color: var(--ivory);
  font-weight: 800;
  cursor: pointer;
}

.quantity-control span {
  font-size: 13px;
  font-weight: 800;
}

.order-footer {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 22px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 250, 0.88);
  box-shadow: 0 -16px 42px rgba(20, 14, 14, 0.08);
}

.order-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.order-total-row strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.order-footer p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.width-full {
  width: 100%;
}

.modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 8, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(920px, calc(100% - 36px));
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 0;
  margin: 18px auto;
  overflow: auto;
  background: var(--bg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.modal-card figure {
  margin: 0;
  height: 560px;
  min-height: 560px;
  background: #ddd;
  line-height: 0;
}

.modal-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.modal-copy h2 {
  margin-bottom: 18px;
}

.modal-copy p:not(.kicker) {
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  border: 1px solid var(--line);
  background: rgba(248, 241, 241, 0.9);
  color: var(--ink);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

body.js-ready .reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 42px 1fr 42px;
    padding-inline: 20px;
  }

  .brand {
    font-size: 26px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  .hero,
  .intro-section,
  .showcase,
  .wholesale-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    padding-top: 100px;
  }

  .hero-copy {
    order: 2;
    padding-top: 0;
  }

  .hero-gallery {
    order: 1;
    min-height: 520px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

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

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

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .modal-card figure {
    height: 420px;
    min-height: 420px;
  }

  .order-drawer {
    width: min(430px, 100%);
  }
}

@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .section-shell {
    width: auto;
    max-width: 1180px;
    margin-inline: 16px;
  }

  .site-header {
    min-height: 66px;
  }

  .mobile-menu {
    top: 66px;
  }

  .brand {
    font-size: 24px;
    gap: 9px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 52px;
  }

  .hero-copy,
  .hero-gallery {
    min-width: 0;
  }

  .hero-gallery {
    min-height: 430px;
  }

  .hero-photo-large {
    width: 82%;
  }

  .hero-photo-small {
    width: 39%;
    border-width: 7px;
  }

  .hero-photo-small.two {
    left: 10%;
  }

  h1 {
    font-size: 39px;
    line-height: 1.04;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead,
  .section-text,
  .showcase-copy p,
  .wholesale-panel p,
  .final-card p {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: normal;
    word-break: normal;
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .intro-section,
  .catalog-section,
  .showcase,
  .wholesale,
  .steps,
  .final-cta {
    padding-block: 58px;
  }

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

  .showcase-image {
    height: 420px;
    min-height: 420px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .wholesale-panel {
    padding: 24px;
  }

  .wholesale-panel figure {
    height: 300px;
    min-height: 300px;
  }

  .final-card {
    padding: 34px 22px;
  }

  .final-card .button + .button {
    margin-left: 0;
    margin-top: 10px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 20px;
    padding-bottom: 104px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 40;
    right: auto;
    bottom: 10px;
    left: 50%;
    display: grid;
    width: min(calc(100vw - 20px), 420px);
    grid-template-columns: 0.9fr 0.98fr 1.16fr;
    gap: 6px;
    padding: 6px;
    background: rgba(21, 20, 20, 0.92);
    border: 1px solid var(--line-dark);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 48px;
    padding-inline: 6px;
    border: 0;
    border-radius: 4px;
    background: rgba(246, 241, 239, 0.12);
    color: var(--ivory);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
  }

  .mobile-action-bar button:last-child {
    background: var(--whatsapp);
    color: #072b16;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.26);
  }

  .mobile-order-button {
    gap: 6px;
  }

  .floating-whatsapp {
    display: none;
  }

  .order-drawer {
    width: 100%;
  }

  .order-drawer-header {
    gap: 12px;
    padding: 22px 16px 18px;
  }

  .order-drawer-header h2 {
    font-size: 30px;
  }

  .order-close {
    margin-top: -2px;
    padding: 9px 10px;
    font-size: 10px;
  }

  .order-empty {
    padding: 28px 16px;
  }

  .order-items {
    padding: 14px 14px 20px;
  }

  .order-item {
    grid-template-columns: 74px 1fr;
    align-items: start;
  }

  .order-item img {
    width: 74px;
    height: 74px;
  }

  .quantity-control {
    grid-column: 1 / -1;
    grid-template-columns: 34px 42px 34px;
    justify-content: end;
    align-items: center;
  }

  .quantity-control span {
    text-align: center;
  }

  .order-footer {
    padding: 16px 14px;
  }

  .modal-card {
    width: calc(100% - 22px);
    max-height: calc(100vh - 22px);
    margin: 11px auto;
  }

  .modal-card figure {
    height: 320px;
    min-height: 320px;
  }

  .modal-copy {
    padding: 28px;
  }
}
