:root {
  --color-black: #000;
  --color-white: #fff;
  --color-text: #141414;
  --color-muted: #636363;
  --color-line: #dddddd;
  --color-soft: #f7f5f1;
  --color-sale: #ff676d;
  --color-heart: #ff8e96;
  --shell-width: 1424px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(100%, var(--shell-width));
  margin: 0 auto;
  padding-inline: 24px;
}

.promo-bar {
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-shell {
  width: min(100%, calc(var(--shell-width) + 48px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}

.icon-button.menu-toggle {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(36px, 2.8vw, 52px);
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(14px, 1.2vw, 24px);
  overflow: hidden;
}

.desktop-nav a,
.mobile-nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.nav-contact-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.nav-contact-link span {
  display: inline-block;
  line-height: 1;
}

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

.icon-button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-link {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-link.is-bumped {
  animation: cart-bump 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-count.is-bumped {
  animation: cart-count-bump 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav {
  display: none;
}

.hero {
  padding: 28px 0 22px;
}

.hero-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}

.hero-media {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-media-card {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f3f3;
  transform: translateY(0) scale(1) rotate(0deg);
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s ease,
    filter 0.7s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.hero-media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%);
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.7s ease;
  z-index: 1;
}

.hero-media-card::after {
  content: "";
  position: absolute;
  inset: -12%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.35) 48%, rgba(255, 255, 255, 0) 66%);
  transform: translateX(-140%) skewX(-16deg);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
  z-index: 2;
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.03) translate3d(0, 0, 0);
  transform-origin: center center;
  filter: saturate(0.96) contrast(1.01);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.hero-media-card:nth-child(odd) img {
  transform-origin: 42% 50%;
}

.hero-media-card:nth-child(even) img {
  transform-origin: 58% 50%;
}

.hero-media:hover .hero-media-card {
  transform: scale(0.985);
  filter: saturate(0.92);
}

.hero-media:hover .hero-media-card:hover {
  transform: translateY(-8px) scale(1.018) rotate(-0.65deg);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.14);
  filter: saturate(1);
}

.hero-media:hover .hero-media-card:hover::before {
  opacity: 0.16;
}

.hero-media:hover .hero-media-card:hover::after {
  transform: translateX(118%) skewX(-16deg);
  opacity: 1;
}

.hero-media:hover .hero-media-card:hover img {
  transform: scale(1.095) translate3d(0, -6px, 0);
  filter: saturate(1.04) contrast(1.04);
}

.hero-media:hover .hero-media-card:nth-child(2):hover,
.hero-media:hover .hero-media-card:nth-child(4):hover {
  transform: translateY(-8px) scale(1.018) rotate(0.65deg);
}

@media (hover: none) {
  .hero-media:hover .hero-media-card,
  .hero-media:hover .hero-media-card:hover {
    transform: none;
    filter: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  }

  .hero-media:hover .hero-media-card:hover img {
    transform: scale(1.03) translate3d(0, 0, 0);
    filter: saturate(0.96) contrast(1.01);
  }

  .hero-media-card::after {
    display: none;
  }
}

.hero-copy {
  max-width: 760px;
  text-align: center;
}

.hero-kicker {
  margin: 0 0 8px;
  color: #666;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.1vw, 3.3rem);
  font-weight: 300;
  letter-spacing: 0;
}

@media (min-width: 1025px) {
  .hero-copy {
    max-width: 1040px;
  }

  .hero h1 {
    font-size: 2.65rem;
    white-space: nowrap;
  }
}

.hero-copy p {
  margin: 14px auto 0;
  max-width: 680px;
  color: #4b4b4b;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

.categories-section {
  padding-bottom: 34px;
}

.categories-viewport {
  position: relative;
}

.categories-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.category-card img {
  aspect-ratio: 0.76;
  object-fit: cover;
  width: 100%;
  background: var(--color-soft);
  transition: transform 0.55s ease, filter 0.45s ease;
}

.category-card h2 {
  margin: 14px 0 0;
  text-align: center;
  font-size: clamp(0.95rem, 1.15vw, 1rem);
  font-weight: 400;
  text-transform: uppercase;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card {
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.category-card:hover {
  transform: translateY(-3px);
}

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

.category-card:hover h2 {
  transform: translateY(-2px);
}

.slider-arrow {
  display: none;
}

.collection-section {
  padding-bottom: 10px;
}

.site-flash {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  background: #fbfbfb;
  color: #111;
  font-size: 13px;
}

.cart-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 40;
  min-width: 240px;
  max-width: min(92vw, 360px);
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.96);
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #2b2b2b;
}

.collection-intro {
  max-width: 920px;
  margin-bottom: 30px;
}

.collection-intro h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  text-transform: uppercase;
}

.collection-intro p {
  margin: 12px 0 0;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.8;
}

.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  margin: 0 0 20px;
}

.cookie-banner p {
  margin: 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.3;
}

.cookie-banner a {
  text-decoration: underline;
}

.primary-button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: var(--color-black);
  color: var(--color-white);
  padding: 0 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.toolbar-left,
.toolbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.toolbar-right {
  flex-wrap: wrap;
}

.filter-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.view-switcher {
  display: flex;
  gap: 8px;
}

.grid-icon {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-black);
  position: relative;
}

