/* ══════════════════════════════════════════════════════
   GrillBrush Pro — Warm Grill Craft design system
   Override layer on top of коврики base
   ══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
    --fire:      #FF7900;
    --fire-d:    #E06000;
    --fire-bg:   #FFF3E0;
    --coal:      #1A1512;
    --ash:       #FFFFFF;
    --smoke:     #6B5E56;
    --border:    #EDE6DE;
    --white:     #FFFFFF;
    --shadow-warm: rgba(26,21,18,.10);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm:  8px;
}

/* ─── GLOBAL WARMTH ─── */
body {
    background: var(--ash) !important;
    color: var(--coal);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.main_wrapper {
    background: var(--ash);
}
h1, h2, h3, h4, h5 {
    color: var(--coal);
    letter-spacing: -0.02em;
}
p, li {
    color: #3D3530;
}
input, textarea {
    -webkit-user-select: text;
    user-select: text;
}

/* ─── FADE-UP ANIMATION ─── */
@keyframes gbp-fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}
.gbp-fade-up {
    opacity: 0;
}
.gbp-fade-up.visible {
    animation: gbp-fade-up .5s ease forwards;
}
.gbp-fade-up:nth-child(2).visible { animation-delay: .08s; }
.gbp-fade-up:nth-child(3).visible { animation-delay: .16s; }

/* ══════════════════════════════════════════════════════
   HERO IMAGE FIX
   ══════════════════════════════════════════════════════ */
.offer_section .info_block img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    padding-top: 40px;
}

/* ══════════════════════════════════════════════════════
   КНОПКА — shine (блеск) анімація
   ══════════════════════════════════════════════════════ */
@keyframes gbp-shine {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
.button, .button_pop {
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(255,121,0,.38);
}
.button::after, .button_pop::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 38%, rgba(255,255,255,.46) 50%, transparent 62%);
    background-size: 200% 100%;
    background-position: -200% center;
    animation: gbp-shine 2.8s ease-in-out infinite;
    border-radius: inherit;
    pointer-events: none;
}
.button:hover, .button_pop:hover {
    background: var(--fire-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,121,0,.55);
}
.button:hover::after, .button_pop:hover::after { animation: none; }
.button:active, .button_pop:active { transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   BENEFIT ICONS (thin-line SVG)
   ══════════════════════════════════════════════════════ */
.benefit_item .gbp-benefit-icon {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    color: var(--coal);
}
.benefit_item .gbp-benefit-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

/* ══════════════════════════════════════════════════════
   HERO — CTA CARD (Apple-style clean)
   ══════════════════════════════════════════════════════ */
.gbp-hero-cta {
    margin: 6px 12px 10px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 16px 20px;
    border: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

/* ─── PRICE HEAD ROW ─── */
.gbp-hero-price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.gbp-hero-price-label {
    font-size: 11px;
    font-weight: 700;
    color: #A09088;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.gbp-hero-discount-chip {
    background: #F2F8F2;
    color: #1E7A30;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
}

/* ─── PRICE ROW ─── */
.gbp-hero-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
}
.gbp-hero-price-new {
    font-size: 42px;
    font-weight: 900;
    color: var(--coal);
    letter-spacing: -0.04em;
    line-height: 1;
    display: block;
}
.gbp-hero-price-new span {
    font-size: 18px;
    font-weight: 600;
    color: #8E8882;
    letter-spacing: 0;
}
.gbp-hero-price-old {
    font-size: 14px;
    color: #C0B0A8;
    text-decoration: line-through;
    font-weight: 500;
    padding-bottom: 8px;
    white-space: nowrap;
}

/* ─── PILL (product card only) ─── */
.gbp-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--white);
    border: 1.5px solid #FFCF9A;
    color: var(--fire);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(255,121,0,.12);
}

/* ─── PRICES ROW (product card) ─── */
.gbp-cta-prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}
.gbp-cta-discount {
    flex: 0 0 auto;
    background: var(--fire);
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    line-height: 1;
    letter-spacing: -.03em;
    box-shadow: 0 4px 14px rgba(255,121,0,.40);
}
.gbp-cta-old, .gbp-cta-new {
    flex: 1;
    text-align: center;
    line-height: 1;
}
.gbp-cta-old .lbl, .gbp-cta-new .lbl {
    display: block;
    font-size: 10px;
    color: var(--smoke);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 7px;
    font-weight: 700;
}
.gbp-cta-old s {
    font-size: 18px;
    font-weight: 700;
    color: #B0A098;
    text-decoration: line-through;
}
.gbp-cta-old s small { font-size: 12px; color: #C0B0A8; }
.gbp-cta-new strong {
    font-size: 30px;
    font-weight: 900;
    color: var(--fire);
    letter-spacing: -.03em;
}
.gbp-cta-new strong small {
    font-size: 16px;
    font-weight: 700;
    margin-left: 2px;
    color: var(--fire);
}

/* CTA button full-width inside card */
.gbp-hero-cta .button,
.gbp-cta-card .button_pop {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    height: 58px !important;
    line-height: 58px !important;
    font-size: 17px !important;
    border-radius: 50px !important;
    text-align: center !important;
    box-shadow: 0 6px 24px rgba(255,121,0,.45) !important;
}

/* ─── HERO TRUST STRIP ─── */
.gbp-hero-trust {
    display: flex;
    justify-content: center;
    gap: 6px 0;
    flex-wrap: wrap;
    padding: 8px 14px 6px;
}
.gbp-hero-trust-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--smoke);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    padding: 0 8px;
}
.gbp-hero-trust-item:not(:last-child) {
    border-right: 1px solid var(--border);
}

