:root {
  --page: #f5f5f2;
  --surface: #ffffff;
  --surface-soft: #efefeb;
  --ink: #1d1d1f;
  --muted: #696967;
  --line: rgba(29, 29, 31, 0.1);
  --red: #e1492f;
  --red-dark: #bd321f;
  --green: #173f30;
  --green-soft: #dfe8df;
  --yellow: #f4c76c;
  --shadow: 0 24px 70px rgba(31, 32, 29, 0.09);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue",
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--green);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(225, 73, 47, 0.38);
  outline-offset: 3px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  padding: 14px 0;
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(250, 250, 248, 0.83);
  box-shadow: 0 10px 35px rgba(31, 32, 29, 0.07);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
}

.brand > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.01em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 29px;
  border-radius: 65% 38% 62% 42%;
  background: linear-gradient(145deg, #ef644a, var(--red));
  box-shadow: inset -4px -5px 8px rgba(125, 26, 14, 0.15);
  transform: rotate(18deg);
}

.brand-mark::before {
  position: absolute;
  top: -4px;
  left: 7px;
  width: 12px;
  height: 7px;
  border-radius: 100% 0 100% 0;
  background: var(--green);
  content: "";
  transform: rotate(-35deg);
  transform-origin: left bottom;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: #4d4d4b;
  font-size: 13px;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(29, 29, 31, 0.05);
}

.header-cart {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.header-cart:hover {
  background: #343436;
  transform: translateY(-1px);
}

.header-cart-label {
  font-size: 13px;
  font-weight: 650;
}

.bag-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1.8px solid currentColor;
  border-radius: 4px 4px 5px 5px;
}

.bag-icon::before {
  position: absolute;
  top: -6px;
  left: 3px;
  width: 7px;
  height: 7px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  content: "";
}

.cart-count {
  display: inline-grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 10px;
  font-weight: 750;
}

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  padding-top: 58px;
  padding-bottom: 88px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 86px);
  font-weight: 690;
  letter-spacing: -0.064em;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
  color: #747472;
}

.hero-lead {
  max-width: 580px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  letter-spacing: -0.018em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 680;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 13px 28px rgba(225, 73, 47, 0.2);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 15px 32px rgba(225, 73, 47, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
  background: #fff;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.hero-notes span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 10px;
  font-weight: 800;
}

.hero-showcase {
  position: relative;
  min-height: 520px;
  border-radius: 46px;
  background:
    radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.9), transparent 29%),
    linear-gradient(145deg, #e4e6df 0%, #d7ddcf 55%, #cbd5c8 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.showcase-glow {
  position: absolute;
  right: -55px;
  bottom: -90px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(254, 250, 231, 0.7);
  filter: blur(12px);
}

