.feature-section {
  background: linear-gradient(135deg, #2F9BDF 0%, #0165B7 45%, #003A6F 100%);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.feature-section .container {
  display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 56px; align-items: center;
}
/* centered text content */
.feature-section .feature-text { text-align: center; }
/* top badge */
.feature-badge {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 auto 18px;
  color: #fff !important; font-size: 13px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.feature-badge .fb-line {
  width: 34px; height: 2px; background: #fff !important; display: inline-block; border-radius: 2px;
}
.feature-section h2 { color: white; font-size: 36px; letter-spacing: -0.025em; margin: 0 0 16px; line-height: 1.15; text-wrap: balance; }
.feature-common {
  color: rgba(255,255,255,0.92);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 auto 16px;
  max-width: 60ch;
}
.feature-intro {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 52ch;
}
/* No video → single centered column, content in the middle */
.feature-section.no-video .container { grid-template-columns: 1fr; }
.feature-section.no-video .feature-video { display: none; }
.feature-section.no-video .feature-text { max-width: 820px; margin: 0 auto; }

.feature-cols {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.feature-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  flex: 0 0 140px;       /* all 3 equal width */
  width: 140px;
}
.feature-col .fc-ttl { min-height: 2.6em; display: flex; align-items: center; }  /* align labels even when one wraps */
.fc-ic {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 2px solid white;
  background: white!important;
	overflow:hidden;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  transition: background .2s, transform .2s, border-color .2s;
}
.feature-col:hover .fc-ic {
  background: white;
  color: #111;
  border-color: white;
  transform: translateY(-3px);
}
/* Icon source can be SVG, FontAwesome <i>, or an <img> — fit them all */
.fc-ic svg { width: 34px; height: 34px; }
.fc-ic i { font-size: 30px; line-height: 1; color: inherit; }
.fc-ic img { width: 70px; height: 70px; object-fit: contain; display: block; }
.fc-ttl {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.fc-sub {
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 22ch;
}

@media (max-width: 1100px) {
  .feature-intro { max-width: none; }
}
@media (max-width: 760px) {
  .feature-section h2 { font-size: 26px; }
  .feature-cols { grid-template-columns: 1fr; gap: 28px; }
  .fc-ic { width: 70px; height: 70px; }
}

.feature-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--blue-700);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* video frame — landscape, simple border, shortcode-friendly */
.feature-video {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ===== Product video gallery ===== */
.bl-vg { display: flex; gap: 14px; align-items: center; width: 100%; }
.bl-vg-stage {
  position: relative; flex: 1 1 auto; min-width: 0; aspect-ratio: 9 / 16;   /* match vertical short videos */
  border-radius: 10px; overflow: hidden;
  background: #000;                                   /* black frame */
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px;                                      /* black padding around the video */
}
.bl-vg-rail { flex: 0 0 76px; }
.bl-vg-poster {
  position: absolute; inset: 10px; background-size: cover; background-position: center;
  background-color: #16233c; border-radius: 6px;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 8px, transparent 8px 18px);
}
.bl-vg-stage.is-playing .bl-vg-poster,
.bl-vg-stage.is-playing .bl-vg-bigplay,
.bl-vg-stage.is-playing .bl-vg-caption { display: none; }
.bl-vg-frame { position: absolute; inset: 10px; border-radius: 6px; overflow: hidden; }
.bl-vg-bigplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px; border-radius: 999px; border: 0; cursor: pointer;
  background: #fff; box-shadow: 0 10px 30px -8px rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
}
.bl-vg-bigplay::after { content: ''; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent var(--blue-700); margin-left: 4px; }
.bl-vg-bigplay:hover { transform: translate(-50%,-50%) scale(1.06); }
.bl-vg-caption {
  position: absolute; left: 10px; right: 10px; bottom: 10px; padding: 16px 18px;
  color: #fff; font-weight: 700; font-size: 14px; text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
  border-radius: 0 0 6px 6px;
}

/* thumbnail rail */
.bl-vg-rail { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bl-vg-arrow {
  width: 100%; height: 24px; border: 0; border-radius: 8px; cursor: pointer;
  background: rgba(255,255,255,.18); color: #fff; font-size: 11px; line-height: 1;
  display: flex; align-items: center; justify-content: center;  /* centre the glyph */
}
.bl-vg-arrow:hover { background: rgba(255,255,255,.32); }
.bl-vg-thumbs {
  display: flex; flex-direction: column; gap: 10px;
  max-height: calc(3 * 124px + 2 * 10px); overflow-y: auto; overflow-x: hidden;
  scrollbar-width: none; width: 100%;
}
.bl-vg-thumbs::-webkit-scrollbar { display: none; }
.bl-vg-thumb {
  position: relative; flex: 0 0 auto; width: 70px; height: 124px; padding: 0; cursor: pointer;  /* 9:16 */
  border: 2px solid transparent; border-radius: 12px; overflow: hidden;
  background-color: #16233c; background-size: cover; background-position: center;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 6px, transparent 6px 14px);
}
.bl-vg-thumb.is-active { border-color: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.3); }
.bl-vg-thumb .bl-vg-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 28px; height: 28px; aspect-ratio: 1 / 1; flex: 0 0 auto;
  border-radius: 999px; background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
}
.bl-vg-thumb .bl-vg-play::after { content: ''; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent var(--blue-700); margin-left: 2px; }

