/*!******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/Spark/assets/styles/single.scss ***!
  \******************************************************************************************************************************/
@charset "UTF-8";
.product-section {
  padding: 24px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-grid {
  grid-template-areas: "gallery info" "duo     duo" "bonus   bonus" "content info2";
}

.gallery {
  grid-area: gallery;
}

.product-info {
  grid-area: info;
}

.product-content {
  grid-area: content;
}

.buybox-aside {
  grid-area: info2;
}

.spotlight-fullrow {
  grid-area: duo;
  padding: 6px 0 2px;
}

.bonus-bundle {
  grid-area: bonus;
}

.info-accordions {
  margin-bottom: 12px;
}

.cv-section--indesc {
  margin-top: 24px;
}

.cv-section--indesc + .cv-section--indesc {
  margin-top: 32px;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 24px;
  }
  .gallery,
  .product-info,
  .product-content,
  .buybox-aside,
  .spotlight-fullrow,
  .bonus-bundle {
    grid-area: auto;
  }
}
/* Gallery */
.gallery-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 107, 53, 0.12), rgba(255, 143, 101, 0.08) 30%, rgba(245, 158, 11, 0.06) 50%, rgba(255, 107, 53, 0.08) 70%, rgba(255, 107, 53, 0.12));
  padding: 2px;
}

.gallery-main-inner {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.gallery-main-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.gallery-slide {
  width: 100%;
  flex-shrink: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, color 0.2s, box-shadow 0.35s;
  color: var(--slate-500);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.gallery-arrow svg {
  width: 16px;
  height: 16px;
}

.gallery-arrow-l {
  left: 12px;
}

.gallery-arrow-r {
  right: 12px;
}

.gallery-arrow.show {
  pointer-events: auto;
}

.gallery-main:hover .gallery-arrow.show {
  opacity: 1;
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.gallery-main-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.7) 70%, transparent);
}

.gallery-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  padding: 5px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.88);
  color: var(--orange-light);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(225, 29, 72, 0.82);
}

.gallery-indicators {
  display: flex;
  gap: 6px;
  padding: 14px 4px 0;
}

.gallery-indicator {
  flex: 1;
  height: 2.5px;
  border-radius: 2px;
  background: var(--slate-200);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.gallery-indicator::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-indicator.active::after {
  transform: scaleX(1);
}

.gallery-indicator:hover {
  background: var(--slate-300);
}

/* Product info */
.product-info {
  padding-top: 4px;
}

.product-cat-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
  font-family: var(--f-mono);
}

.product-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  line-height: 1;
}

.product-stars-wrap {
  display: flex;
  align-items: center;
  gap: 1px;
}

.product-star {
  width: 16px;
  height: 16px;
  color: var(--accent);
  display: block;
  margin: 0 -1.5px;
}

.product-stars-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.product-reviews-link {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 500;
  transition: color 0.2s;
  line-height: 1;
}

.product-reviews-link:hover {
  color: var(--orange);
}

.product-rating-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate-300);
  flex-shrink: 0;
}

.product-sold {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.product-sold::before {
  display: none;
}

/* Urgency strip */
.urgency-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.05));
  border: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 22px;
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 600;
  overflow: hidden;
  position: relative;
}

.urgency-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: var(--accent-dark);
  margin-top: -1px;
}

.urgency-rotator {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1.4em;
  overflow: hidden;
}

.urgency-msg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1.4;
}

.urgency-msg.active {
  opacity: 1;
  transform: translateY(0);
}

.urgency-msg.exit {
  opacity: 0;
  transform: translateY(-100%);
}

.urgency-msg b {
  color: var(--slate-900);
  font-weight: 700;
}

.urgency-msg span {
  color: var(--slate-500);
  font-weight: 400;
}

/* Price block */
.price-block {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94) 30%, rgba(250, 250, 252, 0.95) 60%, rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--f-display);
  letter-spacing: -0.02em;
}

.product-price-old {
  font-size: 1rem;
  color: var(--slate-300);
  text-decoration: line-through;
}

.product-save-badge {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-price-note {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin: 0;
}

.product-price-note b {
  color: var(--slate-500);
}

/* What you get */
.whats-included {
  margin-bottom: 24px;
}

.product-info .whats-included {
  padding: 0 14px;
}

.whats-included-title {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
  margin-bottom: 12px;
}

.whats-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

.whats-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whats-check svg {
  width: 11px;
  height: 11px;
  color: #fff;
}

.whats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.product-info .whats-grid .whats-item {
  padding: 2px 0;
  font-size: 0.76rem;
  gap: 8px;
}

.whats-grid .whats-check {
  width: 16px;
  height: 16px;
}

.whats-grid .whats-check svg {
  width: 9px;
  height: 9px;
}

@media (max-width: 400px) {
  .whats-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA zone */
.cta-zone {
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.qty-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--slate-200);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s;
}

.qty-wrap:hover {
  border-color: var(--slate-300);
}

.qty-btn {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--slate-400);
  transition: all 0.2s;
  background: transparent;
}

.qty-btn:hover {
  background: var(--slate-50);
  color: var(--navy);
}

.qty-val {
  width: 40px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  border: none;
  background: transparent;
  font-family: var(--f-body);
  outline: none;
  -moz-appearance: textfield;
}

.qty-val::-webkit-inner-spin-button, .qty-val::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-cart {
  flex: 1;
  min-width: 200px;
  padding: 16px 32px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-add-cart::after {
  display: none;
}

.btn-add-cart:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

.btn-add-cart svg {
  width: 20px;
  height: 20px;
}

.btn-wishlist {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid var(--slate-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.25s;
  flex-shrink: 0;
  color: var(--slate-300);
}

.btn-wishlist:hover {
  border-color: var(--orange);
  background: var(--orange-50);
  color: var(--orange);
}

.btn-buy-now {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
}

.btn-buy-now:hover {
  background: var(--slate-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.2);
}

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 0 2px;
  margin-top: 11px;
}

.social-proof-avatars {
  display: flex;
  flex-shrink: 0;
}

img.social-proof-av, .social-proof-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -6px;
  flex-shrink: 0;
}

.social-proof-av:first-child {
  margin-left: 0;
}