/* products_count slim */
.products_count {
    font-size: 13px !important;
    color: var(--smoke) !important;
    text-align: center;
    margin: 6px 0 0 !important;
    padding: 0 16px !important;
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════
   ОПИС (DESCRIPTION)
   ══════════════════════════════════════════════════════ */
.description_section {
    padding-bottom: 10px;
    background: var(--white);
}
.description_section h2.title {
    padding: 36px 20px 0;
    font-size: 23px;
    line-height: 1.3;
}
.description_section h2.title span {
    color: var(--fire);
    position: relative;
    display: inline;
}
.description_section p {
    padding: 14px 20px 0;
    font-size: 16px;
    line-height: 1.4;
    color: #3D3530;
    margin-bottom: 0;
}
.description_section img {
    display: block;
    margin: 18px auto 0;
    width: 100%;
    max-width: 480px;
    height: auto;
    padding-top: 0;
    border-radius: 0;
}

/* ── SALE TEXT ── */
.sale-text {
    background: var(--fire-bg);
    border-left: 4px solid var(--fire);
    color: #3D3530;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    padding: 12px 20px;
    margin: 0 0 8px;
    width: 100%;
}

/* ══════════════════════════════════════════════════════
   ХАРАКТЕРИСТИКИ — simple list
   ══════════════════════════════════════════════════════ */
.gbp-specs {
    padding: 32px 0 24px;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.gbp-specs-title {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--coal);
    padding: 0 20px 18px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.gbp-specs-title span { color: var(--fire); }
.gbp-specs-list {
    margin: 0;
    padding: 0 12px;
    list-style: none;
}
.gbp-specs-list li {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #F0E8E0;
    background: #fff;
    gap: 10px;
    transition: background .15s;
}
.gbp-specs-list li:nth-child(even) {
    background: #FAF7F3;
}
.gbp-specs-list li:first-child { border-radius: 12px 12px 0 0; }
.gbp-specs-list li:last-child  { border-bottom: none; border-radius: 0 0 12px 12px; }
.gbp-spec-emoji { font-size: 17px; flex-shrink: 0; width: 24px; text-align: center; }
.gbp-spec-label { flex: 0 0 126px; font-size: 13px; font-weight: 700; color: var(--coal); }
.gbp-spec-value { flex: 1; font-size: 13px; color: var(--smoke); line-height: 1.4; }

/* ══════════════════════════════════════════════════════
   ПОРІВНЯННЯ
   ══════════════════════════════════════════════════════ */
.gbp-cmp {
    padding: 32px 0 24px;
    background: #fff;
}
.gbp-cmp h2.title {
    padding: 0 20px 40px;
    margin: 0;
    text-align: center;
}

.gbp-cmp-table {
    margin: 30px 12px 0;
    border-radius: var(--radius-lg);
    overflow: visible;
    border: none;
    box-shadow: none;
    background: #fff !important;
}

.gbp-cmp-head {
    display: flex;
    background: #fff !important;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    align-items: flex-end;
    min-height: 90px;
}
.gbp-cmp-head-feat {
    flex: 1;
    background: transparent !important;
}

.gbp-cmp-head-col {
    width: 130px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 8px 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    gap: 8px;
    color: var(--coal);
    background: transparent !important;
}
.gbp-cmp-head-col img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    padding: 0 !important;
    margin-top: -30px;
    filter: drop-shadow(0 4px 10px rgba(26,21,18,.15));
}

.gbp-cmp-head-col--ours {
    background: transparent !important;
    color: var(--coal) !important;
}
.gbp-cmp-head-col--ours img {
    width: 85px;
    height: 85px;
    margin-top: -40px;
    background: transparent !important;
    padding: 0 !important;
}
.gbp-cmp-head-col--ours span {
    color: var(--fire) !important;
}

.gbp-cmp-row {
    display: flex;
    align-items: center;
    border-top: 1px solid #F0E8E0;
    background: #fff;
}
.gbp-cmp-row:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.gbp-cmp-feat {
    flex: 1;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--coal);
    line-height: 1.4;
    background: transparent;
}
.gbp-cmp-val {
    width: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    background: transparent;
}
.gbp-cmp-val--yes {
    background: transparent !important;
    color: var(--coal) !important;
    font-weight: 900;
}
.gbp-cmp-val--no {
    background: transparent !important;
    color: #C0B5AD !important;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   CTA-PRICE-CARD (product section)
   ══════════════════════════════════════════════════════ */
.gbp-cta-card {
    margin: 0 12px 14px;
    background: linear-gradient(160deg, #FFF9F3 0%, #FFEEDD 100%);
    border-radius: var(--radius-lg);
    padding: 18px 14px 20px;
    border: 1px solid #FFDDB8;
    box-shadow: 0 8px 32px rgba(255,121,0,.14);
}

/* ══════════════════════════════════════════════════════
   TRUST BLOCK (product section)
   ══════════════════════════════════════════════════════ */
.gbp-cta-trust {
    margin: 0 12px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 14px 10px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 2px 12px var(--shadow-warm);
}
.gbp-cta-trust-item {
    flex: 1; display: flex;
    align-items: center; gap: 9px;
    padding: 4px 10px;
}
.gbp-cta-trust-item + .gbp-cta-trust-item {
    border-left: 1px solid #F0E8E0;
}
.gbp-cta-trust-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--fire-bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.gbp-cta-trust-text strong {
    display: block; font-size: 12px; font-weight: 800; color: var(--coal); line-height: 1.2;
}
.gbp-cta-trust-text span {
    display: block; font-size: 10px; color: var(--smoke); line-height: 1.3; margin-top: 2px;
}

/* ══════════════════════════════════════════════════════
   ВІДГУКИ — AGGREGATE BLOCK
   ══════════════════════════════════════════════════════ */
.gbp-reviews-agg {
    display: flex;
    gap: 16px;
    background: var(--coal);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    margin: 0 0 24px;
    align-items: center;
}
.gbp-agg-left {
    flex: 0 0 auto;
    text-align: center;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,.12);
}
.gbp-agg-score {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
}
.gbp-agg-stars {
    color: var(--fire);
    font-size: 16px;
    letter-spacing: 2px;
    margin: 4px 0;
    display: block;
}
.gbp-agg-count {
    font-size: 11px;
    color: rgba(255,255,255,.5);
    font-weight: 600;
    white-space: nowrap;
}
.gbp-agg-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.gbp-agg-bar {
    display: flex;
    align-items: center;
    gap: 6px;
}
.gbp-agg-bar-label {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    font-weight: 700;
    flex: 0 0 20px;
    text-align: right;
}
.gbp-agg-track {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,.12);
    border-radius: 50px;
    overflow: hidden;
}
.gbp-agg-fill {
    height: 100%;
    background: var(--fire);
    border-radius: 50px;
    transition: width 1s ease;
}
.gbp-agg-fill--lo { background: rgba(255,255,255,.25); }
.gbp-agg-pct {
    font-size: 10px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    flex: 0 0 26px;
}

