/* ── MONTSERRAT (Google Fonts — повна підтримка кирилиці) ── */

:root {
  --bg: #f4f4f4;
  --s1: #ffffff;
  --s2: #eaeaea;
  --s3: #dedede;
  --bdr: rgba(0, 0, 0, 0.08);
  --bdr2: rgba(0, 0, 0, 0.16);
  --red: #c72222;
  --red-l: #e03030;
  --red-dim: rgba(199, 34, 34, 0.2);
  --amber: #f9ab51;
  --amber-dim: rgba(249, 171, 81, 0.2);
  --text: #1a1a1a;
  --muted: #606060;
  --dim: #909090;
  --radius: 12px;
  --radius-sm: 7px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.35s;
  --acc: var(--red);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*:focus {
  outline: none;
}
a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.5;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  font-family: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--bdr2);
  border-radius: 3px;
}

/* ── SITE LOGO ── */
.site-logo {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.f-brand .site-logo {
  height: 50px;
  margin-bottom: 14px;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 102;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 56px);
  background: rgba(244, 245, 244, 0.93);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bdr);
}
/* desktop: burger hidden */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  header {
    position: fixed;
    left: 0;
    right: 0;
    padding: 0 14px;
  }
  body {
    padding-top: 64px;
  }
  /* logo centered via absolute */
  header > a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-links {
    display: none !important;
  }
  .burger-btn {
    display: flex;
  }
  .ig-link {
    display: none !important;
  }
  .cart-count {
    display: none !important;
  }
  .cart-btn {
    position: relative;
  }
  .cart-btn.has-items::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid #fff;
  }
  .hero {
    min-height: auto !important;
    padding: 56px 20px 40px !important;
  }
  .section {
    padding: 40px clamp(16px, 4vw, 24px) !important;
  }
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ig-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: all var(--dur);
}
.ig-link:hover {
  border-color: var(--bdr2);
  color: var(--text);
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--dur);
}
.cart-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.cart-count.bump {
  transform: scale(1.55);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px clamp(20px, 6vw, 80px) 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 30%,
      rgba(199, 34, 34, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 80% 80%,
      rgba(199, 34, 34, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 30% 30% at 10% 70%,
      rgba(249, 171, 81, 0.03) 0%,
      transparent 60%
    );
}
.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/images/hero-bg.jpg") center/cover no-repeat;
  opacity: 0.07;
  filter: grayscale(1) contrast(1.2);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--amber);
  padding: 6px 16px;
  border: none;
  border-radius: 40px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a1a1a;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--red);
  font-size: clamp(3.7rem, 10.5vw, 7.9rem);
}
.hero h1 span {
  display: block;
}
.hero-line-last {
  font-size: clamp(1.86rem, 5.3vw, 4rem);
  white-space: nowrap;
}
.hero-desc {
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 52px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.16s ease both;
}
.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.22s ease both;
}
.hero-tag {
  padding: 5px 14px;
  border: 1px solid var(--bdr);
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-tag.accent {
  border-color: var(--red-dim);
  color: var(--red);
  background: rgba(199, 34, 34, 0.05);
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.28s ease both;
}
.btn-red {
  padding: 14px 36px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all var(--dur);
}
.btn-red:hover {
  background: var(--red-l);
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(199, 34, 34, 0.35);
}
.btn-ghost {
  padding: 14px 36px;
  background: var(--amber);
  color: #1a1a1a;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--dur);
}
.btn-ghost:hover {
  background: #e89a3f;
  border-color: transparent;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--bdr);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--dur);
}
.btn-insta:hover {
  border-color: #c13584;
  color: #c13584;
  background: rgba(193, 53, 132, 0.06);
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;

  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dim);

  pointer-events: none;
  animation: fadeUp 0.6s 0.4s ease both;
  z-index: 5;
}
.scroll-ln {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ── WHY LENS PRO ── */
.why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--bdr);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.why-item {
  background: var(--bg);
  padding: clamp(28px, 4vw, 44px) clamp(18px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--dur);
}
.why-item:hover {
  background: var(--s1);
}
.why-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-title::before {
  content: "✓";
  display: block;
  width: auto;
  height: auto;
  background: none;
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
}
.why-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── SECTION ── */
.section {
  padding: clamp(36px, 5vw, 72px) clamp(20px, 5vw, 72px);
}
.s-tag {
  display: block;
  width: fit-content;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--amber);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.s-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.0;
}
.s-title em {
  font-style: italic;
  color: inherit;
}
.s-lead {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  margin-top: 12px;
  font-weight: 300;
}
.divider {
  height: 1px;
  background: var(--bdr);
}

