:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --card: #ffffff;
  --text: #111111;
  --muted: #5a5a5a;
  --line: #d8d8d8;
  --accent: #111111;
  --accent-soft: #efefef;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  --radius: 1rem;
  --wrap: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f2f2f2 0, var(--bg) 10rem);
  color: var(--text);
  font: 400 1rem/1.6 "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

html.age-gate-active,
body.age-gate-active {
  overflow: hidden;
}

html:has(.side-drawer:target),
html:has(.search-drawer:target),
html:has(.cart-drawer:target),
body:has(.side-drawer:target),
body:has(.search-drawer:target),
body:has(.cart-drawer:target) {
  overflow: hidden;
}

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

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

input,
button {
  font: inherit;
}

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto;
}

.visually-hidden {
  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: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fff;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(0.88);
}

.age-gate__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 38rem);
  padding: 2.2rem 2.1rem 1.8rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84)),
    #ffffff;
  box-shadow: 0 2rem 4rem rgba(17, 17, 17, 0.12);
  text-align: center;
  overflow: hidden;
}

.age-gate__panel::before {
  content: "";
  position: absolute;
  inset: auto -6rem -7rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0));
  pointer-events: none;
}

.age-gate__panel::after {
  content: "";
  position: absolute;
  inset: 1.2rem auto auto 50%;
  width: 12rem;
  height: 7rem;
  background: url("../images/ewe-logo.svg") center/contain no-repeat;
  opacity: 0.035;
  transform: translateX(-50%);
  pointer-events: none;
}

.age-gate__logo {
  width: clamp(8rem, 18vw, 11rem);
  height: auto;
  margin: 0 auto 1rem;
}

.age-gate__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.age-gate h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.8vw, 2.35rem);
  line-height: 1.08;
}

.age-gate__text,
.age-gate__legal {
  color: var(--muted);
}

.age-gate__text {
  margin: 0.85rem auto 0;
  max-width: 31rem;
  font-size: 1rem;
  line-height: 1.7;
}

.age-gate__form {
  display: grid;
  gap: 1rem;
  margin-top: 1.45rem;
}

.age-gate__date {
  width: 100%;
  min-height: 3.6rem;
  padding: 0 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.age-gate__date:focus {
  outline: 2px solid rgba(17, 17, 17, 0.12);
  outline-offset: 0;
  border-color: #111111;
}

.age-gate__check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 1rem;
  background: #111111;
  color: #ffffff;
  text-align: left;
  line-height: 1.55;
}

.age-gate__check input {
  margin-top: 0.15rem;
  accent-color: #ffffff;
}

.age-gate__error {
  margin: 0;
  color: #bf1e1e;
  font-size: 0.92rem;
  font-weight: 600;
}

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

.age-gate__actions .button {
  min-height: 3.6rem;
  border-radius: 1rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.age-gate__exit {
  border-color: #d5d5d5;
  background: #f1f1f1;
}

.age-gate__legal {
  margin: 1rem auto 0;
  max-width: 32rem;
  font-size: 0.88rem;
  line-height: 1.65;
}

.top-strip {
  border-bottom: 1px solid #202020;
  background: #111111;
}

.top-strip__inner,
.site-header__inner,
.hero__badges,
.site-footer__inner {
  display: flex;
  align-items: center;
}

.top-strip__inner {
  justify-content: center;
  gap: 1rem;
  padding: 0.55rem 0;
  color: #f3f3f3;
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: none;
}

.top-strip p,
.section-heading p,
.hero__content p,
.site-footer p {
  margin: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e3e3e3;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 6.5rem;
  padding: 0.9rem 0;
}

.site-header__left,
.brand a,
.product-card,
.category-card,
.info-card,
.hero__panel,
.faq-list details {
  display: block;
}

.site-header__left,
.brand a {
  display: flex;
  align-items: center;
}

.site-header__left {
  gap: 0.7rem;
  min-width: 0;
  justify-self: start;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.34rem;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 0;
  background: transparent;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 1.55rem;
  height: 0.1rem;
  border-radius: 999px;
  background: var(--text);
}

.menu-toggle span:nth-child(2) {
  width: 1.9rem;
}

.menu-toggle span:nth-child(3) {
  width: 1.35rem;
}

.brand__logo,
h1,
h2,
h3,
summary {
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
}

.brand__logo {
  width: clamp(8rem, 14vw, 11.5rem);
  height: auto;
  flex: 0 0 auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1vw, 1rem);
  flex: 0 0 auto;
  justify-self: end;
}