.social-proof-av img, .img.social-proof-av {
  object-fit: cover;
}

.social-proof-text {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.4;
}

.social-proof-text b {
  color: var(--navy);
  font-weight: 600;
}

/* Trust badges */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4px;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94));
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  text-align: center;
  border-right: 1px solid rgba(15, 23, 42, 0.04);
  transition: all 0.2s;
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge:hover {
  background: var(--orange-50);
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  color: var(--orange);
}

.trust-badge:hover .trust-badge-icon {
  background: var(--orange-glow);
}

.trust-badge-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--slate-400);
  line-height: 1.3;
}

/* Accordions */
.info-accordions {
  background: var(--white);
  border-radius: 20px;
  padding: 4px 20px;
  margin-top: 12px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.info-acc {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.info-acc:last-child {
  border-bottom: none;
}

.info-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.info-acc-header:hover {
  color: var(--orange);
}

.info-acc-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-acc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.2s;
  color: var(--orange);
}

.info-acc-icon svg {
  flex-shrink: 0;
}

.info-acc:hover .info-acc-icon {
  background: var(--orange-glow);
}

.info-acc-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--slate-300);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-acc.open .info-acc-chevron {
  transform: rotate(180deg);
}

.info-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s;
  padding: 0 0 0 40px;
}

.info-acc.open .info-acc-body {
  max-height: 300px;
  padding: 0 0 18px 40px;
}

.info-acc-body p {
  font-size: 0.82rem;
  color: var(--slate-400);
  line-height: 1.65;
  margin: 0 0 6px;
}

.info-acc-body p:last-child {
  margin-bottom: 0;
}

.vendor-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-500);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s;
}

.vendor-badge:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
}

.social-proof-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-block;
}

.sp-av-1 {
  background: #FDBA74;
}

.sp-av-2 {
  background: #93C5FD;
}

.sp-av-3 {
  background: #6EE7B7;
}

.sp-av-4 {
  background: #C4B5FD;
}

.product-content {
  padding-top: 8px;
  padding-bottom: 8px;
}

.tabs-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-400);
  background: transparent;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: all 0.3s;
}

.tab-btn:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
}

.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(15, 23, 42, 0.06);
  box-shadow: var(--sh-sm);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

/* Description blocks */
.desc-blocks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.db-hero {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2640 50%, #243352 100%);
  padding: 48px 36px;
  text-align: center;
  position: relative;
}

.db-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.12), transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, 0.06), transparent 50%);
  pointer-events: none;
}

.db-hero > * {
  position: relative;
  z-index: 1;
}

.db-hero-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--f-mono);
}

.db-hero h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
  font-style: italic;
}

.db-hero-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.db-hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.db-hero-stat {
  text-align: center;
}

.db-hero-stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: #fff;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 2px;
}

.db-hero-stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

.db-hook {
  border-radius: 20px;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 36px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.db-hook-lead {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 16px;
  font-style: italic;
}

.db-hook p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin: 0 0 16px;
}

.db-hook-accent {
  font-weight: 600;
  color: var(--orange-dark);
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}

.db-quote {
  border-radius: 20px;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  padding: 40px 36px;
  text-align: center;
}

.db-quote-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.db-quote p {
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--orange-dark);
  font-style: italic;
  max-width: 440px;
  margin: 0 auto 18px;
  line-height: 1.5;
}

.db-quote-line {
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  margin: 0 auto;
}

.db-features {
  border-radius: 20px;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 36px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.db-features-tag {
  display: inline-block;
  background: var(--orange-50);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--f-mono);
}

.db-features h2 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 24px;
  line-height: 1.3;
}

.db-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--slate-100);
}

.db-feat-item:last-child {
  border-bottom: none;
}

.db-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.db-feat-icon.g1 {
  background: linear-gradient(135deg, var(--navy), #243352);
}

.db-feat-icon.g2 {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.db-feat-text h4 {
  font-family: var(--f-display);
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0 0 3px;
  font-style: italic;
}

.db-feat-text p {
  font-size: 0.82rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin: 0;
}

.db-reviews {
  border-radius: 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  padding: 36px;
}

.db-reviews-tag {
  display: inline-block;
  background: var(--orange-50);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--f-mono);
}

.db-reviews h2 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 24px;
  line-height: 1.3;
}

.db-review {
  padding: 20px 0;
  border-bottom: 1px solid var(--slate-200);
}

.db-review:last-child {
  border-bottom: none;
}

.db-review-stars {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.db-review-text {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 12px;
}

.db-review-author {
  font-family: var(--f-display);
  font-size: 0.82rem;
  color: var(--navy);
  font-style: italic;
}

.db-review-author span {
  font-family: var(--f-body);
  font-weight: 400;
  font-style: normal;
  color: var(--slate-400);
  font-size: 0.78rem;
}

.db-whom {
  border-radius: 20px;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94));
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 36px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.db-whom h2 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 22px;
  line-height: 1.3;
}

.db-whom-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.7;
}

.db-whom-check {
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
  font-weight: 700;
}

.db-cta {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2640 50%, #243352 100%);
  padding: 44px 36px;
  text-align: center;
  position: relative;
}

.db-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.1), transparent 60%);
  pointer-events: none;
}

.db-cta > * {
  position: relative;
  z-index: 1;
}

.db-cta-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.db-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
  font-style: italic;
}

.db-cta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
  line-height: 1.7;
}

.db-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
}

.db-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

/* Reviews tab */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94));
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (max-width: 640px) {
  .reviews-summary {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .reviews-bars {
    width: 100%;
    flex: none;
  }
}
.reviews-big-score {
  text-align: center;
  flex-shrink: 0;
}

.reviews-big-num {
  font-family: var(--f-display);
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
}

.reviews-big-stars {
  color: var(--orange);
  font-size: 0.85rem;
  margin: 5px 0 3px;
}

.reviews-big-total {
  font-size: 0.72rem;
  color: var(--slate-400);
}

.reviews-bars {
  flex: 1;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.review-bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-400);
  width: 12px;
  text-align: right;
}

.review-bar-track {
  flex: 1;
  height: 5px;
  background: var(--slate-100);
  border-radius: 3px;
  overflow: hidden;
  min-width: 0;
}