/* ── CONFIGURATOR ── */
.configurator {
  background: var(--s1);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.config-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .config-inner {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
}

/* PREVIEW COL */
.prev-col {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 4vw, 52px);
  border-right: 1px solid var(--bdr);
  background: var(--bg);
}
@media (max-width: 900px) {
  .prev-col {
    position: sticky !important;
    top: 64px !important;
    height: auto !important;
    min-height: 0;
    order: 1;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--bdr);
    padding: 10px 16px;
    display: grid !important;
    grid-template-columns: 106px 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 0 14px;
    z-index: 20;
    overflow: hidden;
  }
  .prev-wrap {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 106px;
    aspect-ratio: 4/3;
    max-width: 106px;
  }
  .prev-img {
    object-fit: contain;
  }
  .prev-ph p {
    display: block;
  }
  .prev-col .prev-badge {
    grid-column: 2;
    grid-row: 1;
    display: block;
    font-size: 0.55rem;
    margin-bottom: 2px;
  }
  .prev-tags {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    gap: 4px;
    flex-wrap: nowrap;
  }
  .prev-price {
    grid-column: 2;
    grid-row: 3;
    font-size: 1.05rem;
    margin-top: 3px;
    align-self: auto;
  }
  .prev-lens-badge {
    display: none !important;
  }
  .steps-col {
    order: 2;
    padding: 24px clamp(16px, 4vw, 32px);
  }
}
.prev-badge {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.prev-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--s2);
}
.prev-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--dim);
  transition: opacity 0.4s;
}
.prev-ph svg {
  opacity: 0.2;
}
.prev-ph p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.5;
  text-align: center;
  padding: 0 8px;
  word-break: break-word;
}
.prev-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.55s var(--ease),
    filter 0.5s;
  opacity: 0;
}
.prev-img.show {
  opacity: 1;
  cursor: zoom-in;
}
.prev-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
  align-self: flex-start;
}
.ptag {
  padding: 4px 11px;
  border: 1px solid var(--bdr);
  border-radius: 40px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: all 0.3s;
}
.ptag.on {
  border-color: rgba(199, 34, 34, 0.4);
  color: var(--red);
  background: var(--red-dim);
}
.prev-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 10px;
  align-self: flex-start;
  transition: opacity 0.3s;
}
.prev-price.hide {
  opacity: 0;
}
.prev-lens-badge {
  align-self: flex-start;
  display: none;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 40px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.prev-lens-badge.show {
  display: inline-flex;
}
.plb-day {
  background: rgba(249, 171, 81, 0.15);
  border: 1px solid rgba(249, 171, 81, 0.3);
  color: var(--amber);
}
.plb-night {
  background: rgba(199, 34, 34, 0.12);
  border: 1px solid var(--red-dim);
  color: var(--red);
}

/* STEPS COL */
.steps-col {
  padding: clamp(28px, 5vw, 56px);
}
.cfg-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 4px;
}
.cfg-sub {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.sb {
  margin-bottom: 24px;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.sb.locked {
  opacity: 0.3;
  pointer-events: none;
}
.sb-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.sb-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--bdr2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s;
}
.sb.done .sb-num {
  background: var(--red-dim);
  border-color: var(--red);
  color: var(--red);
}
.sb-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.sb-chk {
  margin-left: auto;
  color: var(--red);
  font-size: 0.78rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.sb.done .sb-chk {
  opacity: 1;
}

/* MINI CAROUSEL */
.mcar {
  position: relative;
  margin-bottom: 6px;
}
.mcar-outer {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.mcar-track {
  display: flex;
  transition: transform 0.5s var(--ease);
  padding-top: 10px;
}
.mcar-slide {
  min-width: 100%;
  display: flex;
  gap: 8px;
  padding: 2px;
}
.ftb {
  flex: 0 0 auto;
  box-sizing: border-box;
  min-width: 0;
  background: var(--s2);
  border: 6px solid transparent;
  background-clip: padding-box;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px var(--bdr);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.ftb:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--bdr2);
}
.ftb.sel {
  box-shadow:
    0 0 0 1px var(--red),
    0 10px 30px -5px rgba(199, 34, 34, 0.15);
  transform: translateY(-4px);
  border-color: transparent;
}
.ftb img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.4s;
  border-radius: calc(var(--radius-sm) - 1px);
}
.ftb:hover img {
  transform: scale(1.04);
}
.ftb-name {
  padding: 7px 9px 2px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ftb-price {
  font-size: 0.68rem;
  color: var(--red);
  padding: 0 9px 8px;
  font-weight: 600;
  white-space: nowrap;
}
.ftb-chk {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.25s;
}
.ftb.sel .ftb-chk {
  box-shadow:
    0 0 0 1px var(--red),
    0 4px 12px rgba(199, 34, 34, 0.1);
  border-color: transparent;
}
.marr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #f4f5f4;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text);
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.marr:hover {
  border-color: var(--red);
  color: var(--red);
}
.marr.p {
  left: -12px;
}
.marr.n {
  right: -12px;
}
.marr:disabled {
  opacity: 0.18;
  pointer-events: none;
}

@media (max-width: 480px) {
  .opt-tiles {
    gap: 6px;
  }
  .opt-tile {
    padding: 11px 10px;
  }
  .mcar {
    padding: 0 10px;
  }
  .marr.p {
    left: -6px;
  }
  .marr.n {
    right: -6px;
  }
  .marr {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
}

/* OPTION TILES */
.opt-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.opt-tile {
  background: var(--s2);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s;
  position: relative;
}
.opt-tile:hover {
  border-color: var(--bdr2);
  transform: translateY(-2px);
}
.opt-tile.sel {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.opt-tile.sel::after {
  content: "✓";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cswatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
}
.tile-name {
  font-size: 0.85rem;
  font-weight: 600;
}
.tile-price {
  font-size: 0.68rem;
  color: var(--red);
  font-weight: 600;
}
.tile-desc {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}
/* Lens tiles special */
.lens-vis {
  min-width: 64px;
  padding: 0 8px;
  text-align: center;
  height: 32px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lv-day {
  background: rgba(249, 171, 81, 0.3);
  border: 1px solid rgba(249, 171, 81, 0.4);
  color: var(--amber);
}
.lv-night {
  background: rgba(199, 34, 34, 0.3);
  border: 1px solid var(--red-dim);
  color: var(--red);
}
.protect-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.pb-fill {
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--red), var(--amber));
}
.pb-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

/* CASE ROW */

/* SUMMARY */
.sum-box {
  background: var(--s3);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  font-size: 0.78rem;
}
.srow {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.srow:last-child {
  border-bottom: none;
}
.srow .sl {
  color: var(--muted);
  font-weight: 300;
  flex-shrink: 0;
}
.srow span:last-child {
  flex: 1;
  min-width: 0;
  text-align: right;
}
.srow .sv-orig {
  text-decoration: line-through;
  color: var(--dim);
  white-space: nowrap;
}
.stotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 9px;
  margin-top: 6px;
  border-top: 1px solid var(--bdr);
}
.stotal .sl {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.stotal .sv {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  white-space: nowrap;
}

.add-btn {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.add-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s;
}
.add-btn:hover::before {
  left: 100%;
}
.add-btn:hover {
  background: var(--red-l);
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(199, 34, 34, 0.4);
}
.add-btn:disabled {
  opacity: 0.25;
  pointer-events: none;
}
.hint {
  font-size: 0.68rem;
  color: var(--dim);
  text-align: center;
  font-weight: 500;
  margin-top: 7px;
  transition: opacity 0.3s;
}

/* ── MODELS SECTION ── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-top: 36px;
}
.model-card {
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  cursor: pointer;
}
@media (hover: hover) and (min-width: 901px) {
  .model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  }
}
.mc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s var(--ease),
    filter 0.4s;
}
.model-card:hover .mc-img img {
  transform: scale(1.04);
}
.mc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: #f4f5f4;
  border: 1px solid var(--bdr);
  border-radius: 40px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.mc-body {
  padding: 16px 18px;
}
.mc-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.mc-desc {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 12px;
}
.mc-desc p {
  text-indent: 0.5em;
  margin: 0;
}
.mc-desc p + p {
  margin-top: 5px;
  font-style: italic;
}
.mc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mc-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.mc-cta {
  padding: 7px 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.3s;
}
.mc-cta:hover {
  background: var(--red-l);
  box-shadow: 0 4px 16px rgba(199, 34, 34, 0.35);
}

/* ── MODELS HORIZONTAL SCROLL (mobile) ── */
@media (max-width: 900px) {
  .models-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    /* Виходимо за межі padding секції щоб grid займав повну ширину viewport */
    margin-inline: calc(-1 * clamp(16px, 4vw, 24px));
    /* 14vw = (100vw - 72vw) / 2 — рівно половина вільного простору,
       щоб перша і остання картка ставали по центру при scroll-snap */
    padding: 50px 14vw;
    margin-top: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .models-grid::-webkit-scrollbar {
    display: none;
  }
  .model-card {
    flex: 0 0 72vw;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.9);
    opacity: 0.55;
    transition:
      transform 0.35s var(--ease),
      opacity 0.35s var(--ease),
      box-shadow 0.35s var(--ease);
  }
  .model-card.mc-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  }
  .mc-img {
    aspect-ratio: 4/3;
  }
  .mc-desc {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }
  .mc-body {
    padding: 12px 14px;
  }
  .mc-name {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .mc-price {
    font-size: 0.95rem;
  }
  .mc-cta {
    padding: 6px 12px;
    font-size: 0.68rem;
  }
  /* hint that more cards exist — last card peek on right */
  .models-grid::after {
    content: "";
    flex: 0 0 1px;
  }
}
/* ── ABOUT & HOW IT WORKS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(199, 34, 34, 0.08) 0%,
    transparent 55%
  );
}
.about-photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 12px 16px;
  background: var(--s3);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
}
.apb-title {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.apb-text {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--bdr);
}
.fact:last-child {
  border-bottom: none;
}
.fact-n {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.fact-t h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fact-t p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* HOW IT WORKS */
.hw-day { color: var(--amber); }
.how-heading em { color: var(--red); }
.hw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-top: 40px;
}
.hw-card {
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--dur);
}
.hw-card:hover {
  border-color: var(--bdr2);
}
.hw-step {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.hw-icon {
  font-size: 2rem;
}
.hw-title {
  font-size: 0.9rem;
  font-weight: 700;
}
.hw-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}
.hw-protect {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.hw-bar {
  flex: 1;
  height: 4px;
  background: var(--s3);
  border-radius: 4px;
  overflow: hidden;
}
.hw-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, var(--amber), var(--red));
}
.hw-pct {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
}

