/* ==========================================================================
   PUREVANE - Pure Titanium Cutting Board
   ========================================================================== */

/* Fonts */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-style: normal;
  font-display: fallback;
  src: url("../fonts/plusjakartasans_n8.7380fa00d61d4edf80b695b88539a3d4ae995bf7.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
  src: url("../fonts/opensans_n4.c32e4d4eca5273f6d4ee95ddf54b5bbb75fc9b61.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
  src: url("../fonts/opensans_n7.a9393be1574ea8606c68f4441806b2711d0d13e4.woff2") format("woff2");
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --s-color-primary: #1F352F;
  --s-color-white: #FFFFFF;
  --s-color-bg-beige: #EEF4EC;
  --s-color-bg-page: #F8FAF8;
  --s-color-accent: #ff6d00;
  --s-color-accent-border: #d95c00;
  --s-color-success: #5AB400;
  --s-color-brand-blue: #3F7D65;
  --s-color-light-text: #FFFCFB;
  --s-color-border: rgba(31, 53, 47, 0.08);
  --s-color-secondary-text: rgba(31, 53, 47, 0.75);
  --s-font-heading: 'Plus Jakarta Sans', sans-serif;
  --s-font-body: 'Open Sans', sans-serif;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--s-font-body);
  color: var(--s-color-primary);
  background: var(--s-color-bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ==========================================================================
   Announcement Bar
   ========================================================================== */
.announcement-bar {
  background-color: var(--s-color-brand-blue);
  width: 100%;
}
.ab-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 80px;
}
.ab-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ab-icon { width: 20px; height: 20px; flex-shrink: 0; }
.ab-text {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fafcfe;
  white-space: nowrap;
  text-align: center;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header-section {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--s-color-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.header-bar {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}
.header-left { flex: 1; display: flex; align-items: center; }
.header-logo img { width: 196px; height: 40px; object-fit: cover; }
.header-nav { display: flex; align-items: center; gap: 0; }
.header-nav-item {
  font-family: var(--s-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--s-color-primary);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.header-nav-item:hover { opacity: 0.6; }
.header-nav-dropdown { position: relative; }
.header-nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}
.header-nav-dropdown:hover .header-nav-dropdown__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header-nav-dropdown:hover .header-nav-item svg { transform: rotate(180deg); }
.header-nav-dropdown__link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--s-color-primary);
  transition: background 0.15s;
}
.header-nav-dropdown__link:hover { background: rgba(31, 53, 47,0.05); }
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.header-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}
.header-icon:hover { background: rgba(31, 53, 47,0.05); }
.header-mobile {
  display: none;
  background-color: var(--s-color-white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ==========================================================================
   PDP Hero - Product Section
   ========================================================================== */
.pdp-hero {
  background: linear-gradient(#fbf9f6 0%, #fefefd 100%);
  padding: 40px 80px;
  overflow: hidden;
}
.pdp-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.pdp-images {
  width: 48%;
  max-width: 600px;
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pdp-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
}
.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pdp-thumb.active { border-color: var(--s-color-brand-blue); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Review card in gallery */
.pdp-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px 20px 12px 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(16,24,40,0.1), 0 1px 2px rgba(16,24,40,0.06);
}
.pdp-review-avatar { width: 96px; height: 96px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.pdp-review-avatar img { width: 100%; height: 100%; border-radius: 0; object-fit: cover; }
.pdp-review-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.pdp-review-text { font-size: 14px; line-height: 1.5; color: var(--s-color-secondary-text); }
.pdp-review-text p { margin: 0; }
.pdp-review-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.pdp-review-author-row { display: flex; align-items: center; gap: 12px; }
.pdp-review-author { font-weight: 600; font-size: 12px; line-height: 1.5; }
.pdp-verified { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--s-color-secondary-text); font-weight: 600; }
.pdp-stars { display: flex; gap: 2px; }
.pdp-mobile-review { display: none; }
.pdp-desktop-review { display: flex; }
.pdp-mini-thumbs {
  display: none;
  gap: 6px;
  padding: 8px 0 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp-mini-thumbs::-webkit-scrollbar { display: none; }
.pdp-mini-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
}
.pdp-mini-thumb.active { border-color: var(--s-color-brand-blue, #3F7D65); opacity: 1; }
.pdp-mini-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* PDP Content */
.pdp-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pdp-content > div[style*="margin-top"] { margin-top: 0 !important; }
.pdp-review-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-review-badge-text {
  font-size: 14px;
  color: var(--s-color-primary);
}
.pdp-divider {
  display: block;
  width: 1px;
  align-self: stretch;
  background: #424140;
  opacity: 0.1;
  flex-shrink: 0;
}
.pdp-info-header { display: flex; flex-direction: column; gap: 12px; max-width: 600px; }

/* Trustpilot badge */
.pdp-trustpilot {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-trustpilot-rating { font-size: 14px; font-weight: 600; color: var(--s-color-primary); }
.pdp-trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #00b67a;
}
.pdp-title {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.5;
  color: var(--s-color-primary);
  text-transform: capitalize;
}
.pdp-description { display: flex; flex-direction: column; gap: 12px; color: var(--s-color-secondary-text); }
.pdp-description p { margin: 0; font-size: 18px; line-height: 1.5; }
.pdp-price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pdp-price-old { font-size: 18px; font-weight: 600; line-height: 1.5; text-decoration: line-through; color: var(--s-color-primary); opacity: 0.5; }
.pdp-price-new { font-size: 24px; line-height: 1.4; font-weight: 800; font-family: var(--s-font-heading); color: var(--s-color-primary); }
.pdp-price-badge {
  display: inline-flex;
  align-items: center;
  background: var(--s-color-success);
  color: #fff;
  font-family: var(--s-font-heading);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.pdp-hr { height: 1px; background: var(--s-color-border); margin-top: 8px; }

/* Check items */
.pdp-checks { display: flex; flex-direction: column; gap: 8px; }
.pdp-check-item { display: flex; align-items: center; gap: 12px; }
.pdp-check-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.pdp-check-item span { font-size: 16px; line-height: 1.5; font-weight: 600; color: var(--s-color-primary); }

/* Bundle selector */
.fc-bundles {
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  scroll-margin-top: 120px;
}
.fc-bundles-title {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-family: var(--s-font-heading);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--s-color-primary);
  text-align: center;
}
.fc-bundles-title::before,
.fc-bundles-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--s-color-border);
}
.fc-bundles-title span { white-space: nowrap; }
.fc-bundles-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-bundle-option {
  position: relative;
  min-height: 90px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--s-color-white);
  border: 1px solid rgba(31, 53, 47,0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.fc-bundle-option:hover {
  border-color: rgba(63, 125, 101,0.4);
}
.fc-bundle-option.is-selected {
  background: #f2f8ed;
  border-color: var(--s-color-brand-blue);
  box-shadow: 0 0 0 1px var(--s-color-brand-blue);
}
.fc-bundle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fc-bundle-option::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(31, 53, 47,0.28);
  border-radius: 50%;
  background: #fff;
}
.fc-bundle-option.is-selected::before {
  border-color: var(--s-color-brand-blue);
  box-shadow: inset 0 0 0 4px #fff;
  background: var(--s-color-brand-blue);
}
.fc-bundle-media {
  width: 64px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
}
.fc-bundle-products {
  position: relative;
  width: 54px;
  height: 46px;
  display: block;
}
.fc-bundle-products img {
  position: absolute;
  bottom: 0;
  width: 38px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 6px 8px rgba(31, 53, 47,0.16));
}
.fc-bundle-products--1 img { left: 8px; }
.fc-bundle-products--2 img:nth-child(1) { left: 2px; }
.fc-bundle-products--2 img:nth-child(2) { left: 18px; }
.fc-bundle-products--3 img:nth-child(1) { left: 0; }
.fc-bundle-products--3 img:nth-child(2) { left: 14px; }
.fc-bundle-products--3 img:nth-child(3) { left: 28px; }
.fc-bundle-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fc-bundle-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.fc-bundle-title {
  font-family: var(--s-font-heading);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--s-color-primary);
}
.fc-bundle-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  background: var(--s-color-success);
  border-radius: 4px;
  color: #fff;
  font-family: var(--s-font-heading);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.fc-bundle-subtitle {
  font-size: 12px;
  line-height: 1.4;
  color: var(--s-color-secondary-text);
}
.fc-bundle-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
}
.fc-bundle-price {
  font-family: var(--s-font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--s-color-primary);
}
.fc-bundle-old-price {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--s-color-secondary-text);
  text-decoration: line-through;
}
.fc-bundle-ribbon {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 4px 10px;
  background: var(--s-color-primary);
  border-radius: 0 8px 0 8px;
  color: #fff;
  font-family: var(--s-font-heading);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Free gifts */
.pdp-gifts-section { display: flex; flex-direction: column; gap: 16px; }
.pdp-gifts-title { font-size: 16px; font-weight: 700; color: var(--s-color-primary); }
.pdp-gifts-row { display: flex; gap: 12px; }
.pdp-gift-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--s-color-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  text-align: center;
}
.pdp-gift-badge {
  position: absolute;
  top: -8px;
  right: -4px;
  background: var(--s-color-brand-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pdp-gift-badge s { opacity: 0.7; }
.pdp-gift-img-wrap { width: 64px; height: 64px; }
.pdp-gift-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.pdp-gift-name { font-size: 12px; font-weight: 600; color: var(--s-color-primary); }

/* Checkout CTA */
.pdp-cta-section { display: flex; flex-direction: column; gap: 16px; margin-top: 0; }
.pdp-btn {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 32px;
  background: #ff6d00;
  border: none;
  border-bottom: 4px solid var(--s-color-accent-border);
  border-radius: 8px;
  color: #fff;
  font-family: var(--s-font-heading);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.pdp-btn:hover { opacity: 0.92; }
.pdp-btn span {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.5;
  color: var(--s-color-light-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pdp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.pdp-shield-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--s-font-heading);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--s-color-primary);
}
.pdp-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-payment-icon {
  width: 35px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  flex-shrink: 0;
}
.pdp-payment-icon img { width: 100%; height: 100%; object-fit: contain; }

/* ==========================================================================
   USP Bar
   ========================================================================== */
.usps-section {
  background: #edf6e9;
  padding: 56px 80px;
}
.usps-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.usps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.usp-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafcfe;
  border: 1px dashed var(--s-color-brand-blue);
  border-radius: 8px;
}
.usp-icon img { width: 32px; height: 32px; object-fit: contain; }
.usp-text-title { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.usp-text-desc { font-size: 14px; color: var(--s-color-secondary-text); }
.usp-divider {
  flex-shrink: 0;
  width: 0; height: 64px;
  border-left: 0.5px dashed var(--s-color-primary);
}

/* ==========================================================================
   Content Block List (text + video/image sections)
   ========================================================================== */
.content-section {
  background: var(--s-color-bg-page);
  padding: 20px 80px;
}
.cbl-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.cbl-inner--reverse { flex-direction: row; }
.cbl-content {
  flex: 1;
  min-width: 0;
  max-width: 620px;
  padding: 48px 32px;
}

/* Trustpilot Badge (reusable) */
.tp-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tp-stars { display: flex; gap: 2px; }
.tp-rating { font-size: 12px; font-weight: 600; }
.tp-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #00b67a;
}
.content-review-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: -12px 0 18px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--s-color-primary);
}
.cbl-heading {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  color: var(--s-color-primary);
  text-transform: capitalize;
  margin-bottom: 24px;
}
.cbl-body { display: flex; flex-direction: column; gap: 16px; font-size: 16px; line-height: 1.5; color: var(--s-color-secondary-text); }
.cbl-body p { margin: 0; }
.cbl-body p:last-child { margin-bottom: 0; }
.cbl-body ol { padding-left: 20px; list-style: decimal; }
.cbl-body ol li { margin-bottom: 8px; }
.cbl-body a { color: var(--s-color-brand-blue); text-decoration: underline; }
.cbl-image-wrap {
  flex: 0 0 45%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}