.review-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.review-card {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94));
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.review-author-date {
  font-size: 0.7rem;
  color: var(--slate-400);
}

.review-stars {
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--emerald);
  margin-top: 8px;
}

.review-verified::before {
  content: "✓";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--emerald-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
}

.btn-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--f-body);
  transition: all 0.3s;
  margin-top: 6px;
}

.btn-load-more:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-50);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
}

.desc-content {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94));
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.desc-content h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.desc-content p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 14px;
}

.desc-content p:last-child {
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-sub {
  font-size: 1rem;
  color: var(--slate-400);
  max-width: 540px;
  margin: 0 auto;
}

.related-section {
  padding: 64px 0 20px;
  background: var(--page-bg);
}

.pcard-carousel {
  position: relative;
}

.pcard-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 12px 0 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

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

.pcard-track .pcard {
  flex-shrink: 0;
  width: calc((100% - 48px) / 5);
  scroll-snap-align: start;
}

.pcard-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, color 0.2s, box-shadow 0.35s;
  color: var(--slate-500);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.pcard-arrow::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  width: 70px;
}

.pcard-arrow-l {
  left: -22px;
}

.pcard-arrow-l::before {
  right: -30px;
}

.pcard-arrow-r {
  right: -22px;
}

.pcard-arrow-r::before {
  left: -30px;
}

.pcard-arrow.show {
  pointer-events: auto;
}

.pcard-carousel:hover .pcard-arrow.show {
  opacity: 1;
}

.pcard-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  transform: translateY(-55%) scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.pcard-arrow:active {
  transform: translateY(-55%) scale(0.95);
}

.pcard-arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

@media (max-width: 768px) {
  .pcard-arrow {
    display: none;
  }
  .pcard-track .pcard {
    width: calc((100% - 20px) / 2.2);
  }
  .pcard-track {
    scroll-snap-type: x proximity;
  }
}
@media (max-width: 540px) {
  .pcard-track .pcard {
    width: 44%;
    min-width: 155px;
  }
  .pcard-track {
    gap: 10px;
  }
}
.pcard {
  position: relative;
  cursor: pointer;
  border-radius: 20px;
  padding: 1.5px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: linear-gradient(165deg, rgba(210, 215, 225, 0.5), rgba(180, 185, 200, 0.35) 30%, rgba(160, 168, 185, 0.3) 50%, rgba(180, 185, 200, 0.35) 70%, rgba(210, 215, 225, 0.45));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03), 0 6px 12px rgba(15, 23, 42, 0.04), 0 12px 28px rgba(15, 23, 42, 0.06), 0 20px 48px rgba(15, 23, 42, 0.04);
}

.pcard-inner {
  border-radius: 19px;
  overflow: hidden;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.96), rgba(252, 252, 254, 0.94) 30%, rgba(250, 250, 252, 0.95) 60%, rgba(255, 255, 255, 0.96));
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  position: relative;
}

.pcard-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.7) 70%, transparent);
}

.pcard-top {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin: 8px 8px 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-top-icon {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pcard:hover .pcard-top-icon {
  transform: scale(1.1) translateY(-4px);
}

.pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pcard:hover .pcard-img {
  transform: scale(1.06);
}

.pcard-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.65);
  color: var(--orange-light);
}

.pcard-cart {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 4;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 700;
  transform: translateY(14px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pcard:hover .pcard-cart {
  opacity: 1;
  transform: translateY(0);
}

.pcard-cart:hover {
  background: rgba(255, 107, 53, 0.95);
  border-color: rgba(255, 107, 53, 0.4);
}

.pcard-body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.pcard-cat {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.03);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-400);
  margin-bottom: 8px;
  align-self: flex-start;
  font-family: var(--f-mono);
}

.pcard-name {
  font-family: var(--f-serif);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 75%, transparent 98%);
  -webkit-mask-image: linear-gradient(90deg, #000 75%, transparent 98%);
}

.pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding-top: 10px;
  margin-top: auto;
}

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

.pcard-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.pcard-price-old {
  font-size: 0.72rem;
  color: var(--slate-300);
  text-decoration: line-through;
}

.pcard-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pcard-stars {
  color: var(--orange);
  font-size: 0.65rem;
  line-height: 1;
}

