@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400..700;1,9..40,400..700&display=swap");

:root {
  --bg: #f4f7fb;
  --bg-elevated: #ffffff;
  --ink: #141b2e;
  --muted: #5a6478;
  --line: #d5dee8;
  --accent: #0d7a6a;
  --accent-2: #3bc4a8;
  --accent-soft: #d9f3ec;
  --indigo: #4f46e5;
  --indigo-soft: #e8e6ff;
  --coral: #e85d4c;
  --coral-soft: #ffe8e4;
  --amber: #f4a01b;
  --sky: #2b7fd6;
  --sky-soft: #e3f0ff;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(20, 27, 46, 0.09);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--indigo);
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

/* Living canvas: soft drifting grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: radial-gradient(circle at 18% 22%, rgba(59, 196, 168, 0.16), transparent 42%),
    radial-gradient(circle at 82% 8%, rgba(79, 70, 229, 0.12), transparent 38%),
    radial-gradient(circle at 70% 88%, rgba(232, 93, 76, 0.1), transparent 40%),
    linear-gradient(125deg, #f4f7fb 0%, #eef6f2 38%, #f3f5ff 72%, #faf6f2 100%);
  animation: bgDrift 22s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  from {
    filter: hue-rotate(-6deg);
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    filter: hue-rotate(8deg);
    transform: translate3d(-1.2%, 1%, 0) scale(1.03);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: conic-gradient(from 200deg, var(--accent), var(--indigo), var(--coral), var(--accent-2), var(--accent));
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.22);
  animation: markSpin 14s linear infinite;
}

@keyframes markSpin {
  to {
    transform: rotate(360deg);
  }
}

.brand__text {
  font-size: 1.15rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav__link:hover {
  color: var(--ink);
  background: rgba(13, 122, 106, 0.08);
  transform: translateY(-1px);
}

.nav__link.is-active {
  color: var(--indigo);
  background: var(--indigo-soft);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #f07868);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

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

.hero {
  position: relative;
  padding: clamp(40px, 7vw, 88px) clamp(18px, 4vw, 36px) clamp(36px, 6vw, 72px);
  overflow: clip;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__backdrop img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.hero__backdrop-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(244, 247, 251, 0.94) 0%,
    rgba(244, 247, 251, 0.82) 32%,
    rgba(244, 247, 251, 0.55) 58%,
    rgba(244, 247, 251, 0.25) 100%
  );
}

.hero__intro {
  padding: clamp(8px, 2vw, 20px) clamp(4px, 2vw, 12px) clamp(8px, 2vw, 20px) 0;
  max-width: 38rem;
}

@media (max-width: 900px) {
  .hero__intro {
    padding: 0 0 clamp(12px, 3vw, 20px);
  }
}

.hero__mesh {
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  pointer-events: none;
  opacity: 0.22;
  z-index: 1;
}

.hero__mesh svg {
  width: 100%;
  height: auto;
  display: block;
  animation: meshWave 18s ease-in-out infinite;
}

@keyframes meshWave {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(2%, -2%, 0) rotate(2deg);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 52ch;
}

.hero-slider {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: linear-gradient(145deg, #ffffff 0%, #f0fff9 35%, #f4f2ff 100%);
  border-radius: calc(var(--radius) + 10px);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.12), 0 8px 28px rgba(13, 122, 106, 0.12);
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(130deg, var(--accent-2), var(--indigo), var(--coral), var(--sky));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero-slider:hover {
    transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-4px);
    box-shadow: 0 28px 70px rgba(79, 70, 229, 0.18), 0 14px 40px rgba(13, 122, 106, 0.14);
  }
}

.hero-slide {
  display: none;
  padding: clamp(18px, 3vw, 26px) clamp(18px, 3.5vw, 28px);
  gap: clamp(16px, 2.5vw, 22px);
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  justify-items: start;
  text-align: left;
  position: relative;
  z-index: 1;
  flex: 1;
}

.hero-slide.is-active {
  display: grid;
}

.hero-slide__figure {
  width: min(200px, 72%);
  max-width: 220px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 32px rgba(20, 27, 46, 0.15);
  background: #eef2f7;
  flex-shrink: 0;
  justify-self: start;
}

.hero-slide__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-slider:hover .hero-slide__figure img {
    transform: scale(1.05) rotate(-1deg);
  }
}

.hero-slide__copy {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-slide__copy .btn {
  align-self: flex-start;
  margin-top: 6px;
}

.hero-slide__title {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.3;
  margin: 0 0 8px;
}

.hero-slide__lede {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(0.9rem, 2.2vw, 0.98rem);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-slider {
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-slide {
    padding: clamp(20px, 4vw, 28px) clamp(16px, 4vw, 28px);
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .hero-slide__figure {
    width: min(220px, 78%);
    max-width: 260px;
    margin-inline: auto;
    justify-self: center;
  }

  .hero-slide__copy {
    align-items: center;
    text-align: center;
  }

  .hero-slide__copy .btn {
    align-self: center;
    margin-top: 8px;
  }

  .hero-slide__title {
    font-size: clamp(1.12rem, 3.6vw, 1.35rem);
  }

  .hero-slide__lede {
    max-width: min(110ch, 100%);
    margin-inline: auto;
  }
}

.hero-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
}

.hero-slide__price {
  font-weight: 800;
  font-size: 1.35rem;
}

.hero-slide__was {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 600;
  margin-left: 8px;
  font-size: 0.95rem;
}

.hero-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: auto;
  padding: 14px clamp(16px, 3vw, 26px) clamp(16px, 3vw, 22px);
  border-top: 1px solid rgba(20, 27, 46, 0.08);
  background: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(36px, 5vw, 72px) 0;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px 20px;
  margin-bottom: 22px;
}

.section__head > div:first-child {
  flex: 1 1 16rem;
  min-width: 0;
}

.section__head > .btn {
  flex: 0 0 auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.section__title {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.section__lede {
  margin: 6px 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(120deg, var(--accent) 0%, #0f9b88 40%, var(--indigo) 100%);
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 55%);
  transform: translate3d(-30%, 0, 0);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.04);
  box-shadow: 0 20px 44px rgba(232, 93, 76, 0.2);
}

.btn:hover::after {
  opacity: 0.35;
  transform: translate3d(10%, 0, 0);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn--ghost {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  background: linear-gradient(120deg, var(--accent-soft), var(--sky-soft));
  border-color: rgba(79, 70, 229, 0.25);
}

.btn--small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: #fff;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 93, 76, 0.55);
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.12);
  color: var(--ink);
  background: linear-gradient(180deg, #fff, var(--coral-soft));
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 60%;
  background: radial-gradient(circle at 30% 20%, rgba(59, 196, 168, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(10px);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(13, 122, 106, 0.35);
}

.card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}

.card__actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #eef2f7;
  transition: transform 0.35s ease;
}

.card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.card:hover .card__media {
  transform: scale(1.03);
}

.card__title {
  margin: 0;
  font-size: 1rem;
}

.card__meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.stars {
  color: var(--amber);
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-weight: 800;
  font-size: 1.1rem;
}

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

.price--muted {
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #13221e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.badge--sale {
  background: var(--danger);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(16px, 2.4vw, 22px);
  box-shadow: 0 10px 30px rgba(19, 34, 30, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.panel:hover {
  border-color: rgba(13, 122, 106, 0.35);
  transform: translateY(-3px);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel__slide {
  min-width: 100%;
  padding: 22px clamp(16px, 3vw, 28px);
  box-sizing: border-box;
}

.carousel__nav {
  position: absolute;
  inset: 50% 10px auto;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel__btn {
  pointer-events: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel__btn:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow);
}

.brands-strip .carousel__slide {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

@media (max-width: 720px) {
  .brands-strip .carousel__slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.brand-logo {
  border-radius: 14px;
  border: 1px dashed rgba(13, 122, 106, 0.35);
  padding: 16px;
  text-align: center;
  font-weight: 800;
  color: var(--muted);
  background: #f9fdfb;
  transition: transform 0.25s ease, border-style 0.25s ease, color 0.25s ease;
}

.brand-logo:hover {
  transform: translateY(-4px) rotate(-1deg);
  border-style: solid;
  color: var(--accent);
}

.site-footer {
  background: #0f1c19;
  color: #d5e3df;
  margin-top: clamp(40px, 6vw, 80px);
  padding: 40px 0 28px;
}

.site-footer a {
  color: #b8f6e8;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__title {
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}

.site-footer__muted {
  color: #9cb3ad;
  margin: 0 0 8px;
}

.site-footer__address {
  margin: 0;
}

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

.site-footer__links li {
  margin-bottom: 8px;
}

.site-footer__pay {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pay-icons {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 10px 0 0;
}

.pay-icons img {
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.site-footer__base {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: #9cb3ad;
}

.site-footer__base a {
  color: #e7fff8;
}

/* Cookie banner — stack under text, keep left so support FAB stays clear */
#cookie-banner {
  position: fixed;
  left: 16px;
  right: auto;
  bottom: 16px;
  max-width: min(32rem, calc(100vw - 100px));
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  justify-items: stretch;
}

#cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

/* Support chat */
.support-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
}

.support-chat__toggle {
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #13221e, var(--accent));
  box-shadow: 0 16px 40px rgba(13, 122, 106, 0.35);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-chat__toggle:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 50px rgba(13, 122, 106, 0.45);
}

.support-chat__pulse {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(59, 196, 168, 0.55);
  animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.support-chat__panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(360px, calc(100vw - 36px));
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.support-chat__head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #f3faf7, #fff);
}

.support-chat__title {
  margin: 0;
  font-weight: 800;
}

.support-chat__sub {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.support-chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 10px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chip:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.support-chat__log {
  height: 220px;
  overflow: auto;
  padding: 12px;
  background: #fafcfb;
}

.chat-row {
  display: flex;
  margin-bottom: 10px;
}

.chat-row--user {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-row--agent .chat-bubble {
  background: #fff;
  border: 1px solid var(--line);
}

.chat-row--user .chat-bubble {
  background: var(--accent-soft);
  border: 1px solid rgba(13, 122, 106, 0.25);
}

.support-chat__composer {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
}

.support-chat__composer input {
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  font: inherit;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 12px;
}

label span {
  font-weight: 700;
}

input,
select,
textarea {
  font: inherit;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  width: 100%;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(13, 122, 106, 0.65);
  box-shadow: 0 0 0 3px rgba(59, 196, 168, 0.25);
}

.form-feedback {
  margin-top: 10px;
  font-weight: 700;
  color: var(--accent);
}

.form-feedback--ok {
  color: #0b5c3a;
}

/* Catalog layout */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 991px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
}

.filters {
  position: sticky;
  top: 84px;
}

.filter-block {
  margin-bottom: 16px;
}

.filter-block h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.filter-options {
  display: grid;
  gap: 8px;
}

.filter-sale-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 12px 14px;
  margin: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filter-sale-toggle:hover {
  border-color: rgba(13, 122, 106, 0.45);
  box-shadow: 0 4px 16px rgba(20, 27, 46, 0.07);
}

.filter-sale-toggle:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.filter-sale-toggle__track {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #c8d2df;
  transition: background 0.22s ease;
}

.filter-sale-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 27, 46, 0.18);
  transition: transform 0.22s ease;
}