/* ── OUR STORY ── */
.story-section {
  background: var(--s1);
}
.story-inner {
  max-width: 620px;
}
.story-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.0;
  margin: 8px 0 14px;
}
.story-title em {
  font-style: italic;
  color: var(--red);
}
.story-body p {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 10px;
}
.story-sign {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  margin: 12px 0 18px;
}
.story-stats {
  display: flex;
  gap: 16px 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 16px;
}
.sts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.sts-n {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.sts-l {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.story-stats .sts:nth-child(even) .sts-n {
  color: var(--amber);
}
@media (max-width: 480px) {
  .sts-n {
    font-size: 1.6rem;
  }
  .story-stats {
    gap: 18px 24px;
  }
}

/* BRAND SECTION */
.brand-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}
.brand-text p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 12px;
  font-weight: 300;
}
.brand-sign {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 18px;
}
.brand-stats {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  margin-top: clamp(24px, 4vw, 40px);
}
.bs-n {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--red);
}
.bs-l {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.brand-photo-stack {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 360px;
}
@media (max-width: 768px) {
  .brand-photo-stack {
    max-width: 100%;
    aspect-ratio: 4/3;
  }
}
.bp-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.bp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--bg);
}
.bp-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* REVIEWS */
.reviews-track-wrap {
  overflow: hidden;
  margin-top: 40px;
  margin-left: calc(-1 * clamp(20px, 5vw, 72px));
  margin-right: calc(-1 * clamp(20px, 5vw, 72px));
  padding: 4px 0;
  cursor: grab;
}
.reviews-track-wrap:active {
  cursor: grabbing;
}
.reviews-track {
  display: flex;
  gap: 10px;
  width: max-content;
  will-change: transform;
}
.rev-img {
  width: clamp(150px, 20vw, 230px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--s2);
}
.rev-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.reviews-empty {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 40px;
  padding: 32px;
  opacity: 0.6;
}
.rev-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 6px 0 16px;
}
.rev-star {
  color: var(--amber);
  font-size: 1.2rem;
  line-height: 1;
}
.rev-score {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 6px;
  letter-spacing: 0.04em;
}