.pcard-reviews {
  font-size: 0.62rem;
  color: var(--slate-400);
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.sticky-bar.vis {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 640px) {
  .sticky-bar-inner {
    padding: 0 16px;
    gap: 12px;
  }
}
.sticky-bar-product {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.sticky-bar-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.sticky-bar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-bar-info {
  min-width: 0;
}

.sticky-bar-name {
  font-family: var(--f-display);
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.sticky-bar-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-bar-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.sticky-bar-price-old {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.sticky-bar-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.sticky-bar-stars {
  color: var(--orange);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.sticky-bar-reviews {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

@media (max-width: 768px) {
  .sticky-bar-rating {
    display: none;
  }
}
.sticky-bar-cta {
  padding: 12px 28px;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-bar-cta:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

.sticky-bar-cta svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 480px) {
  .sticky-bar-name {
    font-size: 0.78rem;
  }
  .sticky-bar-cta {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}
/* ---- style-блок %d макета ---- */
.product-info {
  display: flex;
  flex-direction: column;
}

.buybox-aside {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.product-info .trust-grid {
  margin-top: 0;
}

.product-info .product-cat-tag {
  align-self: flex-start;
}

.product-info .product-title {
  margin-bottom: 8px;
}

.product-info .product-rating {
  margin-bottom: 10px;
}

.product-info .urgency-strip {
  margin-bottom: 10px;
}

.product-info .price-block {
  margin-bottom: 12px;
  padding: 14px;
}

.product-info .whats-included {
  margin-bottom: 10px;
}

.product-info .whats-included-title {
  margin-bottom: 6px;
}

.product-info .whats-item {
  padding: 5px 0;
}

.product-info .cta-zone {
  margin-bottom: 0;
}

.product-info .product-actions {
  margin-bottom: 8px;
}

.product-info .social-proof {
  padding-top: 0;
  margin-bottom: 0;
}

.product-content {
  padding-top: 0;
}

.adx-faqspot {
  margin-top: 18px;
}

/* ---- style-блок %d макета ---- */
.btn-buy-now svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cv-trial {
  margin-top: 6px;
  text-align: center;
}

.cv-trial-ic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--slate-400);
}

.cv-trial-ic svg {
  width: 15px;
  height: 15px;
}

.cv-trial-body {
  flex: 1;
  min-width: 0;
}

.cv-trial-line {
  font-size: 0.64rem;
  color: var(--slate-500);
  font-weight: 500;
  line-height: 1.45;
}

.cv-trial-line b {
  color: var(--slate-500);
  font-weight: 600;
}

.cv-trial-fine {
  font-size: 0.68rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-top: 1px;
}

.cv-section {
  padding: 60px 0;
}

.cv-section--tight {
  padding-top: 0;
}

.cv-wrap {
  max-width: 1132px;
  margin: 0 auto;
}

.cv-section--indesc {
  padding: 0;
}

.cv-section--indesc .container {
  padding: 0;
  max-width: none;
}

.cv-section--indesc .cv-wrap {
  max-width: none;
}

.cv-section--indesc .section-header {
  text-align: center;
  margin-bottom: 18px;
}

.cv-section--indesc .section-title {
  font-size: 1.4rem;
}

.cv-section--indesc .cv-stack {
  padding: 24px;
}

.cv-section--indesc .cv-guarantee {
  padding: 22px 24px;
}

/* Countdown (inline in price block) */
.cv-countdown {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 7px 11px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.06), rgba(255, 107, 53, 0.06));
  border: 1px solid rgba(220, 38, 38, 0.14);
  font-size: 0.74rem;
}

.cv-countdown > svg {
  width: 14px;
  height: 14px;
  color: var(--rose);
  flex-shrink: 0;
}

.cv-cd-text {
  color: var(--rose);
  font-weight: 700;
}

.cv-cd-clock {
  margin-left: auto;
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

/* Payment trust row */
.cv-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.cv-pay-text {
  font-size: 0.66rem;
  color: var(--slate-500);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cv-pay-text svg {
  width: 13px;
  height: 13px;
  color: var(--emerald);
}

.cv-pay-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.cv-pay-icons span {
  height: 19px;
  padding: 0 6px;
  border-radius: 4px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  font-size: 0.54rem;
  font-weight: 800;
  color: var(--slate-400);
  letter-spacing: 0.02em;
}

/* Value stack */
.cv-stack {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--sh-md);
}

.cv-stack-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--slate-100);
}

.cv-stack-row:last-of-type {
  border-bottom: none;
}

.cv-stack-ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.cv-stack-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.cv-stack-name span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--slate-400);
  margin-top: 2px;
}

.cv-stack-val {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-400);
  flex-shrink: 0;
}

.cv-stack-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 2px dashed var(--slate-200);
}

.cv-stack-total-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-500);
}

.cv-stack-total-val {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-400);
  text-decoration: line-through;
}

.cv-stack-today {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), #1a2640);
}

.cv-stack-today-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
}

.cv-stack-today-label b {
  display: block;
  color: var(--orange-light);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

.cv-stack-today-val {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.cv-stack-cta {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
}

.cv-stack-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

/* Comparison table */
.cv-compare {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.cv-compare-scroll {
  overflow-x: auto;
}

.cv-compare table {
  width: 100%;
  border-collapse: collapse;
}

.cv-compare th, .cv-compare td {
  padding: 15px 18px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--slate-100);
}

.cv-compare thead th {
  font-weight: 700;
  color: var(--navy);
  background: var(--slate-50);
  font-size: 0.8rem;
  text-align: center;
}

.cv-compare thead th:first-child {
  text-align: left;
  background: #fff;
}

.cv-compare thead th.cv-col-us {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
}

.cv-compare tbody td {
  text-align: center;
  color: var(--slate-500);
}

.cv-compare tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--slate-700);
}

.cv-compare td.cv-col-us {
  background: var(--orange-50);
  font-weight: 600;
  color: var(--navy);
}

.cv-compare tr:last-child td {
  border-bottom: none;
}

.cv-yes {
  color: var(--emerald);
  font-weight: 800;
}

.cv-no {
  color: var(--slate-300);
  font-weight: 800;
}

/* Guarantee / risk reversal */
.cv-guarantee {
  display: flex;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--emerald-50), rgba(5, 150, 105, 0.02));
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: 24px;
  padding: 30px 36px;
}

.cv-guar-seal {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--emerald);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.18);
  color: var(--emerald);
  text-align: center;
}

.cv-guar-seal b {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.cv-guar-seal span {
  font-size: 0.48rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
  line-height: 1.1;
}

.cv-guar-body h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 6px;
  font-weight: 700;
}

.cv-guar-body p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0;
}

/* Visible FAQ */
.cv-faq-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.cv-faq-item.open {
  box-shadow: var(--sh-md);
}

.cv-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
}

.cv-faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.cv-faq-item.open .cv-faq-q svg {
  transform: rotate(45deg);
}

.cv-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cv-faq-a-inner {
  padding: 0 22px 20px;
  font-size: 0.86rem;
  color: var(--slate-500);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cv-section {
    padding: 40px 0;
  }
  .cv-section--indesc {
    padding: 0;
  }
  .cv-stack {
    padding: 24px;
  }
  .cv-section--indesc .cv-guarantee {
    padding: 16px 18px;
  }
  .cv-guarantee {
    gap: 14px;
  }
  .cv-guar-seal {
    width: 58px;
    height: 58px;
    border-width: 2px;
  }
  .cv-guar-seal b {
    font-size: 1.05rem;
  }
  .cv-guar-seal span {
    font-size: 0.42rem;
  }
  .cv-guar-body h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .cv-guar-body p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .cv-compare table {
    min-width: 560px;
  }
}
/* ===== Conversion add-ons (express pay, reassurance, peek, lead) ===== */
/* Look inside */
.cv-peek {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.cv-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--sh-sm);
  position: relative;
}

.cv-card-tag {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 8px;
}

.cv-card.locked .cv-card-tag {
  color: var(--slate-400);
}

.cv-card h4 {
  font-family: var(--f-display);
  font-size: 1.02rem;
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.25;
}

