html, body {
    margin: 0;
    padding: 0;
}
/* ===========================================
   LP WRAPPER + GLOBAL
=========================================== */

.lp-page,
.lp-page * ,
.lp-page *::before,
.lp-page *::after {
    box-sizing: border-box;
}

.lp-page {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: #f5f5f5;
    color: #111;
}

/* Централен контейнер */
.lp-page .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 12px;
}

/* ===========================================
   HEADER (работи с <header class="vmag-header">)
=========================================== */

.lp-page .vmag-header {
    width: 100%;
    background: linear-gradient(180deg, #182A3F 0%, #0E1826 100%);;
    color: #fff;
    padding: 10px 0;
    position: relative;
    z-index: 20;
}

.lp-page .vmag-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 12px;
}

.lp-page .vmag-logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* Search */
.lp-page .vmag-search {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 420px;
    margin: 0 16px;
}

.lp-page .vmag-search input[type="search"] {
    flex: 1;
    padding: 7px 12px;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 14px;
}

.lp-page .vmag-search button {
    background: #04892a;
    border: none;
    padding: 8px 14px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Icons */
.lp-page .vmag-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.lp-page .vmag-icons button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

.lp-page .icon-24 {
    width: 26px;
    height: 26px;
    display: block;
}

/* Cart Badge */
.lp-page .vmag-cart {
    position: relative;
}

.lp-page .vmag-cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #04892a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    padding: 1px 4px;
    min-width: 14px;
    text-align: center;
}

/* Mobile header */
.lp-page .vmag-search-toggle {
    display: none !important;
}

@media (max-width: 768px) {
    .lp-page .vmag-header .container {
        justify-content: space-between;
        padding: 0 10px;
    }

    .lp-page .vmag-logo img {
        height: 42px;
    }

    .lp-page .vmag-search {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        padding: 8px;
        background: #053262;
        opacity: 0;
        transform: translateY(-10px);
        transition: all .25s ease;
    }

    .lp-page .vmag-search.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .lp-page .vmag-search-toggle {
        display: flex !important;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }
}

/* ===========================================
   PRODUCT LAYOUT – ADAPTIРАН СТАР V2 CSS
   (1:1 с твоя стар LP)
=========================================== */

/* ========== PRODUCT LAYOUT ========== */
.lp-page .v2-wrap.container {
    max-width: 1120px;
    margin: 20px auto 40px;
    padding: 0 12px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
}

@media(max-width: 980px) {
    .lp-page .v2-wrap.container {
        grid-template-columns: 1fr;
    }
}

/* ========== GALLERY ========== */
.lp-page .v2-media-frame {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.lp-page .v2-media-frame img,
.lp-page .v2-media-frame iframe,
.lp-page .v2-media-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-page .v2-shipping-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #04892a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    z-index: 5;
}

@media(max-width: 768px) {
    .lp-page .v2-shipping-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* GALLERY ARROWS */
.lp-page .v2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #fff;
    color: #053262;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    z-index: 10;
}

.lp-page .v2-arrow-left { left: 10px; }
.lp-page .v2-arrow-right { right: 10px; }

/* THUMBNAILS */
.lp-page .v2-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.lp-page .v2-thumbs img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .2s;
}

.lp-page .v2-thumbs img.is-active {
    border-color: #f3a71a;
}

@media(max-width: 768px) {
    .lp-page .v2-thumbs {
        display: none;
    }
}

/* ========== GALLERY RAIL (STYLE: rail) ========== */
.lp-page .v2-rail-hero {
    overflow: hidden;
}

.lp-page .v2-rail-viewport {
    position: absolute;
    inset: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
    cursor: grab;
    overscroll-behavior-x: contain;
}
.lp-page .v2-rail-viewport:active { cursor: grabbing; }
.lp-page .v2-rail-viewport::-webkit-scrollbar { display: none; }

.lp-page .v2-rail-track {
    display: flex;
    gap: 12px;
    padding: 12px;
    height: 100%;
    align-items: stretch;
    box-sizing: border-box;
}

.lp-page .v2-rail-item {
    flex: 0 0 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f2f2f2;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.lp-page .v2-rail-item img,
.lp-page .v2-rail-item video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #fff;
}

@media (min-width: 980px) {
    .lp-page .v2-rail-item { flex-basis: 100%; }
}

@media (min-width: 1200px) {
    .lp-page .v2-rail-item { flex-basis: 100%; }
}

/* show a small peek only on the very first item */
.lp-page .v2-rail-item:first-child {
    flex-basis: 92%;
}

/* hide thumbs when rail is active */
.lp-page .v2-rail-hero + .v2-thumbs {
    display: none !important;
}