.cbl-image-wrap img,
.cbl-image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Checklist items */
.cbl-checklist { display: flex; flex-direction: column; gap: 8px; }
.cbl-check-item { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--s-color-primary); }
.cbl-check-item svg { flex-shrink: 0; }

/* ==========================================================================
   Content Block Benefits
   ========================================================================== */
.cb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
}
.cb-content {
  flex: 1;
  min-width: 0;
  padding: 48px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cb-heading {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.4;
  color: var(--s-color-primary);
  text-transform: capitalize;
}
.cb-richtext { display: flex; flex-direction: column; gap: 16px; font-size: 16px; line-height: 1.5; color: var(--s-color-secondary-text); }
.cb-richtext p { margin: 0; }
.cb-richtext a { color: var(--s-color-brand-blue); }
.cb-benefits-card {
  background: var(--s-color-bg-beige);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cb-benefit-item { display: flex; align-items: center; gap: 12px; font-size: 16px; line-height: 1.5; color: var(--s-color-primary); }
.cb-benefit-item svg { flex-shrink: 0; width: 32px; height: 32px; }
.cb-image-wrap {
  flex: 0 0 45%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
}
.cb-image-wrap img,
.cb-image-wrap video {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Before/After - Risk Free Trial
   ========================================================================== */
.before-after-section {
  background: var(--s-color-bg-page);
  padding: 40px 80px;
}
.ba-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
}
.ba-image-col { flex: 0 0 45%; }
.ba-image-col video,
.ba-image-col img { width: 100%; height: 100%; object-fit: cover; }
.ba-text-col { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.ba-heading {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.5;
  text-transform: capitalize;
}
.ba-richtext { display: flex; flex-direction: column; gap: 16px; font-size: 16px; line-height: 1.5; color: var(--s-color-secondary-text); }
.ba-richtext p { margin: 0; }
.ba-richtext a { color: var(--s-color-brand-blue); }
.ba-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  padding: 0 32px;
  background: #ff6d00;
  border: none;
  border-bottom: 4px solid var(--s-color-accent-border);
  border-radius: 8px;
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--s-font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}
.ba-btn:hover { opacity: 0.9; }

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
  background: linear-gradient(#edf6e9 0%, #F8FAF8 100%);
  padding: 60px 80px;
}
.comparison-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.comparison-header { text-align: center; margin-bottom: 40px; }
.comparison-title {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  color: var(--s-color-primary);
  margin-bottom: 12px;
}
.comparison-title .highlight { color: var(--s-color-brand-blue); }
.comparison-subtitle { font-size: 16px; color: var(--s-color-secondary-text); }
.comparison-cards { display: flex; gap: 24px; }
.comparison-card-wrapper { flex: 1; }
.comparison-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
}
.comparison-card--good { border-top: 4px solid #22c55e; }
.comparison-card--bad { border-top: 4px solid #ef4444; }
.comparison-card__header {
  padding: 20px 24px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
}
.comparison-card--good .comparison-card__header { color: var(--s-color-primary); }
.comparison-card--bad .comparison-card__header { color: var(--s-color-primary); }
.comparison-card__header-title { font-weight: 700; font-size: 18px; }
.comparison-card--good .comparison-card__header::after { content: "✓"; color: #22c55e; font-size: 20px; font-weight: 800; }
.comparison-card--bad .comparison-card__header::after { content: "✕"; color: #ef4444; font-size: 20px; font-weight: 800; }
.comparison-card__body { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.comparison-item { display: flex; align-items: flex-start; gap: 12px; }
.comparison-item__content { display: flex; flex-direction: column; gap: 4px; }
.comparison-item__icon { flex-shrink: 0; width: 24px; }
.comparison-item__icon svg { width: 24px; height: 24px; }
.comparison-item__title { display: block; font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 0; }
.comparison-item__desc { display: block; font-size: 14px; color: var(--s-color-secondary-text); }

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  background: linear-gradient(#F8FAF8, #edf6e9);
  padding: 60px 80px;
}
.reviews-container { max-width: 1280px; margin: 0 auto; }
.reviews-heading {
  text-align: center;
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 40px;
}
.heading-accent { color: var(--s-color-brand-blue); }
.heading-dark { color: var(--s-color-primary); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fffffc;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.review-card-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.review-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.review-stars { display: flex; gap: 2px; }
.review-title { font-family: var(--s-font-heading); font-weight: 800; font-size: 16px; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--s-color-secondary-text); flex: 1; }
.review-meta { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.review-author { font-weight: 700; font-size: 14px; }
.review-verified { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--s-color-brand-blue); font-weight: 600; }

/* ==========================================================================
   How It Works
   ========================================================================== */
.hiw-section {
  background: linear-gradient(#edf6e9, #F8FAF8);
  padding: 60px 80px;
}
.hiw-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hiw-heading {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.3;
  color: var(--s-color-primary);
  margin: 0 auto;
  max-width: 600px;
}
.hiw-heading em { color: var(--s-color-brand-blue); font-style: italic; }
.hiw-heading p { margin: 0; }
.hiw-cards { display: flex; gap: 40px; }
.hiw-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.hiw-card-image {
  position: relative;
  background: transparent;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.hiw-card-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  display: block;
  object-fit: cover;
}
.hiw-step-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--s-color-brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 0;
  border-radius: 0 0 16px 0;
  letter-spacing: 1px;
}
.hiw-card-text { padding: 20px; font-size: 15px; line-height: 1.6; color: var(--s-color-secondary-text); text-align: left; }
.hiw-card-text p { margin: 0; }

/* ==========================================================================
   Offer & Guarantee
   ========================================================================== */
.og-section { background: var(--s-color-bg-page); padding: 40px 80px; }
.og-inner { max-width: 1280px; margin: 0 auto; }

/* Offer */
.og-offer-wrap {
  background: transparent;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 0;
}
.og-offer { display: flex; }
.og-offer-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.og-heading {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.3;
}
.og-heading em { color: var(--s-color-brand-blue); font-style: italic; }
.og-description { font-size: 16px; color: var(--s-color-secondary-text); }
.og-divider { height: 1px; background: var(--s-color-border); }
.og-checklist { display: flex; flex-direction: column; gap: 12px; }
.og-checklist li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; }
.og-checklist li svg { flex-shrink: 0; }
.og-gifts-heading { font-size: 16px; font-weight: 700; }
.og-gifts-row { display: flex; gap: 12px; }
.og-gift-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--s-color-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  text-align: center;
}
.og-gift-badge {
  position: absolute;
  top: -8px;
  right: -4px;
  background: var(--s-color-brand-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.og-gift-badge s { opacity: 0.7; }
.og-gift-img { width: 64px; height: 64px; object-fit: contain; border-radius: 8px; }
.og-gift-label { font-size: 12px; font-weight: 600; }
.og-cta-area { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.og-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  height: 56px;
  padding: 16px 32px;
  background: #ff6d00;
  border: none;
  border-bottom: 4px solid var(--s-color-accent-border);
  border-radius: 8px;
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--s-font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.og-note { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--s-color-accent); font-weight: 600; }
.og-offer-image {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.og-offer-image img { max-width: 100%; border-radius: 16px; }

/* Wave dividers */
.og-wave { width: 100%; }
.og-wave img { width: 100%; display: block; }

/* Guarantee */
.og-guarantee-wrap {
  background: #edf6e9;
  border-radius: 0 0 24px 24px;
  padding: 0 0 40px;
  overflow: hidden;
}
.og-guarantee {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
}
.og-guarantee-image { flex-shrink: 0; }
.og-guarantee-image img { width: 200px; height: 200px; object-fit: contain; }
.og-guarantee-title {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.og-guarantee-title em { color: var(--s-color-brand-blue); font-style: italic; }
.og-guarantee-body { font-size: 15px; line-height: 1.6; color: var(--s-color-secondary-text); }
.og-guarantee-body p { margin-bottom: 12px; }

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: var(--s-color-bg-page);
  padding: 60px 80px;
}
.faq-container { max-width: 1280px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-title {
  font-family: var(--s-font-heading);
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 12px;
}
.faq-subtitle { font-size: 16px; color: var(--s-color-secondary-text); max-width: 600px; margin: 0 auto; }
.faq-columns { display: flex; gap: 24px; }
.faq-column { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--s-color-primary);
  gap: 16px;
}
.faq-question-text { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-icon.is-open { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer.is-open { max-height: 500px; }
.faq-answer-text { padding: 0 24px 20px; font-size: 15px; line-height: 1.6; color: var(--s-color-secondary-text); }


/* ==========================================================================
   Footer
   ========================================================================== */
.footer-section {
  background: #1F352F;
  border-radius: 24px 24px 0 0;
  color: #fafcfe;
  padding: 48px;
}
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer-top { display: flex; gap: 64px; margin-bottom: 40px; }
.footer-newsletter { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.footer-logo { width: 200px; height: auto; }
.footer-newsletter-title { font-size: 16px; font-weight: 700; }
.footer-newsletter-text { font-size: 14px; color: #DCEAE1; line-height: 1.5; }
.footer-email-input {
  display: flex;
  background: rgba(250,252,254,0.08);
  border-radius: 8px;
  overflow: hidden;
  max-width: 325px;
}
.footer-email-input input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #fafcfe;
  font-size: 14px;
  outline: none;
}
.footer-email-input input::placeholder { color: rgba(250,252,254,0.5); }
.footer-email-btn {
  padding: 12px 16px;
  background: #DCEAE1;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
}
.footer-columns { display: flex; gap: 48px; }
.footer-col { min-width: 140px; }
.footer-col-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; color: #DCEAE1; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social-icon {
  width: 48px; height: 48px;
  background: rgba(250,252,254,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social-icon img { width: 24px; height: 24px; }
.footer-bottom {
  border-top: 1px solid rgba(250,252,251,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright { font-size: 14px; color: #DCEAE1; }
.footer-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-payment-icons img { height: 24px; width: auto; }
.footer-mobile-logo { display: none; }
.footer-accordion { display: none; }

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 999px) {
  .ab-inner { padding: 8px 16px; }
  .header-bar { display: none; }
  .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .header-mobile-left { flex: 1; display: flex; align-items: center; gap: 4px; }
  .header-mobile-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
  .header-mobile-center { position: absolute; left: 50%; transform: translateX(-50%); }
  .header-mobile-center img { width: 137px; height: 28px; object-fit: cover; }
  .mobile-icon {
    display: flex; align-items: center; justify-content: center;
    padding: 8px;
  }

  .pdp-hero { padding: 20px; }
  .pdp-inner { flex-direction: column; gap: 24px; }
  .pdp-images { position: static; flex: none; width: 100%; max-width: 100%; }
  .pdp-main-image { display: none; }
  .pdp-thumbs {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-left: 0;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pdp-thumbs::-webkit-scrollbar { display: none; }
  .pdp-thumb {
    flex: 0 0 320px;
    width: 320px;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: none;
    scroll-snap-align: start;
    opacity: 1;
  }
  .pdp-thumb.active { border: none; }
  .pdp-thumb img { width: 100%; height: auto; object-fit: contain; display: block; }
  .pdp-content { flex: none; width: 100%; min-width: 0; padding: 0; }
  .pdp-desktop-review { display: none; }
  .pdp-mini-thumbs {
    display: flex;
    gap: 8px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .pdp-mini-thumbs::-webkit-scrollbar { display: none; }
  .pdp-mini-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: opacity 0.2s, border-color 0.2s;
  }
  .pdp-mini-thumb.active { border-color: var(--s-color-brand-blue, #3F7D65); opacity: 1; }
  .pdp-mini-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pdp-mobile-review { display: flex; gap: 12px; margin-top: 0; }
  .pdp-mobile-review .pdp-review-avatar img { width: 64px; height: 64px; }
  .pdp-divider { display: none; }
  .pdp-review-badge { flex-wrap: nowrap; gap: 6px; }
  .pdp-review-badge-text { font-size: 12px; white-space: nowrap; }
  .pdp-title { font-size: 24px; line-height: 1.5; letter-spacing: 0; margin-top: 0; }
  .pdp-description p { font-size: 14px; line-height: 1.5; }
  .pdp-price-old { font-size: 14px; }
  .pdp-price-new { font-size: 20px; }
  .pdp-check-item span { font-size: 14px; line-height: 1.5; }
  .fc-bundles-title { font-size: 14px; gap: 8px; }
  .fc-bundle-option {
    min-height: 84px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px 12px;
  }
  .fc-bundle-option::before {
    left: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
  }
  .fc-bundle-media {
    width: 58px;
    height: 52px;
    padding-left: 10px;
  }
  .fc-bundle-products {
    width: 48px;
    height: 42px;
  }
  .fc-bundle-products img {
    width: 34px;
    height: 42px;
  }
  .fc-bundle-products--1 img { left: 7px; }
  .fc-bundle-products--2 img:nth-child(1) { left: 0; }
  .fc-bundle-products--2 img:nth-child(2) { left: 14px; }
  .fc-bundle-products--3 img:nth-child(1) { left: 0; }
  .fc-bundle-products--3 img:nth-child(2) { left: 11px; }
  .fc-bundle-products--3 img:nth-child(3) { left: 22px; }
  .fc-bundle-title { font-size: 14px; }
  .fc-bundle-save { min-height: 22px; padding: 3px 7px; font-size: 10px; }
  .fc-bundle-price { font-size: 16px; }
  .fc-bundle-ribbon { font-size: 9px; padding: 3px 8px; }
  .pdp-btn { height: 44px; padding: 0 32px; font-size: 14px; }
  .pdp-btn span { font-size: 14px; }
  .pdp-payment-icon { width: 23px; height: 16px; }
  .pdp-payments { gap: 8px; }
  .pdp-shield-row svg { width: 16px; height: 16px; }
  .pdp-info-header { gap: 12px; }

  .usps-section { padding: 20px; }
  .usps-row { flex-direction: column; gap: 12px; }
  .usp-item { padding: 12px; gap: 18px; }
  .usp-divider { width: 100%; height: 0; border-left: none; border-top: 0.5px dashed var(--s-color-primary); }

  .content-section { padding: 20px; }
  .cbl-inner { flex-direction: column-reverse; gap: 32px; }
  .cbl-inner--reverse { flex-direction: column-reverse; gap: 32px; }
  .cbl-content { padding: 0; }
  .cbl-image-wrap { flex: none; width: 100%; aspect-ratio: 1; }
  .cbl-heading { font-size: 20px; line-height: 1.4; letter-spacing: 0; margin-bottom: 18px; }
  .cbl-body { font-size: 14px; line-height: 1.5; }

  .cb-inner { flex-direction: column-reverse; gap: 32px; padding: 0; }
  .cb-content { padding: 0; }
  .cb-image-wrap { flex: none; width: 100%; aspect-ratio: 1; }
  .cb-heading { font-size: 20px; line-height: 1.4; }
  .cb-richtext { font-size: 14px; line-height: 1.5; }
  .cb-benefit-item { font-size: 14px; }
  .cb-benefit-item svg { width: 24px; height: 24px; }

  .before-after-section { padding: 20px; }
  .ba-container { flex-direction: column; gap: 32px; }
  .ba-image-col { flex: none; width: 100%; aspect-ratio: 1; overflow: hidden; }
  .ba-image-col img { object-fit: cover; height: 100%; }
  .ba-text-col { padding: 0; }
  .ba-heading { font-size: 20px; line-height: 1.5; }
  .ba-richtext { font-size: 14px; line-height: 1.5; }
  .ba-btn { height: 44px; font-size: 14px; padding: 0 20px; }
  .og-cta-btn { height: 44px; font-size: 14px; width: 100%; padding: 0 20px; white-space: nowrap; }

  .comparison-section { padding: 40px 20px; }
  .comparison-cards { flex-direction: column; }
  .comparison-title { font-size: 24px; }

  .reviews-section { padding: 40px 20px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-heading { font-size: 24px; }

  .hiw-section { padding: 40px 20px; }
  .hiw-inner { gap: 32px; }
  .hiw-cards { flex-direction: column; gap: 18px; }
  .hiw-heading { font-size: 24px; }
  .hiw-card { flex-direction: row; min-height: 172px; }
  .hiw-card-image {
    flex: 0 0 48%;
    max-width: 168px;
    min-height: 172px;
    aspect-ratio: auto;
  }
  .hiw-card-text {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
  }
  .hiw-step-badge {
    width: 72px;
    height: 24px;
    font-size: 10px;
  }

  .og-section { padding: 20px; }
  .og-offer { flex-direction: column-reverse; gap: 24px; }
  .og-offer-content { padding: 24px; }
  .og-offer-image { flex: none; padding: 24px; }
  .og-guarantee { flex-direction: column; text-align: center; padding: 24px; }

  .faq-section { padding: 40px 20px; }
  .faq-columns { flex-direction: column; gap: 12px; }
  .faq-title { font-size: 24px; }

  .footer-section { padding: 32px 20px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-columns { flex-direction: column; gap: 24px; }
  .footer-newsletter { display: none; }
  .footer-mobile-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 32px;
  }
  .footer-mobile-logo .footer-logo { width: 150px; }
  .footer-mobile-newsletter { display: flex; flex-direction: column; gap: 8px; }
  .footer-mobile-email { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (min-width: 1000px) and (max-width: 1148px) {
  .ab-inner { padding: 8px 16px; }
  .header-bar { display: none; }
  .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .header-mobile-left { flex: 1; display: flex; align-items: center; gap: 4px; }
  .header-mobile-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
  .header-mobile-center { position: absolute; left: 50%; transform: translateX(-50%); }
  .header-mobile-center img { width: 137px; height: 28px; object-fit: cover; }
  .mobile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 479px) {
  .pdp-gifts-row { flex-direction: column; }
  .fc-bundle-option {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 14px 10px;
  }
  .fc-bundle-media {
    width: 54px;
    padding-left: 8px;
  }
  .fc-bundle-copy { gap: 4px; }
  .fc-bundle-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .fc-bundle-title { font-size: 13px; }
  .fc-bundle-subtitle { font-size: 11px; }
  .fc-bundle-pricing { align-self: end; }
  .fc-bundle-price { font-size: 15px; }
  .fc-bundle-old-price { font-size: 11px; }
  .og-gifts-row { flex-direction: column; }
  .pdp-title { font-size: 24px; }
  .pdp-price-new { font-size: 20px; }
}

/* Trustpilot star SVG - reusable */
.star-full { display: inline-block; }
.star-half { display: inline-block; }

/* Reader-style checkout CTAs */
.fc-reader-cta-group,
.pdp-cta-section .fc-reader-cta-group,
.og-cta-area .fc-reader-cta-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fc-reader-cta,
.pdp-btn.fc-reader-cta,
.ba-btn.fc-reader-cta,
.og-cta-btn.fc-reader-cta {
  width: 100%;
  max-width: 600px;
  min-height: 60px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 40px;
  background-color: #ff6d00;
  border: 1px solid transparent;
  border-radius: 50px;
  color: #fff;
  font-family: var(--s-font-heading), Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  box-shadow: 0 8px 22px rgba(255, 109, 0, 0.28);
  cursor: pointer;
  animation: fc-reader-cta-pulse 2.2s ease-in-out infinite;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fc-reader-cta:hover,
.pdp-btn.fc-reader-cta:hover,
.ba-btn.fc-reader-cta:hover,
.og-cta-btn.fc-reader-cta:hover {
  background-color: #e55f00;
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 109, 0, 0.36);
}

.fc-reader-cta span,
.pdp-btn.fc-reader-cta span,
.og-cta-btn.fc-reader-cta span {
  font-family: var(--s-font-heading), Arial, sans-serif;
  color: #fff;
  font-size: inherit;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}

.fc-reader-cta svg,
.pdp-btn.fc-reader-cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fc-reader-scarcity {
  width: auto;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--s-color-primary);
  font-family: var(--s-font-heading), Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.fc-reader-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background-color: #1dc96e;
  box-shadow: 0 0 0 0 rgba(29, 201, 110, 0.55);
  animation: fc-reader-dot-pulse 1.4s ease-out infinite;
}

.fc-reader-pipe {
  margin: 0 2px;
  color: rgba(31, 53, 47, 0.6);
}

.fc-reader-hourglass {
  width: 10px;
  height: 14px;
  flex: 0 0 10px;
}

.fc-reader-battery {
  width: 66px;
  height: 14px;
  display: flex;
  align-items: center;
  border: 1px solid red;
  margin-left: 1px;
  padding-left: 2px;
}

.fc-reader-battery span {
  width: 10px;
  height: 8px;
  margin-left: 2px;
  background-color: #c8c8c8;
}

.fc-reader-battery span:first-child {
  background-color: red;
  margin-left: 0;
  animation: fc-reader-low-stock-blink 1.1s steps(2, start) infinite;
}

@keyframes fc-reader-cta-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 22px rgba(255, 109, 0, 0.28);
  }
  50% {
    transform: scale(1.025);
    box-shadow: 0 12px 30px rgba(255, 109, 0, 0.4);
  }
}

@keyframes fc-reader-dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(29, 201, 110, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(29, 201, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 201, 110, 0); }
}

@keyframes fc-reader-low-stock-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (max-width: 767px) {
  .pdp-content,
  .pdp-info-header,
  .pdp-checks,
  .fc-bundles,
  .pdp-cta-section {
    max-width: calc(100vw - 40px);
  }

  .fc-reader-cta,
  .pdp-btn.fc-reader-cta,
  .ba-btn.fc-reader-cta,
  .og-cta-btn.fc-reader-cta {
    max-width: calc(100vw - 40px);
    min-height: 54px;
    padding: 14px 28px;
    font-size: 20px;
  }

  .fc-reader-scarcity {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    font-size: 13px;
    line-height: 1.1;
    gap: 4px;
    flex-wrap: wrap;
  }

  .fc-reader-battery {
    width: 32px;
    height: 12px;
    padding-left: 1px;
  }

  .fc-reader-battery span {
    width: 4px;
    height: 7px;
    margin-left: 1px;
  }
}