@media (max-width: 900px) {
  .bl-vg { flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
  .bl-vg-stage { aspect-ratio: 9 / 16; max-width: 320px; width: 100%; }
  .bl-vg-rail { flex: 0 0 auto; flex-direction: row; justify-content: center; width: 100%; }
  /* round arrow buttons, centred, with a little gap from the edges */
  .bl-vg-rail { gap: 10px; }
  .bl-vg-arrow {
    width: 34px; height: 34px; flex: 0 0 auto; align-self: center;
    border-radius: 999px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.22); margin: 0 4px;
  }
  .bl-vg-up, .bl-vg-down { transform: rotate(-90deg); }   /* ▲▼ → ◀▶ on the horizontal rail */
  .bl-vg-thumbs { flex-direction: row; max-height: none; overflow-x: auto; overflow-y: hidden; }
  /* play badge: perfect circle, sat slightly above the thumb centre */
  .bl-vg-thumb { width: 80px; height: 124px; }
  .bl-vg-thumb .bl-vg-play {
    width: 30px; height: 30px; aspect-ratio: 1 / 1; flex: 0 0 auto;
    top: 42%;
  }
}

/* trust strip */
.trust {
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  padding: 36px 0;
}
.trust .container {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.trust-item { display:flex; align-items:center; gap: 14px; }
.trust-item .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700);
  display:flex; align-items:center; justify-content:center; flex: 0 0 auto;
}
.trust-item .ttl { font-weight: 700; color: var(--ink-800); font-size: 14px; line-height: 1.2; }
.trust-item .sub { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.trust-item.tp .ic {
  background: transparent;
  width: auto;
  min-width: 44px;
  height: 44px;
  border-radius: 0;
  color: #00b67a;
  padding: 0;
}

/* reviews */
.reviews { padding: 96px 0; background: var(--blue-50); }
.reviews .head { display:flex; align-items:flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.reviews h2 { font-size: 36px; letter-spacing: -0.025em; }
.reviews .head p { color: var(--ink-500); max-width: 460px; }

.reviews-shortcode-slot {
  min-height: 120px;
}
/* end reviews placeholder */

/* ============================================================
   CusRev (Customer Reviews for WooCommerce) — custom skin
   ============================================================ */
/* 30% summary (left) / 70% reviews (right) */
.reviews .cr-all-reviews-shortcode {
  color: var(--ink-700);
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 24px;
  align-items: start;
}
/* place the right-column elements */
.reviews ol.commentlist,
.reviews #cr-show-more-all-reviews,
.reviews .cr-show-more-review-spinner,
.reviews .cr-search-no-reviews { grid-column: 2; }

/* Hide the search box and the count / sort bar */
.reviews .cr-ajax-search,
.reviews .cr-count-row { display: none !important; }

/* ---- Summary box (left column, vertical, sticky) ---- */
.reviews .cr-summaryBox-wrap {
  grid-column: 1; grid-row: 1;
  align-self: start;
  position: sticky; top: var(--blm-sticky-top, 88px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 18px;
  padding: 24px 20px; box-shadow: var(--shadow-sm);
}
.reviews .cr-overall-rating-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.reviews .cr-average-rating span { font-size: 44px; font-weight: 800; color: var(--ink-900); line-height: 1; letter-spacing: -0.02em; }
.reviews .cr-total-rating-count { font-size: 13px; color: var(--ink-500); }
.reviews .cr-summary-separator { display: none !important; }
.reviews .ivole-summaryBox,
.reviews .ivole-summaryBox.cr-all-reviews-ajax { width: 100% !important; flex: 1 1 100% !important; }

/* histogram bars */
.reviews .cr-histogramTable { width: 100%; border-collapse: collapse; }
.reviews .cr-histogramTable td { padding: 3px 6px; vertical-align: middle; font-size: 12.5px; color: var(--ink-500); }
.reviews .ivole-histogramCell1 { white-space: nowrap; width: 56px; }
.reviews .ivole-histogramCell3 { width: 44px; text-align: right; }
.reviews .ivole-meter { background: var(--blue-50); border-radius: 999px; height: 10px; overflow: hidden; }
.reviews .ivole-meter-bar { background: linear-gradient(90deg, var(--blue-500), var(--blue-700)); height: 100%; border-radius: 999px; color: transparent; font-size: 0; }

/* ---- Stars (amber) — colour only, so CusRev's own base/front overlay keeps
   its alignment (overriding the container layout/size broke the star overlay) ---- */
.reviews .cr-rating-icon-base,
.reviews .cr-rating-icon-bg { color: #d9dee5; }        /* empty */
.reviews .cr-rating-icon-frnt { color: var(--amber); } /* filled */

/* ---- Search + count/sort row ---- */
.reviews .cr-ajax-search { display: flex; gap: 10px; margin: 6px 0 18px; }
.reviews .cr-ajax-search > div { position: relative; flex: 1; display: flex; align-items: center; }
.reviews .cr-ajax-search .cr-ajax-search-icon { position: absolute; left: 14px; }
.reviews .cr-input-text {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 12px 36px 12px 38px; font: 500 14px 'Plus Jakarta Sans', sans-serif; outline: none;
}
.reviews .cr-input-text:focus { border-color: var(--blue-700); box-shadow: 0 0 0 4px rgba(1,101,183,.12); }
.reviews .cr-clear-input { position: absolute; right: 12px; cursor: pointer; }
.reviews .cr-button-search {
  background: var(--blue-700); color: #fff; border: 0; border-radius: 12px;
  padding: 0 20px; font-weight: 700; cursor: pointer;
}
.reviews .cr-button-search:hover { background: var(--blue-800); }
.reviews .cr-count-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.reviews .cr-count-row-count { font-size: 13px; color: var(--ink-500); font-weight: 600; }
.reviews .cr-ajax-reviews-sort {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 8px 12px;
  font: 600 13px 'Plus Jakarta Sans', sans-serif; color: var(--ink-800); background: #fff; cursor: pointer;
}

/* ---- Review cards (compact, single column in the 70% area) ---- */
.reviews ol.commentlist {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.reviews ol.commentlist > li.review {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 14px;
  padding: 16px 18px; margin: 0; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.reviews ol.commentlist > li.review:hover { border-color: var(--blue-100); box-shadow: var(--shadow); transform: translateY(-1px); }
.reviews .comment_container { position: relative; display: block; }

/* avatar + verified check */
.reviews .cr-avatar { width: 48px; height: 48px; border-radius: 999px; float: left; margin: 0 14px 0 0; }
.reviews .cr-avatar-check {
  position: absolute; left: 34px; top: 32px;
  width: 18px; height: 18px; border-radius: 999px; background: var(--green);
  display: flex; align-items: center; justify-content: center; border: 2px solid #fff;
}
.reviews .cr-avatar-check svg { width: 14px; height: 14px; }

/* meta */
.reviews .cr-comment-text { overflow: hidden; }
.reviews .woocommerce-review__author { font-weight: 700; color: var(--ink-900); font-size: 15px; }
.reviews .woocommerce-review__verified {
  display: inline-block; margin-top: 2px; font-size: 11px; font-weight: 700;
  color: var(--green); background: rgba(31,138,91,.10); padding: 2px 8px; border-radius: 999px;
}
.reviews .woocommerce-review__published-date { display: block; font-size: 12px; color: var(--ink-400); margin-top: 4px; }
.reviews .cr-rating-product-name { margin: 10px 0; }

/* product name + thumbnail */
.reviews .cr-product-name-picture {
  display: flex; align-items: center; gap: 10px; margin: 10px 0;
  padding: 8px; background: var(--blue-50); border-radius: 10px;
}
.reviews .iv-comment-product-img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.reviews .cr-comment-productname-a { font-size: 12.5px; font-weight: 600; color: var(--blue-700); line-height: 1.35; }
.reviews .cr-comment-productname-a:hover { text-decoration: underline; }

/* review body */
.reviews .description { color: var(--ink-700); font-size: 14.5px; line-height: 1.6; }
.reviews .description p { margin: 0 0 8px; }

/* show more */
.reviews .cr-show-more-button {
  display: block; margin: 24px auto 0; cursor: pointer;
  background: var(--blue-700); color: #fff; border: 0; border-radius: 999px;
  padding: 14px 28px; font: 700 15px 'Plus Jakarta Sans', sans-serif;
  transition: background .15s, box-shadow .15s;
}
.reviews .cr-show-more-button:hover { background: var(--blue-800); box-shadow: var(--shadow); }
.reviews .bl-rev-more {
  grid-column: 2; display: block; margin: 24px auto 0; cursor: pointer;
  background: var(--blue-700); color: #fff; border: 0; border-radius: 999px;
  padding: 14px 28px; font: 700 15px 'Plus Jakarta Sans', sans-serif;
  transition: background .15s, box-shadow .15s;
}
.reviews .bl-rev-more:hover { background: var(--blue-800); box-shadow: var(--shadow); }
@media (max-width: 900px) { .reviews .bl-rev-more { grid-column: 1; } }
.reviews .cr-search-no-reviews { text-align: center; color: var(--ink-500); padding: 20px; }

@media (max-width: 900px) {
  /* Stack: summary on top, reviews below */
  .reviews .cr-all-reviews-shortcode { grid-template-columns: 1fr; }
  .reviews .cr-summaryBox-wrap {
    grid-column: 1; grid-row: auto;
    position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 20px;
  }
  .reviews .cr-summary-separator { display: none !important; }
  .reviews .ivole-summaryBox { flex: 1 1 100%; min-width: 0; width: 100%; }
  .reviews .cr-ajax-search,
  .reviews .cr-count-row,
  .reviews ol.commentlist,
  .reviews #cr-show-more-all-reviews,
  .reviews .cr-search-no-reviews { grid-column: 1; }
}

/* community */
.community { padding: 64px 0 0; overflow-x: clip; }
.community h2 { text-align: center; font-size: 36px; letter-spacing: -0.025em; margin-bottom: 12px; }
.community .sub { text-align: center; color: var(--ink-700); font-size: 16px; max-width: 640px; margin: 0 auto 8px; line-height: 1.6; }
/* community — simple alternating text / image rows */
.bl-story { display: flex; flex-direction: column; margin-top: 28px; }
.bl-story-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 40px 0; border-bottom: 1px solid var(--line-soft);
}
.bl-story-row:last-child { border-bottom: 0; }
/* alternate: even rows put the image on the right */
.bl-story-row:nth-child(even) .bl-story-media { order: 2; }
.bl-story-row:nth-child(even) .bl-story-text  { order: 1; }
/* No image/video → text spans the full width */
.bl-story-row--full { grid-template-columns: 1fr; }
.bl-story-row--full .bl-story-text { max-width: none; }

.bl-story-media {
  width: 100%;
  height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.bl-story-media > img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
  border-radius: var(--radius-lg); background: #fff;
  border: 1px solid #ddd; box-shadow: 0 18px 48px -24px rgba(15,23,42,.35);
}
/* video panel fills the media box */
.bl-story-media--video { display: block; }
.bl-story-media--video > iframe {
  width: 100%; height: 100%; border: 0; display: block;
  border-radius: var(--radius-lg); background: #000;
  box-shadow: 0 18px 48px -24px rgba(15,23,42,.35);
}
.bl-story-media .story-ph {
  width: 100%; min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--blue-500);
  background: radial-gradient(circle at 30% 25%, rgba(47,155,223,.12), transparent 60%), linear-gradient(180deg, #F4F8FC 0%, #E1ECF7 100%);
  border-radius: var(--radius-lg); border: 1px solid #ddd; box-shadow: 0 18px 48px -24px rgba(15,23,42,.35);
}
.bl-story-media .story-ph svg { opacity: .5; }
.bl-story-media .story-ph span { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-600); opacity: .75; }

.bl-story-text p { margin: 0; color: var(--ink-800); font-size: 16px; line-height: 1.7; }

@media (max-width: 900px) {
  .bl-story-row { grid-template-columns: 1fr; gap: 22px; padding: 28px 0; }
  .bl-story-row:nth-child(even) .bl-story-media,
  .bl-story-row:nth-child(even) .bl-story-text { order: 0; }
}

/* stats banner */
.stats {
  background: var(--blue-700);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 80% 20%, rgba(47,155,223,.4), transparent 70%),
              radial-gradient(50% 70% at 10% 90%, rgba(255,188,0,.12), transparent 70%);
  pointer-events: none;
}
.stats .container { position: relative; }
.stats h2 {
  color: white; font-size: 56px; text-align: center; letter-spacing: -0.03em; line-height: 1.05;
  margin-bottom: 8px;
}
.stats .strap { text-align: center; color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 56px; max-width: 540px; margin-left: auto; margin-right: auto;}
.stats .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat .num {
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
  font-size: 64px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: var(--amber);
}
.stat .num .sm { font-size: 28px; color: rgba(255,255,255,.85); font-weight: 700;}
.stat .lbl {
  margin-top: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,.85); font-weight: 600;
  max-width: 220px;
}
.stats .ftn { text-align: center; margin-top: 56px; font-size: 12px; color: rgba(255,255,255,.55); }

/* faq */
.faq { padding: 96px 0; background: var(--blue-50); }
.faq-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.faq-head .section-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-700); margin-bottom: 12px;
}
.faq-head h2 {
  font-size: 40px; letter-spacing: -0.025em; color: var(--ink-900);
  line-height: 1.1; margin-bottom: 16px;
}
.faq-sub { color: var(--ink-700); font-size: 16px; line-height: 1.6; }
.faq-sub a { color: var(--blue-700); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.faq-sub a:hover { color: var(--blue-800); }

.faq-contact-btn {
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

/* Plugin-output FAQ structure: .faq-item > .faq-question + .faq-answer */
.faq-item {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--blue-100); }
.faq-item.is-open,
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--blue-100);
  box-shadow: 0 8px 28px -16px rgba(1, 101, 183, 0.25);
}