/* rail arrows (desktop only) */
.lp-page .v2-rail-arrow { display: flex; }
.lp-page .v2-rail-left { left: 10px; }
.lp-page .v2-rail-right { right: 10px; }
@media (max-width: 768px) {
  .lp-page .v2-rail-arrow { display: none; }
}


/* ========== INFO SECTION ========== */
.lp-page .v2-title {
    font-size: 28px;
    font-weight: 900;
    color: #111;
    margin: 0 0 10px;
}

.lp-page .v2-short-desc {
    font-size: 18px;
    color: #333;
    margin: 10px 0 18px;
    line-height: 1.5;
}

.lp-page .v2-product-desc {
    font-size: 18px;
    color: #444;
    margin: 10px 0 16px;
    line-height: 1.45;
}

@media(max-width: 768px) {
    .lp-page .v2-product-desc {
        font-size: 16px;
        margin: 6px 0 12px;
    }
}

/* ===== REVIEWS LINE ===== */
.lp-page .v2-reviews-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.lp-page .v2-stars {
    display: flex;
    gap: 2px;
    color: #f6b300;
    font-size: 20px;
}

.lp-page .v2-revlink {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}

.lp-page .v2-revlink:hover {
    text-decoration: underline;
}

.lp-page .v2-rev-score {
    color: #222;
    font-weight: 700;
}

.lp-page .v2-rev-count {
    color: #777;
    font-weight: 500;
}

/* ========== BULLETS ========== */
.lp-page .v2-bullets {
    list-style: none !important;
    padding: 0 !important;
    margin: 6px 0 28px 12px !important; /* top right bottom left */
}

.lp-page .v2-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1.25;
    margin: 2px 0 !important;
}
/* ========== BUY BOX ========== */
.lp-page .v2-buybox{
  background:#fff;
  border:1px solid #e4e8ed;
  border-radius:12px;
  padding:20px;
  box-shadow:0 1px 4px rgba(0,0,0,0.06);
}

/* PACKS */
.lp-page .v2-packs{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(0,1fr));
  gap:12px;
  margin-bottom:14px;
}
.lp-page .v2-pack{
  position:relative;
  border:2px solid #e5e7eb;
  border-radius:12px;
  padding:10px;
  background:#fff;
  text-align:center;
  cursor:pointer;
  transition:all .15s ease;
}
.lp-page .v2-pack.is-active{
  border-color:#04892a;
  background:#F0FDF4;
  box-shadow:0 0 0 1px #16A34A;
}
.lp-page .v2-pack-tag{
  position:absolute;
  top:-10px;
  right:-10px;
  background:#dc2626;
  color:#fff;
  font-size:13px;
  font-weight:800;
  border-radius:8px;
  padding:3px 7px;
  z-index:5;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}
.lp-page .v2-pack-img{width:100%;border-radius:8px;margin-bottom:6px}
.lp-page .v2-pack-price{font-weight:800;margin-top:4px}

/* PACK NOTE */
.lp-page .v2-pack-note-box {
  width: 100%;
  margin: 0;
  padding: 0;
}

.lp-page .v2-pack-note {
  background: #4CAF50;
  color: #fff;
  text-align: center;
  padding: 14px 8px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 10px;
  width: 100%;
  line-height: 1.2;
}

/* VARIANTS */
.lp-page .v2-variants{
  background:#f9fafb;
  border-radius:10px;
  padding:12px;
  margin:14px 0
}
.lp-page .v2-variants-title{
  font-weight:700;
  margin-bottom:8px;
  color:#111
}
.lp-page .v2-colors,
.lp-page .v2-sizes{
  display:flex;
  gap:10px;
  flex-wrap:wrap
}
.lp-page .v2-color,
.lp-page .v2-size{
  border:2px solid #e4e8ed;
  background:#fff;
  border-radius:10px;
  padding:8px 12px;
  cursor:pointer;
  transition:.15s
}
.lp-page .v2-color.is-active,
.lp-page .v2-size.is-active{
  border-color:#0b67f2
}
.lp-page .v2-color img{
  width:60px;
  height:60px;
  border-radius:8px
}

/* PRICE AREA */
.lp-page .v2-price-row{
  display:flex;
  align-items:center;
  gap:18px;
  margin:10px 0
}
.lp-page .v2-price{
  font-size:28px;
  color:#c62828;
  font-weight:900
}
.lp-page .v2-old{
  color:#9aa5b1;
  text-decoration:line-through
}
.lp-page .v2-discount{
  background:#dc2626;
  color:#fff;
  border-radius:8px;
  padding:4px 8px;
  font-weight:900
}

/* LOWEST PRICE */
.lp-page .v2-lowest{
  display:flex;
  align-items:center;
  gap:6px;
  background:#ecfdf5;
  color:#047857;
  font-weight:700;
  padding:8px 12px;
  border-radius:8px;
  margin:10px 0 12px;
  font-size:15px;
}
.lp-page .v2-lowest::before{
  content:"✔";
  font-weight:900;
  color:#047857
}
.lp-page .v2-lowest {
    display: none !important;
}