/* INSTAGRAM */
.ig-section {
  background: var(--s1);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 28px;
}
@media (max-width: 600px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--s2);
}
.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s,
    filter 0.4s;
}
.ig-cell:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}
.ig-ov {
  position: absolute;
  inset: 0;
  background: rgba(199, 34, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.ig-cell:hover .ig-ov {
  opacity: 1;
}
.ig-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 32px;
  border: 1px solid var(--bdr2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}
.ig-btn:hover {
  border-color: #c13584;
  color: #c13584;
  background: rgba(193, 53, 132, 0.06);
}

/* FOOTER */
footer {
  background: var(--s1);
  border-top: 1px solid var(--bdr);
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 72px) clamp(22px, 3vw, 36px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(22px, 4vw, 48px);
  margin-bottom: clamp(28px, 4vw, 48px);
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .f-brand {
    grid-column: 1 / -1;
  }
}
.f-brand p {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 240px;
  margin-top: 12px;
  font-weight: 300;
}
.f-social {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}
.soc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}
.soc:hover {
  border-color: var(--red);
  color: var(--red);
}
.f-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-col a {
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 300;
  transition: color 0.2s;
}
.f-col a:hover {
  color: var(--text);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--bdr);
  font-size: 0.68rem;
  color: var(--dim);
}
.footer-bottom a {
  color: var(--muted);
}

