@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800&display=swap");

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

:root {
  --accent: #c9762c;
  --accent-strong: #9f5424;
  --accent-soft: #fff0df;
  --ink: #15130f;
  --ink-muted: #676057;
  --line: #e8dfd3;
  --sand: #fbf4ea;
  --cream: #fffaf3;
  --white: #ffffff;
  --charcoal: #24211d;
  --black-with-opacity: rgba(10, 8, 6, 0.78);
  --shadow: 0 24px 70px rgba(67, 44, 23, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
}

html {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 6% 16%, rgba(201, 118, 44, 0.18), transparent 32%),
    radial-gradient(circle at 90% 8%, rgba(43, 78, 74, 0.18), transparent 34%),
    linear-gradient(135deg, #fffaf2 0%, #f6ead8 48%, #eef1e8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 19, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 19, 15, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
}

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

button,
input {
  font: inherit;
}

.announcement {
  display: flex;
  justify-content: center;
  padding: 11px 16px;
  color: var(--cream);
  background: linear-gradient(90deg, #17130f, #3a2a1c 55%, #17130f);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  min-height: calc(100vh - 39px);
  padding: 0 22px 64px;
  margin: auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 22px;
  margin-bottom: 38px;
  border-bottom: 1px solid rgba(104, 96, 87, 0.18);
  position: relative;
}

.nav-first {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-first .menu-icon {
  display: none;
}

.nav-first .backdrop {
  display: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--cream);
  border-radius: 13px;
  background: linear-gradient(135deg, #11100d, #4e3a26);
  box-shadow: 0 12px 30px rgba(36, 33, 29, 0.22);
  font-family: "Fraunces", serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links .close-icon {
  display: none;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-second {
  display: flex;
  align-items: center;
  gap: 28px;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(104, 96, 87, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 30px rgba(67, 44, 23, 0.08);
}

.language-switch button {
  min-width: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.language-switch button.active,
.language-switch button[aria-pressed="true"] {
  color: var(--cream);
  background: var(--charcoal);
  box-shadow: 0 10px 20px rgba(21, 19, 15, 0.18);
}

.language-switch button[aria-pressed="false"] {
  color: var(--ink-muted);
  background: transparent;
  box-shadow: none;
}

/* Main */
.main {
  display: grid;
  grid-template-columns: minmax(340px, 1.02fr) minmax(360px, 0.98fr);
  gap: 66px;
  align-items: center;
}

/* Image gallery */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-kicker {
  width: fit-content;
  padding: 9px 14px;
  color: #31514c;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(49, 81, 76, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(49, 81, 76, 0.1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery .main-img {
  position: relative;
}

.gallery .main-img img {
  display: none;
}

.gallery .main-img img.active {
  display: block;
  width: min(100%, 500px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.media-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 9px 13px;
  color: var(--cream);
  background: rgba(21, 19, 15, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.gallery .thumb-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(100%, 500px);
}

.gallery .thumb-list div {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(67, 44, 23, 0.08);
}

.gallery .thumb-list img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.gallery .thumb-list img:hover {
  opacity: 0.72;
  transform: scale(1.04);
}

.gallery .thumb-list .active {
  border-color: var(--accent);
}

.gallery .thumb-list .active img {
  opacity: 0.58;
}

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  background: var(--black-with-opacity);
  align-items: center;
  justify-content: center;
  padding: 70px 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox.active .gallery {
  width: min(520px, 100%);
}

.lightbox .main-img {
  position: relative;
}

.lightbox .icon-prev,
.lightbox .icon-next {
  position: absolute;
  top: 50%;
  z-index: 3;
  height: 58px;
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.icon-prev:hover,
.icon-next:hover {
  cursor: pointer;
}

.icon-prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.icon-next {
  right: 0;
  transform: translate(50%, -50%);
}

.icon-close {
  position: absolute;
  right: 4px;
  top: -42px;
}

.icon-close svg path {
  fill: var(--white);
}

.icon-close svg path:hover {
  cursor: pointer;
  fill: var(--accent);
}

/* Content */
.content {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 28px 80px rgba(67, 44, 23, 0.12);
  backdrop-filter: blur(18px);
}

.rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #a56321;
  font-size: 14px;
}

.rating strong {
  color: var(--ink);
}

.rating small {
  color: var(--ink-muted);
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content h1,
.content h2 {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.7vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.product-desc {
  max-width: 580px;
  margin: 18px 0 20px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.62;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.benefit-grid div {
  padding: 14px;
  border: 1px solid rgba(104, 96, 87, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.benefit-grid span {
  display: block;
  margin-bottom: 4px;
  color: #31514c;
  font-weight: 900;
}

.benefit-grid p {
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.price-info {
  margin-bottom: 18px;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.current-price {
  color: var(--ink);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.discount {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--accent-strong);
  background-color: var(--accent-soft);
  border: 1px solid rgba(201, 118, 44, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.prev-price {
  margin-top: 6px;
  color: #9b9389;
  font-size: 17px;
  font-weight: 800;
  text-decoration: line-through;
}

.installments {
  margin-top: 6px;
  color: #31514c;
  font-size: 14px;
  font-weight: 900;
}

.add-to-cart-container {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: center;
}

.counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(104, 96, 87, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.counter button {
  width: 50px;
  height: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  transition: background 180ms ease;
}

.counter button:hover {
  background: var(--accent-soft);
}

.counter svg use {
  fill: var(--accent);
}

.counter .count {
  font-weight: 900;
}

.add-to-cart {
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
  border: 0;
  min-height: 58px;
  width: 100%;
  border-radius: 16px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  padding: 0 18px;
  box-shadow: 0 18px 36px rgba(159, 84, 36, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(159, 84, 36, 0.4);
}

.add-to-cart svg path {
  fill: var(--cream);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(104, 96, 87, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31514c;
}

/* Long-form conversion sections */
.conversion-story {
  display: grid;
  gap: 34px;
  margin-top: 86px;
}

.story-card,
.spec-strip,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: 0 28px 80px rgba(67, 44, 23, 0.12);
  backdrop-filter: blur(18px);
}

.story-card {
  display: grid;
  gap: 32px;
  padding: clamp(24px, 5vw, 56px);
}

.story-card img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(67, 44, 23, 0.16);
}

.story-intro {
  grid-template-columns: 1fr;
}

.split {
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.88fr);
}

.split.reverse img {
  order: 2;
}

.story-copy {
  max-width: 920px;
}

.section-kicker {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 13px;
  color: #31514c;
  background: rgba(49, 81, 76, 0.09);
  border: 1px solid rgba(49, 81, 76, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy h2,
.final-cta h2 {
  max-width: 1020px;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.story-copy h3 {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.story-copy p {
  max-width: 880px;
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.78;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
}

.spec-strip div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(104, 96, 87, 0.12);
}

.spec-strip span {
  display: block;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.spec-strip p {
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-card {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.86fr);
  align-items: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.reason-grid div {
  padding: 20px;
  border: 1px solid rgba(104, 96, 87, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
}

.reason-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.reason-grid p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
}

.final-cta {
  overflow: hidden;
  position: relative;
  padding: clamp(34px, 6vw, 72px);
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #17130f, #4a3521 58%, #31514c);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(201, 118, 44, 0.28);
}

.final-cta p {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffdfbc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: var(--cream);
}

.final-cta a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 28px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

/* Footer */
.site-footer {
  display: grid;
  gap: 28px;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 28px 80px rgba(67, 44, 23, 0.1);
  backdrop-filter: blur(18px);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(104, 96, 87, 0.14);
}

.footer-brand p {
  max-width: 560px;
  color: var(--ink-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.footer-grid div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(104, 96, 87, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.footer-grid h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-grid a {
  color: var(--accent-strong);
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #8a8177;
  font-size: 12px;
  font-weight: 800;
}

/* Cart */
.cart {
  position: relative;
}

.cart-icon {
  cursor: pointer;
  width: 23px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(13%) saturate(386%) hue-rotate(349deg) brightness(92%) contrast(89%);
}

.cart-container {
  right: -88px;
  top: 52px;
  z-index: 9;
  position: absolute;
  width: min(360px, calc(100vw - 28px));
  min-height: 260px;
  overflow: hidden;
  background: rgba(255, 250, 243, 0.98);
  border: 1px solid rgba(104, 96, 87, 0.12);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(21, 19, 15, 0.18);
  display: none;
}

.cart-container.active {
  display: flex;
  flex-direction: column;
}

.cart-title {
  padding: 22px 20px;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 1px solid rgba(104, 96, 87, 0.14);
}

.cart .cart-items {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cart .cart-items.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 178px;
  font-weight: 900;
}

.cart .cart-items.empty .cart-empty {
  color: var(--ink-muted);
  display: inline-block;
}

.cart .cart-items .cart-empty {
  display: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 54px 1fr 22px;
  align-items: center;
  gap: 14px;
  color: var(--ink-muted);
  font-size: 14px;
}

.cart-item img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item .item-details {
  min-width: 0;
}

.cart-item .item-details > div:first-child {
  overflow: hidden;
  color: var(--ink);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item .total-price {
  color: var(--ink);
  font-weight: 900;
}

.checkout.empty {
  display: none;
}

.checkout {
  height: 56px;
  margin: auto 20px 20px;
  border: none;
  color: var(--cream);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 14px;
  font-weight: 900;
}

.checkout:hover {
  cursor: pointer;
}

.cart-count {
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: -11px;
  background-color: var(--accent);
  color: var(--white);
  min-width: 25px;
  min-height: 17px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.delete-item {
  border: none;
  background: none;
  cursor: pointer;
}

@media (max-width: 960px) {
  .main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery .main-img img.active,
  .gallery .thumb-list {
    width: 100%;
  }

  .content {
    max-width: 720px;
    margin: 0 auto;
  }

  .split,
  .split.reverse,
  .proof-card {
    grid-template-columns: 1fr;
  }

  .split.reverse img {
    order: 0;
  }

  .spec-strip,
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 755px) {
  .announcement {
    font-size: 11px;
    line-height: 1.45;
  }

  .container {
    padding: 0 16px 42px;
  }

  .navbar {
    margin-bottom: 20px;
    border-bottom: none;
  }

  .nav-first,
  .nav-second {
    gap: 18px;
  }

  .language-switch {
    padding: 3px;
  }

  .language-switch button {
    min-width: 34px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .logo {
    font-size: 19px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .nav-first .menu-icon {
    cursor: pointer;
    display: inline-block;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 265px;
    width: 78vw;
    height: 100vh;
    background: var(--cream);
    align-items: start;
    z-index: 15;
    padding: 27px 28px;
    box-shadow: 25px 0 80px rgba(21, 19, 15, 0.26);
  }

  .nav-first .backdrop.active {
    background: var(--black-with-opacity);
    width: 100vw;
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
  }

  .nav-links.active .close-icon {
    display: inline-block;
    margin-bottom: 30px;
    cursor: pointer;
  }

  .nav-links a {
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
  }

  .nav-links.active a:hover::after {
    bottom: -5px;
  }

  /* main */
  .main {
    gap: 24px;
  }

  .main .default {
    display: none;
  }

  .lightbox {
    display: flex;
    position: relative;
    inset: auto;
    width: calc(100% + 32px);
    height: auto;
    padding: 0;
    margin: 0 -16px;
    background: none;
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox .gallery {
    width: 100%;
  }

  .main .thumb-list,
  .main .icon-close {
    display: none;
  }

  .main .icon-prev {
    left: 24px;
    height: 46px;
    width: 46px;
    transform: translateY(-50%);
  }

  .main .icon-next {
    right: 24px;
    height: 46px;
    width: 46px;
    transform: translateY(-50%);
  }

  .gallery .main-img img.active {
    width: 100%;
    max-width: none;
    border-radius: 0 0 28px 28px;
    border-left: 0;
    border-right: 0;
  }

  .content {
    padding: 24px;
    border-radius: 26px;
  }

  .content h1,
  .content h2 {
    font-size: clamp(37px, 13vw, 52px);
  }

  .product-desc {
    margin: 18px 0 22px;
    font-size: 15px;
    line-height: 1.65;
  }

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

  .price-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .add-to-cart-container {
    grid-template-columns: 1fr;
  }

  .counter {
    width: 100%;
  }

  .counter button {
    width: 38%;
  }

  .cart-container {
    z-index: 20;
    right: -52px;
    top: 44px;
  }

  .conversion-story {
    gap: 22px;
    margin-top: 46px;
  }

  .story-card,
  .final-cta {
    padding: 24px;
    border-radius: 26px;
  }

  .story-card img {
    border-radius: 20px;
  }

  .story-copy h2,
  .final-cta h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .story-copy h3 {
    font-size: clamp(29px, 9vw, 38px);
  }

  .story-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .spec-strip,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .spec-strip {
    padding: 14px;
    border-radius: 26px;
  }

  .site-footer {
    padding: 24px;
    border-radius: 26px;
  }
}

@media (max-width: 390px) {
  .nav-second {
    gap: 14px;
  }

  .logo span:last-child {
    display: none;
  }

  .cart-container {
    right: -44px;
  }
}

/* Keep CartPanda's script active while hiding its injected visual badges/footer. */
[class*="cartpanda" i],
[id*="cartpanda" i],
[class*="cpsales" i],
[id*="cpsales" i],
[class*="cartx" i],
[id*="cartx" i],
iframe[src*="cartpanda" i],
iframe[src*="cartx" i],
a[href*="cartpanda" i]:not(.add-to-cart):not(.checkout),
a[href*="cartx" i]:not(.add-to-cart):not(.checkout) {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.social-proof-toast {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  max-width: min(380px, calc(100vw - 32px));
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 24px 70px rgba(21, 19, 15, 0.18);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.social-proof-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--cream);
  border-radius: 14px;
  background: linear-gradient(135deg, #31514c, #1f3531);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(49, 81, 76, 0.22);
}

.toast-title {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.toast-message {
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 755px) {
  .social-proof-toast {
    right: 16px;
    left: 16px;
    bottom: 16px;
  }
}