/* reviews_stats_block — hide old one */
.reviews_stats_block {
    display: none !important;
}

/* reviews section */
.reviews1_section {
    padding: 32px 16px 16px;
    background: var(--white);
}
.reviews1_section h2.title {
    font-size: 22px;
}

/* ── REVIEW CARDS ── */
.reviews_list1 .review_item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin: 0 4px;
    border: 1px solid var(--border);
    box-shadow:
        0 2px 0 rgba(26,21,18,.04),
        0 6px 24px rgba(26,21,18,.08);
}

/* Avatar */
.reviews_list1 .author_block {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
    float: none !important;
}
.reviews_list1 .avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--fire-bg);
    margin-bottom: 0 !important;
}
.reviews_list1 .author_info_block {
    flex: 1;
    min-width: 0;
}
.reviews_list1 .author_info {
    font-size: 14px;
    font-weight: 800;
    color: var(--coal);
    line-height: 1.2;
}
.reviews_list1 .author_info_block > p {
    font-size: 11px !important;
    color: var(--smoke) !important;
    margin: 2px 0 4px !important;
    padding: 0 !important;
}
/* star rating row in review */
.gbp-review-stars {
    color: var(--fire);
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 3px;
}
/* verified badge */
.gbp-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #2D8A3E;
    background: rgba(45,138,62,.10);
    border-radius: 50px;
    padding: 2px 8px;
    line-height: 1.4;
}

/* text block */
.reviews_list1 .text_block {
    border-top: 1px solid #F0E8E0;
    padding-top: 10px;
}
.reviews_list1 .text_block p {
    font-size: 14px;
    line-height: 1.6;
    color: #3D3530;
    padding: 0 !important;
    margin: 0 0 6px !important;
}
/* review title (the .text element) */
.reviews_list1 .author_info_block .text {
    font-size: 12px;
    font-weight: 700;
    color: var(--smoke);
    line-height: 1.3;
    margin-top: 2px;
    display: none; /* hidden — replaced by stars + verified */
}
/* review date */
.gbp-review-date {
    font-size: 11px;
    color: #B0A098;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

/* ══════════════════════════════════════════════════════
   ORDER STEPS — numbered circles
   ══════════════════════════════════════════════════════ */
.order_steps1 {
    counter-reset: gbp-step;
}
.order_steps1 .step_item {
    height: auto;
    min-height: 80px;
    counter-increment: gbp-step;
    position: relative;
}
.order_steps1 .step_item .step_wrapper {
    padding: 18px 20px 18px 62px !important;
    background: var(--white) !important;
    position: relative;
}
.order_steps1 .step_item .step_wrapper::before {
    content: counter(gbp-step);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--fire);
    color: var(--white);
    font-size: 15px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 3px 10px rgba(255,121,0,.35);
}
.order_steps1 .step_item .step_wrapper h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--coal);
    margin-bottom: 4px;
}
.order_steps1 .step_item .step_wrapper p {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.5;
    padding: 0 !important;
    margin: 0 !important;
}
.order_steps1 .step_item:nth-child(even) .step_wrapper {
    background: #F8F4EF !important;
    padding: 18px 20px 18px 62px !important;
}