/* CART DRAWER */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.overlay.open {
  opacity: 1;
  pointer-events: all;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--s1);
  border-left: 1px solid var(--bdr);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .drawer {
    width: 100vw;
    border-left: none;
  }
}
.drawer.open {
  transform: none;
}
.dr-head {
  padding: 18px 22px;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dr-head h2 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.x-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  background: none;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 0.9rem;
}
.x-btn:hover {
  border-color: var(--red);
  color: var(--red);
}
.dr-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-empty {
  text-align: center;
  padding: 56px 20px;
  color: var(--muted);
}
.cart-empty svg {
  margin: 0 auto 14px;
  opacity: 0.18;
}
.cart-empty p {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.ci-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr);
  animation: sIn 0.3s ease;
}
@keyframes sIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ci-img {
  flex-shrink: 0;
  width: 72px;
  height: 50px;
  border-radius: 6px;
  overflow: hidden;
}
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ci-info {
  flex: 1;
  min-width: 0;
}
.ci-nm {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.ci-mt {
  font-size: 0.66rem;
  color: var(--muted);
  line-height: 1.55;
}
.ci-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.qr {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--bdr);
  background: none;
  color: var(--text);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.qb:hover {
  border-color: var(--red);
  color: var(--red);
}
.qv {
  font-size: 0.76rem;
  width: 15px;
  text-align: center;
  font-weight: 600;
}
.ci-pr {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.ci-del {
  background: none;
  border: none;
  color: var(--dim);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-top: 3px;
  display: block;
}
.ci-del:hover {
  color: var(--red);
}
.dr-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--bdr);
  background: var(--bg);
}
.dft-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.dft-lbl {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.dft-val {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--text);
  white-space: nowrap;
}
.ch-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.ch-btn:hover {
  background: var(--red-l);
  box-shadow: 0 6px 22px rgba(199, 34, 34, 0.35);
}
.clr-btn {
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  background: none;
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.clr-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* CHECKOUT MODAL */
.modal-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-ov.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--s1);
  border: 1px solid var(--bdr2);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  transform: scale(0.93) translateY(14px);
  transition: transform 0.4s var(--ease);
}
.modal-ov.open .modal {
  transform: none;
}
.modal-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--s1);
  z-index: 2;
}
.modal-head h2 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.modal-body {
  padding: 24px;
}
.fr {
  margin-bottom: 14px;
}
.fr label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.fr input,
.fr textarea,
.fr select {
  width: 100%;
  padding: 11px 14px;
  background: var(--s2);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  transition: border-color 0.25s;
  outline: none;
  resize: none;
}
.fr input:focus,
.fr textarea:focus,
.fr select:focus {
  border-color: var(--red);
}
.fr textarea {
  height: 68px;
}
.fr select option {
  background: var(--s2);
}
.fr input.err {
  border-color: var(--red);
}
.fr-hint {
  font-size: 0.63rem;
  color: var(--muted);
  margin-top: 4px;
}
.mos {
  background: var(--s2);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.mos-t {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}
.mos-r {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  padding: 3px 0;
  color: var(--muted);
}
.mos-r span:last-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.mos-tot {
  display: flex;
  justify-content: space-between;
  padding-top: 9px;
  margin-top: 7px;
  border-top: 1px solid var(--bdr);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  font-weight: 700;
}
.mos-tot span:last-child {
  color: var(--text);
  white-space: nowrap;
}
.sub-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.sub-btn:hover {
  background: var(--red-l);
  box-shadow: 0 8px 26px rgba(199, 34, 34, 0.35);
}
.sub-btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}
.modal-succ {
  padding: 48px 22px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.modal-succ.show {
  display: flex;
}
.succ-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red-dim);
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.modal-succ h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  font-weight: 700;
}
.modal-succ p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
  font-weight: 300;
}

