/* ─── RESET ───────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}

/* ─── ASTRA OVERRIDES ─────────────────────────────────────── */
body.single-product .ast-breadcrumbs-wrapper,
body.single-product .ast-breadcrumbs,
body.single-product nav.woocommerce-breadcrumb{display:none!important}
html body.single-product .ast-container,
html body.single-product .site-content .ast-container,
html body.single-product #content .ast-container,
html body.single-product .ast-page-builder-template .ast-container{max-width:100%!important;width:100%!important;padding:0!important;margin:0!important}
html body.single-product #primary,
html body.single-product #main,
html body.single-product .site-main,
html body.single-product .content-area{padding:0!important;width:100%!important;max-width:100%!important;float:none!important}
html body.single-product .ast-page-builder-template #primary{padding-top:0!important}

/* ─── DESIGN TOKENS ───────────────────────────────────────── */
:root{
  --tl:#005e5e;--tld:#003d3d;--tll:#007a7a;
  --tls:#e8f5f4;--tlsg:linear-gradient(135deg,#005e5e,#007a7a);
  --tlsgr:linear-gradient(135deg,#003d3d,#005e5e);
  --y:#ffc400;--yd:#e6a800;--yg:linear-gradient(135deg,#ffd340,#ffc400);
  --ink:#0b2d2d;--body:#3a5a5a;--muted:#5e8080;
  --bdr:#cfe0de;--bdrlt:#e4f0ee;
  --bg:#f0f4f3;--card:#fff;
  --r:14px;--r-sm:10px;--r-lg:20px;
  --sh:0 2px 12px rgba(0,80,80,.07);
  --sh-md:0 6px 24px rgba(0,80,80,.10);
  --sh-lg:0 16px 48px rgba(0,80,80,.14)
}

/* ─── BASE ────────────────────────────────────────────────── */
.single-product{background:var(--bg)}
.bpbp-wrap{max-width:1280px;margin:0 auto;padding:24px 24px 0;font-family:inherit;color:var(--ink)}
.bpbp-alert{background:linear-gradient(135deg,#e8fff4,#d6f8eb);border:1px solid #a8e0c4;color:#085b38;padding:14px 20px;border-radius:var(--r-sm);margin:0 0 20px;font-weight:700}

/* ─── BREADCRUMB ──────────────────────────────────────────── */
.bpbp-wrap>nav{display:block!important;width:100%!important;float:none!important;clear:both!important;text-align:left!important}
ol.bpbp-breadcrumb{display:flex!important;align-items:center!important;flex-wrap:wrap!important;gap:4px!important;padding:0!important;margin:0 0 20px!important;list-style:none!important;background:none!important;border:none!important;box-shadow:none!important}
ol.bpbp-breadcrumb li{display:flex!important;align-items:center!important;padding:0!important;margin:0!important;list-style:none!important;font-size:12px;color:var(--muted)}
ol.bpbp-breadcrumb li::before{display:none!important}
ol.bpbp-breadcrumb a{color:var(--tl)!important;text-decoration:none!important;font-weight:600!important}
ol.bpbp-breadcrumb a:hover{color:var(--tll)!important;text-decoration:underline!important}
ol.bpbp-breadcrumb .sep{color:#a0c0be;font-size:10px;margin:0 3px}
ol.bpbp-breadcrumb .current{color:var(--body);font-weight:700}

/* ─── HERO ────────────────────────────────────────────────── */
.bpbp-hero{display:grid;grid-template-columns:minmax(0,1fr) 540px;gap:36px;align-items:start}
.bpbp-left{min-width:0}
.bpbp-title{font-size:38px;line-height:1.08;margin:0 0 12px;color:var(--ink);font-weight:900;letter-spacing:-.03em}
.bpbp-short{color:var(--body);font-size:15px;line-height:1.72;margin:0 0 14px}
.bpbp-short p{margin:0 0 8px}
.bpbp-rating-row{display:flex;align-items:center;gap:10px;margin:0 0 14px;flex-wrap:wrap}
.bpbp-stars-disp{color:var(--y);letter-spacing:1px;font-size:18px}
.bpbp-rating-txt{font-size:13px;font-weight:700;color:var(--body)}
.bpbp-tp-inline{display:flex;align-items:center;gap:5px;background:#00b67a;border-radius:5px;padding:3px 9px;text-decoration:none!important}
.bpbp-tp-inline svg{width:13px;height:13px;fill:#fff}
.bpbp-tp-inline span{color:#fff;font-size:11px;font-weight:800}
.bpbp-badges{display:flex;flex-wrap:wrap;gap:7px;margin:0 0 16px}
.bpbp-badge{background:linear-gradient(135deg,var(--tls),#d8eeed);border:1px solid #b0d8d4;color:#055050;padding:4px 12px;border-radius:99px;font-size:11.5px;font-weight:700}

/* ─── GALLERY ─────────────────────────────────────────────── */
.bpbp-gallery{margin-top:14px}
/* ─── GALLERY IMAGE FIXED ───────────────────────────── */
.bpbp-main-img {
    background:#f5fafa;
    border:1.5px solid var(--bdr);
    border-radius:var(--r-lg);
    overflow:hidden;
    box-shadow:var(--sh-md);
    line-height:0;
    position:relative;
    cursor:zoom-in;

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

    /* REMOVE ASPECT RATIO to avoid side white space */
    aspect-ratio: auto;

    width:100%;
    max-width:600px;   /* optional, adjust container max width */
    height:auto;       /* automatic height according to image */
    padding:0;
}

.bpbp-main-img img {
    display:block!important;
    width:auto!important;        /* maintain original aspect ratio */
    max-width:100%!important;    /* fit container width */
    height:auto!important;
    object-fit:contain!important; 
    object-position:center!important;
    background:transparent!important;
    transition:transform .35s ease;
}
.bpbp-main-img:hover img{transform:scale(1.02)}
.bpbp-zoom-icon{position:absolute;bottom:12px;right:12px;width:34px;height:34px;border-radius:8px;background:rgba(0,60,60,.6);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;pointer-events:none;opacity:0;transition:opacity .2s}
.bpbp-main-img:hover .bpbp-zoom-icon{opacity:1}
.bpbp-zoom-icon svg{width:16px;height:16px;fill:#fff}
.bpbp-thumbs{display:flex!important;flex-wrap:wrap!important;gap:8px!important;margin-top:10px}
.bpbp-thumb{flex:0 0 calc(16.666% - 7px);min-width:52px;border-radius:9px;overflow:hidden;cursor:pointer;border:2px solid var(--bdrlt);background:#f5fafa;padding:0;line-height:0;transition:border-color .18s,box-shadow .18s;aspect-ratio:1/1}
.bpbp-thumb.is-active,.bpbp-thumb:hover{border-color:var(--tl);box-shadow:0 0 0 3px rgba(0,94,94,.15)}
.bpbp-thumb img{display:block!important;width:100%!important;height:100%!important;object-fit:cover!important;object-position:center!important}

/* ─── LIGHTBOX ────────────────────────────────────────────── */
.bpbp-lightbox{display:none;position:fixed;inset:0;z-index:99999;background:rgba(0,0,0,.93);align-items:center;justify-content:center;backdrop-filter:blur(6px)}
.bpbp-lightbox.open{display:flex}
.bpbp-lightbox-inner{position:relative;max-width:90vw;max-height:90vh}
.bpbp-lightbox-inner img{display:block;max-width:90vw;max-height:90vh;object-fit:contain;border-radius:10px;box-shadow:0 30px 80px rgba(0,0,0,.6)}
.bpbp-lb-close{position:absolute;top:-16px;right:-16px;width:38px;height:38px;border-radius:50%;background:#fff;border:0;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--ink);box-shadow:0 4px 16px rgba(0,0,0,.3);transition:.18s}
.bpbp-lb-close:hover{background:var(--tl);color:#fff}

/* ─── QUOTE CARD ──────────────────────────────────────────── */
.bpbp-quote-card{background:var(--card);border:1.5px solid var(--bdr);border-radius:20px;padding:0!important;overflow:visible;box-shadow:var(--sh-lg);position:sticky;top:16px}
.bpbp-quote-card .bpqf-wrap .container{max-width:none;width:100%;border:0;box-shadow:none;border-radius:20px;padding:24px}
.bpbp-quote-card .bpqf-wrap h3{font-size:21px;margin-bottom:16px;color:var(--ink)}
.bpbp-quote-card .bpqf-wrap .options-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.bpbp-quote-card .bpqf-wrap .option-card{padding:8px;min-height:88px}
.bpbp-quote-card .bpqf-wrap .option-card img{width:60px!important;height:42px!important}
.bpbp-quote-card .bpqf-wrap .unit-selector{grid-template-columns:repeat(3,minmax(0,1fr))}
.bpbp-quote-card .bpqf-wrap .qty-group{grid-template-columns:repeat(4,minmax(0,1fr))}
.bpbp-quote-card .bpqf-wrap .dimensions-group{grid-template-columns:repeat(2,minmax(0,1fr))}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.bpbp-yellow-btn,.bpbp-dark-btn,.bpbp-wa-btn,.bpbp-teal-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 24px;border-radius:10px;font-weight:800;font-size:14px;text-decoration:none!important;cursor:pointer;border:0;line-height:1.2;transition:transform .18s,box-shadow .18s,filter .18s;font-family:inherit}
.bpbp-yellow-btn{background:var(--yg);color:var(--ink)!important;box-shadow:0 4px 16px rgba(255,196,0,.3)}
.bpbp-yellow-btn:hover{filter:brightness(1.05);transform:translateY(-1px);box-shadow:0 8px 24px rgba(255,196,0,.4)}
.bpbp-dark-btn{background:var(--tlsgr);color:#fff!important;box-shadow:0 4px 16px rgba(0,60,60,.2)}
.bpbp-dark-btn:hover{filter:brightness(1.12);transform:translateY(-1px)}
.bpbp-wa-btn{background:linear-gradient(135deg,#29d669,#20c05e);color:#fff!important;box-shadow:0 4px 16px rgba(37,211,102,.25)}
.bpbp-wa-btn:hover{filter:brightness(1.07);transform:translateY(-1px)}
.bpbp-teal-btn{background:var(--tlsg);color:#fff!important;box-shadow:0 4px 16px rgba(0,94,94,.22)}
.bpbp-teal-btn:hover{filter:brightness(1.1);transform:translateY(-1px)}

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.bpbp-trust-row{display:grid;grid-template-columns:repeat(5,1fr);background:var(--card);border:1.5px solid var(--bdr);border-radius:var(--r);margin:24px 0;overflow:hidden;box-shadow:var(--sh)}
.bpbp-trust-item{display:flex;gap:12px;align-items:center;padding:16px 14px;border-right:1px solid var(--bdrlt);transition:background .2s}
.bpbp-trust-item:last-child{border-right:0}
.bpbp-trust-item:hover{background:var(--tls)}
.bpbp-t-icon{flex-shrink:0;width:42px;height:42px;border-radius:11px;background:var(--tlsg);display:flex;align-items:center;justify-content:center;box-shadow:0 3px 10px rgba(0,94,94,.2)}
.bpbp-t-icon svg{width:20px;height:20px;fill:#fff}
.bpbp-trust-item strong{font-size:12.5px;font-weight:800;display:block;margin:0 0 2px;color:var(--ink);line-height:1.2}
.bpbp-trust-item span{font-size:11px;color:var(--muted);line-height:1.3;display:block}

/* ─── SECTION HEADINGS ────────────────────────────────────── */
.bpbp-sec{margin:40px 0 0}
.bpbp-sec-eye{display:block;text-align:center;font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--tll);margin:0 0 8px}
.bpbp-sec-h{font-size:30px;font-weight:900;text-align:center;color:var(--ink);margin:0 0 8px;line-height:1.1;letter-spacing:-.022em}
.bpbp-sec-sub{text-align:center;color:var(--muted);font-size:14px;margin:0 auto 26px;max-width:560px;line-height:1.65}

/* ─── WHY GRID ────────────────────────────────────────────── */
.bpbp-why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:32px}
.bpbp-why-card{background:var(--card);border:1.5px solid var(--bdrlt);border-radius:var(--r);padding:22px 18px;display:flex;gap:14px;align-items:flex-start;box-shadow:var(--sh);transition:box-shadow .2s,transform .2s,border-color .2s}
.bpbp-why-card:hover{box-shadow:var(--sh-md);transform:translateY(-3px);border-color:var(--tl)}
.bpbp-why-ico{flex-shrink:0;width:46px;height:46px;border-radius:12px;background:var(--tlsg);display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,94,94,.2)}
.bpbp-why-ico svg{width:22px;height:22px;fill:#fff}
.bpbp-why-card h3{font-size:14.5px;font-weight:800;margin:0 0 5px;color:var(--ink);line-height:1.25}
.bpbp-why-card p{font-size:13px;color:var(--muted);margin:0;line-height:1.55}

/* ─── TABS ────────────────────────────────────────────────── */
.bpbp-tabs-shell{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:20px;align-items:start}
.bpbp-tabs-main{background:var(--card);border:1.5px solid var(--bdr);border-radius:var(--r);overflow:hidden;box-shadow:var(--sh)}
.bpbp-tabs-nav{display:grid;grid-template-columns:repeat(6,1fr);border-bottom:2px solid var(--bdrlt);background:linear-gradient(to bottom,#f6faf9,#f0f5f4)}
.bpbp-tab-btn{border:0;border-right:1px solid var(--bdrlt);background:transparent;padding:14px 6px;font-weight:700;font-size:11.5px;cursor:pointer;color:var(--muted);transition:.15s;text-align:center;line-height:1.3;position:relative;font-family:inherit}
.bpbp-tab-btn:last-child{border-right:0}
.bpbp-tab-btn::after{content:"";position:absolute;bottom:-2px;left:0;right:0;height:2px;background:var(--tlsg);transform:scaleX(0);transition:.15s}
.bpbp-tab-btn.active::after{transform:scaleX(1)}
.bpbp-tab-btn.active,.bpbp-tab-btn:hover{color:var(--tl);background:#fff}
.bpbp-tab-panel{display:none;padding:26px 24px;font-size:14px;line-height:1.75;color:var(--body)}
.bpbp-tab-panel.active{display:block}
.bpbp-tab-panel h2,.bpbp-tab-panel h3{color:var(--ink);margin-top:0}
.bpbp-tabs-side{display:flex;flex-direction:column;gap:14px}
.bpbp-side-card{background:var(--card);border:1.5px solid var(--bdrlt);border-radius:var(--r);padding:20px;box-shadow:var(--sh)}
.bpbp-side-card h3{font-size:15px;font-weight:800;margin:0 0 6px;color:var(--ink)}
.bpbp-side-card p{font-size:13px;color:var(--muted);margin:0 0 12px;line-height:1.55}
.bpbp-side-list{padding:0 0 0 14px;margin:0 0 14px;color:var(--body);font-size:13px;line-height:1.75}
.bpbp-visual-wrap{margin:10px 0 13px;border-radius:10px;overflow:hidden;background:#f5fafa;line-height:0;border:1px solid var(--bdrlt)}
.bpbp-visual-wrap img,.bpbp-visual-auto-img{display:block;width:100%;height:auto}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.bpbp-how{margin:36px 0 28px}
.bpbp-how-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:0;position:relative}
.bpbp-how-grid::before{content:"";position:absolute;top:28px;left:10%;right:10%;height:2px;background:linear-gradient(to right,transparent,var(--tl) 20%,var(--tll) 80%,transparent);z-index:0}
.bpbp-how-step{position:relative;z-index:1;text-align:center;padding:0 10px}
.bpbp-how-num{display:inline-flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:var(--tlsg);color:#fff;font-weight:900;font-size:18px;margin:0 auto 14px;box-shadow:0 6px 20px rgba(0,94,94,.28);border:4px solid var(--bg)}
.bpbp-how-step h3{font-size:13px;font-weight:800;margin:0 0 5px;color:var(--ink)}
.bpbp-how-step p{font-size:12px;color:var(--muted);margin:0;line-height:1.5}

/* ─── RELATED SLIDER ──────────────────────────────────────── */
.bpbp-related{margin:32px 0 0}
.bpbp-related-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.bpbp-related-head h2{font-size:22px;font-weight:900;color:var(--ink);margin:0;letter-spacing:-.02em}
.bpbp-related-head a{font-size:13px;font-weight:700;color:var(--tl);text-decoration:none}
.bpbp-related-head a:hover{color:var(--tll)}
.bpbp-slider-wrap{position:relative}
.bpbp-slider-track{display:flex;gap:14px;overflow-x:auto;scroll-behavior:smooth;scrollbar-width:none;-ms-overflow-style:none;padding:5px 4px 16px}
.bpbp-slider-track::-webkit-scrollbar{display:none}
.bpbp-product-card{flex:0 0 215px;text-decoration:none!important;background:var(--card);border:1.5px solid var(--bdrlt);border-radius:var(--r);overflow:hidden;box-shadow:var(--sh);transition:box-shadow .2s,transform .2s,border-color .2s}
.bpbp-product-card:hover{box-shadow:var(--sh-md);transform:translateY(-4px) scale(1.01);border-color:var(--tl)}
.bpbp-card-img{width:100%;background:#f5fafa;line-height:0;overflow:hidden}
.bpbp-card-img img{display:block;width:100%;height:auto;transition:transform .3s}
.bpbp-product-card:hover .bpbp-card-img img{transform:scale(1.05)}
.bpbp-product-card h3{font-size:12.5px;font-weight:700;color:var(--ink);margin:10px 13px 3px;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bpbp-card-cta{display:block;font-size:12px;font-weight:800;color:var(--tl);padding:0 13px 13px}
.bpbp-slider-btn{position:absolute;top:50%;transform:translateY(-60%);width:40px;height:40px;border-radius:50%;background:var(--card);border:1.5px solid var(--bdr);box-shadow:var(--sh-md);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;font-size:18px;color:var(--ink);transition:.18s;font-family:inherit}
.bpbp-slider-btn:hover{background:var(--tlsg);color:#fff;box-shadow:0 6px 20px rgba(0,94,94,.25)}
.bpbp-slider-prev{left:-18px}.bpbp-slider-next{right:-18px}
.bpbp-slider-btn.bpbp-hidden{opacity:0;pointer-events:none}
.bpbp-slider-wrap::before,.bpbp-slider-wrap::after{content:"";position:absolute;top:0;bottom:16px;width:40px;z-index:5;pointer-events:none}
.bpbp-slider-wrap::before{left:0;background:linear-gradient(to right,var(--bg),transparent)}
.bpbp-slider-wrap::after{right:0;background:linear-gradient(to left,var(--bg),transparent)}

/* ─── TRUSTPILOT BAND ─────────────────────────────────────── */
.bpbp-tp-band{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;background:linear-gradient(120deg,#022424 0%,#04393a 50%,#055558 100%);border-radius:var(--r-lg);padding:20px 28px;margin:32px 0 0;position:relative;overflow:hidden}
.bpbp-tp-band::before{content:"";position:absolute;top:-80px;right:-80px;width:240px;height:240px;border-radius:50%;background:rgba(255,196,0,.06);pointer-events:none}
.bpbp-tp-left{display:flex;align-items:center;gap:16px;position:relative}
.bpbp-tp-logo{background:#00b67a;border-radius:7px;padding:7px 12px;display:flex;align-items:center;gap:6px;text-decoration:none!important;flex-shrink:0}
.bpbp-tp-logo span{font-size:13px;font-weight:800;color:#fff!important}
.bpbp-tp-logo svg{width:16px;height:16px;fill:#fff}
.bpbp-tp-text h3{font-size:15px;font-weight:800;color:#fff;margin:0 0 2px;line-height:1.2}
.bpbp-tp-text p{font-size:12.5px;color:#80c0c0;margin:0}
.bpbp-tp-stars-row{display:flex;gap:4px;position:relative}
.bpbp-tp-star{width:28px;height:28px;background:#00b67a;border-radius:4px;display:flex;align-items:center;justify-content:center}
.bpbp-tp-star svg{width:16px;height:16px;fill:#fff}

/* ─── REVIEWS ─────────────────────────────────────────────── */
.bpbp-reviews{margin:32px 0 0}
.bpbp-reviews-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;margin-bottom:20px}
.bpbp-reviews-head-left h2{font-size:22px;font-weight:900;color:var(--ink);margin:0 0 3px;letter-spacing:-.02em}
.bpbp-reviews-head-left p{font-size:13px;color:var(--muted);margin:0}
.bpbp-write-review-btn{background:var(--tlsg);color:#fff!important;padding:11px 20px;border-radius:9px;font-size:13.5px;font-weight:800;text-decoration:none!important;display:inline-flex;align-items:center;gap:7px;transition:filter .18s,transform .18s;box-shadow:0 4px 14px rgba(0,94,94,.2)}
.bpbp-write-review-btn:hover{filter:brightness(1.1);transform:translateY(-1px)}
.bpbp-reviews-summary{display:grid;grid-template-columns:170px 1fr;gap:24px;align-items:center;background:var(--card);border:1.5px solid var(--bdrlt);border-radius:var(--r);padding:22px 26px;margin-bottom:22px;box-shadow:var(--sh)}
.bpbp-avg-block{text-align:center;border-right:1px solid var(--bdrlt);padding-right:24px}
.bpbp-avg-num{font-size:54px;font-weight:900;color:var(--ink);line-height:1}
.bpbp-avg-stars{font-size:24px;color:var(--y);letter-spacing:2px;display:block;margin:5px 0 3px}
.bpbp-avg-count{font-size:12px;color:var(--muted)}
.bpbp-bars{display:flex;flex-direction:column;gap:8px;padding-left:6px}
.bpbp-bar-row{display:flex;align-items:center;gap:10px;font-size:12.5px}
.bpbp-bar-label{color:var(--muted);min-width:36px;font-weight:700;text-align:right}
.bpbp-bar-track{flex:1;height:9px;background:#e0edeb;border-radius:99px;overflow:hidden}
.bpbp-bar-fill{height:100%;background:linear-gradient(to right,#ffd340,var(--y));border-radius:99px;transition:width .6s ease}
.bpbp-bar-count{color:var(--muted);min-width:24px;font-size:11.5px}
.bpbp-reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:15px;margin-bottom:22px}
.bpbp-review-card{background:var(--card);border:1.5px solid var(--bdrlt);border-radius:var(--r);padding:20px;box-shadow:var(--sh)}
.bpbp-review-top{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;margin-bottom:12px}
.bpbp-reviewer{display:flex;align-items:center;gap:10px}
.bpbp-avatar{width:42px;height:42px;border-radius:50%;background:var(--tlsg);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:17px;flex-shrink:0}
.bpbp-reviewer-info h4{font-size:13.5px;font-weight:800;color:var(--ink);margin:0 0 2px;line-height:1}
.bpbp-reviewer-info time{font-size:11.5px;color:var(--muted)}
.bpbp-review-stars{color:var(--y);font-size:15px;letter-spacing:1px;flex-shrink:0}
.bpbp-review-title{font-size:14px;font-weight:800;color:var(--ink);margin:0 0 8px;line-height:1.3}
.bpbp-review-body{font-size:13.5px;color:var(--body);line-height:1.68;margin:0 0 10px}
.bpbp-review-img{margin-top:10px;border-radius:9px;overflow:hidden;max-width:180px;background:#f5fafa;line-height:0;border:1px solid var(--bdrlt)}
.bpbp-review-img img{display:block;width:100%;height:auto}
.bpbp-verified-badge{display:inline-flex;align-items:center;gap:4px;font-size:11px;font-weight:700;color:#06573a;background:linear-gradient(135deg,#e6fff3,#d4f8e6);border:1px solid #a8e0c4;padding:3px 9px;border-radius:99px;margin-top:7px}
.bpbp-verified-badge svg{width:10px;height:10px;fill:#06573a}
.bpbp-no-reviews{background:var(--card);border:1.5px solid var(--bdrlt);border-radius:var(--r);padding:36px;text-align:center;color:var(--muted)}
.bpbp-no-reviews .bpbp-empty-stars{font-size:34px;color:#d0e0de;display:block;margin:0 0 10px}

/* ─── REVIEW FORM ─────────────────────────────────────────── */
.bpbp-review-form-wrap{background:var(--card);border:1.5px solid var(--bdrlt);border-radius:var(--r);padding:28px;box-shadow:var(--sh);margin-top:6px}
.bpbp-review-form-wrap h3{font-size:21px;font-weight:900;color:var(--ink);margin:0 0 5px}
.bpbp-review-form-wrap>p{font-size:13.5px;color:var(--muted);margin:0 0 22px}
.bpbp-star-picker{display:flex;gap:5px;margin-bottom:18px;flex-direction:row-reverse;justify-content:flex-end}
.bpbp-star-picker input{display:none}
.bpbp-star-picker label{font-size:34px;color:var(--bdrlt);cursor:pointer;transition:color .12s;line-height:1}
.bpbp-star-picker label:hover,.bpbp-star-picker label:hover~label,.bpbp-star-picker input:checked~label{color:var(--y)}
.bpbp-star-required{font-size:12.5px;color:#c0392b;margin-top:-12px;margin-bottom:14px;display:none}
.bpbp-star-required.show{display:block}
.bpbp-form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.bpbp-form-row.full{grid-template-columns:1fr}
.bpbp-field{display:flex;flex-direction:column;gap:5px}
.bpbp-field label{font-size:12.5px;font-weight:700;color:var(--body)}
.bpbp-field input,.bpbp-field textarea,.bpbp-field select{width:100%;padding:11px 14px;border:1.5px solid var(--bdr);border-radius:9px;font-size:14px;font-family:inherit;color:var(--ink);background:#fff;transition:border-color .18s,box-shadow .18s;outline:none}
.bpbp-field input:focus,.bpbp-field textarea:focus{border-color:var(--tl);box-shadow:0 0 0 3px rgba(0,94,94,.1)}
.bpbp-field textarea{resize:vertical;min-height:110px;line-height:1.65}
.bpbp-img-upload{border:2px dashed var(--bdr);border-radius:10px;padding:20px;text-align:center;cursor:pointer;transition:border-color .18s,background .18s;position:relative}
.bpbp-img-upload:hover{border-color:var(--tl);background:var(--tls)}
.bpbp-img-upload input{position:absolute;inset:0;opacity:0;cursor:pointer;width:100%;height:100%}
.bpbp-img-upload-ico{font-size:30px;display:block;margin-bottom:7px}
.bpbp-img-upload p{font-size:13px;color:var(--muted);margin:0}
.bpbp-img-preview{display:none;margin-top:12px;border-radius:9px;overflow:hidden;max-width:150px;border:1px solid var(--bdrlt)}
.bpbp-img-preview img{display:block;width:100%;height:auto}
.bpbp-review-submit{width:100%;padding:14px;border-radius:10px;background:var(--tlsg);color:#fff;font-weight:800;font-size:15px;border:0;cursor:pointer;font-family:inherit;transition:filter .18s,transform .18s;margin-top:4px;box-shadow:0 4px 16px rgba(0,94,94,.2)}
.bpbp-review-submit:hover:not(:disabled){filter:brightness(1.1);transform:translateY(-1px)}
.bpbp-review-submit:disabled{opacity:.6;cursor:default}
.bpbp-form-notice{border-radius:9px;padding:13px 16px;font-size:13.5px;font-weight:600;margin-top:13px;display:none}
.bpbp-form-notice.success{background:linear-gradient(135deg,#e6fff3,#d4f8e6);border:1px solid #a8e0c4;color:#065c38;display:block}
.bpbp-form-notice.error{background:#fef2f2;border:1px solid #fca5a5;color:#b91c1c;display:block}

/* ─── BOTTOM CTA ──────────────────────────────────────────── */
.bpbp-bottom-cta{position:relative;margin:34px 0 0;border-radius:24px;overflow:hidden;background:linear-gradient(135deg,#022020 0%,#044040 40%,#015e5e 70%,#027272 100%)}
.bpbp-bottom-cta::before{content:"";position:absolute;top:-120px;right:-120px;width:420px;height:420px;border-radius:50%;background:rgba(255,196,0,.06);pointer-events:none}
.bpbp-bottom-cta::after{content:"";position:absolute;bottom:-80px;left:-80px;width:280px;height:280px;border-radius:50%;background:rgba(0,200,200,.05);pointer-events:none}
.bpbp-cta-inner{position:relative;z-index:1;display:grid;grid-template-columns:260px 1fr 230px;align-items:stretch}
.bpbp-cta-img-panel{overflow:hidden;border-radius:24px 0 0 24px;background:rgba(0,0,0,.15)}
.bpbp-cta-img-panel img,.bpbp-cta-img-panel .bpbp-bottom-cta-auto-img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;opacity:.88}
.bpbp-cta-text{padding:38px 30px 38px 36px}
.bpbp-cta-eye{display:inline-block;background:rgba(255,196,0,.18);color:var(--y);font-size:10.5px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;padding:4px 13px;border-radius:99px;margin-bottom:12px}
.bpbp-cta-text h2{font-size:26px;font-weight:900;color:#fff;margin:0 0 10px;line-height:1.15}
.bpbp-cta-text p{font-size:14px;color:#90c8cc;margin:0 0 18px;line-height:1.6;max-width:440px}
.bpbp-cta-feats{display:flex;flex-wrap:wrap;gap:8px;margin:0;padding:0;list-style:none}
.bpbp-cta-feats li{display:flex;align-items:center;gap:5px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);color:#d0eaed;font-size:12px;font-weight:700;padding:4px 12px;border-radius:99px}
.bpbp-cta-feats li::before{content:"✓";color:var(--y);font-size:10px;font-weight:900}
.bpbp-cta-actions{display:flex;flex-direction:column;justify-content:center;align-items:stretch;gap:11px;padding:38px 28px;border-left:1px solid rgba(255,255,255,.08)}
.bpbp-cta-actions .bpbp-yellow-btn{font-size:14.5px;padding:16px 20px;border-radius:12px;box-shadow:0 8px 28px rgba(255,196,0,.3)}
.bpbp-cta-actions .bpbp-wa-btn{font-size:14px;padding:13px 20px;border-radius:12px}
.bpbp-cta-guar{font-size:11.5px;color:rgba(255,255,255,.4);text-align:center;line-height:1.45;margin:0}
.bpbp-cta-guar strong{color:rgba(255,255,255,.7);display:block;font-size:12px}

/* ─── GENERIC ─────────────────────────────────────────────── */
.single-product .bpbp-wrap input[type=text],.single-product .bpbp-wrap input[type=email],.single-product .bpbp-wrap select,.single-product .bpbp-wrap textarea{font-size:14px!important;box-shadow:none!important}
.single-product .bpbp-wrap a{color:var(--tl)}
.single-product .bpbp-wrap table{width:100%;border-collapse:collapse;margin:14px 0;background:var(--card);border:1.5px solid var(--bdrlt);border-radius:10px;overflow:hidden}
.single-product .bpbp-wrap table th,.single-product .bpbp-wrap table td{padding:12px 14px;border:1px solid #e0eded;text-align:left;vertical-align:top;font-size:13.5px}
.single-product .bpbp-wrap table th{background:linear-gradient(to right,#f0f8f6,#eaf5f3);color:var(--ink);font-weight:800}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media(max-width:1100px){
  .bpbp-hero,.bpbp-tabs-shell{grid-template-columns:1fr}
  .bpbp-quote-card{position:relative;top:auto}
  .bpbp-trust-row{grid-template-columns:repeat(3,1fr)}
  .bpbp-trust-item:nth-child(3){border-right:0}
  .bpbp-why-grid{grid-template-columns:repeat(2,1fr)}
  .bpbp-how-grid{grid-template-columns:repeat(3,1fr)}.bpbp-how-grid::before{display:none}
  .bpbp-tabs-nav{grid-template-columns:repeat(3,1fr)}
  .bpbp-quote-card .bpqf-wrap .options-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .bpbp-reviews-grid{grid-template-columns:1fr}
  .bpbp-cta-inner{grid-template-columns:1fr}.bpbp-cta-img-panel{display:none}
  .bpbp-cta-actions{border-left:0;border-top:1px solid rgba(255,255,255,.08);flex-direction:row;flex-wrap:wrap;justify-content:center;padding:0 24px 28px}
  .bpbp-cta-actions .bpbp-yellow-btn,.bpbp-cta-actions .bpbp-wa-btn{flex:1;min-width:140px}
}
@media(max-width:640px){
  html body.single-product .bpbp-wrap{padding:16px 16px 0}
  .bpbp-title{font-size:26px}
  .bpbp-sec-h{font-size:22px}
  .bpbp-thumb{flex:0 0 calc(25% - 6px)}
  .bpbp-trust-row{grid-template-columns:1fr}
  .bpbp-trust-item{border-right:0;border-bottom:1px solid var(--bdrlt)}
  .bpbp-trust-item:last-child{border-bottom:0}
  .bpbp-why-grid,.bpbp-how-grid{grid-template-columns:1fr}
  .bpbp-tabs-nav{display:flex;overflow-x:auto}
  .bpbp-tab-btn{min-width:100px;padding:12px 6px;font-size:11px}
  .bpbp-tab-panel{padding:18px}
  .bpbp-quote-card .bpqf-wrap .options-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .bpbp-quote-card .bpqf-wrap .container{padding:16px}
  .bpbp-product-card{flex:0 0 170px}
  .bpbp-reviews-summary{grid-template-columns:1fr}.bpbp-avg-block{border-right:0;border-bottom:1px solid var(--bdrlt);padding:0 0 16px;margin-bottom:16px}
  .bpbp-form-row{grid-template-columns:1fr}
  .bpbp-cta-text{padding:26px 22px 18px}.bpbp-cta-text h2{font-size:21px}
  .bpbp-cta-actions{flex-direction:column;padding:0 20px 24px}
  .bpbp-cta-actions .bpbp-yellow-btn,.bpbp-cta-actions .bpbp-wa-btn{width:100%}
  .bpbp-slider-prev{left:-10px}.bpbp-slider-next{right:-10px}
  .bpbp-main-img{border-radius:14px}
}