.faq-question {
  cursor: pointer;
  padding: 22px 60px 22px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  user-select: none;
  position: relative;
  line-height: 1.4;
  outline: none;
  transition: color .15s;
}
.faq-question:hover,
.faq-question:focus-visible { color: var(--blue-700); }
.faq-question:focus-visible { box-shadow: inset 0 0 0 2px var(--blue-500); border-radius: 14px; }
.faq-question strong { font-weight: 700; }

/* Chevron via ::after — no extra markup, works with plugin HTML */
.faq-question::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 22px;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  border-radius: 999px;
  background: var(--blue-50) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230165B7' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") center / 18px 18px no-repeat;
  transition: transform .25s ease, background-color .15s;
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
  background-color: var(--blue-700);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}

/* Answer — collapsed by default, expand when sibling question is aria-expanded=true */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.7;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-item.is-open .faq-answer,
.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 1500px;
  padding: 4px 60px 24px 24px;
}
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer b, .faq-answer strong { color: var(--ink-900); font-weight: 700; }
.faq-answer ol,
.faq-answer ul { margin: 8px 0 4px; padding-left: 22px; }
.faq-answer ol li,
.faq-answer ul li { margin-bottom: 6px; line-height: 1.6; }
.faq-answer a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--blue-800); }

@media (max-width: 760px) {
  .faq { padding: 64px 0; }
  .faq-head h2 { font-size: 30px; }
  .faq-question { padding: 18px 56px 18px 18px; font-size: 16px; }
  .faq-question::after { right: 14px; width: 32px; height: 32px; margin-top: -16px; background-size: 16px 16px; }
  .faq-item.is-open .faq-answer,
  .faq-question[aria-expanded="true"] + .faq-answer { padding: 4px 48px 20px 18px; font-size: 15px; }
}

