:root {
  --teal: #21c6e4;
  --teal-dark: #14b8c6;
  --teal-soft: #e7f8fa;
  --ink: #333333;
  --muted: #555555;
  --bg: #f0f0f0;
  --white: #ffffff;
  --sale: #21c6e4;
  --radius: 24px;
  --font: "Poppins", sans-serif;
  --heading: "Syne", sans-serif;
  --shadow: none;
}

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

/* Hide scrollbars site-wide (scroll still works) */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent;
}

html {
  scroll-behavior: smooth;
  /* clip (not hidden) so position:sticky on PDP still works */
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

h1,
h2,
h3 {
  font-family: var(--heading);
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.announce {
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.55rem 0;
  line-height: 1.2;
  max-width: 100%;
}

.announce-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 28s linear infinite !important;
  will-change: transform;
}

.announce-track span {
  flex: 0 0 auto;
  padding-right: 1.5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid #eee;
  max-width: 100%;
  overflow-x: hidden;
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  margin-inline: auto;
}

.icon-btn {
  background: none;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
  display: inline-flex;
}

.icon-btn.search-desktop,
.icon-btn.account-desktop {
  display: none;
}

.icon-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--teal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.desktop-nav {
  display: none;
}

.hero {
  background: #0aa0b0;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

.hero-track {
  position: relative;
  display: block;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  display: block;
  aspect-ratio: 1000 / 1333;
  background: #0aa0b0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.hero.is-ready .hero-slide:not(.is-active) {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-slide img {
  object-fit: cover;
  object-position: center;
}

.hero-dots {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 0;
  background: none;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dots button.active {
  background: #fff;
  width: 22px;
  border-radius: 99px;
}

.benefits {
  background: #fff;
  padding: 1.5rem 0 1.25rem;
}

.benefits-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.benefit {
  min-width: 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.25rem;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
}

.benefit.is-visible {
  animation: home-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: rgba(51, 51, 51, 0.05);
  color: #333;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit:hover .benefit-icon {
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
}

.benefit span {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
}

.section {
  padding: 2rem 0;
}

.section-title {
  text-align: center;
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.rail-section {
  padding: 1.5rem 0 1.75rem;
  max-width: 100%;
  overflow-x: hidden;
}

.rail-head {
  padding: 0 1rem 1rem;
}

.rail-head h2 {
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: left;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
}

.circle-chevron {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  display: grid;
  place-items: center;
}

.circle-chevron svg {
  width: 5px;
  height: 8px;
}

.product-rail {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: 1rem;
  padding: 1.35rem 0 1.9rem;
  margin-block: -0.6rem 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.product-rail::before,
.product-rail::after {
  content: "";
  flex: 0 0 1rem;
  width: 1rem;
  pointer-events: none;
}

.product-rail .product-card {
  flex: 0 0 72%;
  max-width: 300px;
  scroll-snap-align: start;
  min-width: 0;
}

.scroll-track {
  height: 2px;
  flex: 1;
  min-width: 0;
  background: rgba(51, 51, 51, 0.12);
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

.scroll-track i {
  display: block;
  height: 100%;
  width: calc(var(--thumb, 0.35) * 100%);
  max-width: 100%;
  background: #333;
  border-radius: inherit;
  transform: translateX(calc(var(--pos, 0) * ((100% / var(--thumb, 0.35)) - 100%)));
  transition: transform 0.15s linear;
}

.rail-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem 0.35rem;
}

.rail-nav--track-only {
  padding-top: 0.15rem;
}

.rail-arrows {
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.rail-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: rgba(51, 51, 51, 0.1);
  color: #333;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    opacity 0.2s ease;
}

.rail-arrow svg {
  width: 7px;
  height: 11px;
  display: block;
}

.rail-arrow:hover:not(:disabled) {
  transform: scale(1.08);
  background: rgba(51, 51, 51, 0.16);
}

.rail-arrow:active:not(:disabled) {
  transform: scale(0.94);
}

.rail-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.rail-wrap {
  position: relative;
  isolation: isolate;
}

.rail-wrap .product-card,
.rail-wrap .product-rail.is-revealed .product-card {
  z-index: 1;
}

.rail-side-arrow {
  display: none;
  position: absolute;
  top: calc(1.35rem + min(130px, 36vw));
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  background: #f0f0f0;
  color: #333;
  cursor: pointer;
  place-items: center;
  padding: 0;
  transform: translateY(-50%);
  opacity: 1;
  pointer-events: auto;
  transition:
    background 0.2s ease,
    box-shadow 0.25s ease,
    opacity 0.2s ease;
}

.rail-side-arrow svg {
  width: 9px;
  height: 13px;
  display: block;
  pointer-events: none;
}

.rail-side-arrow--prev {
  left: max(0.75rem, calc((100% - 1180px) / 2 + 0.5rem));
}

.rail-side-arrow--next {
  right: max(0.75rem, calc((100% - 1180px) / 2 + 0.5rem));
}

.rail-side-arrow:hover:not(:disabled) {
  background: #e8e8e8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.rail-side-arrow:disabled {
  opacity: 0.28;
  pointer-events: none;
  cursor: default;
}

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

.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.product-rail .product-card,
.product-grid .product-card {
  opacity: 0;
  transform: translateY(20px);
}

.product-rail.is-revealed .product-card,
.product-grid.is-revealed .product-card,
.product-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}

.product-rail.is-revealed .product-card:nth-child(1),
.product-grid.is-revealed .product-card:nth-child(1) { transition-delay: 0ms; }
.product-rail.is-revealed .product-card:nth-child(2),
.product-grid.is-revealed .product-card:nth-child(2) { transition-delay: 80ms; }
.product-rail.is-revealed .product-card:nth-child(3),
.product-grid.is-revealed .product-card:nth-child(3) { transition-delay: 160ms; }
.product-rail.is-revealed .product-card:nth-child(4),
.product-grid.is-revealed .product-card:nth-child(4) { transition-delay: 240ms; }
.product-rail.is-revealed .product-card:nth-child(5),
.product-grid.is-revealed .product-card:nth-child(5) { transition-delay: 320ms; }
.product-rail.is-revealed .product-card:nth-child(6),
.product-grid.is-revealed .product-card:nth-child(6) { transition-delay: 400ms; }
.product-rail.is-revealed .product-card:nth-child(7),
.product-grid.is-revealed .product-card:nth-child(7) { transition-delay: 480ms; }
.product-rail.is-revealed .product-card:nth-child(8),
.product-grid.is-revealed .product-card:nth-child(8) { transition-delay: 560ms; }
.product-rail.is-revealed .product-card:nth-child(9),
.product-grid.is-revealed .product-card:nth-child(9) { transition-delay: 640ms; }
.product-rail.is-revealed .product-card:nth-child(10),
.product-grid.is-revealed .product-card:nth-child(10) { transition-delay: 720ms; }
.product-rail.is-revealed .product-card:nth-child(11),
.product-grid.is-revealed .product-card:nth-child(11) { transition-delay: 800ms; }
.product-rail.is-revealed .product-card:nth-child(12),
.product-grid.is-revealed .product-card:nth-child(12) { transition-delay: 880ms; }

.product-rail.is-revealed.is-settled .product-card,
.product-grid.is-revealed.is-settled .product-card {
  transition-delay: 0ms;
}

@media (hover: hover) and (pointer: fine) {
  .product-rail.is-revealed .product-card:hover,
  .product-grid.is-revealed .product-card:hover,
  .product-card.is-visible:hover {
    transition-delay: 0ms;
    z-index: 12;
    transform: translateY(-12px);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.1),
      0 28px 56px rgba(0, 0, 0, 0.14);
  }

  .rail-wrap .product-rail.is-revealed .product-card:hover {
    z-index: 2;
  }
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: 0 auto;
  transition: opacity 0.25s ease-in-out, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-img--secondary {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: #fff;
  object-fit: contain;
  object-position: center center;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card-img--secondary {
    opacity: 1;
  }

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

.badge {
  display: none;
}

.save-pill {
  display: inline-flex;
  align-self: center;
  color: var(--teal);
  border: 1px solid var(--teal);
  background: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 16px;
}

.product-card-body {
  padding: 0.55rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.28rem;
  flex: 1;
  background: #fff;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.product-card-body h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row {
  display: flex;
  gap: 0.4rem;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
}

.price-current {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
}

.price-compare {
  color: rgba(51, 51, 51, 0.55);
  text-decoration: line-through;
  font-size: 0.78rem;
}

.installments {
  font-size: 10px;
  font-weight: 600;
  color: #555;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--teal);
  font-size: 0.72rem;
  margin-top: 2px;
}

.stars span {
  color: #333;
  font-size: 0.72rem;
  margin-left: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 60px;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  background: var(--teal);
  color: #fff;
}

.concerns {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding: 1.2rem 0 1.6rem;
  margin-block: -0.5rem 0;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.concerns::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.concerns::before,
.concerns::after {
  content: "";
  flex: 0 0 1rem;
  width: 1rem;
  pointer-events: none;
}

.concern {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 42%;
  scroll-snap-align: start;
  flex-shrink: 0;
  max-width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  will-change: transform, opacity;
  transition:
    opacity 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    filter 0.4s ease;
}

.concern.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none;
}

@media (hover: hover) and (pointer: fine) {
  .concern.is-visible:hover {
    z-index: 12;
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.16));
  }

  .concern:hover img {
    transform: scale(1.08);
  }
}

.concern img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}

.concern span {
  display: block;
  padding: 1rem 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.25s ease;
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .concern:hover span {
    background: #fafafa;
  }
}

.btn:hover {
  background: var(--teal-dark);
}

.btn-block {
  width: 100%;
  margin-top: auto;
  border-radius: 60px;
  font-size: 0.82rem;
  padding: 10px 20px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #ddd;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 90;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu,
.cart-drawer {
  position: fixed;
  top: 0;
  height: 100%;
  background: #fff;
  z-index: 100;
  width: min(360px, 90%);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease;
}

.side-menu {
  left: 0;
  transform: translateX(-105%);
  overflow: auto;
  padding: 1.1rem;
}

.cart-drawer {
  right: 0;
  width: min(360px, 100%);
  max-width: 100%;
  transform: translateX(105%);
  font-family: Poppins, system-ui, sans-serif;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 700px) {
  .cart-drawer {
    width: min(680px, 100%);
  }
}

.side-menu.open,
.cart-drawer.open {
  transform: none;
}

.side-menu nav a {
  display: block;
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  font-size: 0.9rem;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  font-weight: 800;
}

.cart-ico {
  display: block;
  flex-shrink: 0;
}

.cart-top {
  padding: 16px 16px 20px;
  flex-shrink: 0;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-head-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.cart-badge {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.cart-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #1a1a1a;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cart-shipping {
  display: grid;
  gap: 8px;
}

.cart-ship-msg {
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 1.35;
}

.cart-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(51, 51, 51, 0.25);
  overflow: hidden;
}

.cart-progress i {
  display: block;
  height: 100%;
  position: relative;
  background: linear-gradient(90deg, #1ab8d6 0%, #21c6e4 45%, #5ad8ef 100%);
  background-size: 200% 100%;
  border-radius: inherit;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  animation: progress-shimmer 1.8s ease-in-out infinite;
}

.cart-progress i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 65%
  );
  background-size: 220% 100%;
  animation: progress-sheen 1.6s ease-in-out infinite;
  border-radius: inherit;
}

.cart-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cart-body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0.5rem;
}

.cart-line-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
}