/* ===== POPUP — fast + fullscreen mobile (BEM) ===== */
:root{
  --popup-bg:#FFFFFF;
  --popup-surface-2:#F5F1EC;        /* для hover .popup__close, .qty__btn */
  --popup-card-bg:#FFFFFF;          /* фон карточек внутри попапа */
  --popup-card-border:#EDE6DE;      /* рамка карточек */
  --popup-radius:14px;
  --popup-radius-full:999px;
  --popup-ease:cubic-bezier(.16,1,.3,1);
  --popup-ease-spring:cubic-bezier(.32,.72,0,1);
  --popup-dur:160ms;
  --popup-dur-fast:100ms;
}

[hidden]{display:none !important;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
body.popup-open{overflow:hidden;}

.discount-badge{display:inline-flex;align-items:center;background:var(--fire);color:#fff;font-size:.75rem;font-weight:700;padding:3px 9px;border-radius:var(--popup-radius-full);}
.discount-badge--sm{font-size:.65rem;padding:2px 7px;}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border-radius:var(--popup-radius-full);font-weight:700;font-size:1rem;text-align:center;padding:14px 28px;transition:background var(--popup-dur-fast),transform var(--popup-dur-fast),box-shadow var(--popup-dur-fast);min-height:52px;cursor:pointer;border:none;}
.btn--accent{background:var(--fire);color:#fff;}
.btn--accent:hover{background:var(--fire-d);transform:translateY(-2px);box-shadow:0 8px 24px rgba(255,121,0,.35);}
.btn--accent:active{transform:translateY(0);box-shadow:none;}
.btn--xl{font-size:1.05rem;padding:16px 32px;min-height:56px;}
.btn--full{width:100%;}

/* Dialog — fullscreen on mobile */
.popup{
  border:none;padding:0;background:transparent;
  max-width:100%;max-height:100%;width:100%;
  position:fixed;inset:0;z-index:9999;overflow:hidden;
}
.popup:not([open]){display:none;pointer-events:none;}
.popup[open]{display:flex;align-items:stretch;justify-content:stretch;}
@media(min-width:640px){.popup[open]{align-items:center;justify-content:center;}}

.popup__backdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(2px);
  z-index:0;
  animation:bkFade var(--popup-dur-fast) var(--popup-ease) forwards;
}
@keyframes bkFade{from{opacity:0}to{opacity:1}}

.popup__sheet{
  position:relative;z-index:1;
  background:var(--popup-bg);
  width:100%;
  max-width:100%;
  height:100dvh;
  max-height:100dvh;
  border-radius:0;
  padding:18px 18px calc(18px + env(safe-area-inset-bottom,0px));
  overflow-y:auto;
  overscroll-behavior:contain;
  animation:sheetUp var(--popup-dur) var(--popup-ease-spring) forwards;
}
@media(min-width:640px){
  .popup__sheet{
    max-width:480px;
    height:auto;
    max-height:90dvh;
    border-radius:22px;
    animation:sheetFade var(--popup-dur) var(--popup-ease) forwards;
  }
}
@keyframes sheetUp{from{transform:translateY(20%);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes sheetFade{from{opacity:0;transform:scale(.97)}to{opacity:1;transform:scale(1)}}

.popup__drag-handle{display:none;}

.popup__close{
  position:absolute;top:14px;right:14px;
  width:36px;height:36px;border-radius:50%;
  border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  background:var(--popup-surface-2);color:var(--coal);
  transition:background var(--popup-dur-fast);
  z-index:2;
}
.popup__close:hover{background:#E5DED4;}

.popup__title{font-size:1.15rem;font-weight:800;margin:4px 40px 16px 0;color:var(--coal);}

/* Карточка товара — теперь белая с рамкой */
.popup__product{
  display:flex;align-items:center;gap:12px;
  background:var(--popup-card-bg);
  border:1px solid var(--popup-card-border);
  border-radius:var(--popup-radius);
  padding:12px;margin-bottom:20px;
  box-shadow:0 1px 2px rgba(26,21,18,.04);
}
.popup__product-img{width:60px;height:60px;border-radius:10px;object-fit:cover;flex-shrink:0;}
.popup__product-info p{font-size:.82rem;font-weight:600;margin-bottom:4px;}
.popup__product-price{display:flex;align-items:center;gap:7px;flex-wrap:wrap;}
.popup__product-price s{font-size:.72rem;color:var(--smoke);text-decoration:line-through;}
.popup__product-price strong{font-size:.95rem;font-weight:800;}

.fg{margin-bottom:14px;}
.fg__label{display:block;font-size:.72rem;font-weight:700;letter-spacing:.07em;text-transform:uppercase;color:var(--smoke);margin-bottom:6px;}
.fg input[type=text],.fg input[type=tel]{width:100%;padding:13px 16px;border-radius:var(--popup-radius);border:1.5px solid var(--border);font:inherit;font-size:.95rem;background:var(--popup-bg);color:var(--coal);transition:border-color var(--popup-dur-fast),box-shadow var(--popup-dur-fast);-webkit-appearance:none;}
.fg input:focus{outline:none;border-color:var(--fire);box-shadow:0 0 0 3px rgba(255,121,0,.12);}
.fg--error input{border-color:#C2362A !important;}
.fg__error{font-size:.75rem;color:#C2362A;margin-top:5px;display:none;}
.fg__error:not([hidden]){display:block;}
.fg__error--center{text-align:center;}

.qty{display:inline-flex;align-items:center;border:1.5px solid var(--border);border-radius:var(--popup-radius-full);overflow:hidden;}
.qty__btn{width:40px;height:40px;font-size:1.2rem;font-weight:600;display:flex;align-items:center;justify-content:center;color:var(--smoke);background:none;border:none;cursor:pointer;transition:background var(--popup-dur-fast);}
.qty__btn:hover{background:var(--popup-surface-2);color:var(--coal);}
.qty__val{min-width:36px;text-align:center;font-weight:700;font-size:1rem;}

/* Апсел — белый с рамкой */
.upsell-row{
  background:var(--popup-card-bg);
  border-radius:var(--popup-radius);
  padding:14px;margin-bottom:14px;
  border:1.5px solid var(--popup-card-border);
  transition:border-color var(--popup-dur-fast),box-shadow var(--popup-dur-fast);
  box-shadow:0 1px 2px rgba(26,21,18,.04);
}
.upsell-label{display:flex;align-items:center;gap:10px;cursor:pointer;width:100%;}
.toggle-wrap{flex-shrink:0;}
.toggle-input{position:absolute;opacity:0;width:0;height:0;}
.toggle-track{width:42px;height:24px;border-radius:var(--popup-radius-full);background:rgba(0,0,0,.15);position:relative;transition:background var(--popup-dur) var(--popup-ease);cursor:pointer;display:block;}
.toggle-track.on{background:var(--fire);}
.toggle-thumb{position:absolute;top:3px;left:3px;width:18px;height:18px;border-radius:50%;background:#fff;box-shadow:0 1px 4px rgba(0,0,0,.2);transition:transform var(--popup-dur) var(--popup-ease-spring);}
.toggle-track.on .toggle-thumb{transform:translateX(18px);}
.upsell-img{width:48px;height:48px;border-radius:8px;object-fit:cover;flex-shrink:0;}
.upsell-text{flex:1;min-width:0;}
.upsell-text strong{display:block;font-size:.85rem;font-weight:700;}
.upsell-tag{font-size:.78rem;color:var(--fire);font-weight:600;}
.upsell-qty{margin-top:12px;padding-top:12px;border-top:1px solid var(--popup-card-border);}
.upsell-row.on{
  border-color:var(--fire);
  box-shadow:0 2px 10px rgba(255,121,0,.12);
}

/* Summary — белый с рамкой */
.order-summary{
  background:var(--popup-card-bg);
  border:1px solid var(--popup-card-border);
  border-radius:var(--popup-radius);
  padding:12px 14px;margin-bottom:14px;
  font-size:.82rem;
  box-shadow:0 1px 2px rgba(26,21,18,.04);
}
.os-row{display:flex;justify-content:space-between;gap:8px;padding:3px 0;color:var(--smoke);}
.os-total{display:flex;justify-content:space-between;gap:8px;padding-top:8px;margin-top:4px;border-top:1px solid var(--popup-card-border);font-size:.95rem;font-weight:800;color:var(--coal);}

.consent{display:flex;align-items:flex-start;gap:9px;font-size:.75rem;color:var(--smoke);cursor:pointer;margin-bottom:14px;line-height:1.5;}
.consent input{flex-shrink:0;margin-top:2px;accent-color:var(--fire);width:16px;height:16px;}
.consent a{color:var(--fire);text-decoration:underline;}

.popup__trust{display:flex;align-items:center;justify-content:center;gap:6px;margin-top:12px;font-size:.75rem;color:var(--smoke);text-align:center;}

/* ══════════════════════════════════════════════════════
   IMAGE PROTECTION
   ══════════════════════════════════════════════════════ */
img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

/* ══════════════════════════════════════════════════════
   VIDEO PLACEHOLDER
   ══════════════════════════════════════════════════════ */
/* СТАЛО */
.gbp-media-block {
    margin: 16px 0;
    border-radius: 0;
    overflow: hidden;
    background: #111;
    aspect-ratio: 1 / 1;
    border: none;
    box-shadow: none;
}
.gbp-media-block video,
.gbp-media-block img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════════════════════════════
   TITLE GLOBAL REFINEMENT
   ══════════════════════════════════════════════════════ */
h2.title {
    letter-spacing: -0.02em;
    line-height: 1.25;
}
h2.title span { color: var(--fire); }

/* footer */
.footer_section {
    background: var(--coal) !important;
    padding: 24px 20px !important;
}
.footer_section p,
.footer_section a {
    color: rgba(255,255,255,.55) !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
}
.footer_section a:hover { color: var(--fire) !important; }

/* ══════════════════════════════════════════════════════
   HERO — white background
   ══════════════════════════════════════════════════════ */
.offer_section.offer3 {
    background: #FFFFFF !important;
}

/* ══════════════════════════════════════════════════════
   BENEFITS CARD (3 cols, thin orange icons, separators)
   ══════════════════════════════════════════════════════ */
.gbp-benefits-card {
    display: flex;
    align-items: stretch;
    margin: 0 12px 12px;
    background: var(--fire-bg);
    border-radius: 14px;
    padding: 14px 0;
    border: 1px solid #FFDDB8;
}
.gbp-bc-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2px 6px;
    gap: 8px;
}
.gbp-bc-sep {
    width: 1px;
    background: #FFDDB8;
    align-self: stretch;
    flex-shrink: 0;
}
.gbp-bc-icon {
    display: block;
    width: 46px;
    height: 46px;
    color: var(--fire);
}
.gbp-bc-icon svg {
    width: 46px;
    height: 46px;
    display: block;
}
.gbp-bc-col p {
    font-size: 9px !important;
    font-weight: 800 !important;
    color: var(--coal) !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ══════════════════════════════════════════════════════
   PRICE CARD (reference: discount | old | new + btn)
   ══════════════════════════════════════════════════════ */
.gbp-price-card {
    margin: 0 12px 10px;
    background: #fff;
    border-radius: 18px;
    padding: 14px 14px 16px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.gbp-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--fire-bg);
    color: var(--fire);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid #FFDDB8;
}
.gbp-price-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.gbp-price-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 4px;
}
.gbp-price-vsep {
    width: 1px;
    height: 52px;
    background: var(--border);
    flex-shrink: 0;
}
.gbp-price-disc span {
    font-size: 36px;
    font-weight: 900;
    color: var(--fire);
    letter-spacing: -0.04em;
    line-height: 1;
}
.gbp-price-col small {
    font-size: 9px;
    font-weight: 700;
    color: #A09088;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.3;
    margin-bottom: 5px;
    display: block;
}
.gbp-price-col s {
    font-size: 20px;
    font-weight: 700;
    color: #B0A098;
    text-decoration: line-through;
    display: block;
}
.gbp-price-col strong {
    font-size: 25px;
    font-weight: 900;
    color: var(--fire);
    letter-spacing: -0.03em;
    display: block;
}

/* ── ORDER BUTTON ── */
.gbp-order-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, #FF7900 0%, #FF9500 100%);
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: .07em;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(255,121,0,.15);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.gbp-order-btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.35) 50%, transparent 62%);
    background-size: 200% 100%; background-position: -200% center;
    animation: gbp-shine 2.8s ease-in-out infinite;
    border-radius: inherit; pointer-events: none;
}
.gbp-order-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 16px rgba(255,121,0,.22) !important;
    color: #fff !important;
    text-decoration: none !important;
}
.gbp-order-btn:hover::after { animation: none; }

/* ══════════════════════════════════════════════════════
   TRUST STRIP (3 icons + text, separated)
   ══════════════════════════════════════════════════════ */
.gbp-trust-strip {
    display: flex;
    align-items: center;
    margin: 0 12px 12px;
    background: #fff;
    border-radius: 12px;
    padding: 11px 8px;
    border: 1px solid var(--border);
}
.gbp-ts-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 4px;
}
.gbp-ts-item span {
    font-size: 11px;
    font-weight: 700;
    color: var(--coal);
    line-height: 1.3;
    text-align: center;
}
.gbp-ts-ico { display: block; flex-shrink: 0; }
.gbp-ts-ico--green { color: #2EA843; }
.gbp-ts-ico--fire  { color: var(--fire); }
.gbp-ts-sep {
    width: 1px;
    height: 26px;
    background: var(--border);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   2-COLUMN TRUST BLOCK (USP + social proof)
   ══════════════════════════════════════════════════════ */
.gbp-trust2col {
    display: flex;
    align-items: center;
    margin: 0 12px 16px;
    background: var(--fire-bg);
    border-radius: 14px;
    padding: 14px 10px;
    border: 1px solid #FFDDB8;
}
.gbp-t2-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 6px;
}
.gbp-t2-sep {
    width: 1px;
    height: 52px;
    background: #FFDDB8;
    flex-shrink: 0;
}
.gbp-t2-ico {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.gbp-t2-avas {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.gbp-t2-ava {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -8px;
    display: block;
}
.gbp-t2-ava:first-child { margin-left: 0; }
.gbp-t2-body strong {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: var(--coal);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.3;
    margin-bottom: 3px;
}
.gbp-t2-body p {
    font-size: 11px;
    color: var(--smoke);
    line-height: 1.4;
    padding: 0 !important;
    margin: 0 !important;
}

/* ══════════════════════════════════════════════════════
   UNIFIED HERO CARD — one white block
   ══════════════════════════════════════════════════════ */
.gbp-hero-card {
    margin: 0;
    background: #fff;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.gbp-hero-card .gbp-benefits-card {
    margin: 0;
    border: none;
    border-radius: 0;
    background: #fff;
    padding: 14px 0 10px;
}
/* hide only benefit & trust separators inside hero card */
.gbp-hero-card .gbp-bc-sep,
.gbp-hero-card .gbp-t2-sep { display: none; }

.gbp-hero-card .gbp-bc-icon { width: 30px; height: 30px; }
.gbp-hero-card .gbp-bc-icon svg { width: 30px; height: 30px; }
.gbp-hero-card .gbp-bc-col { gap: 5px; padding: 2px 6px; }
.gbp-hero-card .gbp-bc-col p { font-size: 9.5px !important; }

.gbp-hero-card .gbp-price-card {
    margin: 0;
    border: none;
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
    padding: 14px 16px 20px;
}
.gbp-hero-card .gbp-price-row { justify-content: space-evenly; margin-bottom: 12px; align-items: center; }
.gbp-hero-card .gbp-price-col { padding: 0 6px; }
.gbp-hero-card .gbp-price-pill { display: block; text-align: center; width: fit-content; margin: 0 auto 6px; font-size: 9px; padding: 3px 8px; white-space: nowrap; }
.gbp-hero-card .gbp-price-disc span { font-size: 26px; }

.gbp-hero-card .gbp-trust2col {
    margin: 0;
    border: none;
    border-radius: 0;
    background: #fff;
    padding: 0 14px 14px;
}
.gbp-hero-card .gbp-t2-item { padding: 0 10px; }
.gbp-hero-card .gbp-t2-body strong { font-size: 12px; }
.gbp-hero-card .gbp-t2-body p { font-size: 11px; }

/* ── Delivery row under button ── */
.gbp-delivery-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    padding: 10px 0 0;
    font-size: 10px;
    font-weight: 700;
    color: #A09088;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.gbp-dlv-dot { color: #D5CFC9; }

/* ── Dark benefits strip ── */
.gbp-dark-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #1A1512;
    padding: 14px 8px;
    border-top: 2px solid #FF7900;
}
.gbp-ds-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.gbp-ds-item svg { color: #FF7900; flex-shrink: 0; }
.gbp-ds-sep {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.gbp-faq {
    padding: 32px 0 0px;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: none;
}
.gbp-faq h2.title {
    padding: 0 20px 24px;
    margin: 0;
    text-align: center;
}
.gbp-faq-list {
    padding: 0 16px;
    background: #ffffff;
}
.gbp-faq-item {
    border-bottom: 1px solid #F0E8E0;
    padding: 0;
    background: #ffffff;
}
.gbp-faq-item:first-child {
    border-top: 1px solid #F0E8E0;
}
.gbp-faq-item[open] {
    background: #ffffff;
}
.gbp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    font-size: 15px;
    font-weight: 700;
    color: var(--coal);
    cursor: pointer;
    list-style: none;
    gap: 12px;
    line-height: 1.4;
    background: #ffffff;
}
.gbp-faq-q::-webkit-details-marker { display: none; }
.gbp-faq-q::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--fire);
    flex-shrink: 0;
    transition: transform .25s ease;
    line-height: 1;
}
.gbp-faq-item[open] .gbp-faq-q::after {
    transform: rotate(45deg);
}
.gbp-faq-a {
    padding: 0 4px 16px;
    font-size: 14px;
    color: var(--smoke);
    line-height: 1.65;
    margin: 0;
    background: #ffffff;
}

/* ══════════════════════════════════════════════════════
   REVIEWS V4 — JS masonry, premium & trustworthy
   ══════════════════════════════════════════════════════ */
.rv4-section {
    padding: 10px 14px 28px;
    background: #FFFFFF;
}
.rv4-head { text-align: center; margin-bottom: 22px; }
.rv4-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    color: #FF7900;
    background: #FFF3E0;
    border: 1px solid #FFDDB8;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* Inline rating */
.rv4-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0 0 12px;
    font-size: 13px;
    color: #3D332C;
    line-height: 1.2;
}
.rv4-inline-stars {
    display: inline-flex;
    gap: 1px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1px;
}
.rv4-inline-stars span { color: #E4DFD7; }
.rv4-inline-stars .on { color: #FFB400; }
.rv4-inline-stars .half {
    background: linear-gradient(90deg, #FFB400 50%, #E4DFD7 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.rv4-inline-score {
    font-size: 14px;
    font-weight: 900;
    color: #1A1512;
    letter-spacing: -.02em;
}
.rv4-inline-dot { color: #D4C8BE; font-weight: 900; }
.rv4-inline-txt b { color: #1A1512; font-weight: 800; }
.rv4-inline-rec {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2D8A3E;
    font-weight: 700;
}
.rv4-inline-rec b { font-weight: 900; }

.rv4-title {
    font-size: 26px;
    font-weight: 900;
    color: #1A1512;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    text-transform: none;
}
.rv4-title span { color: #FF7900; }
.rv4-sub {
    font-size: 13px;
    color: #6B5E56;
    line-height: 1.5;
    max-width: 360px;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* JS Masonry — 2 columns */
.rv4-grid {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.rv4-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card */
.rv4-card {
    background: #fff;
    border: 1px solid #EDE6DE;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(26,21,18,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.rv4-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26,21,18,.09);
}

/* Photo — auto height */
.rv4-photo {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg,#F5EFE7 0%,#EDE4D7 100%);
    position: relative;
    min-height: 120px;
}
.rv4-photo::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9BDAE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='14' rx='2'/><circle cx='12' cy='12' r='3.5'/></svg>") center/40px no-repeat;
    opacity: .55;
    z-index: 0;
}
.rv4-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}
.rv4-card:hover .rv4-photo img { transform: scale(1.04); }

.rv4-body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rv4-top { display: flex; align-items: center; }
.rv4-name {
    font-size: 14px;
    font-weight: 800;
    color: #1A1512;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 5px;
}
.rv4-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #00B67A;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
}
.rv4-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1px;
    margin-top: 2px;
}
.rv4-stars span { color: #E4DFD7; }
.rv4-stars .on { color: #FFB400; }
.rv4-date {
    font-size: 11px;
    color: #A09088;
    font-weight: 600;
}
.rv4-text {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    color: #2E2620 !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
}

/* More button */
.rv4-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 22px auto 10px;
    background: #fff;
    border: 1.5px solid #1A1512;
    color: #1A1512;
    font-size: 14px;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: .02em;
    box-shadow: 0 4px 14px rgba(26,21,18,.08);
    min-width: 220px;
}
.rv4-more:hover {
    background: #1A1512;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26,21,18,.22);
}
.rv4-more:active { transform: translateY(0); }
.rv4-more svg { transition: transform .25s ease; }
.rv4-more--up svg { transform: rotate(180deg); }

.rv4-legal {
    text-align: center;
    font-size: 11.5px;
    color: #8E8882;
    margin: 12px 10px 0 !important;
    padding: 0 !important;
    line-height: 1.5;
    font-weight: 600;
}

@media (max-width: 360px) {
    .rv4-grid { gap: 10px; }
    .rv4-col { gap: 10px; }
    .rv4-body { padding: 10px; gap: 5px; }
    .rv4-text { font-size: 12.5px !important; }
}

footer.footersection {
    background: #1A1512 !important;
    padding: 24px 12px 100px !important;
    margin: 0 auto !important;
    text-align: center !important;
    box-sizing: border-box;
    width: 100%;
    max-width: 480px;
}
footer.footersection p {
    color: rgba(255,255,255,.75) !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    text-align: center !important;
}
footer.footersection a,
footer.footersection a:link,
footer.footersection a:visited {
    color: #ffffff !important;
    font-size: 13px !important;
    line-height: 2 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: nowrap;
}
footer.footersection a:hover {
    color: #FF7900 !important;
}

/* ===== STICKY BAR — final polished ===== */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-top: 1px solid rgba(255,121,0,.15);
    box-shadow: 0 -8px 28px rgba(26,21,18,.15);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 900;
    box-sizing: border-box;
    transition: transform .35s ease, opacity .35s ease;
}
.sticky-bar.hidden {
    transform: translateX(-50%) translateY(110%);
    opacity: 0;
    pointer-events: none;
}

/* LEFT — thumb + discount badge */
.sticky-bar .sb-left {
    position: relative;
    flex: 0 0 auto;
    padding: 12px 14px 0 0;
}
.sticky-bar .sb-left img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    background: transparent;
    box-shadow: 0 3px 8px rgba(26,21,18,.15);
    pointer-events: none;
}
.sticky-bar .sb-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: linear-gradient(90deg, #FF6A00 0%, #FF9A1F 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    padding: 2px 7px;
    border-radius: 50px;
    letter-spacing: .02em;
    box-shadow: 0 2px 6px rgba(255,121,0,.45);
    white-space: nowrap;
    line-height: 1.4;
    border: none;
}

/* MIDDLE — prices */
.sticky-bar .sb-info {
    flex: 0 1 auto;
    min-width: 0;
    line-height: 1.1;
    overflow: hidden;
}
.sticky-bar .sb-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    color: #E06000;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 3px;
    white-space: nowrap;
}
.sticky-bar .sb-prices {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}
.sticky-bar .sb-prices s {
    font-size: 12px;
    color: #B0A098;
    font-weight: 600;
    text-decoration: line-through;
}
.sticky-bar .sb-prices strong {
    font-size: 19px;
    font-weight: 900;
    color: #1A1512;
    letter-spacing: -.02em;
    line-height: 1;
}
.sticky-bar .sb-prices strong span {
    font-size: 11px;
    font-weight: 700;
    color: #6B5E56;
    margin-left: 1px;
}

/* CTA — wide juicy button */
.sticky-bar .sb-cta {
    flex: 1 1 auto;
    min-width: 110px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 14px !important;
    height: 54px !important;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center;
    border-radius: 50px !important;
    background: linear-gradient(90deg, #FF6A00 0%, #FF9A1F 100%) !important;
    box-shadow:
        0 6px 18px rgba(255,121,0,.45),
        inset 0 1px 0 rgba(255,255,255,.30) !important;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    line-height: 1 !important;
    margin: 0 !important;
    width: auto !important;
    border: none !important;
    font-size: inherit !important;
}
.sticky-bar .sb-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.45) 50%, transparent 62%);
    background-size: 220% 100%;
    background-position: -220% center;
    animation: gbp-shine 2.8s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
}
.sticky-bar .sb-cta-top {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.1;
    color: #fff;
}
.sticky-bar .sb-cta-sub {
    font-size: 10px;
    font-weight: 600;
    opacity: .92;
    line-height: 1.1;
    margin-top: 2px;
    color: #fff;
    white-space: nowrap;
}
.sticky-bar .sb-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #E06000 0%, #FF8A00 100%) !important;
    box-shadow: 0 10px 26px rgba(255,121,0,.58) !important;
    color: #fff !important;
    text-decoration: none !important;
}
.sticky-bar .sb-cta:active {
    transform: translateY(0);
}

/* Narrow phones */
@media (max-width: 380px) {
    .sticky-bar { gap: 8px; padding: 8px 10px; }
    .sticky-bar .sb-left { padding: 10px 12px 0 0; }
    .sticky-bar .sb-left img { width: 44px; height: 44px; }
    .sticky-bar .sb-prices strong { font-size: 17px; }
    .sticky-bar .sb-cta { height: 50px !important; padding: 6px 12px !important; min-width: 100px; }
    .sticky-bar .sb-cta-top { font-size: 13px; }
    .sticky-bar .sb-cta-sub { font-size: 9px; }
    .sticky-bar .sb-label { font-size: 8px; }
}

html { scroll-behavior: auto !important; }