:root {
  --bg: #f5f0ea;
  --bg-soft: #f9f5f0;
  --panel: rgba(255, 252, 248, 0.88);
  --panel-strong: rgba(255, 252, 248, 0.96);
  --text: #181312;
  --muted: #6d5c55;
  --line: rgba(41, 29, 25, 0.1);
  --line-strong: rgba(41, 29, 25, 0.2);
  --accent: #d9c1ae;
  --accent-strong: #9b7568;
  --shadow-soft: 0 18px 40px rgba(42, 28, 24, 0.08);
  --shadow-card: 0 26px 70px rgba(36, 23, 20, 0.12);
  --radius-2xl: 40px;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1220px, calc(100vw - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 198, 184, 0.34), transparent 28%),
    linear-gradient(180deg, #fffcf8 0%, #f8f1ea 54%, #f3ebe4 100%);
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

[id] {
  scroll-margin-top: 110px;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(231, 206, 189, 0.55), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(245, 231, 220, 0.7), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 20%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-heading-centered {
  text-align: center;
  justify-items: center;
}

.section-heading-inline {
  grid-template-columns: 1fr;
  align-items: end;
}

.section-heading h2,
.site-footer h2,
.cart-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(24, 19, 18, 0.08);
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1440px, calc(100vw - 30px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: none;
  width: 1px;
  height: 1px;
}

.brand-lockup {
  display: grid;
  gap: 2px;
}

.brand-name,
.brand-lockup small {
  display: block;
  text-transform: uppercase;
}

.brand-name {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-lockup small {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  justify-self: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 1.7vw, 30px);
  min-width: 0;
}

.main-nav a,
.nav-cart-link {
  position: relative;
  padding: 8px 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a::after,
.nav-cart-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.nav-cart-link:hover::after,
.nav-cart-link:focus-visible::after {
  transform: scaleX(1);
}

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

.cart-toggle,
.nav-toggle,
.icon-button,
.hero-arrow {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.cart-toggle:hover,
.nav-toggle:hover,
.icon-button:hover,
.hero-arrow:hover,
.cart-toggle:focus-visible,
.nav-toggle:focus-visible,
.icon-button:focus-visible,
.hero-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(24, 19, 18, 0.18);
  box-shadow: 0 12px 28px rgba(24, 19, 18, 0.12);
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 18px;
  font-weight: 800;
}

.cart-toggle strong {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 13px;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.hero,
.benefits-strip,
.category-showcase,
.featured-products,
.shop-section,
.site-footer {
  padding: 34px 0 80px;
}

.hero {
  padding: 0 0 28px;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: min(82vh, 860px);
  overflow: hidden;
  background: #e8dbd0;
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: min(82vh, 860px);
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 239, 232, 0.92) 0%, rgba(248, 239, 232, 0.68) 34%, rgba(16, 11, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100vw - 60px));
  margin: 0 auto;
  display: grid;
  align-items: end;
  min-height: inherit;
  padding: clamp(110px, 15vh, 150px) 0 90px;
}

.hero-copy {
  max-width: min(600px, 100%);
  display: grid;
  gap: 18px;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.3rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.hero-copy p,
.shop-subtitle,
#footer-copy,
.footer-list span,
.footer-list a,
.product-description,
.cart-item p,
.detail-note span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy .hero-tagline {
  max-width: 34ch;
  margin: 0;
  font-size: 1rem;
  color: #433530;
}

.hero-copy .hero-campaign {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(10px);
  color: #2a1d19;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy .hero-campaign::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.hero-actions,
.product-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

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

.button-primary {
  background: #111;
  color: #fff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
}

.button-secondary {
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
}

.button-outline {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.48);
  color: var(--text);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-top: -31px;
  color: var(--text);
  font-size: 2.1rem;
}

.hero-arrow-prev {
  left: 26px;
}

.hero-arrow-next {
  right: 26px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.36);
}

.hero-dot.is-active {
  background: #fff;
}

.benefits-strip {
  padding-top: 0;
}

.benefits-grid {
  display: grid;
  gap: 12px;
}

.benefits-grid article {
  padding: 18px 20px;
  border: 1px solid rgba(36, 23, 20, 0.08);
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.category-showcase {
  padding-top: 30px;
}

.category-showcase-grid,
.featured-grid,
.products-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.category-card,
.featured-card,
.product-card,
.cart-drawer,
.product-modal {
  box-shadow: var(--shadow-card);
}

.category-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  text-align: left;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.06), rgba(10, 8, 7, 0.48) 100%);
  z-index: 1;
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.category-card:hover img,
.category-card:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.02);
}