.showcase-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 45px rgba(40, 58, 45, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.showcase-main {
  top: 54px;
  left: 48px;
  width: 53%;
  height: 330px;
  border-radius: 31px;
  transform: rotate(-3deg);
}

.showcase-small {
  right: 42px;
  width: 31%;
  height: 195px;
  border-radius: 25px;
}

.showcase-top {
  top: 38px;
  transform: rotate(5deg);
}

.showcase-bottom {
  right: 54px;
  bottom: 48px;
  transform: rotate(-5deg);
}

.showcase-image {
  width: 100%;
  height: 100%;
}

.showcase-image .image-fallback,
.showcase-image img {
  width: 100%;
  height: 100%;
}

.showcase-product-name {
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 13px;
  overflow: hidden;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 12px;
  background: rgba(250, 250, 247, 0.73);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-caption {
  position: absolute;
  bottom: 42px;
  left: 50px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showcase-caption span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-caption strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

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

.product-visual > .image-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-visual.has-image > .image-fallback {
  visibility: hidden;
}

.product-image-frames {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  background: #e9e9e5;
  will-change: transform;
  transition: transform 680ms cubic-bezier(0.22, 0.76, 0.2, 1);
}

.product-image-frames.is-resetting {
  transition: none;
}

.product-image-frames.slide-position-0 {
  transform: translate3d(0, 0, 0);
}

.product-image-frames.slide-position-1 {
  transform: translate3d(-100%, 0, 0);
}

.product-image-frames.slide-position-2 {
  transform: translate3d(-200%, 0, 0);
}

.product-image-frames.slide-position-3 {
  transform: translate3d(-300%, 0, 0);
}

.product-image-frames.slide-position-4 {
  transform: translate3d(-400%, 0, 0);
}

.product-image-frames.slide-position-5 {
  transform: translate3d(-500%, 0, 0);
}

.product-image-frames.slide-position-6 {
  transform: translate3d(-600%, 0, 0);
}

.product-image-frames.slide-position-7 {
  transform: translate3d(-700%, 0, 0);
}

.product-image-frames.slide-position-8 {
  transform: translate3d(-800%, 0, 0);
}

.product-image-frames.slide-position-9 {
  transform: translate3d(-900%, 0, 0);
}

.product-image-frames.slide-position-10 {
  transform: translate3d(-1000%, 0, 0);
}

.product-image-frames.slide-position-11 {
  transform: translate3d(-1100%, 0, 0);
}

.product-image-frames.slide-position-12 {
  transform: translate3d(-1200%, 0, 0);
}

.product-image-frames.slide-position-13 {
  transform: translate3d(-1300%, 0, 0);
}

.product-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-carousel-status {
  position: absolute;
  z-index: 3;
  bottom: 13px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(25, 26, 24, 0.34);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%);
  pointer-events: none;
}

.image-carousel-indicator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  transition:
    width 380ms ease,
    background 380ms ease;
}

.image-carousel-indicator.is-active {
  width: 13px;
  border-radius: 999px;
  background: #fff;
}

.showcase-image .image-carousel-status {
  top: 12px;
  bottom: auto;
}

.cart-item-image .image-carousel-status {
  display: none;
}

.image-carousel-controls {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  pointer-events: none;
}

.image-carousel-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #fff;
  background: rgba(26, 27, 25, 0.38);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0.82;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: auto;
  cursor: pointer;
  transition:
    opacity 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.image-carousel-arrow span {
  margin-top: -2px;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.image-carousel-arrow:hover,
.image-carousel-arrow:focus-visible {
  background: rgba(26, 27, 25, 0.72);
  opacity: 1;
  transform: scale(1.05);
}

.image-fallback {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(circle at 33% 28%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(145deg, #ef775d, #c83b27 70%, #9b2d20);
}

.image-fallback span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50% 42% 52% 46%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 34px;
  font-weight: 700;
  transform: rotate(8deg);
}

.image-fallback small {
  max-width: 80%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 50px rgba(31, 32, 29, 0.04);
}

.feature-strip article {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-number {
  padding-top: 2px;
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
}

.feature-strip strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.catalog-section {
  margin-top: 92px;
  padding: 104px 0 116px;
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  align-items: end;
  gap: 50px;
}

.section-heading h2,
.steps-intro h2,
.story-copy h2 {
  margin: 0;
  font-size: clamp(39px, 5vw, 64px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p,
.steps-intro > p:last-child,
.story-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
}

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

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.filter-button:hover {
  background: var(--surface-soft);
}

.filter-button.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.search-field {
  position: relative;
  flex: 0 1 255px;
}

.search-field input {
  width: 100%;
  height: 44px;
  padding: 0 15px 0 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: #f6f6f4;
  font-size: 12px;
  transition:
    background 160ms ease,
    border 160ms ease,
    box-shadow 160ms ease;
}

.search-field input:focus {
  border-color: rgba(225, 73, 47, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(225, 73, 47, 0.08);
}

.search-icon {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 17px;
  width: 14px;
  height: 14px;
  border: 1.7px solid var(--muted);
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 6px;
  height: 1.7px;
  border-radius: 2px;
  background: var(--muted);
  content: "";
  transform: rotate(45deg);
}

.catalog-status {
  min-height: 18px;
  margin: 22px 0 18px;
  color: #888884;
  font-size: 11px;
}

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

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

.product-card:hover {
  box-shadow: 0 20px 48px rgba(31, 32, 29, 0.09);
  transform: translateY(-4px);
}

.product-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
}

.product-image-open {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-image-open:focus-visible {
  border-radius: inherit;
  outline: 3px solid rgba(225, 73, 47, 0.45);
  outline-offset: -4px;
}

.product-image {
  width: 100%;
  aspect-ratio: 1.12;
  background: #e9eae5;
}

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

.product-badge {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 720;
}

.details-hint {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(29, 29, 31, 0.75);
  font-size: 10px;
  font-weight: 650;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-card:hover .details-hint,
.product-image-open:focus-visible ~ .details-hint {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  padding: 21px 21px 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-meta > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-title-button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.product-title-button:hover h3 {
  color: var(--red-dark);
}

.product-card-body > p {
  min-height: 42px;
  margin: 9px 0 23px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.heat {
  --heat-color: #d7604c;
  --heat-glow: rgba(215, 96, 76, 0.12);
  --heat-signal-glow: rgba(215, 96, 76, 0.28);
  --heat-speed: 3.8s;
  --heat-sweep-speed: 8s;
  display: flex;
  position: relative;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 13px;
  background:
    radial-gradient(circle at 88% 50%, var(--heat-glow), transparent 58%),
    rgba(247, 247, 244, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  isolation: isolate;
  overflow: hidden;
  transition:
    background 240ms ease,
    box-shadow 240ms ease;
}

.heat::after {
  position: absolute;
  z-index: 0;
  inset: -35% -45%;
  background: linear-gradient(
    105deg,
    transparent 34%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.04) 60%,
    transparent 66%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-75%);
}

.heat > * {
  position: relative;
  z-index: 1;
}

.heat small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

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

.heat-signal {
  position: relative;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--heat-color);
  box-shadow: 0 0 0 2px var(--heat-glow);
}

.heat-signal::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--heat-color);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.45);
}

.heat-peppers {
  position: relative;
  display: flex;
  min-height: 29px;
  align-items: center;
  gap: 5px;
}

.heat-peppers::before,
.heat-peppers::after {
  position: absolute;
  top: 1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff8c54;
  box-shadow:
    8px 4px 0 -1px #ffcc7a,
    -5px 7px 0 -1px #ff5e32;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.heat-peppers::before {
  left: 27%;
}

.heat-peppers::after {
  right: 18%;
}

.pepper-heat-icon {
  --pepper-angle: -3deg;
  --pepper-y: 0px;
  display: inline-block;
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--heat-color);
  filter: drop-shadow(0 3px 5px var(--heat-signal-glow));
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 23px;
  isolation: isolate;
  line-height: 1;
  transform: rotate(var(--pepper-angle)) translateY(var(--pepper-y));
  transform-origin: 50% 55%;
}

.pepper-heat-icon::before,
.pepper-heat-icon::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  display: block;
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.pepper-heat-icon::before {
  width: 38px;
  height: 38px;
  background: repeating-conic-gradient(
    from 8deg,
    transparent 0deg 17deg,
    currentColor 17deg 20deg,
    transparent 20deg 45deg
  );
  -webkit-mask: radial-gradient(
    circle,
    transparent 0 39%,
    #000 42% 68%,
    transparent 72%
  );
  mask: radial-gradient(circle, transparent 0 39%, #000 42% 68%, transparent 72%);
  transform: translate(-50%, -50%) rotate(-8deg) scale(0.68);
}

.pepper-heat-icon::after {
  width: 31px;
  height: 31px;
  background: radial-gradient(circle, var(--heat-glow), transparent 68%);
  transform: translate(-50%, -50%) scale(0.72);
}

.pepper-heat-icon:nth-child(even) {
  --pepper-angle: 2deg;
  --pepper-y: -1px;
}

.pepper-heat-icon:nth-child(3n) {
  --pepper-angle: -6deg;
  --pepper-y: 0.5px;
}

.heat-compact {
  min-height: 39px;
  gap: 0;
  padding: 5px 9px;
  border-radius: 999px;
}

.heat-compact .heat-display {
  gap: 8px;
}

.heat-level-1 {
  --heat-color: #d76a56;
  --heat-glow: rgba(215, 106, 86, 0.08);
  --heat-signal-glow: rgba(215, 106, 86, 0.18);
}

.heat-level-2 {
  --heat-color: #e05a3f;
  --heat-glow: rgba(224, 90, 63, 0.14);
  --heat-signal-glow: rgba(224, 90, 63, 0.38);
  --heat-speed: 3.2s;
}

.heat-level-3 {
  --heat-color: #e1492f;
  --heat-glow: rgba(225, 73, 47, 0.2);
  --heat-signal-glow: rgba(225, 73, 47, 0.56);
  --heat-speed: 1.9s;
  --heat-sweep-speed: 4.4s;
}

.heat-level-4 {
  --heat-color: #e53c22;
  --heat-glow: rgba(229, 60, 34, 0.28);
  --heat-signal-glow: rgba(229, 60, 34, 0.72);
  --heat-speed: 1.02s;
  --heat-sweep-speed: 2.8s;
}

.heat-level-5 {
  --heat-color: #f03217;
  --heat-glow: rgba(240, 50, 23, 0.38);
  --heat-signal-glow: rgba(255, 55, 25, 0.92);
  --heat-speed: 0.78s;
  --heat-sweep-speed: 2.1s;
  border-color: rgba(229, 60, 34, 0.25);
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 76, 38, 0.24), transparent 62%),
    rgba(255, 248, 244, 0.96);
}

.heat-level-2 .pepper-heat-icon::before,
.heat-level-2 .pepper-heat-icon::after {
  animation: heat-ray-pulse 3.6s ease-in-out infinite;
}

.heat-level-3 .pepper-heat-icon::before,
.heat-level-3 .pepper-heat-icon::after {
  animation: heat-ray-pulse 2.25s ease-in-out infinite;
}

.heat-level-4 .pepper-heat-icon::before,
.heat-level-4 .pepper-heat-icon::after {
  animation: heat-ray-pulse 1.45s ease-in-out infinite;
}

.heat-level-5 .pepper-heat-icon::before,
.heat-level-5 .pepper-heat-icon::after {
  animation: heat-ray-pulse 1.08s ease-in-out infinite;
}

.heat-level-2 .heat-signal,
.heat-level-3 .heat-signal,
.heat-level-4 .heat-signal,
.heat-level-5 .heat-signal {
  animation: heat-signal-pulse var(--heat-speed) ease-in-out infinite;
}

.heat-level-2 .heat-signal::after,
.heat-level-3 .heat-signal::after,
.heat-level-4 .heat-signal::after,
.heat-level-5 .heat-signal::after {
  animation: heat-signal-ripple var(--heat-speed) ease-out infinite;
}

.heat-level-3 .heat-peppers,
.heat-level-4 .heat-peppers,
.heat-level-5 .heat-peppers {
  animation: heat-pepper-glow var(--heat-speed) ease-in-out infinite alternate;
}

.heat-level-3::after,
.heat-level-4::after,
.heat-level-5::after {
  animation: heat-light-sweep var(--heat-sweep-speed) ease-in-out infinite;
}

.heat-level-4,
.heat-level-5 {
  animation: heat-field-pulse var(--heat-speed) ease-in-out infinite;
}

.heat-level-2 .pepper-heat-icon {
  animation: heat-pepper-warm 3.2s ease-in-out infinite alternate;
}

.heat-level-3 .pepper-heat-icon {
  animation: heat-pepper-medium 1.9s ease-in-out infinite alternate;
}

.heat-level-4 .pepper-heat-icon {
  animation: heat-pepper-strong 0.92s ease-in-out infinite;
}

.heat-level-5 .pepper-heat-icon {
  animation: heat-pepper-extreme 0.72s ease-in-out infinite;
}

.heat-level-4 .heat-peppers::before {
  animation: heat-ember-rise 1.45s ease-out infinite;
}

.heat-level-5 .heat-peppers::before {
  animation: heat-ember-rise 0.98s ease-out infinite;
}

.heat-level-5 .heat-peppers::after {
  animation: heat-ember-rise 0.98s 0.46s ease-out infinite;
}

.heat-level-5 .pepper-heat-icon:nth-child(2) {
  animation-delay: -0.12s;
}

.heat-level-5 .pepper-heat-icon:nth-child(3) {
  animation-delay: -0.24s;
}

.heat-level-5 .pepper-heat-icon:nth-child(4) {
  animation-delay: -0.36s;
}

.heat-level-5 .pepper-heat-icon:nth-child(5) {
  animation-delay: -0.48s;
}

@keyframes heat-signal-pulse {
  0%,
  24% {
    opacity: 0.38;
    box-shadow: 0 0 0 2px var(--heat-glow);
  }
  55%,
  100% {
    opacity: 1;
    box-shadow:
      0 0 0 3px var(--heat-glow),
      0 0 9px var(--heat-signal-glow);
  }
}

@keyframes heat-signal-ripple {
  0% {
    opacity: 0;
    transform: scale(0.45);
  }
  42% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes heat-light-sweep {
  0%,
  22% {
    opacity: 0;
    transform: translateX(-75%);
  }
  42% {
    opacity: 0.48;
  }
  62%,
  100% {
    opacity: 0;
    transform: translateX(75%);
  }
}

@keyframes heat-pepper-glow {
  from {
    filter: saturate(0.96) brightness(0.98);
  }
  to {
    filter: saturate(1.13) brightness(1.08);
  }
}

@keyframes heat-ray-pulse {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.66);
  }
  38% {
    opacity: 0.22;
  }
  58% {
    opacity: 0.48;
    transform: translate(-50%, -50%) rotate(5deg) scale(1);
  }
  78% {
    opacity: 0.12;
    transform: translate(-50%, -50%) rotate(13deg) scale(1.08);
  }
}

@keyframes heat-field-pulse {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 5px 16px var(--heat-glow);
  }
}

@keyframes heat-pepper-warm {
  from {
    filter: saturate(1) brightness(1);
    transform: rotate(var(--pepper-angle)) translateY(var(--pepper-y)) scale(1);
  }
  to {
    filter: saturate(1.08) brightness(1.06);
    transform: rotate(calc(var(--pepper-angle) + 1deg))
      translateY(calc(var(--pepper-y) - 0.8px)) scale(1.03);
  }
}

@keyframes heat-pepper-medium {
  0% {
    filter: saturate(1) brightness(0.98);
    transform: rotate(calc(var(--pepper-angle) - 1deg)) translateY(var(--pepper-y))
      scale(1);
  }
  48% {
    filter: saturate(1.12) brightness(1.1)
      drop-shadow(0 2px 4px var(--heat-signal-glow));
  }
  100% {
    filter: saturate(1.04) brightness(1.03);
    transform: rotate(calc(var(--pepper-angle) + 2deg))
      translateY(calc(var(--pepper-y) - 1.2px)) scale(1.04);
  }
}

@keyframes heat-pepper-strong {
  0%,
  100% {
    filter: saturate(1.02) brightness(1);
    transform: rotate(var(--pepper-angle)) translate3d(0, var(--pepper-y), 0)
      scale(1);
  }
  28% {
    filter: saturate(1.2) brightness(1.17)
      drop-shadow(0 2px 5px var(--heat-signal-glow));
    transform: rotate(calc(var(--pepper-angle) - 2deg))
      translate3d(-0.7px, calc(var(--pepper-y) - 1px), 0) scale(1.06);
  }
  58% {
    filter: saturate(1.08) brightness(0.92);
    transform: rotate(calc(var(--pepper-angle) + 2deg))
      translate3d(0.8px, calc(var(--pepper-y) + 0.4px), 0) scale(0.98);
  }
}

@keyframes heat-pepper-extreme {
  0%,
  100% {
    opacity: 1;
    filter: saturate(1.08) brightness(1.04)
      drop-shadow(0 2px 5px var(--heat-signal-glow));
    transform: rotate(var(--pepper-angle)) translate3d(0, var(--pepper-y), 0)
      scale(1);
  }
  18% {
    opacity: 0.58;
    filter: saturate(1.36) brightness(1.42)
      drop-shadow(0 2px 8px var(--heat-signal-glow));
    transform: rotate(calc(var(--pepper-angle) - 3deg))
      translate3d(-1.2px, calc(var(--pepper-y) - 1.4px), 0) scale(1.09);
  }
  42% {
    opacity: 1;
    filter: saturate(1.16) brightness(1.06);
    transform: rotate(calc(var(--pepper-angle) + 3deg))
      translate3d(1.1px, calc(var(--pepper-y) + 0.6px), 0) scale(0.98);
  }
  66% {
    opacity: 0.76;
    filter: saturate(1.3) brightness(1.3)
      drop-shadow(0 1px 7px var(--heat-signal-glow));
    transform: rotate(calc(var(--pepper-angle) - 2deg))
      translate3d(-0.8px, calc(var(--pepper-y) - 0.8px), 0) scale(1.06);
  }
  84% {
    opacity: 1;
    transform: rotate(calc(var(--pepper-angle) + 2deg))
      translate3d(0.7px, var(--pepper-y), 0) scale(1);
  }
}

@keyframes heat-ember-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 4px, 0) scale(0.5);
  }
  28% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(2px, -9px, 0) scale(1.15);
  }
}