/* related */
.related { padding: 96px 0; }
.related h2 { font-size: 30px; letter-spacing: -0.025em; margin-bottom: 32px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
/* Related product cards now use the shared .product card
   (assets/common/css/common.css, scoped under .bl-pcard-grid). */

/* footer */
.footer { background: var(--ink-800); color: rgba(255,255,255,.7); padding: 72px 0 32px; font-size: 14px;}
.footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer h4 { color: white; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a:hover { color: white; }
.footer .brand { color: white; font-weight: 800; font-size: 22px; display:flex; align-items:center; gap: 10px; margin-bottom: 14px; }
.footer .brand .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  display:flex; align-items:center; justify-content:center;
  font-weight: 800; font-size: 18px; letter-spacing: -0.03em;
}
.footer .addr { line-height: 1.7; }
.footer .socials { display:flex; gap: 12px; margin-top: 18px;}
.footer .socials a {
  width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
}
.footer .socials a:hover { background: var(--blue-700); color: white; }
.footer .bottom {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding-top: 24px;
  display:flex; align-items:center; justify-content:space-between; font-size: 12px; color: rgba(255,255,255,.45);
  gap: 16px; flex-wrap: wrap;
}
.footer .bottom .pay { display:flex; gap: 6px; }
.footer .bottom .pay .pay-pill { color: white; background: rgba(255,255,255,.08); border-color: transparent; }

/* small */
.section-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue-700); margin-bottom: 8px;}
.divider { height: 1px; background: var(--line-soft); margin: 24px 0;}