/* ── CARD CAROUSEL ── */
.mc-car-wrap {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.mc-car-wrap img {
  pointer-events: none;
}
.mc-car-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}
.mc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(0 0 0 / 15%);
  transition: all 0.2s;
  flex-shrink: 0;
}
.mc-dot.active {
  background: #fff;
  transform: scale(1.25);
}
/* fullscreen modal on mobile */
@media (max-width: 768px) {
  .mg-ov {
    padding: 0;
    align-items: flex-end;
  }
  .mg-modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .mg-nav {
    display: none !important;
  }
}

/* swipe hint — pill with arrows */
.swipe-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  white-space: nowrap;
}
.swipe-hint.show {
  animation: swipeFade 3s ease forwards;
}
.swipe-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 9px 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.swipe-arr-l,
.swipe-arr-r {
  color: rgba(255, 255, 255, 0.7);
}
.swipe-hint.show .swipe-arr-l {
  animation: swipeBounceL 3s ease forwards;
}
.swipe-hint.show .swipe-arr-r {
  animation: swipeBounceR 3s ease forwards;
}
@keyframes swipeFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swipeBounceL {
  0%,
  12% {
    transform: translateX(0);
    opacity: 0.45;
  }
  28% {
    transform: translateX(-5px);
    opacity: 1;
  }
  42% {
    transform: translateX(0);
    opacity: 0.45;
  }
  58% {
    transform: translateX(-5px);
    opacity: 1;
  }
  72% {
    transform: translateX(0);
    opacity: 0.45;
  }
  100% {
    transform: translateX(0);
    opacity: 0.45;
  }
}
@keyframes swipeBounceR {
  0%,
  12% {
    transform: translateX(0);
    opacity: 0.45;
  }
  28% {
    transform: translateX(5px);
    opacity: 1;
  }
  42% {
    transform: translateX(0);
    opacity: 0.45;
  }
  58% {
    transform: translateX(5px);
    opacity: 1;
  }
  72% {
    transform: translateX(0);
    opacity: 0.45;
  }
  100% {
    transform: translateX(0);
    opacity: 0.45;
  }
}