.cv-card-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--slate-600);
  padding: 5px 0;
  line-height: 1.4;
}

.cv-card-step svg {
  width: 15px;
  height: 15px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 1px;
}

.cv-card.locked {
  overflow: hidden;
}

.cv-card.locked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, #fff 80%);
  pointer-events: none;
}

.cv-card-lock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

.cv-card-lock svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  display: block;
  margin: 0 auto 6px;
}

/* Lead magnet */
.cv-lead {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--navy), #1a2640);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cv-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse at 50% 0%, var(--orange-glow), transparent 70%);
}

.cv-lead > * {
  position: relative;
  z-index: 1;
}

.cv-lead h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 700;
}

.cv-lead p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}

.cv-lead-form {
  display: flex;
  gap: 8px;
  max-width: 430px;
  margin: 0 auto;
}

.cv-lead-input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.88rem;
  font-family: var(--f-body);
  outline: none;
}

.cv-lead-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cv-lead-input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.14);
}

.cv-lead-btn {
  padding: 13px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s;
  font-family: var(--f-body);
}

.cv-lead-btn:hover {
  transform: translateY(-1px);
}

.cv-lead-note {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
}

.cv-lead-note.ok {
  color: var(--emerald-light);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Related guides */
.cv-guides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cv-guide {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  box-shadow: var(--sh-sm);
  transition: all 0.25s;
  text-decoration: none;
}

.cv-guide:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--orange-100);
}

.cv-guide-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.cv-guide-ic svg {
  width: 20px;
  height: 20px;
}

.cv-guide-body {
  flex: 1;
  min-width: 0;
}

.cv-guide-body h4 {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.3;
}

.cv-guide-body p {
  font-size: 0.77rem;
  color: var(--slate-500);
  line-height: 1.45;
  margin: 0;
}

.cv-guide-arrow {
  color: var(--slate-300);
  flex-shrink: 0;
  transition: color 0.2s;
  align-self: center;
}

.cv-guide:hover .cv-guide-arrow {
  color: var(--orange);
}

.cv-guide-arrow svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .cv-lead-form {
    flex-direction: column;
  }
  .cv-guides {
    grid-template-columns: 1fr;
  }
}
/* ---- style-блок %d макета ---- */
.cvpop-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cvpop-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cvpop {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px 26px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.35);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.cvpop-overlay.open .cvpop {
  transform: translateY(0) scale(1);
}

.cvpop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: radial-gradient(ellipse at 50% 0%, var(--orange-glow), transparent 70%);
  pointer-events: none;
}

.cvpop > * {
  position: relative;
  z-index: 1;
}

.cvpop-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: all 0.2s;
  z-index: 2;
}

.cvpop-close:hover {
  background: var(--slate-200);
  color: var(--navy);
}

.cvpop-close svg {
  width: 16px;
  height: 16px;
}

.cvpop-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  color: var(--orange-dark);
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.cvpop-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.cvpop-title b {
  color: var(--orange);
}

.cvpop-sub {
  font-size: 0.86rem;
  color: var(--slate-500);
  line-height: 1.55;
  margin-bottom: 18px;
}

.cvpop-perks {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: var(--slate-50);
  border-radius: 14px;
  border: 1px solid var(--slate-100);
}

.cvpop-perk {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--slate-700);
  font-weight: 500;
}

.cvpop-perk svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
}

.cvpop-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 17px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.35);
  animation: cvPulse 2.4s ease-in-out infinite;
  transition: transform 0.25s;
}

.cvpop-primary:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
}

.cvpop-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes cvPulse {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.35);
  }
  50% {
    box-shadow: 0 8px 28px rgba(255, 107, 53, 0.5), 0 0 0 6px rgba(255, 107, 53, 0.12);
  }
}
.cvpop-note {
  font-size: 0.7rem;
  color: var(--slate-400);
  line-height: 1.5;
  margin-top: 10px;
}

.cvpop-note b {
  color: var(--slate-700);
  font-weight: 700;
}

.cvpop-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 2px;
  color: var(--slate-300);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cvpop-or::before, .cvpop-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--slate-200);
}

.cvpop-secondary {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--slate-400);
  font-weight: 500;
  padding: 6px 4px;
  transition: color 0.2s;
}

.cvpop-secondary:hover {
  color: var(--navy);
}

.cvpop-secondary b {
  color: var(--slate-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .cvpop {
    padding: 28px 22px 22px;
  }
  .cvpop-title {
    font-size: 1.3rem;
  }
}
/* ===== BONUS BUNDLE (free gifts included with purchase) ===== */
.bonus-bundle {
  background: linear-gradient(180deg, var(--white), var(--slate-50));
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--sh-md);
}

.bb-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 22px;
}

.bb-eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald);
  background: var(--emerald-50);
  border: 1px solid rgba(5, 150, 105, 0.18);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.bb-title {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.2;
}

.bb-title span {
  color: var(--emerald);
}

.bb-sub {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin: 0;
}

.bb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 22px;
}

.bb-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.bb-item:hover {
  border-color: var(--slate-300);
  box-shadow: var(--sh-sm);
  transform: translateY(-1px);
}

.bb-ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 9px;
  overflow: hidden;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
}

.bb-ic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bb-it {
  flex: 1;
  min-width: 0;
}

.bb-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.bb-desc {
  font-size: 0.74rem;
  color: var(--slate-400);
  line-height: 1.4;
  margin-top: 2px;
}

.bb-val {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.bb-val s {
  font-size: 0.8rem;
  color: var(--slate-400);
}

.bb-free {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--emerald);
  background: var(--emerald-50);
  border: 1px solid rgba(5, 150, 105, 0.22);
  padding: 2px 7px;
  border-radius: 100px;
}

.bb-foot {
  border-top: 1px dashed var(--slate-200);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.bb-foot-val {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.bb-foot-label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-600);
}

.bb-foot-nums {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.bb-foot-nums s {
  font-size: 1.5rem;
  color: var(--slate-400);
  font-weight: 700;
}

.bb-foot-nums b {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.bb-foot-note {
  font-size: 0.78rem;
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 560px;
}

.bb-foot-note b {
  color: var(--navy);
  font-weight: 700;
}

.bb-cta {
  margin-top: 4px;
  padding: 15px 34px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.28);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.bb-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.36);
}