.header-action {
  color: var(--text);
}

.header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
}

.header-action svg {
  width: 2.1rem;
  height: 2.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.side-drawer,
.search-drawer,
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
}

.side-drawer:target,
.search-drawer:target,
.cart-drawer:target {
  opacity: 1;
  pointer-events: auto;
}

.side-drawer__backdrop,
.search-drawer__backdrop,
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}

.search-drawer__panel {
  position: absolute;
  top: 1.4rem;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(calc(100% - 2rem), 36rem);
  padding: 0.7rem;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transform: translate(-50%, -1rem);
  transition: transform 0.25s ease;
  overscroll-behavior: contain;
}

.search-drawer:target .search-drawer__panel {
  transform: translate(-50%, 0);
}

.search-drawer__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  flex: 1 1 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.search-drawer__form input,
.search-drawer__form button {
  border: 0;
  background: transparent;
  font: inherit;
}

.search-drawer__form input {
  min-width: 0;
  padding: 0.95rem 1rem;
}

.search-drawer__form button {
  padding: 0.95rem 1.1rem;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
}

.search-drawer__close {
  color: var(--text);
  font-size: 2.4rem;
  line-height: 0.85;
  flex: 0 0 auto;
}

.side-drawer__panel,
.cart-drawer__panel {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 28rem);
  height: 100%;
  background: #ffffff;
  transition: transform 0.25s ease;
  overscroll-behavior: contain;
}