/* ── IMG ZOOM OVERLAY ── */
#imgZoomOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#imgZoomOverlay.open {
  display: flex;
}

/* ── GALLERY MODAL ── */
.mg-ov {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mg-ov.open {
  opacity: 1;
  pointer-events: all;
}
.mg-modal {
  background: var(--s1);
  border: 1px solid var(--bdr2);
  border-radius: var(--radius);
  width: 100%;
  max-width: 700px;
  max-height: 94vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.35s var(--ease);
}
.mg-ov.open .mg-modal {
  transform: none;
}
.mg-head {
  padding: 15px 20px;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.mg-head h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  font-weight: 700;
}
.mg-main {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--s2);
  overflow: hidden;
  flex-shrink: 0;
}
.mg-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.mg-main img.fade {
  opacity: 0;
}
.mg-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.mg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  z-index: 2;
}
.mg-nav:hover {
  background: var(--red);
  border-color: var(--red);
}
.mg-prev {
  left: 12px;
}
.mg-next {
  right: 12px;
}
.mg-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
  overflow-x: auto;
  background: var(--bg);
  border-top: 1px solid var(--bdr);
  flex-shrink: 0;
}
.mg-thumbs::-webkit-scrollbar {
  height: 3px;
}
.mg-desc {
  padding: 12px 20px;
  font-size: 0.83rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
  flex-shrink: 0;
}
.mg-desc p {
  text-indent: 0.5em;
  margin: 0;
}
.mg-desc p + p {
  margin-top: 6px;
  font-style: italic;
}
.mg-shape {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.mg-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.5;
}
.mg-thumb:hover {
  opacity: 0.8;
}
.mg-thumb.active {
  border-color: var(--red);
  opacity: 1;
}
.mg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mg-footer {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bdr);
  background: var(--s1);
  flex-shrink: 0;
}
.mg-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  white-space: nowrap;
}
.mg-cta {
  padding: 11px 26px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  transition: all 0.3s;
}
.mg-cta:hover {
  background: var(--red-l);
  box-shadow: 0 6px 22px rgba(199, 34, 34, 0.4);
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--s2);
  border: 1px solid var(--red);
  border-radius: 40px;
  padding: 9px 22px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  z-index: 9000;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  opacity: 0;
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.toast a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 600;
}
/* ── SEE ALL CTA ── */
.see-all-wrap {
  text-align: center;
  padding: 28px 16px;
}
.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--acc);
  text-decoration: none;
  border: 1px solid var(--acc);
  border-radius: 99px;
  padding: 10px 24px;
  transition:
    background 0.2s,
    color 0.2s;
}
.see-all-link:hover {
  background: var(--acc);
  color: #000;
}