.lp-page .v2-extra-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    color: #04892a;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 8px 0 12px;
    font-size: 15px;
}

.lp-page .v2-extra-info img.v2-extra-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* CTA BUTTON */
.lp-page .v2-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  background:#04892a;
  color:#fff;
  border-radius:10px;
  padding:14px 16px;
  font-weight:900;
  font-size:18px;
  text-decoration:none;
  transition:.15s ease;
}
.lp-page .v2-cta::before{content:"🛒"}
.lp-page .v2-cta:hover{background:#26b801 }
.lp-page .v2-cta:active{transform:scale(.98)}

/* ===== Unified availability + ETA line ===== */
.lp-page .v2-availability-line {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}

.lp-page .v2-availability-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #04892a;
  position: relative;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: pulseDot 1.8s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.lp-page #v2-availability-text {
  font-weight: 700;
  color: #16a34a;
}

.lp-page #v2-eta {
  margin-left: 4px;
  font-weight: 500;
  color: #111;
}

@media (max-width:768px) {
  .lp-page .v2-availability-line {
    font-size: 14px;
    flex-wrap: wrap;
  }
}

/* ETA old helper (няма да пречи) */
.lp-page .v2-eta{
  text-align:center;
  font-weight:600;
  margin:14px 0;
  color:#111
}

/* ===== FIX SHIPPING TEXT + LOGО ALIGNMENT ===== */
.lp-page .v2-ship-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-top: 1px dashed #e4e8ed;
  margin-top: 12px;
  padding-top: 12px;
}

.lp-page .v2-ship-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-page .v2-ship-left img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* GUARANTEE */
.lp-page .v2-guarantee{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff8e6;
  border:1px solid #f3d08a;
  border-radius:12px;
  padding:12px;
  margin:14px 0;
}
.lp-page .v2-guarantee img{height:30px;max-width:100px;object-fit:contain}
.lp-page .v2-guar-title{font-weight:900}
.lp-page .v2-guar-note{color:#4b5563;font-size:14px}

/* ===================== TRUST SECTION ===================== */
.lp-page .v2-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  margin-top: 18px;
  font-size: 18px;
  color: #111;
}

.lp-page .v2-trust-icon {
  height: 34px;
  width: auto;
  display: block;
  position: relative;
  top: -3.5px;
}

.lp-page .v2-trust-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.lp-page .v2-trust-brand {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-left: 4px;
}

.lp-page .v2-trust-stars img {
  height: 20px;
  width: auto;
  display: block;
  position: relative;
  top: -1px;
}

.lp-page .v2-trust-score {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 768px) {
  .lp-page .v2-trust {
    gap: 8px;
    font-size: 16px;
  }
  .lp-page .v2-trust-icon {
    height: 32px !important;
    top: -2px;
  }
  .lp-page .v2-trust-label {
    font-size: 13px;
  }
  .lp-page .v2-trust-brand {
    font-size: 16px;
  }
  .lp-page .v2-trust-stars img {
    height: 18px;
    top: -1px;
  }
  .lp-page .v2-trust-score {
    font-size: 16px;
  }
}


/* TRUSTPILOT / TRUST ICON (mobile) — keep icon size independent from other images */
@media (max-width: 768px) {
  .lp-page .v2-trust-icon { height: 32px !important; width: auto !important; max-width: none !important; }
  .lp-page .v2-trust-stars img { height: 18px !important; width: auto !important; max-width: none !important; }
}

/* MOBILE TUNING */
@media(max-width:768px){

  .lp-page .v2-wrap.container{
      grid-template-columns:1fr!important;
      padding:0 12px!important;
      gap:16px;
  }

  .lp-page .v2-media-frame{
      max-width:420px!important;
      margin:0 auto 8px auto!important;
      margin-bottom:4px!important;
  }

  .lp-page .v2-title{
      font-size:22px!important;
      text-align:center;
      margin-top:4px!important;
  }

  .lp-page .v2-reviews-compact{justify-content:center}
  
  .lp-page .v2-buybox{
      padding:14px!important;
      border-radius:10px;
      box-shadow:0 1px 3px rgba(0,0,0,.05)
  }
  .lp-page .v2-packs{
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
      gap: 10px !important;
  }
  .lp-page .v2-pack{padding:8px!important}
.lp-page .v2-pack-tag{
      top:-10px!important;
      right:-10px!important;
      transform:scale(.9)
  }
  .lp-page .v2-pack-price{font-size:14px!important}
  .lp-page .v2-cta{font-size:16px!important}
}

/* =========================
   BUYBOX PACKS — RAIL STYLE
   ========================= */