.product-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

.price strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.price span {
  color: var(--muted);
  font-size: 10px;
}

.add-button {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 680;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.add-button:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.add-button span {
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.empty-state {
  padding: 70px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.load-more-shell {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 42px;
}

.load-more-button {
  min-width: 190px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.load-more-button:hover {
  background: #e7e7e2;
  box-shadow: 0 10px 25px rgba(31, 32, 29, 0.06);
}

.load-more-shell small {
  color: var(--muted);
  font-size: 10px;
}

.empty-state > span {
  font-size: 34px;
}

.empty-state h3 {
  margin: 15px 0 8px;
}

.empty-state p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 13px;
}

.text-button,
.inline-link {
  padding: 0;
  border: 0;
  color: var(--red-dark);
  background: none;
  font-weight: 680;
  cursor: pointer;
}

.steps-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(390px, 1.15fr);
  align-items: start;
  gap: clamp(60px, 10vw, 145px);
  padding-top: 120px;
  padding-bottom: 120px;
}

.steps-intro > p:last-child {
  max-width: 470px;
  margin-top: 26px;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  padding-top: 0;
}

.steps-list li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  color: var(--red);
  background: #fff;
  box-shadow: 0 10px 25px rgba(31, 32, 29, 0.06);
  font-size: 12px;
  font-weight: 750;
}

.steps-list strong {
  font-size: 18px;
}

.steps-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.story-section {
  padding-bottom: 112px;
}

.story-card {
  display: grid;
  min-height: 530px;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #f5f5f0;
  background: var(--green);
}

.story-art {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 48% 46%, rgba(248, 223, 168, 0.16), transparent 31%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.035), transparent);
  overflow: hidden;
}

