:root {
    --bbk-ink: #090d12;
    --bbk-ink-2: #10161d;
    --bbk-ink-3: #171e27;
    --bbk-steel: #cbd2da;
    --bbk-steel-2: #909aa6;
    --bbk-white: #ffffff;
    --bbk-text: #f7f8fa;
    --bbk-muted: #aab3bd;
    --bbk-primary: #d9dee4;
    --bbk-secondary: #8f99a5;
    --bbk-surface: rgba(15, 20, 27, .88);
    --bbk-surface-solid: #121820;
    --bbk-surface-elevated: rgba(22, 29, 38, .92);
    --bbk-border: rgba(255, 255, 255, .10);
    --bbk-border-strong: rgba(255, 255, 255, .20);
    --bbk-shadow-sm: 0 12px 36px rgba(0, 0, 0, .24);
    --bbk-shadow: 0 28px 80px rgba(0, 0, 0, .42);
    --bbk-radius-sm: 10px;
    --bbk-radius: 18px;
    --bbk-radius-lg: 30px;
    --bbk-content: 1180px;
    --bbk-wide: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.bbk-site {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--bbk-text);
    background: var(--bbk-ink);
    font-family: "Manrope", Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.bbk-site::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    background-image: url("../../images/sfondo-blockbrake-desktop.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: saturate(.72) contrast(1.03) brightness(.68);
    transform: scale(1.01);
}
body.bbk-site::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 8, 12, .82) 0%, rgba(8, 12, 17, .88) 42%, rgba(5, 8, 12, .96) 100%),
        radial-gradient(circle at 76% 12%, rgba(210, 219, 228, .10), transparent 30%),
        radial-gradient(circle at 16% 84%, rgba(126, 139, 154, .07), transparent 28%);
}
body.bbk-nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

.bbk-page { min-height: 100vh; display: flex; flex-direction: column; }
.bbk-main { flex: 1; padding: 46px 0 82px; }
.bbk-container { width: min(var(--bbk-content), calc(100% - 48px)); margin-inline: auto; }
.bbk-wide { width: min(var(--bbk-wide), calc(100% - 48px)); margin-inline: auto; }
.bbk-section { margin-bottom: 42px; }
.bbk-section:last-child { margin-bottom: 0; }

/* Utility + header */
.bbk-utility {
    min-height: 32px;
    display: flex;
    align-items: center;
    background: rgba(4, 7, 10, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
}
.bbk-utility-inner {
    width: min(var(--bbk-wide), calc(100% - 48px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.bbk-utility-contact { display: flex; align-items: center; gap: 15px; }
.bbk-social-bar { display: flex; align-items: center; gap: 8px; }
.bbk-utility-contact a,
.bbk-utility-contact span,
.bbk-social-bar a {
    color: #aeb7c1;
    font-size: .73rem;
    text-decoration: none;
}
.bbk-utility-contact i { margin-right: 6px; color: #e5e9ed; }
.bbk-social-bar a {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    background: rgba(255,255,255,.025);
    font-size: .78rem;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.bbk-social-bar a:hover {
    color: #fff;
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.18);
    transform: translateY(-1px);
}
.bbk-social-bar a:focus-visible {
    color: #fff;
    outline: 2px solid rgba(255,255,255,.7);
    outline-offset: 2px;
}

.bbk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 12, 17, .90);
    border-bottom: 1px solid rgba(255,255,255,.075);
    box-shadow: 0 10px 40px rgba(0,0,0,.22);
    backdrop-filter: blur(20px) saturate(1.15);
}
.bbk-navbar {
    width: min(var(--bbk-wide), calc(100% - 48px));
    min-height: 72px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}
.bbk-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}
.bbk-brand img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 126px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.34));
}
.bbk-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}
.bbk-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 9px;
    color: #d9dee4;
    font-size: .82rem;
    font-weight: 750;
    white-space: nowrap;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.bbk-nav a:hover,
.bbk-nav a.active { color: #fff; background: rgba(255,255,255,.07); }
.bbk-nav a.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 1px;
    background: rgba(255,255,255,.64);
}
.bbk-cart-link { gap: 7px; margin-left: 4px; border: 1px solid rgba(255,255,255,.10); }
.bbk-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #f0f3f5;
    color: #0a0e13;
    font-size: .66rem;
    font-weight: 900;
}
.bbk-nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 42px;
    border: 1px solid var(--bbk-border);
    border-radius: 10px;
    background: rgba(255,255,255,.045);
    color: #fff;
    cursor: pointer;
}
.bbk-nav-backdrop { display: none; }

/* Typography */
.bbk-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 14px;
    color: #d6dce2;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: .87rem;
    font-weight: 700;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}