.lp-page .v2-packs-rail{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-page .v2-pack-rail{
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  position: relative;
}

.lp-page .v2-pack-rail.is-active{
  border-color: #28a745;
  box-shadow: 0 0 0 2px rgba(40,167,69,.12);
}

.lp-page .v2-pack-rail .v2-pack-rail-img{
  width: 74px;
  height: 74px;
  border-radius: 10px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lp-page .v2-pack-rail .v2-pack-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-page .v2-pack-rail-title{
  font-weight: 900;
  font-size: 16px;
  color: #111;
  margin-bottom: 2px;
}

.lp-page .v2-pack-rail-note{
  font-size: 13px;
  color: #4b5563;
  line-height: 1.25;
}

.lp-page .v2-pack-rail-price{
  text-align: right;
  min-width: 96px;
}

.lp-page .v2-pack-old{
  font-size: 13px;
  color: #9ca3af;
  text-decoration: line-through;
}

.lp-page .v2-pack-rail .v2-pack-price{
  font-size: 18px;
  font-weight: 900;
  color: #e11d48;
}

/* CTA pulse (delayed) */
@keyframes v2Pulse {
  0%   { transform: scale(1); box-shadow: 0 4px 12px rgba(40,167,69,.18); }
  50%  { transform: scale(1.02); box-shadow: 0 8px 18px rgba(40,167,69,.28); }
  100% { transform: scale(1); box-shadow: 0 4px 12px rgba(40,167,69,.18); }
}

.lp-page .v2-cta-pulse{
  animation: v2Pulse 2.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.lp-page .v2-cta-pulse:active{
  animation: none;
}

@media (max-width: 768px){
  .lp-page .v2-pack-rail{
    grid-template-columns: 64px 1fr auto;
    padding: 10px 12px;
  }
  .lp-page .v2-pack-rail .v2-pack-rail-img{
    width: 64px;
    height: 64px;
  }
  .lp-page .v2-pack-rail-title{ font-size: 15px; }
  .lp-page .v2-pack-rail .v2-pack-price{ font-size: 17px; }
}

   /* MOBILE PACK NOTE */
  @media(max-width:768px){
 .lp-page .v2-pack-note-full{
    padding: 6px 6px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    line-height: 1.15;
    }
}

/* === GENERAL WHITE SURFACES === */
body,
.lp-page .v2-media-frame,
.lp-page .v2-buybox{
    background:#fff!important
}
.lp-page .v2-cart-modal{
    display:none!important;
    visibility:hidden!important
}

/* ===================== INFO BLOCKS ===================== */
.lp-page .v2-info-blocks {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
}

.lp-page .v2-info-block {
  margin-bottom: 60px;
}

.lp-page .v2-info-block img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto 24px auto;
}

.lp-page .v2-info-text {
  font-size: 18px;
  line-height: 1.45;
  color: #222;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.lp-page .v2-info-text p {
  margin-bottom: 12px;
}

@media (max-width:768px){
  .lp-page .v2-info-block { margin-bottom: 40px; }
  .lp-page .v2-info-block img { max-width: 100%; }
  .lp-page .v2-info-text {
    font-size: 16px;
    text-align: left;
  }
}

/* ========== ACCORDION SECTION ========== */
.lp-page .v2-accordion {
  max-width: 600px;
  margin: 48px auto 0;
  padding: 0 16px;
}

.lp-page .v2-acc-item {
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f6f8 0%, #e4e7eb 100%);
  box-shadow: 0 0 0 1px rgba(15,23,42,0.04);
}

.lp-page .v2-acc-header {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.lp-page .v2-acc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-page .v2-acc-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.lp-page .v2-acc-title {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
}

.lp-page .v2-acc-toggle {
  font-size: 26px;
  line-height: 1;
  color: #2563eb;
  transition: transform .2s ease;
}

.lp-page .v2-acc-item.is-open .v2-acc-toggle {
  transform: rotate(45deg);
}

.lp-page .v2-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.lp-page .v2-acc-body-inner {
  padding: 0 20px 18px 52px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.lp-page .v2-acc-body-inner p {
  margin: 0 0 10px 0;
}

@media (max-width: 768px) {
  .lp-page .v2-accordion {
    margin-top: 40px;
    padding: 0 12px;
  }
  .lp-page .v2-acc-header {
    padding: 16px 16px;
  }
  .lp-page .v2-acc-title {
    font-size: 17px;
  }
  .lp-page .v2-acc-body-inner {
    padding: 0 16px 14px 48px;
    font-size: 14px;
  }
}

/* ========== REVIEWS SECTION ========== */
.lp-page .v2-reviews-section {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 16px;
}

.lp-page .v2-reviews-head {
  text-align: center;
  margin-bottom: 24px;
}

.lp-page .v2-reviews-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #111827;
}

.lp-page .v2-reviews-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: #4b5563;
}

.lp-page .v2-reviews-stars {
  display: flex;
  gap: 2px;
  color: #f6b300;
  font-size: 20px;
}

.lp-page .v2-reviews-score {
  font-weight: 700;
  color: #111827;
}

.lp-page .v2-reviews-count {
  color: #6b7280;
}

/* GRID – masonry style */
.lp-page .v2-reviews-grid {
  column-count: 5;
  column-gap: 18px;
}

.lp-page .v2-review-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  margin: 0 0 18px;
  overflow: hidden;
  break-inside: avoid;
  display: block;
}

.lp-page .v2-review-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.lp-page .v2-review-body {
  padding: 14px 16px 16px;
}

.lp-page .v2-review-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.lp-page .v2-review-name {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
}

.lp-page .v2-review-verified {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #04892a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}

.lp-page .v2-review-verified::before {
  content: "✓";
}

.lp-page .v2-review-stars {
  display: flex;
  gap: 2px;
  font-size: 14px;
  color: #f6b300;
  margin-bottom: 8px;
}

.lp-page .v2-review-text {
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

/* LOAD MORE BUTTON */
.lp-page .v2-reviews-more-wrap {
  text-align: center;
  margin-top: 24px;
}

.lp-page .v2-reviews-more-btn {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.lp-page .v2-reviews-more-btn::after {
  content: "▼";
  font-size: 11px;
}

.lp-page .v2-reviews-more-btn:hover {
  background: #f3f4f6;
}

/* RESPONSIVE COLUMNS */
@media (max-width: 1200px) {
  .lp-page .v2-reviews-grid { column-count: 4; }
}

@media (max-width: 1024px) {
  .lp-page .v2-reviews-grid { column-count: 3; }
}

@media (max-width: 768px) {
  .lp-page .v2-reviews-section {
    margin: 40px auto 60px;
  }
  .lp-page .v2-reviews-title {
    font-size: 24px;
  }
  .lp-page .v2-reviews-grid {
    column-count: 2;
    column-gap: 12px;
  }
  .lp-page .v2-review-body {
    padding: 12px 12px 14px;
  }
}

/* ===== STICKY BUY BAR ===== */
.lp-page .v2-sticky {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}

/* desktop: slide from top */
@media (min-width: 981px) {
  .lp-page .v2-sticky {
    top: 0;
    transform: translateY(-100%);
  }
  .lp-page .v2-sticky.is-visible {
    transform: translateY(0);
    opacity: 1;
  }
  .lp-page .v2-sticky-inner {
    border-radius: 0 0 10px 10px;
  }
}

/* mobile / tablet: slide from bottom */
@media (max-width: 980px) {
  .lp-page .v2-sticky {
    bottom: 0;
    transform: translateY(100%);
  }
  .lp-page .v2-sticky.is-visible {
    transform: translateY(0);
    opacity: 1;
  }
  .lp-page .v2-sticky-inner {
    border-radius: 10px 10px 0 0;
  }
}

.lp-page .v2-sticky-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: #f3f4f6;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  padding: 6px 10px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  pointer-events: auto;
}

.lp-page .v2-sticky-main {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-page .v2-sticky-thumb img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
}

.lp-page .v2-sticky-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.lp-page .v2-sticky-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-page .v2-sticky-prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 3px;
}

.lp-page .v2-sticky-old {
  font-size: 13px;
  color: #9aa5b1;
  text-decoration: line-through;
}

.lp-page .v2-sticky-new {
  font-size: 18px;
  font-weight: 900;
  color: #c62828;
}

.lp-page .v2-sticky-cta {
  flex: 0 0 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #04892a;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 14px;
  white-space: nowrap;
}

.lp-page .v2-sticky-cta::before {
  content: "🛒";
  margin-right: 6px;
}

.lp-page .v2-sticky-cta:active {
  transform: scale(.98);
}

@media (min-width: 1024px) {
    .lp-page .v2-sticky-title {
        max-width: 350px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        display: block;
        line-height: 1.3;
    }
}

/* ===== MOBILE STICKY BAR LAYOUT ===== */
@media (max-width: 980px) {

  .lp-page .v2-sticky-thumb {
    display: none !important;
  }

  .lp-page .v2-sticky-main {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2px;
  }

  .lp-page .v2-sticky-prices {
    align-items: center;
  }
}

.lp-page .v2-sticky-title {
    display: none !important;
}

.lp-page .v2-sticky-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.lp-page .v2-sticky-old {
    font-size: 12px;
    line-height: 1;
}

.lp-page .v2-sticky-new {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
}

.lp-page .v2-sticky-cta {
    flex: 0 0 65% !important;
    font-size: 16px;
    padding: 14px 0;
    text-align: center;
}

/* FIX STICKY BAR TITLE FORCE SHOW */
.lp-page #v2-sticky-title,
.lp-page .v2-sticky-title {
    display: inline-flex !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #111 !important;
    z-index: 999999 !important;
    font-size: 14px !important;
    max-width: 300px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Hide sticky title only on mobile */
@media (max-width: 768px) {
    .lp-page #v2-sticky-title,
    .lp-page .v2-sticky-title {
        display: none !important;
    }
}

/* ===========================================
   FOOTER – АДАПТИРАН към НОВИЯ HTML
   <footer class="v2-footer"> ... </footer>
=========================================== */

.lp-page .v2-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, #182A3F 0%, #0E1826 100%);;
  color: #e5e7eb;
  font-size: 14px;
}

/* GUARANTEE BAR */
.lp-page .v2-footer-guarantee {
  background: #020617;
  color: #e5e7eb;
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
}

/* MAIN 3-COL GRID */
.lp-page .v2-footer-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 16px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}

/* Company column */
.lp-page .v2-footer-company .v2-footer-logo img {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.lp-page .v2-footer-company-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.lp-page .v2-footer-company-address div {
  font-size: 14px;
}

.lp-page .v2-footer-company-vat {
  font-size: 13px;
  margin-top: 6px;
}

.lp-page .v2-footer-company-email a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 14px;
}

.lp-page .v2-footer-company-email a:hover {
  text-decoration: underline;
}

/* Links column */
.lp-page .v2-footer-links-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.lp-page .v2-footer-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-page .v2-footer-links-list li {
  margin-bottom: 6px;
}

.lp-page .v2-footer-links-list a {
  color: #e5e7eb;
  font-size: 14px;
  text-decoration: none;
}

.lp-page .v2-footer-links-list a:hover {
  text-decoration: underline;
}

/* Security column */
.lp-page .v2-footer-security {
  text-align: center;
}

.lp-page .v2-footer-security-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.lp-page .v2-footer-sec-icon img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.lp-page .v2-footer-sec-main {
  font-weight: 700;
  font-size: 14px;
}

.lp-page .v2-footer-sec-sub {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 2px;
}

.lp-page .v2-footer-cards {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.lp-page .v2-footer-cards img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

/* COPYRIGHT STRIP */
.lp-page .v2-footer-bottom {
  background: #020617;
  border-top: 1px solid #111827;
  color: #9ca3af;
  font-size: 12px;
  text-align: center;
  padding: 10px 16px 12px;
}

/* Mobile footer */
@media (max-width: 768px) {
  .lp-page .v2-footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .lp-page .v2-footer-security-top {
    justify-content: center;
  }
  .lp-page .v2-footer-cards {
    justify-content: center;
  }
}
/* =========================================================
   HEADER – new index.php (vmag-header)
   ========================================================= */

.vmag-header {
    width: 100%;
    background: linear-gradient(180deg, #182A3F 0%, #0E1826 100%);;
    color: #fff;
    padding: 12px 0;
    position: relative;
    z-index: 20;
}

.vmag-header .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo */
.vmag-logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* search (desktop) */
.vmag-search {
    flex: 1;
    max-width: 420px;
    margin: 0 24px;
    display: flex;
    align-items: center;
}

.vmag-search input[type="search"] {
    flex: 1;
    padding: 7px 12px;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 14px;
}

.vmag-search button {
    background: #04892a;
    border: none;
    padding: 8px 14px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* icons right */
.vmag-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.vmag-icons button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-24 {
    width: 26px;
    height: 26px;
    display: block;
}

/* cart badge */
.vmag-cart {
    position: relative;
}

.vmag-cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: #26b801;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    min-width: 16px;
    padding: 1px 4px;
    text-align: center;
}

/* mobile search toggle – по default скрито */
.vmag-search-toggle {
    display: none;
}

/* -------------------- HEADER MOBILE -------------------- */
@media (max-width: 768px) {

    .vmag-header .container {
        padding: 0 10px;
        justify-content: space-between;
    }

    .vmag-logo img {
        height: 44px;
    }

    /* search bar пада отдолу */
    .vmag-search {
        display: none;
        position: absolute;
        left: 0;
        top: 56px;
        width: 100%;
        padding: 8px;
        background: #053262;
        max-width: none;
        margin: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all .25s ease;
        z-index: 19;
    }

    .vmag-search.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .vmag-search-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }
}

/* =========================================================
   FOOTER – new index.php (v2-footer)
   ========================================================= */

/* small guarantee bar */
.v2-footer-guarantee {
    background: #020617;
    color: #e5e7eb;
    font-size: 14px;
    text-align: center;
    padding: 8px 0;
}

/* main wrapper */
.v2-footer {
    background: #0B274C;
    color: #e5e7eb;
    margin-top: 40px;
}

/* 3 columns */
.v2-footer-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 16px 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 40px;
    align-items: flex-start;
    font-size: 14px;
}

/* company col */
.v2-footer-logo img {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.v2-footer-company-name {
    font-weight: 700;
    margin-bottom: 6px;
}

.v2-footer-company-address div {
    margin-bottom: 2px;
}

.v2-footer-company-vat {
    margin-top: 6px;
}

.v2-footer-company-email a {
    color: #e5e7eb;
    text-decoration: none;
}

.v2-footer-company-email a:hover {
    text-decoration: underline;
}

/* links col */
.v2-footer-links-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.v2-footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v2-footer-links-list li {
    margin-bottom: 6px;
}

.v2-footer-links-list a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
}

.v2-footer-links-list a:hover {
    text-decoration: underline;
}

/* security col */
.v2-footer-security-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.v2-footer-sec-icon img {
    height: 26px;
    width: auto;
    display: block;
}

.v2-footer-sec-main {
    font-weight: 700;
    font-size: 14px;
}

.v2-footer-sec-sub {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 4px;
}

.v2-footer-cards {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.v2-footer-cards img {
    height: 26px;
    width: auto;
    object-fit: contain;
}

/* bottom strip */
.v2-footer-bottom {
    background: #020617;
    border-top: 1px solid #111827;
    color: #9ca3af;
    font-size: 12px;
    text-align: center;
    padding: 10px 16px;
}

/* -------------------- FOOTER MOBILE -------------------- */
@media (max-width: 768px) {
    .v2-footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .v2-footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-footer-security-top {
        justify-content: center !important;
    }

    .v2-footer-cards {
        justify-content: center;
    }
}
/* ========================================
   FIX FOOTER MOBILE SECURITY COLUMN
======================================== */
@media (max-width: 768px) {

    /* Центрираме цялата 3-та колона */
    .v2-footer-security {
        text-align: center !important;
    }

    /* Контейнерите вътре също стават център */
    .v2-footer-security-top,
    .v2-footer-cards {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
}
/* ============================
   MID CTA SECTION
============================ */
.v2-mid-cta {
    background: linear-gradient(180deg, #182A3F 0%, #0E1826 100%);
    padding: 40px 16px;
    text-align: center;
    margin: 30px 0 20px;
}

.v2-mid-cta-inner {
    max-width: 620px;
    margin: 0 auto;
}

.v2-mid-cta h3 {
    color: #fff;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 800;
    margin-bottom: 28px;
}

.v2-mid-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #04892a;
    color: #fff;
    border-radius: 10px;
    padding: 14px 26px;
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
}

.v2-mid-btn::before {
    content: "🛒";
}

.v2-mid-btn:hover {
    background: #16a34a;
}

.v2-mid-sub {
    margin-top: 14px;
    color: #cbd5e1;
    font-size: 14px;
}
@media (max-width: 768px) {
    .v2-mid-cta h3 {
        font-size: 20px;
    }
}
@media (min-width: 769px) {
    .v2-footer-sec-main,
    .v2-footer-sec-sub {
        text-align: left !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
}
/* ==== FIX SPACING FOR INFO BLOCKS ONLY ==== */

/* Reset any old margins on text + images inside blocks */
.lp-page .v2-info-block img,
.lp-page .v2-info-text {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Control spacing of the whole block (gap to previous/next block) */
.lp-page .v2-info-block {
  margin-top: 40px !important;   /* space ABOVE block */
  margin-bottom: 24px !important;/* space BELOW block */
  text-align: center;
}

/* Space between text and its image inside the same block */
.lp-page .v2-info-text {
  margin-bottom: 16px !important; /* text → image gap */
}

/* Image itself: no extra vertical margin, just centered */
.lp-page .v2-info-block img {
  display: block;
  margin: 0 auto !important;
  max-width: 100%;
  border-radius: 8px;
}
.lp-page .v2-info-video {
    width: 100%;
    max-width: 780px;
    border-radius: 8px;
    display: block;
    margin: 12px auto 24px auto;
}

.lp-page .v2-info-video-embed iframe {
    width: 100%;
    max-width: 780px;
    height: 440px;
    border-radius: 8px;
    display: block;
    margin: 12px auto 24px auto;
}
/* Unified media block container */
.lp-page .v2-info-block {
    margin: 30px auto;
    text-align: center;
}

/* Text spacing */
.lp-page .v2-info-text {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* IMAGES */
.lp-page .v2-info-img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 24px auto;
    display: block;
}

/* VIDEOS */
.lp-page .v2-info-video {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto 24px auto;
}

/* EMBEDDED VIDEOS (YouTube/Vimeo) */
.lp-page .v2-info-video-embed iframe {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 12px;
    display: block;
    margin: 0 auto 24px auto;
}
.v2-scarcity-wrap{
  margin: 10px 0 6px;
  display: grid;
  gap: 8px;
}

.v2-scarcity{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  opacity: .9; /* blends with your UI */
}

.v2-scarcity-ic{
  display:inline-flex;
  width:18px;
  height:18px;
  flex:0 0 18px;
  opacity: .85;
}
/* Scarcity box (stock/viewing) — spacing + same style family as shipping row */
.v2-scarcity-wrap{
  margin-top: 14px;            /* FIX: space under CTA */
  background: #f3f4f6;         /* light grey box */
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* each line */
.v2-scarcity{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 500;
  color: #111827;
}

/* icon */
.v2-scarcity-ic{
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #111827;
}

/* green number only */
.v2-scarcity-num{
  color: #16a34a;
  font-weight: 800;
}
.v2-pack-img{
  max-width: 140px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
/* Specs table block */
.specs h2{
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 12px;
}

.specs h3{
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 16px;
}

.specs-table{
  border-top: 1px solid #e5e7eb;
}

.specs-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.specs-k{
  font-weight: 700;
  color: #6b7280;
}

.specs-v{
  font-weight: 600;
  color: #111827;
}

/* Mobile */
@media (max-width: 768px){
  .specs-row{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }
  .specs h2{ font-size: 26px; }
  .specs h3{ font-size: 20px; }
}
/* Mobile: stack key over value */
@media (max-width: 768px){
  .specs-row{
    display: block;
  }
  .specs-k{
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 6px;
  }
  .specs-v{
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    word-break: break-word;
  }
  .specs h2{ font-size: 24px; }
  .specs h3{ font-size: 18px; }
}
/* TEST: Clearance message as full-width info bar (like Free shipping) */
/* Clearance message as full-width GREEN info bar */
/* Clearance message as grey info bar + green text (matches other boxes) */
.lp-page .v2-packs-subtitle{
  display: flex !important;
  align-items: center !important;

  width: 100% !important;
  padding: 12px 14px !important;
  margin: 8px 0 12px !important;

  background: #ffffff !important;    /* same grey */
  border: 0 !important;
  border-radius: 12px !important;

  color: #26b801 !important;         /* green text */
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.lp-page .v2-packs-subtitle:before{
  content: "📦" !important;
  margin-right: 8px !important;
  line-height: 1 !important;
}
/* Center v2-info-text on mobile only */
@media (max-width: 768px){
  .v2-info-text{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* If your text uses the bcopy wrapper, center it too */
  .v2-info-text .bcopy{
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* Mobile packs layout (no template edits):
   1 pack = 1 full width
   2 packs = 2 columns
   3+ packs = 3 columns
*/
@media (max-width: 768px){

  /* Default = 3 columns so 3 packs NEVER drop to next row */
  .lp-page .v2-packs{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  /* If ONLY 1 pack exists -> 1 column (full width) */
  .lp-page .v2-packs:not(:has(> .v2-pack:nth-child(2))){
    grid-template-columns: 1fr !important;
  }

  /* If 2 packs exist (has 2nd, but NOT 3rd) -> 2 columns (big cards) */
  .lp-page .v2-packs:has(> .v2-pack:nth-child(2)):not(:has(> .v2-pack:nth-child(3))){
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  /* Optional: tighten padding only when 3+ packs (so content fits nicely) */
  .lp-page .v2-packs:has(> .v2-pack:nth-child(3)) > .v2-pack{
    padding: 10px !important;
  }

  /* Optional: prevent images from forcing wrap in 3-col mode */
  .lp-page .v2-packs:has(> .v2-pack:nth-child(3)) .v2-pack-img{
    max-width: 110px !important;
    max-height: 110px !important;
  }
}
/* ===== BUYBOX COUNTDOWN (config-driven) ===== */
.lp-page .v2-countdown{
  margin: 8px 0 10px;
  background: #dc2626;
  color: #fff;
  border-radius: 12px;

  padding: 6px 10px;              /* slimmer */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.lp-page .v2-countdown-text{
  font-size: 13px;
  font-weight: 800;
  line-height: 1.12;

  /* max 2 lines (does NOT force 2 lines; it caps at 2) */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;

  /* avoid the text pushing height unnecessarily */
  max-width: 62%;
}

.lp-page .v2-countdown-boxes{
  display:flex;
  align-items:center;
  gap:7px;
  flex-shrink: 0;
}

.lp-page .v2-cd-box{
  background:#fff;
  color:#dc2626;

  width: 42px;
  height: 34px;                   /* thinner than button */
  border-radius: 10px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.lp-page .v2-cd-num{
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 480px){
  .lp-page .v2-countdown{ padding: 6px 10px; }
  .lp-page .v2-countdown-text{ font-size: 12.5px; max-width: 60%; }
  .lp-page .v2-cd-box{ width: 40px; height: 32px; border-radius: 9px; }
  .lp-page .v2-cd-num{ font-size: 16px; }
}