.bb-showall {
  display: none;
  width: 100%;
  margin-top: 4px;
  padding: 12px 16px;
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  background: var(--white);
  color: var(--slate-700);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.bb-showall:active {
  background: var(--slate-50);
}

@media (max-width: 768px) {
  .bonus-bundle:not(.bb-expanded) .bb-grid .bb-item:nth-child(n+5) {
    display: none;
  }
  .bonus-bundle:not(.bb-expanded) .bb-showall {
    display: block;
  }
}
@media (max-width: 768px) {
  .bonus-bundle {
    padding: 20px;
  }
  .bb-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 420px) {
  .bb-ic {
    width: 38px;
    height: 38px;
  }
}
.spotlight {
  --o:var(--orange,#FF6B35);
  --od:var(--orange-dark,#e85d2c);
  --nv:var(--navy,#1e293b);
  --s2:var(--slate-200,#e2e8f0);
  --s4:var(--slate-400,#94a3b8);
  --s5:var(--slate-500,#64748b);
  --fd:var(--f-display,'Fraunces',Georgia,serif);
  --fs:var(--f-serif,'DM Serif Display',Georgia,serif);
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--nv);
}

.spotlight-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 24px;
  box-sizing: border-box;
}

.spotlight-h {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nv);
  margin: 0 0 16px;
}

.spotlight-cap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--s4);
  margin-bottom: 14px;
}

.spotlight-cap .t {
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.55rem;
  color: var(--s5);
}

.spotlight-cap .i, .spotlight-corner .i, .spotlight-badge .i, .spotlight-spons .i, .spotlight-cat .i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 0.5rem;
  font-style: italic;
  line-height: 1;
  opacity: 0.8;
}

.spotlight-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
  scrollbar-width: thin;
}

.spotlight-row::-webkit-scrollbar, .spotlight-duo::-webkit-scrollbar {
  height: 6px;
}

.spotlight-row::-webkit-scrollbar-thumb, .spotlight-duo::-webkit-scrollbar-thumb {
  background: var(--s2);
  border-radius: 3px;
}

.spotlight-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 168px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--s2);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s, box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
}

.spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.spotlight-thumb {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  display: block;
  background: #f0ebe4;
}

.spotlight-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(15, 23, 42, 0.6);
  padding: 3px 9px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.spotlight-badge .i {
  border-color: rgba(255, 255, 255, 0.6);
}

.spotlight-card-b {
  padding: 12px 14px 16px;
}

.spotlight-cat {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--s4);
  font-weight: 600;
}

.spotlight-name {
  font-family: var(--fs);
  font-size: 1rem;
  line-height: 1.25;
  margin: 5px 0 10px;
  color: var(--nv);
}

.spotlight-price {
  font-weight: 800;
}

.spotlight-old {
  color: var(--s4);
  text-decoration: line-through;
  margin-left: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.spotlight-stars {
  color: #f59e0b;
  font-size: 0.78rem;
  letter-spacing: 1px;
  margin-top: 6px;
}

.spotlight-corner {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 9px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.spotlight-corner.dark {
  color: var(--s5);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--s2);
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--o);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s;
  border: none;
  cursor: pointer;
}

.spotlight-cta:hover {
  background: var(--od);
  transform: translateY(-1px);
}

.spotlight-duo {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.spotlight-duo-card {
  flex: 0 0 calc((100% - 16px) / 2);
  box-sizing: border-box;
  min-width: 240px;
  scroll-snap-align: start;
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(77, 183, 0, 0.08);
  border: 1px solid var(--s2);
  border-radius: 16px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}

.spotlight-duo-card:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.spotlight-duo-thumb {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  flex: 0 0 auto;
  object-fit: cover;
  background: #f0ebe4;
}

.spotlight-duo .spotlight-name {
  margin: 4px 0 6px;
}

@media (max-width: 640px) {
  .spotlight-duo-card {
    flex: 0 0 86%;
  }
}
.spotlight-spot {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  border: 1px solid var(--s2);
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
}

.spotlight-spot > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  background: #f0ebe4;
}

.spotlight-spot-b {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-kick {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--o);
  margin-bottom: 10px;
}

.spotlight-spot-t {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

.spotlight-spot-d {
  font-size: 0.92rem;
  color: var(--s5);
  line-height: 1.6;
  margin-bottom: 18px;
}

.spotlight-spot-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spotlight-spot-p {
  font-size: 1.18rem;
  font-weight: 800;
}

@media (max-width: 720px) {
  .spotlight-spot {
    grid-template-columns: 1fr;
  }
  .spotlight-spot > img {
    min-height: 200px;
    max-height: 240px;
  }
  .spotlight-spot-b {
    padding: 26px 22px;
  }
}
.spotlight-brand {
  position: relative;
  background: #fff;
  border: 1px solid var(--s2);
  border-radius: 22px;
  padding: 24px;
}

.spotlight-brand-h {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.spotlight-logo {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--o), #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 19px;
  flex: 0 0 auto;
}

.spotlight-brand-h h4 {
  font-family: var(--fs);
  font-size: 1.1rem;
  margin: 0;
  color: var(--nv);
}

.spotlight-brand-h p {
  font-size: 0.78rem;
  color: var(--s4);
  margin: 2px 0 0;
}

.spotlight-bb {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(120deg, #1e293b, #334155);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
}

.spotlight-bb::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.32), transparent 70%);
  pointer-events: none;
}

.spotlight-bb-t {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.spotlight-bb-k {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffb38a;
  margin-bottom: 8px;
}

.spotlight-bb-h {
  font-family: var(--fd);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.14;
  margin: 0;
}

.spotlight-bb-s {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 8px 0 0;
}

.spotlight-bb-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 12px 18px 12px 12px;
}