.bbk-eyebrow::before { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, #fff, #7f8a96); }
.bbk-title {
    margin: 0 0 18px;
    max-width: 930px;
    color: #fff;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-size: clamp(3rem, 5.4vw, 5.45rem);
    line-height: .90;
    font-weight: 700;
    letter-spacing: -.025em;
    text-wrap: balance;
}
.bbk-title-sm { font-size: clamp(2.15rem, 3.6vw, 3.65rem); line-height: .98; }
.bbk-title-xs { font-size: clamp(1.65rem, 2.55vw, 2.45rem); line-height: 1.04; }
.bbk-subtitle {
    margin: 0;
    max-width: 740px;
    color: var(--bbk-muted);
    font-size: clamp(.98rem, 1.05vw, 1.08rem);
    line-height: 1.78;
}
.bbk-text { color: #cdd3da; line-height: 1.82; }
.bbk-text p:first-child { margin-top: 0; }
.bbk-text p:last-child { margin-bottom: 0; }
.bbk-muted { color: var(--bbk-muted); }
.bbk-price { color: #fff; font-size: 1.4rem; font-weight: 800; }

/* Surfaces */
.bbk-card {
    background: linear-gradient(180deg, rgba(20, 26, 34, .92), rgba(12, 17, 23, .91));
    border: 1px solid var(--bbk-border);
    border-radius: var(--bbk-radius);
    box-shadow: var(--bbk-shadow-sm);
    backdrop-filter: blur(15px) saturate(1.06);
}
.bbk-card-pad { padding: clamp(25px, 4vw, 46px); }
.bbk-panel-soft { background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.075); border-radius: 14px; }
.bbk-section-head { max-width: 790px; margin-bottom: 26px; }
.bbk-section-head-centered { margin-inline: auto; text-align: center; }
.bbk-section-head-centered .bbk-title,
.bbk-section-head-centered .bbk-subtitle { margin-inline: auto; }

/* Premium home */
.bbk-hero { padding: 18px 0 6px; }
.bbk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(34px, 5.2vw, 82px);
    align-items: center;
}
.bbk-hero-copy { padding: 28px 0; }
.bbk-hero-copy .bbk-subtitle { max-width: 680px; }
.bbk-hero-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: clamp(24px, 3vw, 38px);
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.10), transparent 40%),
        linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.bbk-hero-visual::after {
    content: "";
    position: absolute;
    left: 10%; right: 10%; bottom: 8%;
    height: 10%;
    background: radial-gradient(ellipse, rgba(0,0,0,.56), transparent 72%);
    filter: blur(9px);
}
.bbk-hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 430px;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 28px 40px rgba(0,0,0,.58));
}
.bbk-hero-logo img { max-width: 230px; max-height: 240px; }
.bbk-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.bbk-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
}
.bbk-hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b9c1ca;
    font-size: .8rem;
    font-weight: 650;
}
.bbk-hero-proof i { color: #eef1f3; }

/* Buttons */
.bbk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid var(--bbk-border-strong);
    border-radius: 10px;
    font-size: .89rem;
    font-weight: 800;
    letter-spacing: .005em;
    line-height: 1;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.bbk-btn-primary {
    color: #0b0f14;
    background: linear-gradient(180deg, #fff 0%, #d9dee4 50%, #a5aeb8 100%);
    box-shadow: 0 12px 26px rgba(0,0,0,.25);
}
.bbk-btn-primary:hover { color: #000; transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0,0,0,.34); }
.bbk-btn-ghost { color: #f4f6f8; background: rgba(255,255,255,.04); }
.bbk-btn-ghost:hover { color: #fff; background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.bbk-btn-whatsapp { color: #fff; background: #1f7855; border-color: rgba(255,255,255,.14); }
.bbk-btn-whatsapp:hover { color: #fff; background: #258763; transform: translateY(-2px); }
.bbk-btn-danger { color: #fff; background: #66383c; }
.bbk-btn-danger:hover { color: #fff; background: #784249; }
.bbk-btn-sm { min-height: 40px; padding: 9px 15px; font-size: .8rem; }

/* Trust + payment strip */
.bbk-payment-trust {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: center;
    padding: 18px 22px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 15px;
    background: rgba(9, 13, 18, .72);
    box-shadow: 0 16px 36px rgba(0,0,0,.20);
}
.bbk-payment-copy strong { display: block; color: #fff; font-size: .92rem; }
.bbk-payment-copy span { color: #9fa9b4; font-size: .76rem; }
.bbk-payments { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.bbk-pay-badge {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
    color: #eef1f4;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .01em;
}
.bbk-pay-badge i { font-size: 1rem; }
.bbk-pay-badge.klarna { background: #f4b7d2; border-color: #f4b7d2; color: #111; }

/* Grids */
.bbk-grid { display: grid; gap: 18px; }
.bbk-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bbk-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bbk-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bbk-feature { min-height: 100%; padding: 23px; }
.bbk-feature-icon { margin-bottom: 15px; color: var(--bbk-primary); font-size: 1.4rem; }
.bbk-feature h3 { margin: 0 0 7px; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; line-height: 1.05; }
.bbk-feature p { margin: 0; color: var(--bbk-muted); font-size: .88rem; line-height: 1.65; }
.bbk-trust-grid .bbk-feature { padding: 18px 19px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.bbk-trust-grid .bbk-feature-icon { margin: 0; }

/* Editorial sections */
.bbk-editorial {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}
.bbk-editorial.reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.bbk-editorial.reverse > :first-child { order: 2; }
.bbk-stat-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 22px; }
.bbk-stat { padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.025); }
.bbk-stat strong { display: block; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.25rem; }
.bbk-stat span { color: #9fa8b2; font-size: .72rem; }

/* Media */
.bbk-media {
    overflow: hidden;
    padding: 10px;
    background: rgba(255,255,255,.025);
    border: 1px solid var(--bbk-border);
    border-radius: 14px;
}
.bbk-media img,
.bbk-media video,
.bbk-media iframe { display: block; width: 100%; height: auto; border: 0; border-radius: 10px; }
.bbk-media-contain { display: grid; place-items: center; min-height: 280px; }
.bbk-media-contain img { max-height: 390px; object-fit: contain; }
.bbk-media-cover img { width: 100%; height: 100%; object-fit: cover; }
.bbk-image-frame { aspect-ratio: 4 / 3; }
.bbk-image-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Product listing */
.bbk-filter-bar { display: grid; grid-template-columns: minmax(180px, .7fr) minmax(260px, 1.3fr) auto; gap: 14px; align-items: end; }
.bbk-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.bbk-product-card { min-width: 0; overflow: hidden; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.bbk-product-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.20); box-shadow: var(--bbk-shadow); }
.bbk-product-image {
    display: block;
    aspect-ratio: 4 / 3;
    padding: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9fa, #e8ebee);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.bbk-product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .32s ease; }
.bbk-product-card:hover .bbk-product-image img { transform: scale(1.035); }
.bbk-product-body { padding: 20px; }
.bbk-product-body h3 { margin: 10px 0 7px; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; line-height: 1.03; }
.bbk-product-body p { margin: 0 0 12px; }
.bbk-product-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.bbk-stock { display: inline-flex; align-items: center; gap: 7px; color: var(--bbk-muted); font-size: .75rem; }
.bbk-stock-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #4f9f75; }
.bbk-stock-dot.low { background: #b3954f; }
.bbk-stock-dot.out { background: #747e88; }

/* Product detail */
.bbk-product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: clamp(30px, 4.8vw, 64px); align-items: start; }
.bbk-product-gallery { min-width: 0; }
.bbk-product-main-image { min-height: 440px; display: grid; place-items: center; background: linear-gradient(145deg, #f8f9fa, #e7eaed); }
.bbk-product-main-image img { max-height: 510px; object-fit: contain; }
.bbk-thumbnails { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 11px; }
.bbk-thumb { width: 76px; height: 68px; padding: 5px; border: 1px solid var(--bbk-border); border-radius: 9px; background: #f1f2f3; cursor: pointer; }
.bbk-thumb img { width: 100%; height: 100%; object-fit: contain; }
.bbk-thumb.active { border-color: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,.10); }
.bbk-product-info { position: sticky; top: 104px; }
.bbk-product-code { display: inline-block; margin-top: 8px; color: #929ba5; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.bbk-quantity-row { display: grid; grid-template-columns: 100px minmax(0,1fr); gap: 12px; align-items: end; }

/* Forms */
.bbk-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.bbk-field { min-width: 0; margin-bottom: 0; }
.bbk-field-full { grid-column: 1 / -1; }
.bbk-field label { display: block; margin: 0 0 7px; color: #eef1f3; font-size: .83rem; font-weight: 750; }
.bbk-input,
.bbk-select,
.bbk-textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.05);
    transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.bbk-input::placeholder,
.bbk-textarea::placeholder { color: #7f8994; }
.bbk-input:focus,
.bbk-select:focus,
.bbk-textarea:focus { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.075); box-shadow: 0 0 0 3px rgba(255,255,255,.045); }
.bbk-select option { color: #111; }
.bbk-textarea { min-height: 126px; resize: vertical; }
.bbk-help { margin-top: 5px; color: #919aa5; font-size: .74rem; }
.bbk-check { display: flex; align-items: flex-start; gap: 9px; color: #cbd1d7; font-size: .87rem; }
.bbk-check input { margin-top: 4px; }
.bbk-form-section { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); }
.bbk-form-section:first-of-type { border-top: 0; padding-top: 4px; }
.bbk-form-section h2 { margin: 0 0 18px; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.7rem; }

/* Checkout */
.bbk-checkout-grid { display: grid; grid-template-columns: minmax(0, 1.24fr) minmax(320px, .76fr); gap: 24px; align-items: start; }
.bbk-payment-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; }
.bbk-payment-option { position: relative; }
.bbk-payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.bbk-payment-label {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--bbk-border);
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    cursor: pointer;
    transition: border .2s ease, background .2s ease, transform .2s ease;
}
.bbk-payment-label:hover { background: rgba(255,255,255,.055); }
.bbk-payment-option input:checked + .bbk-payment-label { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.085); box-shadow: 0 0 0 2px rgba(255,255,255,.035); }
.bbk-payment-label strong { display: block; color: #fff; font-size: .88rem; }
.bbk-payment-label small { display: block; margin-top: 3px; color: var(--bbk-muted); font-size: .72rem; line-height: 1.35; }
.bbk-payment-icon { flex: 0 0 38px; color: #fff; font-size: 1.25rem; text-align: center; }
.bbk-order-summary { position: sticky; top: 104px; }
.bbk-summary-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.bbk-summary-line:last-child { border-bottom: 0; }
.bbk-summary-total { margin-top: 8px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.16); font-size: 1.18rem; }

/* Notices */
.bbk-notice { padding: 14px 16px; border-left: 3px solid var(--bbk-primary); border-radius: 9px; color: #d7dce1; background: rgba(255,255,255,.045); font-size: .87rem; line-height: 1.55; }
.bbk-notice-warning { border-left-color: #ae9354; }
.bbk-notice-success { border-left-color: #4e936e; }
.bbk-notice-error { border-left-color: #915056; }

/* Tables/cart */
.bbk-table-wrap { overflow-x: auto; border: 1px solid var(--bbk-border); border-radius: 13px; }
.bbk-table { width: 100%; min-width: 690px; border-collapse: collapse; color: #e5e9ed; background: rgba(7,9,12,.56); }
.bbk-table th,
.bbk-table td { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.075); text-align: left; vertical-align: middle; }
.bbk-table th { color: #fff; background: rgba(255,255,255,.045); font-family: "Barlow Condensed", sans-serif; font-size: .95rem; letter-spacing: .02em; }
.bbk-table tr:last-child td { border-bottom: 0; }
.bbk-table img { max-width: 76px; max-height: 70px; object-fit: contain; }
.bbk-cart-layout { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 24px; align-items: start; }
.bbk-cart-summary { position: sticky; top: 104px; }
.bbk-cart-mobile { display: none; }

/* Slider */
.bbk-slider { position: relative; overflow: hidden; }
.bbk-slider-track { display: flex; gap: 18px; transition: transform .45s ease; will-change: transform; }
.bbk-slide { flex: 0 0 calc((100% - 36px) / 3); min-width: 0; text-decoration: none; }
.bbk-catalog-card { height: 100%; padding: 17px; text-align: left; }
.bbk-catalog-image { aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 18px; background: linear-gradient(145deg, #f8f9fa, #e8ebee); border-radius: 12px; }
.bbk-catalog-image img { width: 100%; height: 100%; object-fit: contain; }
.bbk-catalog-card h3 { margin: 15px 0 4px; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.35rem; }
.bbk-slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }

/* Steps */
.bbk-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; margin-bottom: 24px; }
.bbk-step { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 10px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.025); color: #8f979f; }
.bbk-step-number { flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.07); font-size: .73rem; font-weight: 800; }
.bbk-step.active { color: #fff; border-color: rgba(255,255,255,.23); background: rgba(255,255,255,.06); }
.bbk-step.active .bbk-step-number { color: #090b0e; background: #fff; }
.bbk-step-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .77rem; font-weight: 700; }

/* Footer */
.bbk-footer { margin-top: auto; padding: 44px 0 26px; background: rgba(5,8,11,.95); border-top: 1px solid var(--bbk-border); }
.bbk-footer-inner { width: min(var(--bbk-wide), calc(100% - 48px)); margin-inline: auto; }
.bbk-footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 38px; padding-bottom: 28px; }
.bbk-footer-logo { width: 94px; max-height: 78px; object-fit: contain; margin-bottom: 12px; }
.bbk-footer h3 { margin: 0 0 12px; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.2rem; }
.bbk-footer p,
.bbk-footer a,
.bbk-footer span { color: #aeb5bd; font-size: .82rem; line-height: 1.68; text-decoration: none; }
.bbk-footer a:hover { color: #fff; }
.bbk-footer-links { display: grid; gap: 7px; }
.bbk-footer-bottom { padding-top: 21px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; color: #8e98a3; font-size: .75rem; }
.bbk-footer-payments { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.bbk-footer-payments .bbk-pay-badge { min-height: 30px; padding: 5px 9px; font-size: .68rem; }

.bbk-admin-shortcut { position: fixed; right: 16px; bottom: 16px; z-index: 900; }
.bbk-rich-content img { max-width: 100%; height: auto; border-radius: 10px; }
.bbk-empty { padding: 36px; text-align: center; }
.bbk-contact-layout { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 24px; align-items: start; }

@media (max-width: 1120px) {
    .bbk-nav a { padding-inline: 8px; font-size: .78rem; }
    .bbk-brand img { max-width: 110px; }
    .bbk-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bbk-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
    body.bbk-site::before { background-image: url("../../images/sfondo-blockbrake-mobile.png"); background-attachment: scroll; }
    .bbk-utility-contact span { display: none; }
    .bbk-navbar { width: min(100% - 28px, var(--bbk-wide)); min-height: 64px; }
    .bbk-brand img { height: 42px; max-width: 104px; }
    .bbk-nav-toggle { display: inline-grid; place-items: center; }
    .bbk-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1100;
        width: min(350px, 88vw);
        height: 100dvh;
        padding: 86px 18px 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 4px;
        overflow-y: auto;
        background: #0c1117;
        border-left: 1px solid var(--bbk-border);
        box-shadow: -22px 0 46px rgba(0,0,0,.42);
        transform: translateX(102%);
        transition: transform .25s ease;
    }
    .bbk-nav.open { transform: translateX(0); }
    .bbk-nav a { width: 100%; min-height: 46px; padding: 11px 13px; font-size: .88rem; }
    .bbk-nav a.active::after { display: none; }
    .bbk-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1050;
        display: block;
        background: rgba(0,0,0,.64);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, visibility .25s ease;
    }
    .bbk-nav-backdrop.open { opacity: 1; visibility: visible; }
    .bbk-hero-grid,
    .bbk-product-detail,
    .bbk-editorial,
    .bbk-editorial.reverse { grid-template-columns: 1fr; }
    .bbk-editorial.reverse > :first-child { order: 0; }
    .bbk-hero-copy { order: 1; text-align: center; padding-bottom: 0; }
    .bbk-hero-copy .bbk-title,
    .bbk-hero-copy .bbk-subtitle { margin-inline: auto; }
    .bbk-hero-copy .bbk-actions,
    .bbk-hero-proof { justify-content: center; }
    .bbk-hero-visual { order: 2; min-height: 330px; max-width: 600px; width: 100%; margin-inline: auto; }
    .bbk-hero-visual img { max-width: 350px; max-height: 300px; }
    .bbk-product-info,
    .bbk-order-summary,
    .bbk-cart-summary { position: static; }
    .bbk-checkout-grid,
    .bbk-cart-layout,
    .bbk-contact-layout { grid-template-columns: 1fr; }
    .bbk-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .bbk-slide { flex-basis: calc((100% - 18px) / 2); }
    .bbk-footer-grid { grid-template-columns: 1fr 1fr; }
    .bbk-footer-grid > :first-child { grid-column: 1 / -1; }
    .bbk-payment-trust { grid-template-columns: 1fr; text-align: center; }
    .bbk-payments { justify-content: center; }
}

@media (max-width: 640px) {
    .bbk-main { padding: 30px 0 56px; }
    .bbk-container,
    .bbk-wide,
    .bbk-utility-inner,
    .bbk-footer-inner { width: min(100% - 22px, var(--bbk-content)); }
    .bbk-utility { display: flex; min-height: 40px; }
    .bbk-utility-inner { justify-content: center; }
    .bbk-utility-contact { display: none; }
    .bbk-social-bar { gap: 9px; }
    .bbk-social-bar a { width: 30px; height: 30px; font-size: .82rem; }
    .bbk-title { font-size: clamp(2.35rem, 13vw, 3.5rem); line-height: .92; }
    .bbk-title-sm { font-size: clamp(1.95rem, 10vw, 2.8rem); }
    .bbk-title-xs { font-size: 1.75rem; }
    .bbk-subtitle { font-size: .94rem; line-height: 1.66; }
    .bbk-card { border-radius: 14px; }
    .bbk-card-pad { padding: 20px; }
    .bbk-hero { padding-top: 6px; }
    .bbk-hero-grid { gap: 24px; }
    .bbk-hero-copy { padding-top: 10px; }
    .bbk-hero-visual { min-height: 250px; padding: 16px; }
    .bbk-hero-visual img { max-width: 275px; max-height: 235px; }
    .bbk-actions { flex-direction: column; }
    .bbk-btn { width: 100%; }
    .bbk-grid-2,
    .bbk-grid-3,
    .bbk-grid-4,
    .bbk-product-grid,
    .bbk-form-grid,
    .bbk-payment-options,
    .bbk-stat-row { grid-template-columns: 1fr; }
    .bbk-field-full { grid-column: auto; }
    .bbk-trust-grid .bbk-feature { min-height: auto; }
    .bbk-filter-bar { grid-template-columns: 1fr; }
    .bbk-product-image { aspect-ratio: 16 / 10; max-height: 230px; }
    .bbk-product-main-image { min-height: 285px; }
    .bbk-product-main-image img { max-height: 315px; }
    .bbk-quantity-row { grid-template-columns: 90px 1fr; }
    .bbk-slide { flex-basis: 100%; }
    .bbk-steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .bbk-payment-trust { padding: 16px; }
    .bbk-payments { gap: 6px; }
    .bbk-pay-badge { padding: 6px 9px; font-size: .69rem; }
    .bbk-table-wrap { border: 0; overflow: visible; }
    .bbk-table { min-width: 0; }
    .bbk-table thead { display: none; }
    .bbk-table,
    .bbk-table tbody,
    .bbk-table tr,
    .bbk-table td { display: block; width: 100%; }
    .bbk-table tr { margin-bottom: 12px; padding: 13px; border: 1px solid var(--bbk-border); border-radius: 11px; background: rgba(255,255,255,.025); }
    .bbk-table td { display: grid; grid-template-columns: 42% 58%; gap: 10px; padding: 7px 0; border: 0; }
    .bbk-table td::before { content: attr(data-label); color: #929aa3; font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
    .bbk-table td[data-label=""] { display: block; }
    .bbk-table td[data-label=""]::before { display: none; }
    .bbk-footer { padding-top: 34px; }
    .bbk-footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .bbk-footer-grid > :first-child { grid-column: auto; }
    .bbk-footer-logo { width: 82px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Checkout V5: wallet reali e flusso non bloccante */
.bbk-inline-options {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bbk-invoice-box {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;
    background: rgba(255,255,255,.025);
}
.bbk-invoice-box[hidden] { display: none !important; }
.bbk-express-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        rgba(8,12,17,.76);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 44px rgba(0,0,0,.20);
}
.bbk-express-panel::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.10), transparent 66%);
    pointer-events: none;
}
.bbk-express-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}
.bbk-express-heading strong {
    display: block;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1;
}
.bbk-express-heading p {
    max-width: 590px;
    margin: 8px 0 0;
    color: var(--bbk-muted);
    font-size: .8rem;
    line-height: 1.55;
}
.bbk-express-kicker {
    display: block;
    margin-bottom: 6px;
    color: #c8d0d8;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.bbk-express-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: #fff;
    font-size: 2.25rem;
    line-height: 1;
}
.bbk-btn-wallet {
    width: 100%;
    min-height: 50px;
    color: #fff;
    border-color: rgba(255,255,255,.2);
    background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
}
.bbk-btn-wallet:hover {
    color: #fff;
    border-color: rgba(255,255,255,.34);
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.085));
    transform: translateY(-1px);
}
.bbk-express-stage {
    min-height: 52px;
    margin-top: 2px;
}
.bbk-express-stage[hidden] { display: none !important; }
#express-checkout-element { min-height: 52px; }
.bbk-express-status {
    min-height: 0;
    margin-top: 12px;
    color: #aab4be;
    font-size: .76rem;
    line-height: 1.5;
}
.bbk-express-status:empty { display: none; }
.bbk-express-status.is-success { color: #9ed4b5; }
.bbk-express-status.is-error { color: #e2a8ad; }
.bbk-express-status.is-info { color: #b9c5d0; }
.bbk-link-button {
    margin-top: 12px;
    padding: 0;
    border: 0;
    color: #dce2e8;
    background: transparent;
    font-size: .76rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.bbk-link-button[hidden] { display: none !important; }
.bbk-payment-section-head { margin-bottom: 16px; }
.bbk-payment-section-head h2 { margin-bottom: 5px; }
.bbk-payment-section-head p {
    margin: 0;
    color: var(--bbk-muted);
    font-size: .78rem;
}
.bbk-payment-icon-klarna {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    color: #111;
    background: #f4b7d2;
    font-size: .9rem;
    font-weight: 900;
}
.bbk-checkout-submit {
    width: 100%;
    margin-top: 18px;
}
.bbk-btn.is-loading,
.bbk-btn:disabled {
    cursor: wait;
    opacity: .7;
    transform: none !important;
}
.bbk-btn.is-loading i { animation: bbk-spin 1s linear infinite; }
@keyframes bbk-spin { to { transform: rotate(360deg); } }
.bbk-checkout-cookie-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 13px 0 0;
    color: #909ba6;
    font-size: .72rem;
    line-height: 1.52;
}
.bbk-checkout-cookie-note i { margin-top: 3px; color: #b9c3cc; }

/* Cookie consent: compatto, accessibile, non blocca il checkout */
.bbk-footer-cookie-button {
    width: fit-content;
    padding: 0;
    border: 0;
    color: #aeb5bd;
    background: transparent;
    font-size: .82rem;
    line-height: 1.68;
    text-align: left;
    cursor: pointer;
}
.bbk-footer-cookie-button:hover { color: #fff; }
.bbk-cookie-banner {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 3000;
    width: min(1120px, calc(100% - 36px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(10,14,19,.97);
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
    backdrop-filter: blur(18px);
}
.bbk-cookie-banner[hidden] { display: none !important; }
.bbk-cookie-banner-copy strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: .92rem;
}
.bbk-cookie-banner-copy p {
    margin: 0;
    max-width: 720px;
    color: #aeb8c2;
    font-size: .76rem;
    line-height: 1.55;
}
.bbk-cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}
.bbk-cookie-text-button,
.bbk-cookie-policy-link {
    border: 0;
    color: #dce2e8;
    background: transparent;
    font-size: .74rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.bbk-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 3100;
    display: grid;
    place-items: center;
    padding: 20px;
}
.bbk-cookie-modal[hidden] { display: none !important; }
.bbk-cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(6px);
}
.bbk-cookie-dialog {
    position: relative;
    z-index: 1;
    width: min(650px, 100%);
    max-height: min(760px, calc(100dvh - 40px));
    overflow: auto;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    background: #10161d;
    box-shadow: 0 35px 100px rgba(0,0,0,.64);
}
.bbk-cookie-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}
.bbk-cookie-overline {
    display: block;
    margin-bottom: 5px;
    color: #9ca7b2;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.bbk-cookie-dialog h2 {
    margin: 0;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    line-height: 1;
}
.bbk-cookie-close {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    color: #fff;
    background: rgba(255,255,255,.045);
    cursor: pointer;
}
.bbk-cookie-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 17px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}
.bbk-cookie-option strong { display: block; color: #fff; font-size: .88rem; }
.bbk-cookie-option p { margin: 5px 0 0; color: #98a3ae; font-size: .74rem; line-height: 1.52; }
.bbk-cookie-required { color: #aeb8c2; font-size: .72rem; font-weight: 800; white-space: nowrap; }
.bbk-switch { position: relative; display: inline-flex; }
.bbk-switch input { position: absolute; opacity: 0; }
.bbk-switch span {
    position: relative;
    width: 48px;
    height: 27px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    transition: .2s ease;
}
.bbk-switch span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #fff;
    transition: transform .2s ease;
}
.bbk-switch input:checked + span { background: #62717f; border-color: #8795a2; }
.bbk-switch input:checked + span::after { transform: translateX(21px); }
.bbk-switch input:focus-visible + span { outline: 2px solid #fff; outline-offset: 3px; }
.bbk-cookie-dialog-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
}
body.bbk-cookie-modal-open { overflow: hidden; }

@media (max-width: 760px) {
    .bbk-cookie-banner { grid-template-columns: 1fr; gap: 14px; }
    .bbk-cookie-banner-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
    .bbk-express-heading { align-items: center; gap: 12px; }
    .bbk-express-logos { font-size: 1.75rem; }
    .bbk-cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 16px;
        border-radius: 14px;
    }
    .bbk-cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .bbk-cookie-banner-actions .bbk-cookie-text-button { grid-column: 1 / -1; min-height: 38px; }
    .bbk-cookie-dialog-actions { align-items: stretch; flex-direction: column; }
    .bbk-cookie-dialog-actions .bbk-btn { width: 100%; }
    .bbk-cookie-option { gap: 12px; }
}

/* =========================================================
   BLOCKBRAKE V6 — logo valorizzato e wallet Stripe reali
   ========================================================= */
.bbk-navbar {
    min-height: 88px;
}
.bbk-brand img {
    height: 64px;
    max-width: 176px;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.48));
}

.bbk-hero-logo {
    min-height: 490px;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 43%, rgba(255,255,255,.13), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.012));
}
.bbk-hero-logo::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 0;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: calc(var(--bbk-radius) - 7px);
    pointer-events: none;
}
.bbk-hero-logo .bbk-hero-logo-glow {
    position: absolute;
    z-index: 0;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220,226,232,.16), rgba(99,109,120,.055) 42%, transparent 70%);
    filter: blur(9px);
    pointer-events: none;
}
.bbk-hero-logo img {
    width: auto;
    max-width: min(390px, 86%);
    max-height: 405px;
    object-fit: contain;
    filter: drop-shadow(0 34px 50px rgba(0,0,0,.64));
}
.bbk-hero-logo-caption {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 48px);
    color: #b9c2cb;
    font-family: "Barlow Condensed", sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.bbk-wallet-section {
    position: relative;
}
.bbk-wallet-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}
.bbk-wallet-secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: max-content;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    color: #dce3e9;
    background: rgba(255,255,255,.045);
    font-size: .7rem;
    font-weight: 800;
}
.bbk-express-panel {
    min-height: 148px;
    padding: clamp(18px, 3vw, 25px);
    background:
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        rgba(7, 10, 14, .88);
}
.bbk-express-stage {
    min-height: 54px;
    margin: 0;
}
#express-checkout-element {
    min-height: 54px;
    width: 100%;
}
#express-checkout-element[hidden] {
    display: none !important;
}
.bbk-express-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    color: #d7dde3;
    background: rgba(255,255,255,.035);
    font-size: .82rem;
}
.bbk-express-loading[hidden] {
    display: none !important;
}
.bbk-wallet-loader {
    width: 19px;
    height: 19px;
    border: 2px solid rgba(255,255,255,.20);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bbk-spin .8s linear infinite;
}
.bbk-wallet-requirements {
    margin: 13px 0 0;
    color: #909ba5;
    font-size: .7rem;
    line-height: 1.55;
}
.bbk-wallet-requirements i {
    margin-right: 5px;
    color: #c7cfd7;
}
.bbk-express-panel.is-processing {
    cursor: progress;
}
.bbk-express-panel.is-processing::before {
    content: "Verifica sicura in corso…";
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    padding: 20px;
    color: #fff;
    background: rgba(5, 8, 12, .82);
    backdrop-filter: blur(7px);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .03em;
}
.bbk-wallet-processing .bbk-checkout-submit {
    opacity: .65;
}

@media (max-width: 1120px) {
    .bbk-navbar { min-height: 80px; }
    .bbk-brand img { height: 57px; max-width: 158px; }
}

@media (max-width: 920px) {
    .bbk-navbar { min-height: 76px; }
    .bbk-brand img { height: 54px; max-width: 148px; }
    .bbk-hero-logo { min-height: 410px; }
    .bbk-hero-logo img { max-width: min(340px, 82%); max-height: 345px; }
}

@media (max-width: 640px) {
    .bbk-navbar { min-height: 70px; }
    .bbk-brand img { height: 50px; max-width: 137px; }
    .bbk-hero-logo { min-height: 335px; }
    .bbk-hero-logo img { max-width: min(270px, 82%); max-height: 275px; }
    .bbk-hero-logo-caption { bottom: 17px; font-size: .63rem; letter-spacing: .18em; }
    .bbk-wallet-title-row { display: block; }
    .bbk-wallet-secure { margin-top: 12px; }
    .bbk-express-panel { min-height: 142px; padding: 16px; }
}


/* =========================================================
   BLOCKBRAKE8 — base blockbrake6 con estetica blockbrake5
   Filtro visuale BMW / Ducati / Honda e acquisto diretto.
   ========================================================= */
body.bbk-site::before {
    filter: saturate(.70) contrast(1.06) brightness(.80);
    transform: scale(1.012);
}
body.bbk-site::after {
    background:
        linear-gradient(180deg, rgba(5, 8, 12, .70) 0%, rgba(8, 12, 17, .79) 44%, rgba(5, 8, 12, .91) 100%),
        radial-gradient(circle at 76% 12%, rgba(220, 227, 234, .10), transparent 31%),
        radial-gradient(circle at 16% 84%, rgba(145, 155, 166, .08), transparent 29%);
}

.bbk-brand-signature { display: grid; margin-left: 11px; line-height: 1; }
.bbk-brand-signature strong { color: #f5f7f9; font-family: "Barlow Condensed", sans-serif; font-size: .98rem; letter-spacing: .10em; }
.bbk-brand-signature small { margin-top: 5px; color: #8f99a4; font-size: .54rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.bbk-nav-buy { gap: 7px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.055); }
.bbk-nav-buy i { font-size: .72rem; }
.bbk-btn-buy {
    color: #080b0f;
    border-color: rgba(255,255,255,.62);
    background: linear-gradient(180deg, #ffffff 0%, #dce1e6 54%, #aab3bd 100%);
    box-shadow: 0 12px 28px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.74);
}
.bbk-btn-buy:hover { color: #000; transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0,0,0,.42); }

.bbk-brand-experience,
.bbk-catalog-intro,
.bbk-quick-buy-intro {
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(22,28,35,.91), rgba(8,11,15,.93)),
        rgba(10,14,19,.92);
}
.bbk-brand-experience { position: relative; }
.bbk-brand-experience::before,
.bbk-catalog-intro::before,
.bbk-quick-buy-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 86% 12%, rgba(255,255,255,.055), transparent 30%);
}
.bbk-brand-experience > *,
.bbk-catalog-intro > *,
.bbk-quick-buy-intro > * { position: relative; z-index: 1; }
.bbk-brand-experience-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    align-items: end;
    gap: 34px;
    margin-bottom: 25px;
}
.bbk-brand-flow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    flex-wrap: wrap;
}
.bbk-brand-flow span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 9px;
    color: #aeb7c0;
    background: rgba(255,255,255,.025);
    font-size: .72rem;
    font-weight: 750;
}
.bbk-brand-flow span.is-current { color: #fff; border-color: rgba(255,255,255,.23); background: rgba(255,255,255,.07); }
.bbk-brand-flow b { color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: .95rem; }
.bbk-brand-flow > i { color: #737d87; font-size: .62rem; }

.bbk-brand-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}
.bbk-brand-card {
    position: relative;
    min-height: 154px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 17px;
    padding: 19px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    box-shadow: 0 16px 34px rgba(0,0,0,.22);
    text-decoration: none;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.bbk-brand-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    opacity: 0;
    transition: opacity .22s ease;
}
.bbk-brand-card:hover,
.bbk-brand-card.is-selected {
    color: #fff;
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.30);
    background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.028));
    box-shadow: 0 24px 46px rgba(0,0,0,.36);
}
.bbk-brand-card:hover::after,
.bbk-brand-card.is-selected::after { opacity: 1; }
.bbk-brand-card.is-selected { box-shadow: 0 0 0 1px rgba(255,255,255,.10) inset, 0 22px 45px rgba(0,0,0,.36); }
.bbk-brand-logo {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: #f4f5f6;
    box-shadow: 0 12px 25px rgba(0,0,0,.28);
}
.bbk-brand-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.bbk-brand-card-copy { display: grid; gap: 5px; min-width: 0; }
.bbk-brand-card-copy strong { color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; line-height: 1; letter-spacing: .025em; }
.bbk-brand-card-copy small { color: #9fa8b2; font-size: .72rem; font-weight: 700; }
.bbk-brand-card > i { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; color: #e5e9ed; background: rgba(255,255,255,.035); }
.bbk-brand-card.is-selected > i { color: #0b0f14; background: #eef1f3; }

.bbk-brand-experience-foot {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.075);
    color: #9ea8b2;
    font-size: .75rem;
}
.bbk-brand-experience-foot span { display: inline-flex; align-items: center; gap: 7px; }
.bbk-brand-experience-foot i { color: #e7ebee; }
.bbk-brand-experience-foot a { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; text-decoration: none; }

.bbk-catalog-intro .bbk-section-head { max-width: 900px; margin-bottom: 24px; }
.bbk-brand-selector-catalog { margin-bottom: 23px; }
.bbk-catalog-search { display: flex; align-items: end; gap: 16px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.08); }
.bbk-catalog-search .bbk-field { flex: 1; }
.bbk-search-control { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.bbk-reset-filter { display: inline-flex; align-items: center; gap: 7px; min-height: 46px; color: #c5ccd3; font-size: .76rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.bbk-reset-filter:hover { color: #fff; }
.bbk-catalog-results-head { margin-bottom: 20px; }

.bbk-quick-buy-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); align-items: end; gap: 34px; }
.bbk-quick-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.bbk-quick-product { position: relative; overflow: hidden; display: grid; grid-template-columns: 210px minmax(0,1fr); min-height: 300px; }
.bbk-quick-product-image { min-height: 100%; display: grid; place-items: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.bbk-quick-product-image img { width: 100%; height: 100%; max-height: 255px; object-fit: contain; }
.bbk-quick-product-body { display: flex; flex-direction: column; padding: 23px; }
.bbk-quick-product-body h3 { margin: 12px 0 8px; color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; line-height: 1.05; }
.bbk-quick-product-body p { margin: 0; color: #9fa9b3; font-size: .82rem; }
.bbk-quick-product-footer { margin-top: auto; padding-top: 20px; }
.bbk-quick-product-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.bbk-quick-product-actions form { margin: 0; }
.bbk-quick-product.is-highlighted { border-color: rgba(255,255,255,.32); box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, var(--bbk-shadow); }
.bbk-selected-ribbon { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 8px; color: #0b0f14; background: #eef1f3; font-size: .68rem; font-weight: 850; }

@media (max-width: 1100px) {
    .bbk-brand-experience-head,
    .bbk-quick-buy-intro { grid-template-columns: 1fr; align-items: start; }
    .bbk-brand-flow { justify-content: flex-start; }
    .bbk-brand-card { grid-template-columns: 78px minmax(0,1fr) 30px; min-height: 134px; }
    .bbk-brand-logo { width: 78px; height: 78px; }
    .bbk-quick-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .bbk-brand-signature { display: none; }
    .bbk-brand-selector { grid-template-columns: 1fr; }
    .bbk-brand-card { min-height: 112px; grid-template-columns: 72px minmax(0,1fr) 30px; padding: 15px; }
    .bbk-brand-logo { width: 72px; height: 72px; }
    .bbk-catalog-search { align-items: stretch; flex-direction: column; }
    .bbk-reset-filter { min-height: auto; }
    .bbk-brand-experience-foot a { margin-left: 0; }
}

@media (max-width: 640px) {
    .bbk-brand-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; width: 100%; }
    .bbk-brand-flow span { min-width: 0; justify-content: center; padding: 7px 5px; font-size: .62rem; }
    .bbk-brand-flow span b { display: none; }
    .bbk-search-control { grid-template-columns: 1fr; }
    .bbk-quick-product { grid-template-columns: 1fr; }
    .bbk-quick-product-image { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .bbk-quick-product-actions { align-items: stretch; flex-direction: column; }
    .bbk-quick-product-actions form,
    .bbk-quick-product-actions .bbk-btn { width: 100%; }
}

/* Rifiniture per i componenti funzionali già presenti nella base funzionale. */
.bbk-product-shell { overflow: hidden; }
.bbk-product-info::before {
    content: "";
    display: block;
    width: 58px;
    height: 2px;
    margin-bottom: 19px;
    background: linear-gradient(90deg, #f4f6f8, #7f8993);
}
.bbk-product-assurances {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 22px 0 2px;
}
.bbk-product-assurances span {
    min-height: 68px;
    display: grid;
    place-items: center;
    gap: 7px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 11px;
    color: #b8c0c8;
    background: rgba(255,255,255,.025);
    font-size: .67rem;
    font-weight: 750;
    text-align: center;
}
.bbk-product-assurances i { color: #edf0f2; font-size: 1rem; }
.bbk-product-card-actions { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9px; margin-top: 18px; }
.bbk-product-card-actions .bbk-btn { width: 100%; }
.bbk-product-purchase-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.bbk-product-purchase-actions .bbk-btn { min-width: 185px; }
.bbk-checkout-head { max-width: 900px; }
.bbk-checkout-panel { overflow: hidden; }
.bbk-order-summary-premium {
    border-color: rgba(255,255,255,.14);
    background: linear-gradient(160deg, rgba(22,28,35,.94), rgba(8,11,15,.96));
}
.bbk-quick-results-head { max-width: none; }

@media (max-width: 640px) {
    .bbk-product-assurances { grid-template-columns: 1fr; }
    .bbk-product-assurances span { grid-template-columns: 24px 1fr; place-items: center start; min-height: 48px; text-align: left; }
    .bbk-product-card-actions { grid-template-columns: 1fr; }
    .bbk-product-purchase-actions { width: 100%; }
    .bbk-product-purchase-actions .bbk-btn { width: 100%; min-width: 0; }
}


/* =========================================================
   BLOCKBRAKE8 — ACCENTO ORO COMPRA SUBITO
   ========================================================= */
:root {
    --bbk-buy-gold-light: #f8e9b1;
    --bbk-buy-gold: #d5ac4f;
    --bbk-buy-gold-deep: #956a18;
    --bbk-buy-gold-ink: #151006;
}

.bbk-btn-buy,
.bbk-actions .bbk-btn-buy {
    color: var(--bbk-buy-gold-ink);
    border-color: rgba(255, 232, 164, .72);
    background: linear-gradient(135deg, var(--bbk-buy-gold-light) 0%, var(--bbk-buy-gold) 48%, #b9892c 72%, var(--bbk-buy-gold-deep) 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 228, 151, .16) inset, inset 0 1px 0 rgba(255, 255, 255, .62);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .24);
}
.bbk-btn-buy:hover,
.bbk-actions .bbk-btn-buy:hover {
    color: #090703;
    border-color: rgba(255, 238, 188, .92);
    background: linear-gradient(135deg, #fff0bd 0%, #dfbb60 46%, #c49331 74%, #a4741a 100%);
    box-shadow: 0 19px 42px rgba(0, 0, 0, .44), 0 0 24px rgba(213, 172, 79, .19);
}
.bbk-btn-buy:focus-visible {
    outline: 3px solid rgba(248, 233, 177, .42);
    outline-offset: 3px;
}

.bbk-nav-buy,
.bbk-nav a.bbk-nav-buy {
    color: var(--bbk-buy-gold-ink);
    border-color: rgba(255, 232, 164, .62);
    background: linear-gradient(135deg, #f6e5aa 0%, #d1a548 55%, #9b6d19 100%);
    box-shadow: 0 9px 22px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .50);
}
.bbk-nav-buy:hover,
.bbk-nav-buy.active,
.bbk-nav a.bbk-nav-buy:hover,
.bbk-nav a.bbk-nav-buy.active {
    color: #080603;
    border-color: rgba(255, 239, 193, .88);
    background: linear-gradient(135deg, #fff0bd 0%, #dfb95b 52%, #a8771b 100%);
    box-shadow: 0 13px 30px rgba(0, 0, 0, .36), 0 0 20px rgba(213, 172, 79, .14);
}

.bbk-eyebrow-buy { color: #e5c36e; }
.bbk-eyebrow-buy::before {
    background: linear-gradient(90deg, #fff1c1, #c99b39);
    box-shadow: 0 0 12px rgba(213, 172, 79, .28);
}
.bbk-brand-experience {
    border-color: rgba(213, 172, 79, .25);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(248, 233, 177, .035);
}

/* =========================================================
   BLOCKBRAKE8 — RECENSIONI GOOGLE LIVE NEL BLOCCO VANTAGGI
   ========================================================= */
.bbk-benefits-grid { align-items: stretch; }
.bbk-benefits-grid > .bbk-card { height: 100%; }

.bbk-google-review-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    overflow: hidden;
    border-color: rgba(255,255,255,.13);
    background:
        radial-gradient(circle at 100% 0, rgba(255,255,255,.055), transparent 34%),
        linear-gradient(155deg, rgba(20,25,31,.96), rgba(8,11,15,.98));
}
.bbk-google-review-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
}
.bbk-google-review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.bbk-google-review-head h3 {
    margin: 6px 0 0;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.35rem;
    line-height: 1.05;
}
.bbk-google-attribution {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    color: #c8cdd2;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    white-space: nowrap;
}
.bbk-google-rating {
    flex: 0 0 auto;
    display: grid;
    justify-items: end;
    gap: 2px;
    text-align: right;
}
.bbk-google-rating strong { color: #fff; font-size: .95rem; }
.bbk-google-rating span { color: #f0c45d; font-size: .72rem; letter-spacing: .07em; }
.bbk-google-rating small { color: #8f98a2; font-size: .62rem; }

.bbk-google-review-stage {
    position: relative;
    flex: 1;
    min-height: 148px;
}
.bbk-google-review-loading,
.bbk-google-review-fallback {
    min-height: 148px;
    display: grid;
    place-content: center;
    gap: 9px;
    color: #aeb6bf;
    font-size: .76rem;
    line-height: 1.55;
    text-align: center;
}
.bbk-google-review-loading i { color: #eef1f3; font-size: 1rem; }
.bbk-google-review-fallback strong { color: #fff; font-size: .92rem; }
.bbk-google-review-fallback a { color: #fff; font-weight: 800; }

.bbk-google-review-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .38s ease, transform .38s ease, visibility .38s ease;
}
.bbk-google-review-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bbk-google-review-author {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 11px;
    align-items: center;
}
.bbk-google-review-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    color: #0a0d11;
    background: #eef1f3;
    font-weight: 900;
}
.bbk-google-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bbk-google-review-author-copy { min-width: 0; }
.bbk-google-review-author-copy a,
.bbk-google-review-author-copy strong {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bbk-google-review-author-copy a:hover { text-decoration: underline; }
.bbk-google-review-stars { margin-top: 3px; color: #f0c45d; font-size: .68rem; letter-spacing: .08em; }
.bbk-google-review-time { margin-left: 6px; color: #8f98a2; font-size: .62rem; letter-spacing: normal; }
.bbk-google-review-text {
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    color: #c9d0d7;
    font-size: .76rem;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}
.bbk-google-review-open {
    margin-top: auto;
    align-self: flex-start;
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    text-decoration: none;
}
.bbk-google-review-open:hover { text-decoration: underline; }

.bbk-google-review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.bbk-google-review-controls button {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.035);
    cursor: pointer;
}
.bbk-google-review-controls button:hover { background: rgba(255,255,255,.09); }
.bbk-google-review-controls span { min-width: 38px; color: #929ba5; font-size: .64rem; text-align: center; }
.bbk-google-review-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 9px 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.075);
}
.bbk-google-review-links a {
    color: #cdd3d9;
    font-size: .65rem;
    font-weight: 750;
    text-decoration: none;
}
.bbk-google-review-links a:hover { color: #fff; }
.bbk-google-third-party {
    color: #8e98a2;
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.45;
}
.bbk-google-third-party a { color: inherit; }

@media (max-width: 1100px) {
    .bbk-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .bbk-benefits-grid { grid-template-columns: 1fr; }
    .bbk-google-review-card { min-height: 300px; }
    .bbk-google-review-head { align-items: flex-start; }
    .bbk-google-review-text { -webkit-line-clamp: 7; }
}
@media (prefers-reduced-motion: reduce) {
    .bbk-google-review-slide { transition: none; }
}