.side-drawer__panel {
  left: 0;
  width: min(100%, 24rem);
  padding: 1.25rem 1.15rem 1.1rem;
  transform: translateX(-100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.side-drawer:target .side-drawer__panel {
  transform: translateX(0);
}

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

.side-drawer__header {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.side-drawer__header h2,
.cart-drawer__header h2 {
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.2rem);
  font-weight: 700;
}

.cart-drawer__header h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 600;
}

.side-drawer__close,
.cart-drawer__close {
  color: var(--text);
  font-size: 3rem;
  line-height: 0.85;
}

.side-drawer__nav {
  display: grid;
  gap: 0;
}

.side-drawer__nav a {
  padding: 0.88rem 0;
  border-bottom: 1px solid #ececec;
  color: var(--text);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.side-drawer__nav a:hover {
  color: #4b4b4b;
}

.side-drawer__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.75rem;
  background: #2fd063;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.side-drawer__whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
}

.cart-drawer__panel {
  right: 0;
  transform: translateX(100%);
  overflow: hidden;
}

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

.cart-drawer__content {
  flex: 1 1 auto;
  padding: 0 1.15rem 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cart-item__top,
.cart-item__meta,
.cart-drawer__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-drawer__header {
  flex: 0 0 auto;
  padding: 1.35rem 1.15rem 1rem;
  margin-bottom: 0;
  border-bottom: 1px solid #ececec;
}

.cart-item {
  display: grid;
  grid-template-columns: 4.35rem minmax(0, 1fr);
  gap: 0.9rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e4e4e4;
}

.cart-item__image {
  align-self: start;
}

.cart-item__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 533 / 800;
  object-fit: contain;
}

.cart-item__top h3 {
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: clamp(0.96rem, 2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
}

.cart-item__remove {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.cart-item__remove svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-item__price-label {
  margin: 0.55rem 0 0.7rem;
  color: #9ca0a8;
  font-size: 0.88rem;
}

.cart-item__category {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-item__meta {
  align-items: center;
}

.cart-item__qty,
.cart-item__qty-form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #a2a7b0;
  font-size: 0.88rem;
}

.cart-item__qty-form {
  margin: 0;
}

.cart-item__qty a,
.cart-item__qty-form button,
.cart-item__qty strong,
.cart-item__qty-form strong,
.cart-item__total {
  color: var(--text);
  font-size: 0.94rem;
}

.cart-item__qty a,
.cart-item__qty-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  padding: 0;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
  background: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.cart-item__total {
  font-weight: 600;
}

.cart-item__qty-form strong {
  min-width: 1.2rem;
  text-align: center;
}

.cart-item__remove-form {
  margin: 0;
}

.cart-drawer__footer {
  flex: 0 0 auto;
}

.cart-drawer__checkout,
.cart-drawer__summary {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.cart-drawer__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  background: #f61f86;
  color: #ffffff;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-drawer__summary {
  align-items: center;
  min-height: 5.2rem;
  background: #000000;
  color: #ffffff;
}

.cart-drawer__summary span {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.cart-drawer__summary strong {
  font-size: 1.05rem;
}

.cart-drawer__summary a {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card__link:hover,
.button:hover {
  color: #4b4b4b;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
  min-height: 34rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: #f2f2f2 url("../images/banner/main-slider/optimized/hero-1-desktop.webp") center/cover no-repeat;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.52) 36%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.34));
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: hero-fade 18s infinite;
}

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

.hero__slide--1 {
  animation-delay: 0s;
  opacity: 1;
}

.hero__slide--2 {
  animation-delay: 6s;
}

.hero__slide--3 {
  animation-delay: 12s;
}

.hero__inner,
.category-grid,
.product-grid,
.info-grid,
.site-footer__inner {
  display: grid;
  gap: 1.5rem;
}

.hero__inner {
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.9fr);
  align-items: start;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

h3,
summary {
  font-size: 1.15rem;
}

.hero__text,
.section-heading,
.content-block,
.product-card__text,
.info-card p,
.faq-list p {
  color: var(--muted);
}

.hero__text {
  max-width: 60ch;
  margin-top: 1rem;
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
}

.button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.button--solid {
  background: var(--accent);
  color: #fff;
}

.button--ghost {
  color: var(--accent);
}

.hero__badges {
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.hero__badges li,
.product-card__category {
  font-size: 0.88rem;
}

.hero__panel,
.category-card,
.product-card,
.info-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero__panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(3px);
}

@keyframes hero-fade {
  0%,
  28% {
    opacity: 1;
  }

  33%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.feature-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-list li + li,
.faq-list details + details {
  margin-top: 1rem;
}

.feature-list strong,
.product-card__price strong {
  display: block;
}

.feature-list span,
.product-card__price span {
  color: var(--muted);
}

.section {
  padding: 2.5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(242, 242, 242, 0.95), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.section-heading--center {
  max-width: 100%;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-shell {
  padding-top: 1.6rem;
  padding-bottom: 0.4rem;
}

.product-shell {
  padding-top: 1.6rem;
}

.product-detail__grid,
.product-specs-grid {
  display: grid;
  gap: 1.5rem;
}

.product-detail__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1fr);
  align-items: start;
}

.product-gallery,
.product-summary,
.product-spec-card {
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-gallery {
  padding: 1rem;
}

.product-gallery__main {
  margin: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #f5f5f5;
}

.product-gallery__main img {
  width: 100%;
  height: auto;
  display: block;
}

.product-gallery__rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.product-gallery__thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(4.8rem, 5.4rem);
  gap: 0.8rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery__arrow {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
}

.product-gallery__arrow span {
  display: block;
  transform: translateY(-0.06rem);
}

.product-gallery__thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
}

.product-gallery__thumb.is-active {
  border-color: var(--text);
  box-shadow: inset 0 0 0 1px var(--text);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-summary {
  padding: 1.6rem;
}

.product-summary h1 {
  max-width: none;
  width: 100%;
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.16;
  font-weight: 700;
}

.product-summary__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.product-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0 1.2rem;
}

.product-price__main strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
}

.product-price__main span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-price__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.88rem;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0 0 1.4rem;
  list-style: none;
}

.product-badges li {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-purchase {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 0 1.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-qty {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.product-qty button,
.product-qty__input {
  width: 2.8rem;
  height: 2.8rem;
  text-align: center;
}

.product-qty button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font: inherit;
  font-size: 1.3rem;
}

.product-qty__input {
  width: 3.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  -moz-appearance: textfield;
}

.product-qty__input::-webkit-outer-spin-button,
.product-qty__input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.product-purchase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.product-purchase__actions .button {
  min-width: 12rem;
  justify-content: center;
}

.product-whatsapp {
  border-color: #21b558;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0.7rem 1.4rem rgba(37, 211, 102, 0.22);
}

.product-whatsapp:hover {
  border-color: #169946;
  background: #1fbd59;
  color: #ffffff;
}

.product-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 1.8;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  margin: 1.3rem 0 0;
}

.product-meta div {
  display: grid;
  gap: 0.2rem;
}

.product-meta dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-meta dd {
  margin: 0;
}

.product-note {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: #f6f6f6;
}

.product-note strong {
  display: block;
  margin-bottom: 0.35rem;
}

.product-note p,
.product-spec-card li {
  color: var(--muted);
}

.product-note p {
  margin: 0;
}

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

.product-spec-card {
  padding: 1.3rem;
}

.product-spec-card h2 {
  margin-bottom: 0.8rem;
  font-size: 1.22rem;
}

.product-spec-card ul {
  padding-left: 1.15rem;
  margin: 0;
}

.product-spec-card li + li {
  margin-top: 0.55rem;
}

.category-intro {
  display: grid;
  justify-items: center;
  max-width: 100%;
  margin-bottom: 0.25rem;
}

.category-intro .eyebrow {
  margin-bottom: 0.7rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.category-intro h1 {
  max-width: none;
  width: 100%;
  margin-bottom: 1rem;
  color: #5a5a5a;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  text-align: center;
}

.category-intro__text {
  width: min(100%, 52rem);
  margin: 0 auto;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
}

.category-products {
  padding-top: 1.25rem;
}

.category-products__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.category-products__top p {
  margin: 0;
  color: var(--muted);
}

.category-products__sort {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.category-products__sort label {
  color: var(--muted);
  font-size: 0.9rem;
}

.category-products__sort select {
  min-width: 12rem;
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.category-seo__copy {
  max-width: 70rem;
  margin: 0 auto;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.category-seo__lead {
  margin: 0;
  color: var(--muted);
}

.category-seo-more {
  margin-top: 1rem;
}

.category-seo-more summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.category-seo-more summary::-webkit-details-marker {
  display: none;
}

.category-seo-more summary::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
}

.category-seo-more[open] summary::after {
  content: "-";
}

.category-seo-more__content {
  margin-top: 1rem;
  display: grid;
  gap: 0.95rem;
  color: var(--muted);
}

.category-seo-more__content p {
  margin: 0;
}

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

.category-hero__grid,
.catalog-layout,
.category-guide-grid {
  display: grid;
  gap: 1.5rem;
}

.category-hero__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.82fr);
  align-items: start;
}

.category-hero__text {
  max-width: 62ch;
  margin-top: 1rem;
  color: var(--muted);
}

.category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 1.25rem;
}

.category-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.category-hero__panel,
.catalog-card,
.category-guide-card {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.category-hero__panel {
  overflow: hidden;
}

.category-hero__visual {
  aspect-ratio: 600 / 560;
  background: #f4f4f4;
}

.category-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-hero__stats {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.category-hero__stats span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.category-hero__stats strong {
  font-size: 1.02rem;
}

.catalog-layout {
  grid-template-columns: minmax(15.5rem, 0.34fr) minmax(0, 1fr);
  align-items: start;
}

.catalog-sidebar {
  display: grid;
  gap: 1rem;
}

.catalog-card {
  padding: 1.2rem;
}

.catalog-card--accent {
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
}

.catalog-card h2,
.catalog-filter h3 {
  margin: 0;
}

.catalog-filter + .catalog-filter {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.catalog-filter h3 {
  margin-bottom: 0.7rem;
  font-size: 0.98rem;
}

.catalog-filter label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
}

.catalog-filter label + label {
  margin-top: 0.55rem;
}

.catalog-checks {
  padding-left: 1.1rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.catalog-checks li + li {
  margin-top: 0.5rem;
}

.catalog-main {
  display: grid;
  gap: 1.15rem;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.catalog-toolbar__copy strong {
  display: block;
}

.catalog-sort {
  display: grid;
  gap: 0.4rem;
}

.catalog-sort label {
  font-size: 0.88rem;
  color: var(--muted);
}

.catalog-sort select {
  min-width: 12rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #ffffff;
}

.product-grid--catalog {
  gap: 1rem;
}

.catalog-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.catalog-pagination a,
.catalog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.catalog-pagination__current {
  background: var(--text) !important;
  color: #ffffff;
}

.category-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-guide-card {
  padding: 1.3rem;
}

.category-guide-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.category-guide-card p {
  margin: 0;
  color: var(--muted);
}

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

.category-card,
.info-card {
  padding: 1.35rem;
}

.category-card {
  overflow: hidden;
  padding: 0;
}

.category-card__media {
  display: block;
  aspect-ratio: 600 / 666;
  background: #f4f4f4;
  overflow: hidden;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card__body {
  display: block;
  padding: 1.15rem 1.15rem 1.2rem;
}

.category-card__title {
  display: block;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.category-card__meta {
  color: var(--muted);
}

.category-card:hover .category-card__media img,
.category-card:focus-visible .category-card__media img {
  transform: scale(1.04);
}

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

.product-card {
  overflow: hidden;
  border-radius: 1.25rem;
}

.product-card__linkbox {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.product-card__media {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  aspect-ratio: 533 / 760;
  padding: 0;
  background: transparent;
  border-top-left-radius: calc(1.25rem - 1px);
  border-top-right-radius: calc(1.25rem - 1px);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: transparent;
  transition: transform 0.35s ease;
}

.product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.05rem 1.1rem 1.15rem;
}

.product-card__category {
  display: block;
  margin: 0 0 0.45rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
  min-height: calc(1em * 1.35 * 2);
  overflow: hidden;
}

.product-card h3 {
  display: -webkit-box;
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
  line-height: 1.3;
  min-height: calc(1em * 1.3 * 2);
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin: auto 0 0;
}

.product-card__price strong {
  font-size: 1.2rem;
  line-height: 1.1;
}

.product-card__price span {
  display: block;
  line-height: 1.15;
  text-decoration: line-through;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img {
  transform: scale(1.04);
}

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

.info-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
  text-align: center;
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
}

.info-card__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.info-card h3 {
  font-size: 1.08rem;
  margin: 0;
}

.info-card p {
  margin: 0;
  line-height: 1.5;
}

.search-links,
.seo-support-grid {
  display: grid;
  gap: 1rem;
}

.search-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.search-links__item {
  display: block;
}

.search-link,
.seo-support-card {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 4.25rem;
  padding: 1rem 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.search-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #f6f6f6;
}

.search-link__icon svg {
  width: 1rem;
  height: 1rem;
}

.search-link:hover,
.search-link:focus-visible {
  transform: translateY(-2px);
  border-color: #bdbdbd;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.seo-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-support-card {
  padding: 1.35rem;
  text-align: center;
}

.seo-support-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.9rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
}

.seo-support-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.seo-support-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.seo-support-card p {
  margin: 0;
  color: var(--muted);
}

.content-block {
  max-width: 54rem;
}

.product-description {
  margin: 0 auto;
  text-align: center;
}

.product-description ul,
.product-description ol {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
}

.product-description li + li {
  margin-top: 0.55rem;
}

.legal-doc {
  max-width: 64rem;
  text-align: left;
}

.legal-doc__notice {
  margin: 0 0 1.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.9rem;
  background: #fafafa;
  color: var(--text);
}

.legal-doc h2,
.legal-doc h3 {
  margin: 1.5rem 0 0.7rem;
  color: var(--text);
}

.legal-doc h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.legal-doc h3 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.legal-doc p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.legal-doc p + p {
  margin-top: 0.9rem;
}

.legal-doc ul {
  margin: 0.3rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-doc li + li {
  margin-top: 0.55rem;
}

.article-cta-banner {
  display: block;
  width: 100%;
  margin: 1.4rem 0;
}

.article-cta-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
}

.content-block p + p {
  margin-top: 1rem;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__media img,
.blog-card:focus-within .blog-card__media img {
  transform: scale(1.03);
}

.blog-card__body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.blog-card__date {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  line-height: 1.28;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.search-page-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.search-page-form input {
  flex: 1 1 18rem;
  min-height: 3.25rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.search-results-block + .search-results-block {
  margin-top: 2.2rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.2rem;
}

.checkout-card,
.checkout-summary {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.checkout-card {
  padding: 1.2rem;
}

.checkout-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.checkout-field {
  display: grid;
  gap: 0.35rem;
}

.checkout-field + .checkout-field {
  margin-top: 0.8rem;
}

.checkout-field label,
.checkout-option span {
  font-size: 0.96rem;
  font-weight: 700;
}

.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #c9c9c9;
  border-radius: 0.35rem;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
}

.checkout-field input,
.checkout-field select {
  height: 3.25rem;
}

.checkout-field textarea {
  min-height: 6.3rem;
  height: auto;
  resize: vertical;
}

.checkout-field select {
  padding-right: 2.6rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #111111 50%),
    linear-gradient(135deg, #111111 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) calc(50% - 0.15rem),
    calc(100% - 0.85rem) calc(50% - 0.15rem);
  background-size: 0.4rem 0.4rem, 0.4rem 0.4rem;
  background-repeat: no-repeat;
}

.checkout-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.8rem;
  align-items: start;
}

.checkout-row .checkout-field {
  align-self: start;
  margin-top: 0;
}

.checkout-row .checkout-field + .checkout-field {
  margin-top: 0;
}

.checkout-row .checkout-field label {
  display: block;
  min-height: 0;
  margin: 0 0 0.35rem;
}

.checkout-options {
  display: grid;
  gap: 0.8rem;
}

.checkout-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkout-options + h2 {
  margin-top: 1.8rem;
}

.checkout-option input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  accent-color: #b50045;
}

.checkout-option span {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.45;
}

.checkout-summary {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
}

.checkout-summary__line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-top: 1px solid #e3e3e3;
  text-align: right;
}

.checkout-summary__line:first-child {
  border-top: 0;
}

.checkout-summary__line span {
  color: #3f3f3f;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
}

.checkout-summary__line strong {
  min-width: 8rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.checkout-summary__line--total span,
.checkout-summary__line--total strong {
  color: #111111;
}

.checkout-summary__actions {
  display: flex;
  justify-content: flex-end;
}

.contact-form__actions {
  margin-top: 1rem;
  justify-content: flex-start;
}

.contact-sidebar {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-info {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fafafa;
}

.contact-info p {
  margin: 0;
}

.contact-info p + p {
  margin-top: 0.35rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.contact-link__icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-summary__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid #e3e3e3;
}

.checkout-summary__actions .button {
  min-width: 15rem;
}

.checkout-form__error {
  margin: 0.9rem 0 0;
  color: #c42020;
  font-size: 0.9rem;
  font-weight: 600;
}

.local-delivery {
  position: relative;
  overflow: hidden;
  min-height: 36rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.local-delivery::before,
.local-delivery::after {
  content: "";
  position: absolute;
  inset: 0;
}

.local-delivery::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.32) 70%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.28));
}

.local-delivery::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.08));
}

.local-delivery__content {
  position: relative;
  z-index: 3;
  max-width: 38rem;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  align-content: center;
}

.local-delivery__content .section-heading {
  max-width: 100%;
  margin-bottom: 0;
}

.local-delivery__content .section-heading p:last-child {
  color: #2c2c2c;
}

.local-delivery__copy {
  color: #3d3d3d;
  max-width: 34rem;
}

.local-delivery__copy p {
  margin: 0;
}

.local-delivery__copy p + p {
  margin-top: 0.9rem;
}

.local-delivery__visual {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: #ffffff;
}

.local-delivery__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.faq-list {
  max-width: 100%;
}

.faq-list details {
  padding: 1.1rem 1.2rem;
}

summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-list p {
  margin: 0.85rem 0 0;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #000000;
  color: #ffffff;
}

.site-footer__inner {
  grid-template-columns: minmax(16rem, 1.15fr) repeat(3, minmax(12rem, 1fr));
  align-items: start;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand__logo-link {
  display: inline-block;
}

.footer-brand__logo {
  width: min(100%, 13rem);
  height: auto;
}

.footer-contact {
  margin: 1.8rem 0 1.4rem;
  font-style: normal;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
}

.footer-contact a {
  color: #ffffff;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column--desktop {
  display: block;
}

.footer-column__title {
  margin: 0;
  color: #ffffff;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-accordion {
  display: none;
}

.footer-group {
  margin: 0;
}

.footer-group summary {
  position: relative;
  padding-right: 2rem;
  color: #ffffff;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-group summary::after {
  content: none;
}

.footer-links {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.7rem;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 68rem) {
  .hero__inner,
  .site-footer__inner,
  .product-detail__grid,
  .product-specs-grid,
  .category-hero__grid,
  .catalog-layout,
  .category-guide-grid {
    grid-template-columns: 1fr;
  }

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

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

  .search-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-support-grid {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    order: 2;
  }

  .local-delivery {
    min-height: 32rem;
  }

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

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

@media (max-width: 42rem) {
  .wrap {
    width: min(calc(100% - 1.5rem), var(--wrap));
  }

  .age-gate {
    padding: 1rem;
  }

  .age-gate__panel {
    padding: 1.5rem 1rem 1.2rem;
    border-radius: 1.2rem;
  }

  .age-gate__logo {
    width: 8.6rem;
    margin-bottom: 0.8rem;
  }

  .age-gate__text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .age-gate__check {
    padding: 0.9rem 0.9rem 0.85rem;
    gap: 0.65rem;
    font-size: 0.92rem;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }

  .hero__media {
    background-image: url("../images/banner/main-slider/optimized/hero-1-mobile.webp");
  }

  body {
    font-size: 0.98rem;
  }

  .top-strip__inner,
  .hero__actions,
  .hero__badges,
  .footer-badges {
    gap: 0.75rem;
  }

  .hero {
    padding-top: 1rem;
    min-height: 29rem;
  }

  .site-header__inner {
    min-height: 5.8rem;
    gap: 0.8rem;
  }

  .site-header__left {
    gap: 0.6rem;
  }

  .menu-toggle,
  .header-action {
    width: 2.7rem;
    height: 2.7rem;
  }

  .menu-toggle {
    gap: 0.28rem;
  }

  .menu-toggle span {
    width: 1.35rem;
  }

  .menu-toggle span:nth-child(2) {
    width: 1.65rem;
  }

  .menu-toggle span:nth-child(3) {
    width: 1.15rem;
  }

  .header-action svg {
    width: 1.8rem;
    height: 1.8rem;
  }

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

  .breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.86rem;
  }

  .category-shell {
    padding-top: 1rem;
  }

  .product-shell {
    padding-top: 1rem;
  }

  .product-gallery,
  .product-summary,
  .product-spec-card {
    border-radius: 1.1rem;
  }

  .product-gallery {
    padding: 0.85rem;
  }

  .product-summary {
    padding: 1.1rem 1rem;
  }

  .product-summary h1 {
    font-size: clamp(1.28rem, 5.2vw, 1.7rem);
  }

  .product-summary__lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .product-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-badges {
    gap: 0.55rem;
  }

  .product-purchase__actions {
    flex-direction: column;
  }

  .product-purchase__actions .button {
    width: 100%;
    min-width: 0;
  }

  .product-meta {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .product-gallery__thumbs {
    gap: 0.6rem;
  }

  .product-gallery__rail {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .product-gallery__arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }

  .category-intro .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.82rem;
    letter-spacing: 0.11em;
  }

  .category-intro h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .category-intro__text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .category-seo__copy {
    padding: 1.1rem 1rem;
    border-radius: 1.1rem;
  }

  .category-products__top {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .category-products__sort {
    flex-direction: column;
    align-items: stretch;
  }

  .category-products__sort select {
    width: 100%;
    min-width: 0;
  }

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

  .category-hero__actions,
  .category-hero__badges {
    gap: 0.75rem;
  }

  .category-hero__stats {
    gap: 0.85rem;
    padding: 1rem;
  }

  .catalog-card {
    padding: 1rem;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding: 0.95rem;
  }

  .catalog-sort {
    width: 100%;
  }

  .catalog-sort select {
    width: 100%;
    min-width: 0;
  }

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

  .product-card__media {
    aspect-ratio: 533 / 780;
    padding: 0;
  }

  .product-card__body {
    padding: 0.9rem 0.85rem 1rem;
  }

  .product-card__category {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    min-height: calc(0.76rem * 1.35 * 2);
  }

  .product-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.65rem;
    min-height: calc(0.98rem * 1.3 * 3);
    -webkit-line-clamp: 3;
  }

  .product-card__price {
    gap: 0.18rem;
  }

  .product-card__price strong {
    font-size: 1rem;
  }

  .product-card__price span {
    font-size: 0.82rem;
  }

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

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

  .search-link {
    gap: 0.65rem;
    min-height: 3.7rem;
    padding: 0.85rem 0.8rem;
    font-size: 0.94rem;
  }

  .search-link__icon {
    width: 1.95rem;
    height: 1.95rem;
  }

  .search-link__icon svg {
    width: 0.9rem;
    height: 0.9rem;
  }

  .seo-support-grid {
    gap: 0.85rem;
  }

  .seo-support-card {
    padding: 1rem;
  }

  .seo-support-card__icon {
    width: 2.65rem;
    height: 2.65rem;
    margin-bottom: 0.75rem;
  }

  .seo-support-card__icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .seo-support-card h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
  }

  .seo-support-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

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

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

  .blog-card__body {
    padding: 0.95rem 0.9rem 1rem;
  }

  .checkout-card {
    padding: 1rem;
  }

  .checkout-card h2 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  .checkout-row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .checkout-field label,
  .checkout-option span {
    font-size: 0.92rem;
  }

  .checkout-summary {
    padding: 0.85rem 1rem;
  }

  .checkout-summary__line {
    gap: 0.8rem;
  }

  .checkout-summary__line span,
  .checkout-summary__line strong {
    font-size: 0.88rem;
  }

  .checkout-summary__actions .button {
    width: 100%;
    min-width: 0;
  }

  .blog-card__date {
    font-size: 0.76rem;
  }

  .blog-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
  }

  .blog-card p {
    font-size: 0.9rem;
  }

  .category-guide-card {
    padding: 1rem;
  }

  .info-card {
    gap: 0.75rem;
    padding: 1rem;
  }

  .info-card__icon {
    width: 3rem;
    height: 3rem;
  }

  .info-card__icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .local-delivery {
    min-height: 34rem;
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .local-delivery__copy {
    font-size: 0.95rem;
  }

  .local-delivery::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.28) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.22));
  }

  .local-delivery__content {
    max-width: 100%;
    align-content: start;
    padding-top: 0.15rem;
  }

  .category-card__media {
    aspect-ratio: 1 / 1.08;
  }

  .category-card__body {
    padding: 0.9rem 0.85rem 0.95rem;
  }

  .category-card__title {
    font-size: 1rem;
    margin-bottom: 0.32rem;
  }

  .category-card__meta {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .cart-drawer__content {
    padding: 0 1rem 1rem;
  }

  .search-drawer__panel {
    top: 1rem;
    gap: 0.5rem;
    padding: 0.6rem;
  }

  .side-drawer__panel {
    width: min(100%, 23rem);
    padding: 1rem 0.85rem 0.9rem;
  }

  .cart-item {
    grid-template-columns: 4.2rem minmax(0, 1fr);
    gap: 0.9rem;
  }

  .cart-item__top h3 {
    font-size: 1rem;
  }

  .cart-item__meta {
    align-items: flex-end;
    gap: 0.5rem;
  }

  .cart-item__qty {
    gap: 0.55rem;
    font-size: 0.92rem;
  }

  .cart-drawer__checkout {
    min-height: 5.4rem;
    font-size: 1.2rem;
  }

  .cart-drawer__summary {
    min-height: 5.6rem;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .site-footer__inner {
    gap: 2rem;
  }

  .footer-column--desktop {
    display: none;
  }

  .footer-accordion {
    display: grid;
    gap: 1.3rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 30rem) {
  .top-strip__inner {
    padding: 0.5rem 0;
    font-size: 0.74rem;
    letter-spacing: 0.02em;
  }

  .site-header__inner {
    min-height: 5.4rem;
    gap: 0.45rem;
  }

  .hero {
    min-height: 26rem;
  }

  .site-header__left {
    gap: 0.35rem;
  }

  .search-drawer__panel {
    width: min(calc(100% - 1rem), 36rem);
  }

  .search-drawer__form input,
  .search-drawer__form button {
    font-size: 0.92rem;
  }

  .menu-toggle,
  .header-action {
    width: 2.25rem;
    height: 2.25rem;
  }

  .menu-toggle {
    gap: 0.34rem;
  }

  .header-action svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .brand__logo {
    width: 6.5rem;
  }

  .header-actions {
    gap: 0.1rem;
  }

  .site-footer__inner {
    padding-bottom: 2rem;
  }

  .footer-brand__logo {
    width: 11rem;
  }

  .footer-contact {
    margin: 1.4rem 0 1.2rem;
  }

  .footer-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 1.1rem;
  }

  .footer-group summary {
    cursor: pointer;
    font-size: 1.05rem;
  }

  .footer-group summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
  }

  .footer-group[open] summary::after {
    content: "−";
  }

  .footer-group:not([open]) .footer-links {
    display: none;
  }

  .footer-group[open] .footer-links {
    display: grid;
  }

  .footer-links {
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .cart-count {
    min-width: 1.45rem;
    height: 1.45rem;
    font-size: 0.8rem;
  }

  .side-drawer__header h2,
  .cart-drawer__header h2 {
    font-size: 1.55rem;
  }

  .side-drawer__close,
  .cart-drawer__close,
  .search-drawer__close {
    font-size: 2.35rem;
  }

  .side-drawer__nav a {
    padding: 0.72rem 0;
    font-size: 0.9rem;
  }

  .side-drawer__whatsapp {
    gap: 0.55rem;
    margin-top: 0.9rem;
    padding: 0.75rem 0.7rem;
    font-size: 0.86rem;
  }

  .search-page-form .button {
    width: 100%;
  }

  .site-footer__bottom {
    gap: 1rem;
  }

  .cart-item__price-label {
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
  }
}