.spotlight-bb-offer > img {
  width: 92px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.spotlight-bb-offer .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.spotlight-bb-p {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.spotlight-bb-p b {
  font-size: 1.4rem;
  font-weight: 800;
}

.spotlight-bb-p s {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.spotlight-bb .spotlight-cta {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .spotlight-bb {
    padding: 24px 50px;
  }
  .spotlight-bb-h {
    font-size: 1.35rem;
  }
}
.spotlight-hero {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 50px;
  background: linear-gradient(135deg, #1b1033, #3a1d5c);
  color: #fff;
}

.spotlight-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(255, 107, 53, 0.42), transparent 55%), radial-gradient(circle at 12% 85%, rgba(139, 92, 246, 0.4), transparent 55%);
}

.spotlight-hero-in {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.spotlight-hero-t {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 14px;
}

.spotlight-hero-s {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.spotlight-hero-p {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.spotlight-hero-p b {
  font-size: 1.7rem;
  font-weight: 800;
}

.spotlight-hero-p s {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 720px) {
  .spotlight-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 30px 24px;
  }
  .spotlight-hero-t {
    font-size: 1.7rem;
  }
  .spotlight-hero-offer {
    width: 100%;
    box-sizing: border-box;
  }
}
.spotlight-side-stack {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 88px;
}

.spotlight-side-stack > .spotlight-sidecap {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--s4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spotlight-side {
  position: relative;
  background: #fff;
  border: 1px solid var(--s2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.spotlight-side > img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #f0ebe4;
}

.spotlight-side-b {
  padding: 16px 18px 18px;
}

.spotlight-side .spotlight-name {
  font-size: 1.05rem;
  margin: 0 0 12px;
}

.spotlight-side-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.spotlight-side-foot .spotlight-price {
  font-size: 1.05rem;
  font-weight: 800;
}

/* sponsored badge for a NATIVE product card woven into an organic row */
.spotlight-spons {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  background: rgba(15, 23, 42, 0.62);
  padding: 3px 9px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.spotlight-spons .i {
  border-color: rgba(255, 255, 255, 0.6);
}

/* compact (quiet) sponsored sidebar list */
.spotlight-mini {
  background: #fff;
  border: 1px solid var(--s2);
  border-radius: 16px;
  padding: 6px 16px 8px;
}

.spotlight-mini-h {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--s4);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0 4px;
}

.spotlight-mini-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--s2);
}

.spotlight-mini-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
  background: #f0ebe4;
}

.spotlight-mini-name {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--nv);
}

.spotlight-mini-price {
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 3px;
  color: var(--nv);
}

.spotlight-mini-old {
  color: var(--s4);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 0.7rem;
  margin-left: 5px;
}

.spotlight-mini-item:hover .spotlight-mini-name {
  text-decoration: underline;
}

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

.spotlight-card {
  position: relative;
}

.spotlight-kick .i,
.spotlight-corner .i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 0.5rem;
  font-style: italic;
  line-height: 1;
  opacity: 0.8;
}

.spotlight-slider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.spotlight-slider-main {
  flex: 1;
  min-width: 0;
}

.spotlight-slider-vp {
  overflow: hidden;
}

.spotlight-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.spotlight-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
}

.spotlight-slider-arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--s2);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--nv);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.spotlight-slider-arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.spotlight-slider-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 16px;
}

.spotlight-slider-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--s2);
  cursor: pointer;
  transition: transform 0.2s, background 0.25s;
  padding: 0;
  border: none;
}

.spotlight-slider-dots .dot.active {
  background: var(--o);
  transform: scale(1.35);
}

.spotlight-slider.compact .spotlight-slider-arrow {
  display: none;
}

.spotlight-slider.compact .spotlight-slider-dots {
  margin-top: 12px;
}

.spotlight-scard {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--s2);
  border-radius: 16px;
  padding: 14px 16px;
}

.spotlight-scard > img {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  background: #f0ebe4;
}

.spotlight-scard .spotlight-name {
  font-size: 0.9rem;
  margin: 0 0 4px;
}

.spotlight-scard .spotlight-price {
  font-weight: 800;
}

/* hero: fill the empty right side with a product cover */
.spotlight-hero-offer {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 18px 24px 18px 18px;
}