.grid-icon::before,
.grid-icon::after {
  content: "";
  position: absolute;
  background: var(--color-black);
}

.grid-icon::before {
  width: 1px;
  inset: 0 50% 0 auto;
}

.grid-icon::after {
  height: 1px;
  inset: 50% 0 auto;
}

.grid-icon-filled {
  background: var(--color-black);
}

.grid-icon-filled::before,
.grid-icon-filled::after {
  background: var(--color-white);
}

.sort-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 320px;
  max-width: 100%;
  justify-content: flex-end;
}

.sort-control > span {
  position: absolute;
  right: 36px;
  font-size: 13px;
  text-transform: uppercase;
  pointer-events: none;
}

.sort-control select {
  appearance: none;
  width: 100%;
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid var(--color-black);
  background:
    linear-gradient(45deg, transparent 50%, var(--color-black) 50%) calc(100% - 16px) calc(50% - 2px) / 6px 6px no-repeat,
    linear-gradient(135deg, var(--color-black) 50%, transparent 50%) calc(100% - 10px) calc(50% - 2px) / 6px 6px no-repeat;
  color: transparent;
  padding-right: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 12px;
}

.product-card {
  position: relative;
  transition: transform 0.35s ease;
}

.product-media {
  position: relative;
  overflow: hidden;
  background: var(--color-soft);
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 0.93;
  object-fit: cover;
  pointer-events: none;
}

.product-image-primary,
.product-image-secondary {
  transition:
    opacity 0.45s ease,
    transform 0.55s ease,
    filter 0.45s ease;
}

.product-image-primary {
  position: relative;
  z-index: 1;
}

.product-image-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.98);
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card.has-secondary-image:hover .product-image-primary {
  opacity: 0;
  transform: scale(1.03);
}

.product-card.has-secondary-image:hover .product-image-secondary {
  opacity: 1;
  transform: scale(1);
}

.product-card:not(.has-secondary-image):hover .product-image-primary {
  opacity: 1;
  transform: scale(1.03);
}