.cart-item-media {
  display: block;
  width: 72px;
  height: 72px;
  background: #f7f7f7;
  border-radius: 6px;
  overflow: hidden;
}

.cart-item-media img,
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.cart-item-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 4px;
  padding-right: 52px;
}

.cart-item-prices {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
}

.cart-item-prices s {
  color: #86868b;
  font-weight: 500;
  font-size: 12px;
  text-decoration: line-through;
}

.cart-item-prices b {
  color: var(--teal);
  font-weight: 700;
}

.cart-item-qty-row {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cart-qty-input {
  width: 44px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
}

.cart-remove {
  border: 0;
  background: none;
  color: #6b6b6b;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.exclusive-offer-wrapper {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 10px;
}

.exclusive-offer-banner {
  text-align: center;
  margin-bottom: 10px;
}

.exclusive-offer-banner h3 {
  color: #1d1d1f;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.2px;
  line-height: 1.35;
}

.exclusive-offer-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exclusive-offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.exclusive-offer-image {
  width: 56px;
  height: 56px;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  box-sizing: border-box;
}

.exclusive-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exclusive-offer-info {
  flex: 1;
  min-width: 0;
}

.exclusive-offer-name {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
  color: #1d1d1f;
}

.exclusive-offer-prices {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exclusive-offer-price {
  font-size: 14px;
  font-weight: 700;
  color: #21c6e4;
}

.exclusive-offer-compare {
  font-size: 12px;
  text-decoration: line-through;
  color: #86868b;
}

.exclusive-offer-button {
  background: #21c6e4;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

@media (min-width: 700px) {
  .cart-top {
    padding: 24px 28px 28px;
  }

  .cart-body {
    padding: 0 28px 24px;
    gap: 24px;
  }

  .cart-title {
    font-size: 1.25rem;
  }

  .cart-ship-msg {
    font-size: 14px;
  }

  .cart-item {
    grid-template-columns: 88px 1fr;
    gap: 16px;
  }

  .cart-item-media,
  .cart-item-media img,
  .cart-item img {
    width: 88px;
    height: 88px;
  }

  .cart-item-name {
    font-size: 15px;
    padding-right: 60px;
  }

  .cart-item-prices {
    font-size: 15px;
  }

  .cart-item-prices s {
    font-size: 13px;
  }

  .cart-qty-input {
    width: 48px;
    height: 36px;
    font-size: 14px;
  }

  .exclusive-offer-wrapper {
    border-radius: 28px;
    padding: 20px;
  }

  .exclusive-offer-banner {
    margin-bottom: 16px;
  }

  .exclusive-offer-banner h3 {
    font-size: 14px;
  }

  .exclusive-offer-products {
    gap: 12px;
  }

  .exclusive-offer-card {
    border-radius: 22px;
    padding: 16px;
    gap: 14px;
  }

  .exclusive-offer-image {
    width: 85px;
    height: 85px;
    padding: 10px;
    border-radius: 12px;
  }

  .exclusive-offer-name {
    font-size: 15px;
    margin: 0 0 6px;
  }

  .exclusive-offer-price {
    font-size: 18px;
  }

  .exclusive-offer-compare {
    font-size: 14px;
  }

  .exclusive-offer-button {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 24px;
  }

  .cart__brinde-wrapper {
    padding: 16px 20px 8px;
  }

  .cart__brinde-banner {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .cart__brinde-text {
    font-size: 13px;
  }

  .cart-total-block {
    padding: 4px 28px 0;
  }

  .cart-total-row {
    font-size: 1.2rem;
  }

  .cart-tax-note {
    font-size: 13px;
  }

  .cart-cashback {
    margin: 12px 28px;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .cart-checkout {
    margin: 0 28px;
    width: calc(100% - 56px);
    height: 56px;
  }
}

.cart-foot {
  padding: 0 0 16px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #f0f0f0;
}

.cart__brinde-wrapper {
  padding: 12px 12px 4px;
}

.cart__brinde-banner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  background: linear-gradient(135deg, #e8f8fd 0%, #fff 100%);
  border-radius: 12px;
  border: 1px solid rgba(33, 198, 228, 0.2);
}

.cart__brinde-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart__brinde-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart__brinde-gift-icon {
  font-size: 15px;
  line-height: 1;
}

.cart__brinde-text {
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.cart__brinde-text strong {
  color: #21c6e4;
  font-weight: 700;
}

.cart__brinde-progress-bar {
  height: 7px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.cart__brinde-progress-fill {
  display: block;
  height: 100%;
  position: relative;
  background: linear-gradient(90deg, #1ab8d6 0%, #21c6e4 40%, #6ddddf 100%);
  background-size: 200% 100%;
  border-radius: 9999px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
  animation: progress-shimmer 1.8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(33, 198, 228, 0.45);
}

.cart__brinde-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  background-size: 220% 100%;
  animation: progress-sheen 1.6s ease-in-out infinite;
  border-radius: inherit;
}

.cart__brinde-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: #9ca3af;
}

.cart__brinde-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #21c6e4;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 0 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.cart__brinde-unlocked-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.cart__brinde-unlocked-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.cart__brinde-unlocked-sub {
  margin: 2px 0 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.35;
}

.cart__brinde-choose-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #21c6e4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.cart__brinde-choose-btn:hover {
  filter: brightness(0.96);
}

.cart__brinde-chosen {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cart__brinde-chosen img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
  flex-shrink: 0;
}

.cart__brinde-chosen-info {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.cart__brinde-chosen-name {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.cart__brinde-change {
  border: 0;
  background: none;
  padding: 0;
  color: #21c6e4;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.cart__brinde-banner.is-guaranteed,
.cart__brinde-banner.is-unlocked {
  background: linear-gradient(135deg, #e6fafd 0%, #fff 70%);
}

.cart__brinde-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding-top: 6px;
  border-top: 1px dashed rgba(33, 198, 228, 0.3);
  font-size: 10px;
  color: #6b7280;
}

.brinde-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.brinde-modal.open {
  display: flex;
}

.brinde-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.brinde-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 720px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
  overflow: hidden;
}

.brinde-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid #eef2f7;
}

.brinde-modal__titles h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: #21c6e4;
  line-height: 1.25;
}

.brinde-modal__titles p {
  margin: 6px 0 0;
  font-size: 13px;
  color: #9ca3af;
}

.brinde-modal__close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.brinde-modal__body {
  padding: 18px 20px;
  overflow: auto;
}

.brinde-modal__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.brinde-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.brinde-card.is-chosen {
  border-color: #21c6e4;
  box-shadow: 0 0 0 1px rgba(33, 198, 228, 0.25);
}

.brinde-card__media {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
}

.brinde-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brinde-card__title {
  margin: 0;
  min-height: 2.6em;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.brinde-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.brinde-card__pick {
  width: 100%;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #d9f5e3;
  color: #166534;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.brinde-card__pick:hover:not(:disabled) {
  filter: brightness(0.97);
}

.brinde-card__pick:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.brinde-card.is-chosen .brinde-card__pick {
  background: #21c6e4;
  color: #fff;
}

.brinde-modal__foot {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 20px 20px;
  border-top: 1px solid #eef2f7;
}

.brinde-modal__btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.brinde-modal__btn--ghost {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #374151;
}

.brinde-modal__btn--solid {
  background: #21c6e4;
  border: 1px solid #21c6e4;
  color: #fff;
}

body.brinde-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .brinde-modal {
    padding: 10px;
    align-items: flex-end;
  }

  .brinde-modal__panel {
    max-height: 92vh;
    border-radius: 18px 18px 12px 12px;
  }

  .brinde-modal__head {
    padding: 18px 16px 14px;
  }

  .brinde-modal__body {
    padding: 14px 12px;
  }

  .brinde-modal__grid {
    grid-auto-columns: minmax(160px, 72vw);
  }

  .brinde-modal__foot {
    justify-content: stretch;
    padding: 12px 14px 16px;
  }

  .brinde-modal__btn {
    flex: 1;
  }
}

.cart-total-block {
  padding: 4px 16px 0;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.cart-tax-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: #86868b;
}

.cart-tax-note a {
  color: inherit;
  text-decoration: underline;
}

.cart-cashback {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 16px;
  padding: 10px 12px;
  background: #eaf7ef;
  border-radius: 10px;
  color: #1e7f43;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.cart-cash-ico {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d5f1df;
  color: #1e7f43;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  width: calc(100% - 32px);
  height: 52px;
  background: #21c6e4 !important;
  border-color: #21c6e4 !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 60px !important;
  padding: 0 1rem;
}

.cart-checkout-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-checkout-label .cart-ico {
  color: #fff;
}


.note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.qty {
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.qty button {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.remove {
  background: none;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.toolbar select {
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.pdp-wrap {
  background: #f7f5f0;
  padding: 0.4rem 0 1.5rem;
  max-width: 100%;
  overflow-x: clip;
}

[data-pdp-extras] {
  background: #f7f5f0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.related-section {
  background: #f7f5f0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.product-page {
  display: grid;
  gap: 1.1rem;
  padding: 0.5rem 0 1.25rem;
  max-width: 100%;
  min-width: 0;
}

.product-page.container {
  width: min(1400px, calc(100% - 2rem));
  max-width: 100%;
  box-sizing: border-box;
}

.pdp-sticky {
  display: none;
}

.gallery-col {
  min-width: 0;
}

.gallery-main {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  animation: anim-fade-in 0.5s ease-out both;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-grid {
  display: none;
}

.gallery-grid button {
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}

.gallery-zoom,
.gallery-nav {
  position: absolute;
  border: 0;
  background: #fff;
  color: #333;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.gallery-zoom {
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  z-index: 2;
}

.gallery-zoom svg {
  width: 18px;
  height: 18px;
}

.gallery-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.2rem;
  display: none;
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 0.7rem 0 0.2rem;
}

.gallery-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #cfcfcf;
  cursor: pointer;
}

.gallery-dots button.active {
  background: #777;
}

.thumbs {
  display: none;
}

.product-info {
  background: #fff;
  border-radius: 20px;
  padding: 24px 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  animation: anim-fade-up 0.6s ease-out both;
  max-width: 100%;
  min-width: 0;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #0f7a3a;
  background: rgba(15, 122, 58, 0.07);
  border: 1px solid rgba(15, 122, 58, 0.12);
  border-radius: 100px;
  padding: 4px 14px;
  margin: 8px 0;
  letter-spacing: 0.2px;
  animation: anim-fade-down 0.4s ease-out both;
}

.stock-badge span {
  font-weight: 400;
}

.stock-badge span:first-child {
  font-weight: 600;
}

.stock-badge .stock-sep {
  opacity: 0.25;
}

.stock-badge svg {
  width: 16px;
  height: 16px;
  fill: #0f7a3a;
  margin-left: 2px;
}

.product-stars {
  color: var(--teal);
  font-size: 16px;
  margin: 5px 0 0;
}

.product-stars i {
  color: var(--teal);
}

.product-stars span {
  color: #212020;
  font-size: 16px;
  font-weight: 400;
}

.product-info h1 {
  margin: 12px 0 0.5rem;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.product-info .price-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 4px;
}

.product-info .price-current {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--teal);
}

.product-info .price-compare {
  font-size: 0.95rem;
  color: #838383;
  text-decoration: line-through;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.product-info .installments {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #838383;
  text-align: left;
  width: 100%;
  margin: 0 0 0.5rem;
}

.cashback-box {
  background: #eaf7ef;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.cashback-pct {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d5f1df;
  color: #1e7f43;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.cashback-box span:last-child {
  font-weight: 600;
  color: #1e7f43;
  font-size: 12px;
}

.qty-row {
  margin: 1rem 0 0.85rem;
}

.qty-row label {
  display: block;
  font-size: 0.78rem;
  color: #666;
  margin-bottom: 0.35rem;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(51, 51, 51, 0.12);
  border-radius: 12px;
  height: 42px;
  width: 126px;
  overflow: hidden;
}

.qty-box button {
  width: 36px;
  height: 42px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
}

.qty-box input {
  width: 54px;
  border: 0;
  text-align: center;
  font-weight: 600;
  background: transparent;
}

.product-info .btn-block {
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  width: 100%;
}

.offer-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 16px;
  padding: 16px 18px;
  margin: 16px 0 0;
  animation: anim-fade-up 0.5s ease-out both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.offer-box.offer-cyan {
  animation-delay: 0.05s;
}

.offer-box.offer-white {
  animation-delay: 0.12s;
}

.offer-box svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.offer-cyan {
  background: #58cbe1;
  color: #f5f5f5;
}

.offer-cyan .prose {
  font-size: 0.875rem;
  line-height: 1.55;
}

.offer-cyan .prose p {
  margin: 0 0 0.7rem;
}

.offer-cyan .prose p:last-child {
  margin: 0;
}

.offer-white {
  background: #fff;
  color: var(--teal);
  align-items: center;
  border: 1px solid rgba(33, 198, 228, 0.12);
}

.offer-white .bold {
  font-size: 0.875rem;
  font-weight: 700;
}

.shoppable-videos {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shoppable-videos::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.shoppable-video {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  width: 105px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.shoppable-video.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.shoppable-video:hover .shoppable-video-inner {
  transform: scale(1.03);
}

.shoppable-video-inner {
  position: relative;
  display: block;
  width: 105px;
  height: 105px;
  overflow: hidden;
  border-radius: 50%;
  background: #111;
  transition: transform 0.3s ease;
}

.shoppable-video-inner video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shoppable-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}

.shoppable-play svg {
  width: 36px;
  height: 36px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f4fdff;
  border: 1px solid #d8f8ff;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease;
}

.trust-chip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-chip:hover {
  box-shadow: 0 6px 16px rgba(33, 198, 228, 0.12);
}

.trust-chip svg {
  flex-shrink: 0;
}

.trust-chip span {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.pdp-accordion {
  padding: 2.5rem 0 1.5rem;
  background: #f7f5f0;
}

.pdp-accordion-grid {
  display: grid;
  gap: 2rem;
}

.pdp-accordion-intro h2 {
  color: #1ac9e8;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.35em;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(8px);
}

.pdp-accordion-intro h2.is-visible {
  animation: headline-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pdp-accordion-intro p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 0.8rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.pdp-accordion-intro p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.acc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.acc-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #e0f2fe;
  color: #0369a1;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.acc-badge.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.accordion-box {
  background: #fff;
  border-radius: 22px;
  padding: 4px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accordion-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(6px);
}

.accordion-item.is-visible {
  animation: accordion-item-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.accordion-item:last-child {
  border-bottom: 0;
}

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 15px;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.circle-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  opacity: 0.5;
  transition: transform 0.35s ease;
}

.accordion-item[open] .circle-chevron {
  transform: rotate(180deg);
  opacity: 0.85;
}

.circle-chevron svg {
  width: 10px;
  height: 6px;
}

.accordion-item .acc-body {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
}

.accordion-item[open] .acc-body {
  animation: accordion-fade-in 0.35s ease both;
}

.accordion-item .acc-body ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

.accordion-item .acc-body p {
  margin: 0 0 0.7rem;
}

.pdp-highlights {
  display: grid;
  gap: 16px;
  padding: 0.5rem 0 1.5rem;
}

.pdp-highlights .zoom-group,
.pdp-howto .zoom-group {
  overflow: hidden;
  border-radius: 28px;
}

.pdp-highlights img,
.pdp-howto img,
.zoom-image {
  width: 100%;
  display: block;
  border-radius: 28px;
  opacity: 0;
  transform: translateY(18px) scale(1);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-highlights img.is-visible,
.pdp-howto img.is-visible,
.zoom-image.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (pointer: fine) {
  .zoom-group:hover .zoom-image.is-visible,
  .zoom-group:hover .zoom-image {
    transform: scale(1.06);
    transition: transform 0.45s ease;
  }

  .gallery-main:hover img,
  .gallery-grid button:hover img {
    transform: scale(1.06);
  }
}

.gallery-main img,
.gallery-grid img {
  transition: transform 0.45s ease;
}

.pdp-icons {
  padding: 1.5rem 0 2rem;
}

.pdp-icons h2 {
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  background: linear-gradient(135deg, #11ccf1, #02c5ec);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-icons h2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pdp-icons-grid {
  display: grid;
  gap: 16px;
}

.pdp-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 16px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.pdp-icon-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pdp-icon-card.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.pdp-icon-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.pdp-icon-card .icon-block {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(39, 208, 241, 0.12), rgba(39, 208, 241, 0.03));
  border: 1px solid rgba(39, 208, 241, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-icon-card:hover .icon-block {
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
}

.pdp-icon-card img {
  width: 48px;
  height: 48px;
}

.pdp-icon-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.pdp-icon-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.65;
}

.pdp-howto {
  padding: 0 0 1.5rem;
}

.pdp-howto .howto-mob {
  display: block;
}

.pdp-howto .howto-desk {
  display: none;
}

.bel-testimonials {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: #23c6e4;
}

.bel-testimonials-inner {
  margin: 0 auto;
  max-width: 100%;
  padding: 39px 1.5rem 45px;
  overflow: hidden;
}

.bel-heading {
  text-align: center;
  padding: 0;
}

.bel-heading p {
  margin: 0;
  font-size: 28px;
  color: #fff;
  line-height: 130%;
  font-weight: 500;
}

.bel-heading strong {
  font-weight: 800;
  text-decoration: underline;
}

.bel-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.bel-row {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.bel-row-reverse {
  margin-left: -150px;
  width: calc(100% + 150px);
  max-width: none;
}

.bel-track {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  width: max-content;
  animation: belTicker 58s linear infinite;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .bel-body:hover .bel-track {
    animation-play-state: paused;
  }
}

.bel-card {
  display: flex;
  align-items: center;
  width: 348px;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  margin-right: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.bel-avatar {
  flex-shrink: 0;
  width: 100%;
  max-width: 52px;
  position: relative;
  overflow: visible;
  display: block;
}

.bel-avatar img {
  border-radius: 100px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bel-card:hover .bel-avatar img {
  transform: scale(1.06);
}

.bel-star {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 2px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  background: #23c6e4;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.bel-star-num {
  margin: 0;
  font-size: 12px;
  color: #fff;
  line-height: 100%;
  flex-shrink: 0;
  font-weight: 700;
}

.bel-text {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 150%;
}

@keyframes belTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.pdp-video {
  position: relative;
  margin: 0;
  width: 100%;
}

.pdp-video img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pdp-video .video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 0;
  cursor: pointer;
  color: #fff;
}

.pdp-video .video-play svg {
  width: 48px;
  height: 48px;
}

.pdp-reviews {
  max-width: 1150px;
  margin: 0 auto;
  padding: 2rem 1.25rem 1rem;
}

.pdp-reviews h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.pdp-reviews-summary {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pdp-reviews-write {
  background: #373737;
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 12px 23px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  min-width: 150px;
}

.pdp-reviews-write-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdp-review-bars {
  display: grid;
  gap: 7px;
}

.pdp-review-bar {
  display: grid;
  grid-template-columns: 42px 1fr 40px;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.pdp-review-bar .track {
  height: 8px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.pdp-review-bar .fill {
  height: 100%;
  background: var(--teal);
  border-radius: 20px;
}

.pdp-reviews-score {
  font-size: 64px;
  font-weight: 700;
  color: var(--teal);
  line-height: 0.9;
}

.pdp-reviews-score span {
  font-size: 18px;
  color: #3f3f3f;
  vertical-align: top;
}

.pdp-review-list {
  column-count: 1;
  column-gap: 16px;
}

.pdp-review-card {
  break-inside: avoid;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 9px;
  padding: 18px 18px 14px;
  margin: 0 0 16px;
  box-shadow: 0 5px 15px -10px rgba(0, 0, 0, 0.5);
}

.pdp-review-card .review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.pdp-review-card .name {
  font-weight: 600;
  color: #000;
}

.pdp-review-card .verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #1d1d1d;
}

.pdp-review-card .verified svg {
  width: 14px;
  height: 14px;
  color: #21c6e4;
  flex-shrink: 0;
  display: block;
}

.pdp-review-card .stars {
  color: var(--teal);
  margin: 0 0 8px;
  font-size: 13px;
}

.pdp-review-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #222;
  flex: 1;
}

.pdp-review-card .review-foot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #9a9a9a;
  font-size: 12px;
}

.pdp-review-card .review-foot svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.pdp-reviews-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 24px;
}

.pdp-reviews-pagination button {
  min-width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
}

.pdp-reviews-pagination button.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 700;
}

.pdp-reviews-pagination button:disabled {
  opacity: 0.45;
  cursor: default;
}

@media (max-width: 699px) {
  .pdp-reviews {
    padding: 1.5rem 1rem 5.5rem;
  }

  .pdp-reviews h2 {
    font-size: 22px;
    margin-bottom: 1rem;
  }

  .pdp-reviews-summary {
    gap: 0.85rem;
    margin-bottom: 1.15rem;
  }

  .pdp-reviews-summary > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .pdp-reviews-score {
    font-size: 44px;
  }

  .pdp-reviews-score span {
    font-size: 15px;
  }

  .pdp-reviews-summary > div:first-child p {
    margin: 0;
    font-size: 13px;
    color: #666;
  }

  .pdp-review-bar {
    grid-template-columns: 36px 1fr 34px;
    gap: 6px;
    font-size: 13px;
  }

  .pdp-review-bar .track {
    height: 7px;
  }

  .pdp-reviews-write-wrap {
    width: 100%;
  }

  .pdp-reviews-write {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 12px;
  }

  .pdp-review-card {
    padding: 14px 14px 12px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .pdp-review-card p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .pdp-reviews-pagination {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 5px;
    margin: 4px 0 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .pdp-reviews-pagination::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .pdp-reviews-pagination button {
    min-width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
  }
}

.video-modal,
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 400;
  place-items: center;
  padding: 1.5rem;
}

.video-modal.open,
.lightbox.open {
  display: grid;
}

.video-modal video {
  max-width: min(420px, 100%);
  max-height: 88vh;
  width: 100%;
  border-radius: 16px;
  background: #000;
  display: block;
  cursor: pointer;
}

.video-modal-stage {
  position: relative;
  max-width: min(420px, 100%);
  touch-action: pan-y;
}

.video-modal-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: none;
}

.video-modal-play[hidden] {
  display: none;
}

.video-modal-play svg {
  width: 28px;
  height: 32px;
  margin-left: 4px;
}

.video-modal iframe {
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  background: #000;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.related-section .rail-head h2 {
  text-align: center;
}

.save {
  color: var(--sale);
  font-weight: 800;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 0 2.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.newsletter {
  background: var(--teal-soft);
  text-align: center;
  padding: 2rem 1rem;
}

.newsletter form {
  display: flex;
  max-width: 420px;
  margin: 1rem auto 0;
}

.newsletter input {
  flex: 1;
  border: 0;
  padding: 0.8rem;
  border-radius: 8px 0 0 8px;
}

.newsletter button {
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  padding: 0 1rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.site-footer {
  background: #111;
  color: #ccc;
  padding: 2rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--teal);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.4rem 0;
  font-size: 0.88rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.75rem;
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  background: #111;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  opacity: 0;
  z-index: 200;
  font-size: 0.85rem;
  font-weight: 700;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 140;
  display: none;
  padding: 1rem;
  align-items: flex-start;
  justify-content: center;
}

.search-modal.open {
  display: flex;
}

body.search-open {
  overflow: hidden;
}

.search-modal-panel {
  width: min(720px, 100%);
  margin-top: 1.25rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  animation: home-fade-up 0.35s ease both;
}

.search-modal-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 0.85rem 0.7rem;
  border-bottom: 1px solid #eee;
}

.search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 0.35rem 0.4rem 0.35rem 0.85rem;
}

.search-form-icon {
  display: grid;
  place-items: center;
  color: #666;
}

.search-form-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.search-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.55rem 0.2rem;
  outline: none;
  font-size: 0.95rem;
}

.search-form button[type="submit"] {
  background: var(--teal);
  color: #fff;
  border: 0;
  padding: 0.55rem 1rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.search-close {
  flex-shrink: 0;
}

.search-results {
  max-height: min(60vh, 420px);
  overflow: auto;
  padding: 0.5rem;
}

.search-hint {
  margin: 1rem;
  color: #777;
  font-size: 0.92rem;
  text-align: center;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.search-item:hover {
  background: #f6f6f6;
}

.search-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: #fafafa;
}

.search-item span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.search-item strong {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.search-item em {
  font-style: normal;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
}

.see-all {
  text-align: center;
  margin: 1.25rem 0 0;
}

.see-all a {
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
}

.banner-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.banner-pair img,
.promo-banners img {
  width: 100%;
  border-radius: var(--radius);
}

.promo-banners {
  display: grid;
  gap: 0.75rem;
}

.promo-banners a,
.promo-banners picture {
  display: block;
}

.promo-banners img {
  aspect-ratio: 600 / 800;
  object-fit: cover;
}

.section-title[data-split],
.rail-head h2[data-split] {
  opacity: 1;
}

.sf-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.sf-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
}

[data-split].is-visible .sf-inner {
  animation: sf-rise 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 50ms);
}

.banner-pair a,
.promo-banners a,
.newsletter {
  opacity: 0;
  transform: translateY(22px);
}

.banner-pair a.is-visible,
.promo-banners a.is-visible,
.newsletter.is-visible {
  animation: home-fade-up 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.banner-pair img,
.promo-banners img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-pair a:hover img,
.promo-banners a:hover img {
  transform: scale(1.02);
}

@media (min-width: 700px) {
  .hero-slide {
    aspect-ratio: 2800 / 1000;
  }

  .promo-banners img {
    aspect-ratio: 2000 / 714;
  }
}

@media (min-width: 900px) {
  .header-row {
    grid-template-columns: 180px 1fr auto;
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
    padding: 0.7rem 0;
  }

  .header-left {
    display: none;
  }

  .logo img {
    margin: 0;
    height: 46px;
  }

  .icon-btn.search-desktop,
  .icon-btn.account-desktop {
    display: inline-flex;
  }

  .truck-btn {
    display: none;
  }

  .menu-btn {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.95rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .desktop-nav a.sale {
    background: var(--teal);
    color: #fff !important;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 700;
    animation: glow 1.5s ease-in-out infinite;
  }

  .hero-slide {
    aspect-ratio: 2800 / 1000;
  }

  .hero-slide img {
    object-fit: cover;
    background: #0aa0b0;
  }

  .promo-banners img {
    aspect-ratio: 2000 / 714;
  }

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

  .benefits-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
  }

  .benefit {
    min-width: 0;
  }

  .rail-head {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .rail-nav {
    display: flex;
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
    padding: 0;
    justify-content: flex-start;
  }

  .rail-arrows {
    display: flex;
  }

  .rail-side-arrow {
    display: grid;
  }

  .product-rail {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    scroll-padding-inline: 1rem;
  }

  .product-rail::before,
  .product-rail::after {
    flex-basis: 1rem;
    width: 1rem;
  }

  .product-rail .product-card {
    flex-basis: 260px;
  }

  .product-rail .product-card .btn-block {
    opacity: 0;
    transition: opacity 0.15s ease;
  }

  .product-rail .product-card:hover .btn-block {
    opacity: 1;
  }

  .concerns {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .concerns::before,
  .concerns::after {
    display: none;
    content: none;
    flex: none;
    width: 0;
  }

  .concern {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .product-page {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 48px;
    align-items: start;
    padding-top: 1.25rem;
  }

  .gallery-main,
  .gallery-dots,
  .gallery-nav,
  .thumbs {
    display: none;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .product-info {
    padding: 12px 28px;
    margin-top: 0;
    border-radius: 24px;
    position: sticky;
    top: var(--pdp-sticky-top, 1rem);
    align-self: start;
    z-index: 2;
  }

  .gallery-col {
    align-self: start;
  }

  .product-info h1 {
    font-size: 1.55rem;
  }

  .pdp-accordion-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .pdp-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .pdp-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pdp-howto .howto-mob {
    display: none;
  }

  .pdp-howto .howto-desk {
    display: block;
  }

  .bel-testimonials-inner {
    padding: 52px 1.5rem 60px;
  }

  .bel-heading p {
    font-size: 32px;
  }

  .bel-body {
    gap: 32px;
    margin-top: 48px;
  }

  .bel-row-reverse {
    margin-left: -150px;
    width: calc(100% + 150px);
  }

  .bel-track {
    animation-duration: 74s;
  }

  .bel-card {
    width: 420px;
    gap: 14px;
    padding: 14px 18px;
    margin-right: 28px;
  }

  .bel-text {
    font-size: 15px;
  }

  .pdp-reviews-summary {
    grid-template-columns: 1fr 1.2fr auto;
    align-items: center;
  }

  .pdp-review-list {
    column-count: 4;
  }
}

@media (min-width: 700px) and (max-width: 999px) {
  .pdp-review-list {
    column-count: 2;
  }
}

@media (max-width: 999px) {
  .pdp-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: #fff;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  }

  .pdp-sticky .btn {
    width: 100%;
    border-radius: 14px;
    font-size: 14px;
    padding: 8px 16px;
  }

  body:has(.pdp-sticky) {
    padding-bottom: 88px;
  }

  body:has(.cart-drawer.open) .pdp-sticky,
  body:has(.lightbox.open) .pdp-sticky,
  body:has(.video-modal.open) .pdp-sticky {
    display: none;
  }
}

/* —— Entrance animations (Belletonn live) —— */
@keyframes anim-fade-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes anim-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes headline-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accordion-item-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accordion-fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progress-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.08);
  }
}

@keyframes progress-sheen {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -40% 0;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px #21c6e4, 0 0 10px #21c6e4;
  }
  70% {
    box-shadow: 0 0 10px #21c6e4, 0 0 20px #21c6e4, 0 0 30px #21c6e4;
  }
}

@keyframes fab-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-up.is-visible {
  animation: home-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes home-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-pop-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sf-rise {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .desktop-nav a.sale {
    animation: none !important;
  }

  .cart-progress i,
  .cart-progress i::after,
  .cart__brinde-progress-fill,
  .cart__brinde-progress-fill::after {
    animation: none !important;
  }
}