.spotlight-hero-offer > img {
  width: 158px;
  height: 158px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.spotlight-hero-offer .col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (max-width: 720px) {
  .spotlight-hero-offer {
    width: 100%;
    box-sizing: border-box;
  }
  .spotlight-hero-offer > img {
    width: 120px;
    height: 120px;
  }
}
/* vertical spotlight (image on top, content below) */
.spotlight-spotv {
  position: relative;
  background: #fff;
  border: 1px solid var(--s2);
  border-radius: 22px;
  overflow: hidden;
}

.spotlight-spotv-media {
  width: 100%;
  height: 380px;
  background: #f0ebe4;
}

.spotlight-spotv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.spotlight-spotv-b {
  padding: 30px 40px 34px;
  max-width: 760px;
}

.spotlight-spotv-t {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 6px 0 12px;
  color: var(--nv);
}

.spotlight-spotv .spotlight-spot-d {
  margin-bottom: 18px;
}

@media (max-width: 720px) {
  .spotlight-spotv-media {
    height: 240px;
  }
  .spotlight-spotv-b {
    padding: 24px 22px 28px;
  }
}
/* spotlight sized like home-page blog article cards */
.spotlight-bloggrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spotlight-spotc {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(175deg, #fff, #fcfcfe 30%, #fafafc 60%, #fff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.spotlight-spotc:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.spotlight-spotc-cover {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin: 6px 6px 0;
  border-radius: 16px;
}

.spotlight-spotc-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.spotlight-spotc:hover .spotlight-spotc-cover img {
  transform: scale(1.05);
}

.spotlight-spotc-b {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spotlight-spotc .spotlight-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 8px;
}

.spotlight-spotc-t {
  font-family: var(--fs);
  font-size: 1.05rem;
  color: var(--nv);
  line-height: 1.35;
  margin: 0 0 8px;
}

.spotlight-spotc-d {
  font-size: 0.8rem;
  color: var(--s4);
  line-height: 1.55;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-spotc-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.spotlight-cta.sm {
  padding: 8px 14px;
  font-size: 0.78rem;
}

@media (max-width: 1024px) {
  .spotlight-bloggrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-bloggrid > :nth-child(3) {
    display: none;
  }
}
@media (max-width: 768px) {
  .spotlight-bloggrid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .spotlight-bloggrid::-webkit-scrollbar {
    display: none;
  }
  .spotlight-bloggrid > .spotlight-spotc {
    min-width: 230px;
    max-width: 68vw;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  .spotlight-bloggrid > :nth-child(3) {
    display: flex;
  }
}
/* clickable brand store name + mobile arrow sizing */
.spotlight-brand-link {
  color: inherit;
  text-decoration: none;
}

.spotlight-brand-link:hover {
  color: var(--o);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .spotlight-slider {
    gap: 0;
  }
  .spotlight-slider-arrow {
    display: none;
  }
}
.spotlight-bb {
  padding: 24px 24px;
} /* тут была двойная закрывающая - опечатка макета, вторая копия */
/* spotlight: scrollable card carousel with side arrows */
.spotlight-crow {
  position: relative;
}

.spotlight-crow-vp {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
}

.spotlight-crow-vp::-webkit-scrollbar {
  display: none;
}

.spotlight-crow-track {
  display: flex;
  gap: 20px;
  padding: 8px 2px;
}

.spotlight-crow-track > .spotlight-spotc {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
}

.spotlight-crow > .spotlight-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
}

.spotlight-crow > .spotlight-slider-arrow.l {
  left: -58px;
}

.spotlight-crow > .spotlight-slider-arrow.r {
  right: -58px;
}

.spotlight-crow > .spotlight-slider-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 1300px) {
  .spotlight-crow > .spotlight-slider-arrow.l {
    left: 0;
    transform: translate(-50%, -50%);
  }
  .spotlight-crow > .spotlight-slider-arrow.r {
    right: 0;
    transform: translate(50%, -50%);
  }
  .spotlight-crow > .spotlight-slider-arrow.l:hover {
    transform: translate(-50%, -50%) scale(1.08);
  }
  .spotlight-crow > .spotlight-slider-arrow.r:hover {
    transform: translate(50%, -50%) scale(1.08);
  }
}
@media (max-width: 1024px) {
  .spotlight-crow-track > .spotlight-spotc {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 600px) {
  .spotlight-crow > .spotlight-slider-arrow {
    display: none;
  }
  .spotlight-crow-track > .spotlight-spotc {
    flex: 0 0 78%;
  }
}
/* ensure banner text stays readable over dark backgrounds on any host page */
.spotlight-bb .spotlight-bb-h {
  color: #fff !important;
}

.spotlight-bb .spotlight-bb-s {
  color: rgba(255, 255, 255, 0.82) !important;
}

.spotlight-bb .spotlight-bb-p b {
  color: #fff !important;
}

.spotlight-bb .spotlight-bb-p s {
  color: rgba(255, 255, 255, 0.5) !important;
}

.spotlight-bb .spotlight-corner, .spotlight-hero .spotlight-corner {
  color: #fff !important;
}

.spotlight-hero .spotlight-hero-t {
  color: #fff !important;
}

.spotlight-hero .spotlight-hero-s {
  color: rgba(255, 255, 255, 0.82) !important;
}

.spotlight-hero .spotlight-hero-p b {
  color: #fff !important;
}

.spotlight-hero .spotlight-hero-p s {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* full-bleed wrapper: lets in-article blocks use standard width, not the narrow text column */
.spotlight-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* spotlight showing a single product card per view */
.spotlight-spot1 {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.spotlight-spot1 > .spotlight-spotc {
  width: 100%;
  max-width: 360px;
}

/* two spotlight cards side by side (e.g. narrow sidebar) */
.spotlight-pair2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .spotlight-pair2 {
    grid-template-columns: 1fr;
  }
}
/* sponsored row: full-width track (standard cards), arrows OUTSIDE the cards, scrollbar hidden */
.spotlight-azrow {
  position: relative;
}

.spotlight-brand .spotlight-row {
  scrollbar-width: none;
}

.spotlight-brand .spotlight-row::-webkit-scrollbar {
  display: none;
}

.spotlight-azrow > .spotlight-row {
  scrollbar-width: none;
}

.spotlight-azrow > .spotlight-row::-webkit-scrollbar {
  display: none;
}

.spotlight-azrow > .spotlight-duo {
  scrollbar-width: none;
  padding-bottom: 0;
}

.spotlight-azrow > .spotlight-duo::-webkit-scrollbar {
  display: none;
}

.spotlight-azrow > .spotlight-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
}

.spotlight-azrow > .spotlight-slider-arrow.l {
  left: -58px;
}

.spotlight-azrow > .spotlight-slider-arrow.r {
  right: -58px;
}

.spotlight-azrow > .spotlight-slider-arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 1300px) {
  .spotlight-azrow > .spotlight-slider-arrow.l {
    left: 0;
    transform: translate(-50%, -50%);
  }
  .spotlight-azrow > .spotlight-slider-arrow.r {
    right: 0;
    transform: translate(50%, -50%);
  }
  .spotlight-azrow > .spotlight-slider-arrow.l:hover {
    transform: translate(-50%, -50%) scale(1.08);
  }
  .spotlight-azrow > .spotlight-slider-arrow.r:hover {
    transform: translate(50%, -50%) scale(1.08);
  }
}
@media (max-width: 600px) {
  .spotlight-azrow > .spotlight-slider-arrow {
    display: none;
  }
}
/* sponsored row placed inside the buy-box column, under the Add to Cart button */
.spotlight-buyrow {
  padding: 16px 0 4px;
}

.spotlight-buyrow .spotlight-azrow > .spotlight-slider-arrow.l {
  left: -4px;
}

.spotlight-buyrow .spotlight-azrow > .spotlight-slider-arrow.r {
  right: -4px;
}

/* full-width sponsored row spanning both product-grid columns */
.spotlight-fullrow {
  padding: 6px 0 2px;
}

/* ad-disclosure info icon */
.spotlight .i, .spotlight-spons .i {
  cursor: help;
}

.spotlight-tip {
  position: fixed;
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.12s;
  max-width: 180px;
  background: #0f172a;
  color: #fff;
  font: 500 9.5px/1.4 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 8px;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.3);
  pointer-events: none;
  text-align: left;
}

section.spotlight {
  padding: 42px 0;
}

/*# sourceMappingURL=single.css.map*/