.story-pepper {
  position: absolute;
  display: block;
  border-radius: 70% 32% 64% 40%;
  background: linear-gradient(145deg, #f26b50, #d33e29 66%, #9f2b20);
  box-shadow:
    inset -18px -24px 30px rgba(105, 21, 15, 0.26),
    0 35px 55px rgba(0, 0, 0, 0.18);
}

.story-pepper::before {
  position: absolute;
  top: -7%;
  left: 38%;
  width: 38%;
  height: 18%;
  border-radius: 100% 0 100% 0;
  background: #6e8b45;
  content: "";
  transform: rotate(-32deg);
  transform-origin: left bottom;
}

.story-pepper-one {
  top: 24%;
  left: 20%;
  width: 165px;
  height: 225px;
  transform: rotate(20deg);
}

.story-pepper-two {
  top: 16%;
  left: 52%;
  width: 112px;
  height: 165px;
  filter: saturate(0.86);
  transform: rotate(-26deg);
}

.story-leaf {
  position: absolute;
  display: block;
  border: 1px solid rgba(194, 215, 174, 0.2);
  border-radius: 100% 0 100% 0;
  background: rgba(114, 146, 85, 0.28);
}

.story-leaf-one {
  right: -4%;
  bottom: 10%;
  width: 210px;
  height: 100px;
  transform: rotate(-28deg);
}

.story-leaf-two {
  top: 8%;
  left: -5%;
  width: 180px;
  height: 80px;
  transform: rotate(42deg);
}

.story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 7vw, 92px);
}