.category-card-copy {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.category-card-copy h3 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.category-card-copy span {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-link,
.text-link {
  color: var(--text);
  font-weight: 800;
}

.featured-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.featured-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(36, 23, 20, 0.14);
}

.featured-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.featured-card-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.featured-card p,
.products-meta,
.product-category {
  display: block;
  margin: 0;
  color: var(--accent-strong);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.featured-card h3,
.product-card h3,
.cart-item h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.42;
}

.featured-card strong,
.product-card strong {
  font-size: 1rem;
}

.shop-toolbar {
  display: grid;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.filter-block input {
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.filter-block input:focus {
  outline: 0;
  border-color: rgba(155, 117, 104, 0.34);
  box-shadow: 0 0 0 4px rgba(217, 193, 174, 0.22);
}

.category-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.05em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  color: var(--text);
}

.filter-chip.is-active {
  background: var(--text);
  border-color: transparent;
  color: #fff;
}

.products-meta {
  margin: 16px 0 24px;
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.82);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 249, 243, 0.92);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-description {
  min-height: 60px;
  margin: 0;
}

.size-list,
.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-list span,
.size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-weight: 700;
}

.size-pill.is-active {
  background: var(--text);
  border-color: transparent;
  color: #fff;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(22, 17, 16, 0.98), rgba(15, 12, 11, 0.98)),
    #161110;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer .eyebrow,
.site-footer .footer-list a,
.site-footer .footer-list span,
#footer-copy {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  align-items: start;
}

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

.footer-brand-column {
  max-width: 38ch;
}

.cart-drawer,
.product-modal {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(460px, 100vw);
  height: 100dvh;
  padding: 24px 18px;
  overflow: auto;
  background: rgba(255, 252, 248, 0.98);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  background: inherit;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
}

.product-modal {
  left: 50%;
  right: auto;
  top: 50%;
  width: min(980px, calc(100vw - 20px));
  height: auto;
  max-height: min(92dvh, 880px);
  padding: 26px 20px;
  border-radius: 34px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.98);
  box-shadow: 0 36px 100px rgba(20, 12, 10, 0.26);
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.product-modal-grid {
  display: grid;
  gap: 22px;
}

.product-modal-gallery {
  display: grid;
  gap: 12px;
}

.product-modal-gallery img {
  height: 300px;
  border-radius: 24px;
  object-fit: cover;
}

.product-modal-copy h2 {
  margin: 6px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
  font-weight: 600;
}

.detail-block,
.detail-note {
  margin-top: 20px;
}

.detail-block span,
.detail-note strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.detail-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

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

.cart-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(41, 29, 25, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.cart-item img {
  height: 104px;
  border-radius: 16px;
  object-fit: cover;
}

.quantity-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.icon-pill {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(217, 193, 174, 0.22);
  color: var(--text);
  font-size: 1.1rem;
}

.danger-link {
  color: #b65d56;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  background: inherit;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(24, 18, 16, 0.36);
  backdrop-filter: blur(8px);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.3);
}

.empty-state {
  padding: 24px;
  border: 1px dashed rgba(41, 29, 25, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reduced-motion [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (min-width: 760px) {
  .section-heading-inline {
    grid-template-columns: 1fr auto;
  }

  .benefits-grid,
  .featured-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-toolbar,
  .product-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 980px) {
  .category-showcase-grid,
  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 252, 248, 0.98);
    border: 1px solid rgba(41, 29, 25, 0.08);
    box-shadow: var(--shadow-card);
  }

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

  .main-nav a,
  .nav-cart-link {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 759px) {
  [id] {
    scroll-margin-top: 92px;
  }

  .hero,
  .benefits-strip,
  .category-showcase,
  .featured-products,
  .shop-section,
  .site-footer {
    padding-bottom: 56px;
  }

  .header-shell {
    width: calc(100vw - 20px);
    min-height: 80px;
    gap: 10px;
  }

  .brand-name {
    font-size: 1.25rem;
    letter-spacing: 0.07em;
  }

  .brand-lockup small {
    font-size: 0.63rem;
    letter-spacing: 0.32em;
  }

  .cart-toggle {
    min-width: 46px;
    min-height: 46px;
    padding: 0 10px;
    justify-content: center;
  }

  .cart-toggle span {
    display: none;
  }

  .cart-toggle strong {
    width: 24px;
    height: 24px;
    font-size: 0.74rem;
  }

  .hero-slider,
  .hero-slide {
    min-height: 76vh;
  }

  .hero-slide::before {
    background:
      linear-gradient(180deg, rgba(248, 239, 232, 0.72) 0%, rgba(248, 239, 232, 0.8) 56%, rgba(16, 11, 10, 0.22) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 34%);
  }

  .hero-content {
    width: calc(100vw - 34px);
    padding: 96px 0 84px;
    align-items: end;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero-copy .hero-tagline {
    max-width: 28ch;
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-arrow {
    top: auto;
    bottom: 88px;
    width: 48px;
    height: 48px;
    margin-top: 0;
    font-size: 1.7rem;
  }

  .hero-arrow-prev {
    left: 14px;
  }

  .hero-arrow-next {
    right: 14px;
  }

  .hero-dots {
    bottom: 24px;
  }

  .category-card {
    min-height: 300px;
  }

  .product-modal {
    width: calc(100vw - 16px);
    padding: 18px 14px;
  }

  .product-modal-gallery img {
    height: 220px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.86rem;
  }
}

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