.filter-sale-toggle input:checked + .filter-sale-toggle__track {
  background: linear-gradient(120deg, var(--accent) 0%, #0f9b88 55%, var(--indigo) 100%);
}

.filter-sale-toggle input:checked + .filter-sale-toggle__track .filter-sale-toggle__thumb {
  transform: translateX(20px);
}

.filter-sale-toggle__label {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

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

/* Product detail */
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
  }
}

.product-hero__visual {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  padding: 16px;
  background: radial-gradient(circle at 30% 20%, rgba(59, 196, 168, 0.15), #fff 55%);
  transition: transform 0.35s ease;
}

.product-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  max-width: none;
  display: block;
}

.product-hero__visual:hover {
  transform: perspective(900px) rotateY(-4deg) rotateX(3deg);
}

/* Policy prose */
.prose {
  max-width: 72ch;
}

.prose h1 {
  margin-top: 0;
}

.prose h2 {
  margin-top: 1.6em;
}

/* Promo banner */
.promo-hero {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(120deg, #ffffff, #e9fbf6 45%, var(--indigo-soft));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}

.promo-hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(59, 196, 168, 0.35), transparent 65%);
  animation: floaty 9s ease-in-out infinite alternate;
}

@keyframes floaty {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-20px, -16px, 0);
  }
}

@media (max-width: 800px) {
  .promo-hero {
    grid-template-columns: 1fr;
  }
}

/* Blog */
.blog-list article {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.blog-list a {
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.blog-list a:hover {
  color: var(--indigo);
}

/* Cart table */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
  vertical-align: middle;
}

.cart-thumb {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.15s ease, background 0.15s ease;
}

.qty-control button:hover {
  transform: scale(1.06);
  background: var(--accent-soft);
}

/* Lifestyle photo row */
.lifestyle-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  align-items: stretch;
}

@media (max-width: 800px) {
  .lifestyle-row {
    grid-template-columns: 1fr;
  }
}

.lifestyle-row figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.lifestyle-row figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(79, 70, 229, 0.15);
}

.lifestyle-row img {
  width: 100%;
  height: clamp(200px, 28vw, 320px);
  object-fit: cover;
}

.about-figure {
  margin: 0 0 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-figure img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
}

/* Reviews — three cards, rotate by one */
.reviews-triplet-wrap {
  position: relative;
}

.reviews-triplet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

@media (max-width: 900px) {
  .reviews-triplet {
    grid-template-columns: 1fr;
  }
}

.review-card {
  margin: 0;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #fff 0%, var(--sky-soft) 55%, var(--indigo-soft) 100%);
  box-shadow: 0 12px 36px rgba(20, 27, 46, 0.06);
  min-height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.35);
}

.review-card p {
  margin: 0;
}

.review-card__text {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
}

.review-card__by {
  margin-top: 14px;
  font-weight: 700;
  color: var(--indigo);
  font-size: 0.9rem;
}

.reviews-triplet__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.reviews-triplet__nav button {
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reviews-triplet__nav button:hover {
  transform: scale(1.06);
  background: var(--indigo-soft);
  box-shadow: var(--shadow);
}

/* Footer social icons */
.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer__social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(59, 196, 168, 0.5);
  color: #fff;
}

.site-footer__social-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.site-footer__social-link:hover img {
  opacity: 1;
}