.story-copy .eyebrow {
  color: #edaa74;
}

.story-copy h2 {
  max-width: 530px;
}

.story-copy > p {
  max-width: 500px;
  margin-top: 27px;
  color: rgba(245, 245, 240, 0.7);
}

.inline-link {
  margin-top: 30px;
  color: #fff;
  font-size: 13px;
}

.inline-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 160ms ease;
}

.inline-link:hover span {
  transform: translate(2px, -2px);
}

.site-footer {
  padding: 73px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #171918;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.6fr 0.8fr;
  gap: 70px;
}

.footer-brand {
  color: #fff;
}

.footer-grid > div:first-child > p {
  max-width: 360px;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 12px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 12px;
}

.footer-links a,
.footer-contact button {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-contact button:hover {
  color: #fff;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.floating-cart {
  position: fixed;
  z-index: 70;
  right: 18px;
  bottom: 18px;
  display: none;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 0 11px 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 19px;
  color: #fff;
  background: rgba(29, 29, 31, 0.93);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.floating-cart-total {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(16, 17, 16, 0.35);
  opacity: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 250ms ease;
}

.overlay.visible {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100%);
  height: 100dvh;
  flex-direction: column;
  background: #f9f9f7;
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.13);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 27px 20px;
  border-bottom: 1px solid var(--line);
}