.product-action-whatsapp svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-actions {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-action-form {
  margin: 0;
}

.product-action-button {
  min-height: 38px;
  border-radius: 6px;
  border: 0;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.product-action-cart {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.product-action-cart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0) 68%);
  transform: translateX(-130%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.product-action-cart.is-adding {
  transform: translateY(-1px) scale(0.985);
}

.product-action-cart.is-added {
  background: #111;
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.product-action-cart.is-added::after {
  transform: translateX(130%);
  opacity: 1;
}

.product-card.is-added {
  animation: product-card-confirm 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-action-whatsapp {
  background: #111;
  color: #fff;
  padding-inline: 12px;
}

.sale-badge {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: 4;
  background: var(--color-sale);
  color: var(--color-white);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.product-copy {
  padding: 12px 12px 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.product-card:hover .product-copy {
  transform: translateY(-2px);
}

.product-variant {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 300;
}

.price-now {
  color: var(--color-sale);
}

.price-old {
  color: #6a6a6a;
  text-decoration: line-through;
}

.cart-page {
  padding: 22px 0 64px;
}

.cart-page h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

.cart-empty {
  padding: 36px 0;
  max-width: 520px;
}

.cart-empty p {
  margin: 0 0 18px;
  color: #444;
}

.cart-list {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--color-line);
  padding-top: 18px;
}

.cart-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.cart-item-media img {
  width: 100%;
  aspect-ratio: 0.93;
  object-fit: cover;
  background: var(--color-soft);
}

.cart-item-copy h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 400;
}

.cart-item-copy p {
  margin: 0 0 10px;
  color: #555;
}

.cart-item-copy a {
  color: #111;
  text-decoration: underline;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.link-button {
  border: 0;
  background: transparent;
  padding: 0;
  color: #111;
  font-size: 13px;
  text-decoration: underline;
}

.cart-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 28px;
}

.newsletter-section {
  padding: 58px 0;
  background: #111;
  color: #fff;
}

.newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.newsletter-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
}

.newsletter-copy p {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
}

.newsletter-form label {
  display: grid;
  gap: 8px;
}

.newsletter-form label > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="tel"],
.newsletter-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  padding: 0 13px;
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.newsletter-form input:focus,
.newsletter-form select:focus {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.newsletter-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.5;
}

.newsletter-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: #fff;
}

.newsletter-button {
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #111;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.newsletter-button:hover {
  background: #f4f4f4;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.newsletter-message {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.newsletter-message-success {
  background: rgba(233, 255, 243, 0.12);
  color: #dff8e9;
  border: 1px solid rgba(223, 248, 233, 0.22);
}

.newsletter-message-error {
  background: rgba(255, 239, 236, 0.12);
  color: #ffe3df;
  border: 1px solid rgba(255, 227, 223, 0.24);
}

.editorial-section {
  padding: 40px 0 62px;
}

.editorial-shell {
  max-width: 1320px;
  border-top: 1px solid var(--color-line);
  padding-top: 38px;
}

.editorial-shell h2 {
  margin: 0 0 18px;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  font-weight: 400;
}

.editorial-shell p {
  margin: 0 0 16px;
  max-width: 1320px;
  font-size: 15px;
  line-height: 1.7;
  color: #2f2f2f;
}

.text-button {
  border: 0;
  background: transparent;
  padding: 8px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  padding: 38px 0 22px;
}

.footer-shell {
  display: grid;
  gap: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 12px;
  text-transform: uppercase;
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.payments {
  display: flex;
  justify-content: center;
  padding-top: 0;
}

.payments img {
  max-width: min(100%, 1120px);
}

@media (max-width: 1200px) {
  .desktop-nav {
    gap: 18px;
  }
}

@media (max-width: 1024px) {
  .header-shell {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: 0 12px;
  }

  .icon-button.menu-toggle {
    display: inline-flex;
  }

  .desktop-nav,
  .hide-mobile {
    display: none;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    height: clamp(30px, 8vw, 40px);
  }

  .mobile-nav {
    display: grid;
    gap: 14px;
    padding: 0 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
  }

  .mobile-nav .nav-contact-link {
    justify-content: flex-start;
  }

  .mobile-nav.is-open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 20px;
  }

  .hero {
    padding: 46px 0 20px;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-media {
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-copy p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .categories-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .categories-track::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    min-width: 46%;
  }

  .slider-arrow {
    position: absolute;
    top: 38%;
    z-index: 1;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(255, 255, 255, 0.86);
    color: var(--color-black);
    transform: translateY(-50%);
  }

  .slider-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .slider-arrow-left {
    left: 6px;
  }

  .slider-arrow-right {
    right: 6px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .toolbar {
    align-items: flex-end;
    gap: 14px;
  }

  .toolbar-right {
    flex: 1;
    justify-content: flex-end;
  }

  .sort-control {
    min-width: min(100%, 280px);
    flex: 1;
  }

  .sort-control > span {
    inset: 0 26px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 12px;
  }

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

  .product-actions {
    opacity: 1;
    transform: none;
  }

  .product-copy {
    padding: 10px 4px 0;
  }

  .product-copy h3,
  .price {
    font-size: 14px;
  }

  .editorial-section {
    padding-top: 18px;
  }

  .newsletter-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .newsletter-copy h2 {
    max-width: 680px;
  }

  .editorial-shell p {
    font-size: 14px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    padding-inline: 12px;
  }

  .promo-bar {
    font-size: 11px;
    padding: 8px 16px;
  }

  .header-shell {
    gap: 10px;
  }

  .header-actions {
    gap: 0;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .icon-button svg {
    width: 19px;
    height: 19px;
  }

  .categories-section {
    padding-bottom: 18px;
  }

  .category-card {
    min-width: 48%;
  }

  .category-card h2 {
    font-size: 14px;
    margin-top: 10px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .collection-intro {
    margin-bottom: 22px;
  }

  .collection-intro h2 {
    font-size: 1.08rem;
  }

  .collection-intro p {
    font-size: 13px;
    line-height: 1.7;
  }

  .cookie-banner p {
    font-size: 12px;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .toolbar-left,
  .toolbar-right {
    width: 100%;
  }

  .toolbar-right {
    justify-content: space-between;
  }

  .sort-control {
    flex-basis: 100%;
  }

  .view-switcher {
    display: none;
  }

  .sort-control > span {
    justify-content: flex-start;
    right: 20px;
    font-size: 11px;
  }

  .products-grid {
    gap: 18px 8px;
  }

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

  .product-action-button {
    width: 100%;
  }

  .product-copy h3 {
    font-size: 13px;
    min-height: 2.2em;
  }

  .product-variant {
    font-size: 11px;
  }

  .price {
    font-size: 13px;
    flex-wrap: wrap;
    gap: 4px 8px;
  }

  .sale-badge {
    top: 10px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .primary-button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 12px;
  }

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

  .cart-item-actions {
    grid-column: 1 / -1;
    align-items: stretch;
  }

  .cart-footer {
    justify-content: stretch;
  }

  .cart-footer .primary-button {
    width: 100%;
  }

  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-form {
    padding: 18px;
  }

  .newsletter-copy h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .newsletter-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .editorial-shell h2 {
    font-size: 1.6rem;
  }

  .editorial-shell p {
    font-size: 13px;
  }

  .text-button {
    font-size: 16px;
  }

  .payments img {
    max-width: 100%;
  }
}

@keyframes cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes cart-count-bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.28); }
  100% { transform: scale(1); }
}

@keyframes product-card-confirm {
  0% { transform: translateY(0); }
  35% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