/* placeholder striped svg */
.ph {
  width: 100%; height: 100%;
  background-image:
    repeating-linear-gradient(135deg, rgba(1,101,183,.07) 0 6px, transparent 6px 14px),
    linear-gradient(180deg, var(--blue-50), #e7eff8);
  display:flex; align-items:center; justify-content:center;
  color: var(--blue-700); font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  text-align: center; padding: 12px;
}
.ph.dark {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 6px, transparent 6px 14px),
    linear-gradient(180deg, #142035, #1E293B);
  color: rgba(255,255,255,.6);
}

/* responsive */
@media (max-width: 1100px) {
  .pdp { grid-template-columns: 1fr; }
  .gallery { position: static; max-height: none; }
  /* minmax(0,1fr) lets the single column shrink below a wide child's content
     width (e.g. the video carousel), so it can't push the section past the
     viewport and clip the text. */
  .feature-section .container { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .feature-section .feature-text,
  .feature-section .feature-video { min-width: 0; max-width: 100%; overflow: hidden; }
  .feature-section .feature-video img,
  .feature-section .feature-video iframe { max-width: 100%; height: auto; }
  .feature-band { padding: 28px 20px; margin-bottom: 36px; }
  .feature-band h2 { font-size: 26px; }
  .feature-intro { font-size: 15.5px; margin-bottom: 40px; }
  .feature-cols { grid-template-columns: 1fr; gap: 36px; }
  .fc-ic { width: 88px; height: 88px; }
  .stats h2 { font-size: 42px; }
  .stats .grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-shortcode-slot { padding: 0; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer .grid { grid-template-columns: 1fr 1fr; }

  /* Gallery: stage first, thumbs under with overlapping arrows */
  .gallery {
    position: static;
    max-height: none;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery .stage { order: 1; }
  .gallery .thumbs-rail { order: 2; }

  .thumbs-rail {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0;
  }
  .thumbs-arrow {
    /* Overlay left/right edges of the thumb rail */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    min-height: 0;
    z-index: 3;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line-soft);
    box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.35);
    color: var(--ink-800);
  }
  .thumbs-arrow:hover:not(:disabled) {
    background: var(--blue-700);
    border-color: var(--blue-700);
    color: white;
  }
  .thumbs-arrow svg { width: 14px; height: 14px; }
  .thumbs-arrow-up   { left: 8px; }
  .thumbs-arrow-down { right: 8px; }
  /* up/down glyphs become left/right on the horizontal mobile rail */
  .thumbs-arrow-up svg,
  .thumbs-arrow-down svg,
  .gallery .thumbs-arrow-up,
  .gallery .thumbs-arrow-down { transform: rotate(-90deg); }

  .thumbs {
    flex: 0 1 auto;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    /* Show exactly 4 thumbs: 4 × 70 + 3 × 10 = 310px */
    width: 310px;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    padding: 2px;
    margin: -2px;
    scrollbar-width: none;
  }
  .thumbs::-webkit-scrollbar { display: none; }
  .thumbs .thumb {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    scroll-snap-align: start;
  }

  /* Detail typography */
  .details h1 { font-size: 22px; }
  .price-row { flex-wrap: wrap; }
  .price-now { font-size: 30px; }
  .price-was { font-size: 16px; }

  /* Trust strip */
  .trust .container { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 880px) {
  .container { padding: 0 18px; }
  .reviews h2, .community h2 { font-size: 26px; text-align: left; }
  .reviews .head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer .grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Phone */
  .bl-crumbs { display: none; }   /* hide breadcrumb on mobile */
  .pdp { gap: 22px; padding-bottom: 32px; }
  .details h1 { font-size: 20px; line-height: 1.2; }
  .price-now { font-size: 26px; }
  .price-was { font-size: 14px; }
  .rating { flex-wrap: wrap; gap: 8px; }
  .rating-sep { display: none; }
  .rating-action { font-size: 13px; }
  .cart-row { flex-wrap: nowrap; gap: 10px; }
  .cart-row .qty { flex: 0 0 auto; width: auto; }
  .cart-row #add-basket { flex: 1 1 auto; min-width: 0; }
  .cart-row #add-basket .ab-price { display: none; }   /* hide price in button on mobile */
  .qty input { width: 34px; }

  /* Accordion */
  .acc-row > button { padding: 16px 16px; font-size: 15px; }

  /* Feature spotlight */
  .feature-section { padding: 48px 0; }
  .feature-section .container { gap: 32px; }
  .feature-section h2 { font-size: 24px; }
  .feature-intro { font-size: 15px; }
  .feature-badge { flex-wrap: wrap; justify-content: center; font-size: 11px; letter-spacing: .1em; }
  .feature-badge .fb-line { width: 24px; }
  /* Each feature = its own row: icon left + text right */
  .feature-cols {
    display: flex; flex-direction: column; flex-wrap: nowrap;
    gap: 14px; max-width: 340px; margin: 0 auto; align-items: stretch;
  }
  .feature-col {
    flex: 0 0 auto !important; width: 100%;
    flex-direction: row; align-items: center; justify-content: flex-start;
    gap: 16px; text-align: left; min-width: 0;
  }
  .feature-col .fc-ic { flex: 0 0 auto; width: 56px; height: 56px; }
  .feature-col .fc-ic svg { width: 26px; height: 26px; }
  .feature-col .fc-ttl { text-align: left; min-height: 0; font-size: 14px; }

  /* Trust strip */
  .trust-item .ttl { font-size: 13.5px; }
  .trust-item .sub { font-size: 12px; }

  /* Stats banner */
  .stats { padding: 64px 0; }
  .stats h2 { font-size: 30px; }
  .stats .grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .stats .stat .num { font-size: 44px; }
  .stats .stat .lbl { font-size: 14px; }

  /* Reviews */
  .reviews { padding: 56px 0; }
  .reviews h2 { font-size: 22px; }
  .reviews .head p { font-size: 14px; }

  /* Community */
  .community { padding: 40px 0 0; }
  .community h2 { font-size: 24px; }
  .community .sub { font-size: 14px; }
  .bl-story-text p { font-size: 15px; line-height: 1.6; }

  /* FAQ */
  .faq { padding: 48px 0; }
  .faq-head h2 { font-size: 22px; }
  .faq-sub { font-size: 14px; }
  .faq-contact-btn { padding: 12px 22px; font-size: 14px; width: 100%; justify-content: center; }
  .faq-question { padding: 16px 50px 16px 16px; font-size: 15px; }
  .faq-question::after {
    width: 28px; height: 28px;
    right: 12px;
    margin-top: -14px;
    background-size: 14px 14px;
  }

  /* Related */
  .related { padding: 48px 0; }
  .related h2 { font-size: 22px; }

  /* Modal */
  .modal-overlay { padding: 10px; align-items: center; }
  .modal { max-height: 90vh; max-height: 90dvh; }
  .modal-head { padding: 14px 16px; }
  .modal-head h3 { font-size: 16px; }
  .modal-body { padding: 16px; }
}

/* Hidden modal-source holder (kept on-page & rendered so plugin JS initialises) */
#bl-modal-sources {
  position: absolute; left: -9999px; top: 0;
  width: 1px; height: 1px; overflow: hidden;
}
/* Custom accessories block (moved out of the hidden WC form) */
#bl-accessories { margin: 16px 0 4px; }
#bl-accessories:empty { display: none; }

/* ===== Accessories — custom design (built from meta) ===== */
.bl-acc-box { border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; }
.bl-acc-head {
  background: var(--blue-50); color: var(--blue-700);
  font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding: 12px 16px; border-bottom: 1px solid var(--line-soft);
}
.bl-acc-list { display: grid; gap: 0; }
.bl-acc-item {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  padding: 12px 16px; border-bottom: 1px solid var(--line-soft);
  transition: background .12s;
}
.bl-acc-item:last-child { border-bottom: 0; }
.bl-acc-item:hover { background: var(--blue-50); }
/* custom checkbox */
.bl-acc-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.bl-acc-check {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid var(--line); background: #fff; position: relative; transition: all .15s;
}
.bl-acc-item input:checked + .bl-acc-check { background: var(--blue-700); border-color: var(--blue-700); }
.bl-acc-item input:checked + .bl-acc-check::after {
  content: ''; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.bl-acc-item input:focus-visible + .bl-acc-check { box-shadow: 0 0 0 3px rgba(1,101,183,.25); }
/* thumb */
.bl-acc-thumb {
  flex: 0 0 auto; position: relative; width: 52px; height: 52px; border-radius: 8px;
  border: 1px solid var(--line-soft); background: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bl-acc-thumb img { width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; }
.bl-acc-thumb.bl-acc-noimg { background: var(--blue-50); }
.bl-acc-zoom {
  position: absolute; bottom: 2px; right: 2px; font-size: 9px; line-height: 1;
  background: rgba(255,255,255,.9); border-radius: 4px; padding: 1px 3px; pointer-events: none;
}
/* info */
.bl-acc-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.bl-acc-name { font-weight: 700; color: var(--ink-800); font-size: 14px; }
.bl-acc-price { font-weight: 700; color: var(--green); font-size: 13px; }
.bl-acc-link {
  flex: 0 0 auto; font-size: 12px; font-weight: 700; color: var(--blue-700);
  border: 1px solid var(--blue-100); border-radius: 8px; padding: 7px 12px; text-decoration: none;
  transition: background .15s, color .15s;
}
.bl-acc-link:hover { background: var(--blue-700); color: #fff; border-color: var(--blue-700); }
/* lightbox */
.bl-acc-lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(15,23,42,.85); align-items: center; justify-content: center; padding: 24px;
}
.bl-acc-lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.bl-acc-lb-close { position: fixed; top: 18px; right: 26px; color: #fff; font-size: 36px; cursor: pointer; line-height: 1; }
/* Booking calculator block (moved out of the hidden WC form) */
#bl-booking { margin: 14px 0; }
#bl-booking:empty { display: none; }
/* Add-to-basket disabled until booking dates chosen */
#add-basket.is-disabled { opacity: .55; cursor: not-allowed; }
/* Booking: only Order-on-Call remains in the qty row — keep it right */
/* Video carousel once moved into the feature slot */
.feature-video [data-inline-src="video-carousel"] { width: 100%; }
.feature-video [data-inline-src="video-carousel"] img,
.feature-video [data-inline-src="video-carousel"] iframe { max-width: 100%; }

/* ===== Center the design inside Astra's content area ===== */
.ast-container,
#primary,
.content-area,
.site-content .ast-container,
.entry-content,
.site-content #primary,
article.product {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 auto !important;
  float: none !important;
}
#root { width: 100%; }
/* Our own .container already centers itself at max 1280px */

/* ===== Custom thumb-rail styling applied to the DEFAULT WooCommerce gallery ===== */
.gallery.woocommerce-product-gallery-wrap { display: block; position: sticky; top: var(--blm-sticky-top, 88px); align-self: start; }

/* The WC gallery becomes a 2-col grid: thumb rail (80px) + stage (1fr) */
.gallery.woocommerce-product-gallery-wrap .woocommerce-product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  width: 100% !important;
  margin: 0 !important;
  position: relative;
}

/* ---- Stage (main image / flex-viewport) → right column ---- */
.gallery.woocommerce-product-gallery-wrap .flex-viewport,
.gallery.woocommerce-product-gallery-wrap .woocommerce-product-gallery__wrapper {
  grid-column: 2; grid-row: 1;
  margin: 0 !important;
}
.gallery.woocommerce-product-gallery-wrap .flex-viewport,
.gallery.woocommerce-product-gallery-wrap > .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gallery.woocommerce-product-gallery-wrap .woocommerce-product-gallery__image,
.gallery.woocommerce-product-gallery-wrap .woocommerce-product-gallery__image a {
  display: block; width: 100%; height: 100%; margin: 0;
}
.gallery.woocommerce-product-gallery-wrap .woocommerce-product-gallery__image img {
  width: 100% !important; height: 100% !important;
  object-fit: contain !important;
  border-radius: var(--radius-lg);
}

/* ---- Thumb rail (flexslider thumbnails) → left column ---- */
.gallery.woocommerce-product-gallery-wrap .flex-control-thumbs {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; margin: 0; padding: 2px;
  max-height: 440px; overflow-y: auto; overflow-x: hidden;
  scrollbar-width: none;
}
.gallery.woocommerce-product-gallery-wrap .flex-control-thumbs::-webkit-scrollbar { display: none; }
.gallery.woocommerce-product-gallery-wrap .flex-control-thumbs li {
  width: 80px; height: 80px; margin: 0; float: none; list-style: none;
}
.gallery.woocommerce-product-gallery-wrap .flex-control-thumbs li img {
  width: 80px !important; height: 80px !important;
  object-fit: contain;
  border: 2px solid var(--line-soft); background: var(--blue-50);
  border-radius: 12px; padding: 4px; cursor: pointer; opacity: 1;
  transition: border-color .15s;
}
.gallery.woocommerce-product-gallery-wrap .flex-control-thumbs li img:hover { border-color: var(--blue-500); }
.gallery.woocommerce-product-gallery-wrap .flex-control-thumbs li img.flex-active { border-color: var(--blue-700); }

/* No-slider fallback: stack images but keep the stage look on the first one */
.gallery.woocommerce-product-gallery-wrap .woocommerce-product-gallery--columns-4 .woocommerce-product-gallery__image:not(:first-child),
.gallery.woocommerce-product-gallery-wrap .woocommerce-product-gallery:not(.flexslider) .woocommerce-product-gallery__image:not(:first-child) {
  display: none;
}

/* ===== Trustpilot blocks are clickable links ===== */
a.trust-item, a.trust-item:hover, a.trust-item:focus { text-decoration: none !important; color: inherit !important; }
a.tp-bar, a.tp-bar:hover, a.tp-bar:focus { text-decoration: none !important; color: inherit !important; display: block; cursor: pointer; }
a.trust-item.tp { cursor: pointer; }
a.trust-item.tp:hover .ttl, a.tp-bar:hover .tp-word { text-decoration: underline; text-underline-offset: 3px; }

/* ===== Mobile overflow guard =====
   Stops content-driven horizontal scroll (long titles, long URLs, wide spec
   tables, oversized embeds) from shifting/cutting the whole page sideways.
   Uses overflow:clip so it does NOT break sticky positioning on desktop. */
#root { overflow-x: clip; max-width: 100%; }
#root img,
#root svg,
#root video,
#root iframe,
#root embed,
#root object { max-width: 100%; }
/* CusRev rating stars must keep their intrinsic size — the global #root svg
   max-width:100% squashes them and breaks the base/front star overlay. */
#root .reviews .cr-rating-icon svg,
#root .reviews .crstar-rating-svg svg { max-width: none; }
/* break long unbreakable strings (URLs, model codes) instead of pushing width */
#root h1, #root h2, #root h3, #root h4,
#root p, #root li, #root td, #root a,
.details, .acc-row .body,
.bl-clr-card, .bl-acc-card { overflow-wrap: break-word; word-break: break-word; }

@media (max-width: 900px) {
  /* belt-and-braces: kill any residual page-level horizontal scroll on mobile */
  html, body { overflow-x: hidden; }
  /* wide spec/description tables from ACF scroll inside their box, not the page */
  .acc-row .body table,
  .table-box table,
  .feature-text table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* embedded iframes (maps/videos in description) never exceed the column */
  .acc-row .body iframe,
  .feature-text iframe { width: 100% !important; max-width: 100% !important; }
}

/* ===== Sticky add-to-cart bar ===== */
.bl-sticky-cart {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990;
  background: #fff; border-top: 1px solid var(--line-soft);
  box-shadow: 0 -8px 30px -12px rgba(15, 23, 42, .28);
  transform: translateY(110%);
  transition: transform .28s ease;
  padding: 10px 0; padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.bl-sticky-cart.is-visible { transform: translateY(0); }
/* hide while a modal is open */
.bl-modal-open .bl-sticky-cart { transform: translateY(110%) !important; }
.bl-sticky-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 16px;
}
.bl-sticky-info { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1 1 auto; }
.bl-sticky-thumb {
  width: 46px; height: 46px; flex: 0 0 auto;
  border: 1px solid var(--line-soft); border-radius: 10px; overflow: hidden;
  background: var(--blue-50);
}
.bl-sticky-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.bl-sticky-meta { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.bl-sticky-title {
  font-weight: 700; color: var(--ink-800); font-size: 14px; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bl-sticky-price { font-weight: 800; color: var(--ink-900); font-size: 16px; line-height: 1.2; }
.bl-sticky-add {
  flex: 0 0 auto; min-height: 48px; height: 48px;
  padding: 0 28px !important; border-radius: 12px !important; white-space: nowrap;
}
.bl-sticky-add.is-added { background: var(--green) !important; }

@media (max-width: 600px) {
  /* Stacked & centered: title (max 2 lines) → price → full-width button */
  .bl-sticky-inner { padding: 8px 14px; gap: 8px; flex-direction: column; align-items: center; text-align: center; }
  .bl-sticky-thumb { display: none; }        /* save space on phones */
  .bl-sticky-info { flex-direction: column; align-items: center; width: 100%; gap: 4px; }
  .bl-sticky-meta { align-items: center; width: 100%; }
  .bl-sticky-title {
    font-size: 13.5px; white-space: normal; max-width: 100%;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .bl-sticky-price { font-size: 15px; }
  .bl-sticky-add { width: 100%; max-width: 260px; padding: 0 18px !important; min-height: 46px; height: 46px; }
}

/* Hide the "Free delivery across UK mainland" assurance (and its separator) on mobile */
@media (max-width: 600px) {
  .assure-item.assure-delivery { display: none; }
  .assure-sep:has(+ .assure-delivery) { display: none; }
}