.drawer-header .eyebrow {
  margin-bottom: 7px;
  font-size: 9px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.icon-button span {
  margin-top: -2px;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.cart-content {
  flex: 1;
  padding: 16px 27px;
  overflow-y: auto;
}

.cart-empty {
  display: flex;
  min-height: 65vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-bag {
  position: relative;
  width: 66px;
  height: 62px;
  margin-bottom: 24px;
  border: 2px solid #c7c7c2;
  border-radius: 17px 17px 21px 21px;
}

.empty-bag::before {
  position: absolute;
  top: -22px;
  left: 16px;
  width: 30px;
  height: 29px;
  border: 2px solid #c7c7c2;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  content: "";
}

.cart-empty h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.cart-empty p {
  max-width: 250px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  width: 82px;
  height: 82px;
  border-radius: 17px;
  background: #e8e8e4;
}

.cart-item-image .image-fallback,
.cart-item-image img {
  width: 100%;
  height: 100%;
}

.cart-item-image .image-fallback span {
  width: 34px;
  height: 34px;
  font-size: 15px;
}

.cart-item-image .image-fallback small {
  display: none;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-heading,
.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-heading strong {
  display: block;
  max-width: 210px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-heading span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.remove-item {
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #888;
  background: #ecece9;
  cursor: pointer;
}

.cart-item-bottom {
  align-items: center;
  margin-top: 14px;
}

.cart-item-bottom > strong {
  font-size: 12px;
}

.quantity-control {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.quantity-control button {
  width: 29px;
  height: 29px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-control button:hover {
  background: #eee;
}

.quantity-control span {
  min-width: 64px;
  font-size: 9px;
  font-weight: 650;
  text-align: center;
}

.cart-summary {
  padding: 21px 27px 25px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.summary-line strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.cart-summary > p {
  margin: 10px 0 17px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.whatsapp-button {
  width: 100%;
  gap: 9px;
  color: #fff;
  background: #138b52;
}

.whatsapp-button:hover {
  background: #0d7544;
}

.whatsapp-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset -2px -2px 0 transparent;
}

.clear-cart-button {
  display: block;
  margin: 13px auto 0;
  padding: 4px;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 10px;
  cursor: pointer;
}

.modal-shell {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 16, 0.46);
  opacity: 0;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: opacity 220ms ease;
}

.product-modal {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: min(750px, calc(100dvh - 48px));
  border-radius: 31px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
  opacity: 0;
  overflow: auto;
  transform: translateY(15px) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.modal-shell.open .modal-backdrop,
.modal-shell.open .product-modal {
  opacity: 1;
}

.modal-shell.open .product-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 17px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-product-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: 1fr 1fr;
}

.modal-product-image {
  min-height: 560px;
  border-radius: 30px 0 0 30px;
  background: #e7e7e2;
}

.modal-product-image .image-fallback,
.modal-product-image img {
  width: 100%;
  height: 100%;
}

.modal-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px 45px;
}

.modal-category {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-product-copy h2 {
  margin: 0;
  font-size: clamp(35px, 4vw, 48px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.modal-summary {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.modal-description {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.use-list {
  margin-top: 22px;
}

.use-list small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.use-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.use-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  font-size: 10px;
  font-weight: 620;
}

.modal-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 32px;
}

.modal-price {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.modal-price strong {
  font-size: 25px;
}

.toast {
  position: fixed;
  z-index: 150;
  bottom: 25px;
  left: 50%;
  max-width: min(420px, calc(100% - 32px));
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff;
  background: rgba(29, 29, 31, 0.94);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 620;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[hidden] {
  display: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .product-visual .image-carousel-arrow {
    opacity: 0;
    transform: scale(0.94);
  }

  .product-visual:hover .image-carousel-arrow,
  .product-visual .image-carousel-arrow:focus-visible {
    opacity: 0.86;
    transform: scale(1);
  }

  .product-visual .image-carousel-arrow:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 34px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 45px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-showcase {
    min-height: 570px;
  }

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

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 560px;
  }

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

  .steps-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .story-art {
    min-height: 400px;
  }

  .story-copy {
    padding: 58px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-xl: 28px;
    --radius-lg: 23px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 60px;
    padding-left: 14px;
    border-radius: 18px;
  }

  .brand small,
  .header-cart-label {
    display: none;
  }

  .header-cart {
    min-width: 47px;
    min-height: 44px;
    justify-content: center;
    padding: 0 10px;
  }

  .hero {
    gap: 42px;
    padding-top: 39px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.3vw, 67px);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 29px;
  }

  .hero-showcase {
    min-height: 410px;
    border-radius: 31px;
  }

  .showcase-main {
    top: 40px;
    left: 25px;
    width: 58%;
    height: 245px;
    border-radius: 23px;
  }

  .showcase-small {
    right: 20px;
    width: 32%;
    height: 142px;
    border-radius: 20px;
  }

  .showcase-top {
    top: 28px;
  }

  .showcase-bottom {
    right: 26px;
    bottom: 37px;
  }

  .showcase-caption {
    bottom: 29px;
    left: 28px;
  }

  .showcase-caption strong {
    font-size: 14px;
  }

  .showcase-product-name {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 7px 8px;
    font-size: 8px;
  }

  .image-carousel-controls {
    padding: 9px;
  }

  .image-carousel-arrow {
    width: 32px;
    height: 32px;
    opacity: 0.92;
  }

  .feature-strip {
    padding: 10px;
  }

  .feature-strip article {
    padding: 19px 14px;
  }

  .catalog-section {
    margin-top: 65px;
    padding: 78px 0 86px;
  }

  .section-heading h2,
  .steps-intro h2,
  .story-copy h2 {
    font-size: 43px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
    margin-top: 38px;
  }

  .filter-list {
    flex-wrap: nowrap;
    margin-inline: -14px;
    padding: 0 14px 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .search-field {
    flex-basis: auto;
  }

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

  .product-image {
    aspect-ratio: 1.22;
  }

  .product-card-body > p {
    min-height: auto;
  }

  .steps-section {
    gap: 48px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .story-section {
    padding-bottom: 80px;
  }

  .story-art {
    min-height: 320px;
  }

  .story-pepper-one {
    left: 18%;
    width: 125px;
    height: 177px;
  }

  .story-pepper-two {
    left: 57%;
    width: 85px;
    height: 126px;
  }

  .story-copy {
    padding: 42px 26px 48px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .floating-cart {
    display: inline-flex;
  }

  .cart-drawer {
    top: auto;
    bottom: 0;
    width: 100%;
    height: min(88dvh, 780px);
    border-radius: 28px 28px 0 0;
    transform: translateY(105%);
  }

  .drawer-header {
    padding: 22px 20px 16px;
  }

  .cart-content {
    padding: 12px 20px;
  }

  .cart-summary {
    padding: 18px 20px 22px;
  }

  .modal-shell {
    align-items: end;
    padding: 10px;
  }

  .product-modal {
    max-height: calc(100dvh - 20px);
    border-radius: 27px;
  }

  .modal-product-grid {
    display: block;
    min-height: 0;
  }

  .modal-product-image {
    min-height: 0;
    aspect-ratio: 1.15;
    border-radius: 27px 27px 0 0;
  }

  .modal-product-copy {
    padding: 31px 23px 27px;
  }

  .modal-buy-row {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-price {
    flex-direction: row;
    align-items: baseline;
  }

  .toast {
    bottom: 87px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