/* ── PROMO BANNER ── */
.promo-bar {
  overflow: hidden;
  line-height: 0;
}
.promo-img-link {
  display: block;
  line-height: 0;
}
.promo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CART DISCOUNT ── */
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 2px 0;
}
.cart-subtotal-row .orig {
  text-decoration: line-through;
  color: var(--dim);
  white-space: nowrap;
}
.cart-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  margin: 6px 0;
  background: var(--amber);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}
.cart-discount-row .dlbl {
  color: rgba(0, 0, 0, 0.65);
}
.cart-discount-row .damt {
  color: rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}
.cart-upsell {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 12px;
  margin: 4px 0 8px;
  background: rgba(249, 171, 81, 0.12);
  border: 1px solid rgba(249, 171, 81, 0.4);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: #b8750a;
  line-height: 1.5;
}

/* ── MODAL DISCOUNT ── */
.mos-discount {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
}
.mos-discount span:last-child {
  white-space: nowrap;
}
.mos-orig {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.mos-orig span:last-child {
  text-decoration: line-through;
  color: var(--dim);
  white-space: nowrap;
}
.ac-wrap {
  position: relative;
}
.ac-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--s2);
  border: 1px solid var(--bdr2);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  max-height: 210px;
  overflow-y: auto;
  z-index: 50;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.ac-item {
  padding: 9px 14px;
  font-size: 0.81rem;
  cursor: pointer;
  border-bottom: 1px solid var(--bdr);
  transition: background 0.15s;
  line-height: 1.4;
}
.ac-item:last-child {
  border-bottom: none;
}
.ac-item:hover {
  background: var(--s3);
}
.ac-item.ac-empty,
.ac-item.ac-loading {
  color: var(--muted);
  cursor: default;
  font-style: italic;
}
.fr-hint-np {
  font-size: 0.63rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.mcar-outer {
  overflow: hidden;
  touch-action: pan-y;
}

#fTrack {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
  -webkit-user-drag: none;
}

.ftb img {
  pointer-events: none;
}

/* ── NAVIGATION ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover {
  background: var(--bdr);
  color: var(--text);
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

/* burger spans */
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}
.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile menu overlay — below the header */
.mob-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: rgba(244, 245, 244, 0.97);
  backdrop-filter: blur(20px);
  z-index: 101;
  flex-direction: column;
  padding: 16px 28px 24px;
  gap: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mob-menu-top {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid var(--bdr);
  margin: 0 -28px 12px;
  padding: 0 28px;
}
.mob-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  color: var(--text);
  padding: 0;
}
.mob-close-btn:hover {
  background: var(--bdr);
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--bdr);
}
.mob-menu a:last-child {
  border-bottom: none;
}
.mob-menu a:hover {
  color: var(--acc);
}
.mob-menu .mob-ig {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--bdr);
  border-bottom: none;
  font-size: 0.95rem;
  color: var(--muted);
}
.mob-menu .mob-ig:hover {
  color: var(--text);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.faq-item {
  border-bottom: 1px solid var(--bdr);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  font-family: inherit;
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.65;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 16px;
}

/* ── TRACKING ── */
.track-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 28px auto 0;
}
.track-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--bdr2);
  border-radius: var(--radius);
  background: var(--s1);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.track-input:focus {
  border-color: var(--acc);
}
.track-btn {
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.track-btn:hover {
  background: var(--red-l);
}
.track-result {
  max-width: 480px;
  margin: 20px auto 0;
  background: var(--s1);
  border: 1px solid var(--bdr);
  border-radius: var(--radius);
  padding: 20px;
  display: none;
}
.track-result.show {
  display: block;
}
.track-status {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.track-row {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--dim);
  padding: 4px 0;
}
.track-row span:first-child {
  color: var(--muted);
  min-width: 120px;
}
@media (max-width: 540px) {
  .track-form {
    flex-direction: column;
  }
  .track-row {
    flex-direction: column;
    gap: 2px;
  }
  .track-row span:first-child {
    min-width: 0;
  }
}
