/* ============================================================
   BRONX CONNECTION RP - Tema store Tebex (nero / ciano)
   Dove: Tebex -> Appearance -> Theme (CSS).  (o come Asset bronx.css)
   Copre le classi reali Exo + le classi .bx-* del nuovo header/footer.
   ============================================================ */

:root {
    --bx-bg:     #070a0f;
    --bx-bg2:    #0d121b;
    --bx-card:   rgba(16, 23, 33, 0.94);
    --bx-cyan:   #3ff6f6;
    --bx-cyan2:  #00c8c8;
    --bx-text:   #e8f6ff;
    --bx-dim:    #7fa6b8;
    --bx-border: rgba(63, 246, 246, 0.20);
    --bx-radius: 14px;
}

* { box-sizing: border-box; }

body {
    color: var(--bx-text) !important;
    font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif !important;
}

/* ============================================================
   COPRI il background nativo del CMS Tebex (bg-image, hero, ecc.)
   Uno strato fisso dietro ai contenuti: qualunque cosa metta Tebex,
   sopra vedi solo lo sfondo Bronx.
   ============================================================ */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: #070a0f;
    background-image:
        radial-gradient(900px 520px at 82% -6%, rgba(63,246,246,.10), transparent 60%),
        radial-gradient(760px 480px at 12% 108%, rgba(0,200,200,.08), transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%233ff6f6' stroke-opacity='0.05' stroke-width='1'%3E%3Cpath d='M0 0H60V60'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, repeat;
    pointer-events: none;
}
/* nascondi ogni immagine di sfondo/hero iniettata da Tebex */
.site-bg-image,
.hero-image,
img.site-bg-image,
[class*="bg-image"] { display: none !important; }
/* forza trasparente i contenitori che potrebbero avere il bg nativo */
html, body, .site, .page, .content { background-image: none !important; background-color: transparent !important; }
html { background: #070a0f !important; }
a { color: var(--bx-cyan) !important; text-decoration: none; transition: color .15s ease; }
a:hover { color: #fff !important; }
h1, h2, h3, h4, .product-title { color: #fff !important; letter-spacing: .3px; }

/* ---------- TOPBAR / HEADER (bx) ---------- */
.bx-topbar {
    background: rgba(6, 9, 14, 0.92);
    border-bottom: 1px solid var(--bx-border);
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: none;
}
.bx-topbar-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px;
}
.bx-logo { display: flex; align-items: center; }
.bx-logo img { display: block; height: 56px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,200,200,.25)); }
.bx-logo-text { color: #fff; font-weight: 900; font-size: 26px; letter-spacing: 1px; }

/* nascondi la hero-image / banner del template base Tebex */
.hero-image, .site-header .hero-image, #header .hero-image, .site-header img { display: none !important; }
#header, .site-header { background: transparent !important; border: none !important; min-height: 0 !important; padding: 0 !important; }

/* topbar: 3 zone uguali -> nav sempre al centro reale */
.bx-topbar-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 20px !important;
    max-width: 1180px; margin: 0 auto; padding: 14px 22px !important;
}
.bx-logo { justify-self: start !important; margin: 0 !important; padding: 0 !important; }
.bx-nav { justify-self: center !important; flex: none !important; }
.bx-top-actions { justify-self: end !important; }
.bx-nav .bx-menu { justify-content: center !important; }
.bx-top-actions { display: flex; align-items: center; gap: 12px; }
.bx-link { color: var(--bx-dim) !important; font-size: 13px; }
.bx-link:hover { color: var(--bx-cyan) !important; }

.bx-btn {
    background: linear-gradient(135deg, var(--bx-cyan), var(--bx-cyan2));
    color: #04121a !important;
    border: none; border-radius: 9px;
    padding: 9px 18px; font-weight: 800; font-size: 13px;
    text-transform: uppercase; letter-spacing: .5px; cursor: pointer;
    transition: filter .15s ease, transform .1s ease;
}
.bx-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.bx-btn-ghost {
    border: 1px solid var(--bx-border); border-radius: 9px;
    padding: 8px 14px; color: var(--bx-text) !important; font-size: 13px;
}
.bx-btn-ghost:hover { border-color: var(--bx-cyan); }

.bx-burger { display: none; background: none; border: none; cursor: pointer; }
.bx-burger span { display: block; width: 22px; height: 2px; background: var(--bx-cyan); margin: 4px 0; }

/* ---------- NAV IN LINEA (dentro topbar) ---------- */
.bx-nav { flex: 1; display: flex; justify-content: center; }
.bx-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.bx-menu > li { position: relative; }
.bx-menu > li > a { display: block; padding: 10px 15px; color: var(--bx-dim); font-weight: 600; font-size: 14px; border-radius: 8px; }
.bx-menu > li > a:hover { color: #fff; background: rgba(63,246,246,.08); }
.bx-menu > li > a.link-active { color: var(--bx-cyan); }
.bx-submenu { position: absolute; top: 100%; left: 0; min-width: 180px; background: #0c121b; border: 1px solid var(--bx-border); border-radius: 10px; padding: 6px; display: none; z-index: 60; }
.bx-menu > li.has-children:hover .bx-submenu { display: block; }
.bx-submenu li { list-style: none; }
.bx-submenu li a { display: block; padding: 8px 12px; color: var(--bx-dim); border-radius: 6px; }
.bx-submenu li a:hover { color: #fff; background: rgba(63,246,246,.08); }

/* ---------- NAV ---------- */
.site-navigation { background: rgba(9,13,19,.9) !important; border-bottom: 1px solid var(--bx-border) !important; }
.site-navigation .menu { max-width: 1180px; margin: 0 auto; display: flex; gap: 4px; padding: 0 22px !important; }
.menu-link { color: var(--bx-dim) !important; padding: 12px 14px !important; font-weight: 600; font-size: 14px; border-bottom: 2px solid transparent; }
.menu-link:hover { color: #fff !important; }
.menu-link.link-active { color: var(--bx-cyan) !important; border-bottom-color: var(--bx-cyan); }

/* ---------- CONTENUTO ---------- */
.site-content { max-width: 1180px; margin: 26px auto; padding: 0 22px; display: flex; gap: 24px; }

/* ---------- CATEGORIE HOME ---------- */
.site-home-categories { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.site-home-categories .category {
    background: var(--bx-card) !important; border: 1px solid var(--bx-border) !important;
    border-radius: var(--bx-radius) !important; color: #fff !important; padding: 14px 18px !important;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.site-home-categories .category:hover {
    transform: translateY(-4px); border-color: var(--bx-cyan) !important;
    box-shadow: 0 16px 40px rgba(0,200,200,.16) !important;
}

/* ---------- CARD PRODOTTO ---------- */
.store-product {
    background: var(--bx-card) !important; border: 1px solid var(--bx-border) !important;
    border-radius: var(--bx-radius) !important; overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.45) !important;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.store-product:hover {
    transform: translateY(-5px); border-color: var(--bx-cyan) !important;
    box-shadow: 0 18px 46px rgba(0,200,200,.18) !important;
}
.store-product .image { width: 100%; border-radius: 0 !important; }
.image-default { background: linear-gradient(135deg, #12202c, #0b1119) !important; border: 1px dashed var(--bx-border) !important; }
.product-title { padding: 12px 16px 4px; font-size: 17px; }
.product-title a { color: #fff !important; }

/* ---------- AZIONI / PREZZO ---------- */
.product-actions { padding: 4px 16px 16px; }
.price { color: var(--bx-cyan) !important; font-weight: 800 !important; font-size: 18px; }
.discount, del { color: var(--bx-dim) !important; }

.btn-primary, .add.btn-primary, .subscribe.btn-primary {
    background: linear-gradient(135deg, var(--bx-cyan), var(--bx-cyan2)) !important;
    color: #04121a !important; border: none !important; border-radius: 10px !important;
    font-weight: 800 !important; text-transform: uppercase; letter-spacing: .5px;
    transition: filter .15s ease, transform .1s ease;
}
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-secondary {
    background: rgba(63,246,246,.10) !important; color: var(--bx-cyan) !important;
    border: 1px solid var(--bx-border) !important; border-radius: 10px !important; font-weight: 700 !important;
}
.btn-tertiary { background: transparent !important; color: var(--bx-cyan) !important; border: 1px solid var(--bx-border) !important; border-radius: 8px !important; }
.quantity-field .quantity { background: #0b111a !important; border: 1px solid var(--bx-border) !important; color: #fff !important; }

/* ---------- PAGINA PACCHETTO ---------- */
.store-product-full { padding: 22px; }
.descr, .text-content { color: var(--bx-text) !important; }
.back-to-top.btn-tertiary { display: inline-block; margin-top: 16px; }

/* ---------- SIDEBAR ---------- */
.store-sidebar { flex: 0 0 300px; }
.store-sidebar .widget, .store-sidebar > * {
    background: var(--bx-bg2) !important; border: 1px solid var(--bx-border) !important;
    border-radius: var(--bx-radius) !important; color: var(--bx-text) !important; margin-bottom: 16px;
}

/* ---------- INPUT ---------- */
input, select, textarea {
    background: #0b111a !important; border: 1px solid var(--bx-border) !important;
    color: var(--bx-text) !important; border-radius: 8px !important;
}
input:focus, select:focus, textarea:focus { outline: none !important; border-color: var(--bx-cyan) !important; box-shadow: 0 0 0 2px rgba(63,246,246,.18) !important; }

/* ---------- FOOTER (bx) ---------- */
.bx-footer { background: #04070b; border-top: 1px solid var(--bx-border); margin-top: 40px; }
.bx-footer-inner { max-width: 1180px; margin: 0 auto; padding: 30px 22px; text-align: center; }
.bx-footer-brand svg { filter: drop-shadow(0 2px 8px rgba(0,200,200,.3)); }
.bx-footer-brand img { height: 40px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,200,200,.3)); }
.bx-footer-name { color: #fff; font-weight: 900; font-size: 26px; }
.bx-footer-tag { color: var(--bx-dim); letter-spacing: 5px; font-size: 11px; margin: 4px 0 18px; text-transform: uppercase; }
.we-accept { display: flex; justify-content: center; gap: 12px; list-style: none; padding: 0; margin: 0 0 16px; opacity: .85; }
.we-accept img { height: 22px; }
.bx-footer-discord {
    display: inline-block; margin-bottom: 16px; padding: 8px 20px;
    background: rgba(63,246,246,.10); border: 1px solid var(--bx-border); border-radius: 9px;
    color: var(--bx-cyan) !important; font-weight: 700;
}
.bx-footer-discord:hover { background: var(--bx-cyan); color: #04121a !important; }
.copyright { color: var(--bx-dim); font-size: 12px; }

/* ---------- LOGIN (username.html - bx) ---------- */
.bx-login { max-width: 460px; margin: 60px auto; text-align: center; }
.bx-login-card {
    background: var(--bx-card); border: 1px solid var(--bx-border); border-radius: 18px;
    padding: 34px 30px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.bx-login-card h2 { margin: 14px 0 22px; }
.bx-login-provider {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 13px; margin-bottom: 12px; border-radius: 11px; font-weight: 700;
    background: linear-gradient(135deg, var(--bx-cyan), var(--bx-cyan2)); color: #04121a !important;
}
.bx-login-provider.discord { background: #5865F2; color: #fff !important; }
.bx-login-provider:hover { filter: brightness(1.1); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .site-content { flex-direction: column; }
    .store-sidebar { flex: none; }
    .bx-burger { display: block; }
    .bx-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: #0a0f16; border-top: 1px solid var(--bx-border);
        display: none; flex: none;
    }
    .bx-nav.open, #site-navigation.open, #site-navigation.active { display: block; }
    .bx-menu { flex-direction: column; align-items: stretch; padding: 8px; }
    .bx-submenu { position: static; display: block; background: transparent; border: none; }
}

/* ============================================================
   INDEX BRONX — hero + tiktok + sezioni
   ============================================================ */
.bx-index .site-content { display: block; max-width: none; margin: 0; padding: 0; }
.bx-wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

/* HERO */
.bx-hero {
    position: relative; overflow: hidden;
    min-height: 74vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background:
        radial-gradient(900px 520px at 50% 0%, rgba(63,246,246,.12), transparent 60%),
        linear-gradient(180deg, #060a10, #070a0f);
    border-bottom: 1px solid var(--bx-border);
}
.bx-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.bx-hero-inner { position: relative; z-index: 1; padding: 40px 22px; }
.bx-hero-logo img { width: min(520px, 82vw); height: auto; filter: drop-shadow(0 4px 32px rgba(0,200,200,.45)); }
.bx-hero-logo svg { width: min(560px, 86vw); height: auto; filter: drop-shadow(0 4px 32px rgba(0,200,200,.45)); }
.bx-hero-tagline { color: var(--bx-dim); font-size: clamp(15px, 2vw, 19px); max-width: 640px; margin: 20px auto 28px; line-height: 1.55; }
.bx-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.bx-btn-lg { padding: 14px 30px !important; font-size: 15px !important; }
.bx-btn-outline {
    display: inline-block; padding: 13px 26px; border-radius: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .5px;
    border: 1px solid var(--bx-cyan); color: var(--bx-cyan) !important; background: rgba(63,246,246,.06);
    transition: background .15s ease, color .15s ease;
}
.bx-btn-outline:hover { background: var(--bx-cyan); color: #04121a !important; }

/* SEZIONI */
.bx-section { padding: 48px 0; }
.bx-section-title { text-align: center; font-size: clamp(22px, 3vw, 30px); font-weight: 900; margin: 0; }
.bx-section-title::after { content: ""; display: block; width: 60px; height: 3px; margin: 12px auto 0; border-radius: 2px; background: linear-gradient(90deg, var(--bx-cyan), var(--bx-cyan2)); }
.bx-section-sub { text-align: center; color: var(--bx-dim); margin-top: 8px; }

/* CATEGORIE */
.bx-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 28px; }
.bx-cat { background: var(--bx-card); border: 1px solid var(--bx-border); border-radius: var(--bx-radius); overflow: hidden; color: #fff !important; text-align: center; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.bx-cat:hover { transform: translateY(-5px); border-color: var(--bx-cyan); box-shadow: 0 18px 44px rgba(0,200,200,.18); }
.bx-cat img, .bx-cat-img { width: 100%; height: 130px; object-fit: cover; display: block; }
.bx-cat-img { background: linear-gradient(135deg, #12202c, #0b1119); }
.bx-cat span { display: block; padding: 14px; font-weight: 700; }

/* TIKTOK / VIDEO */
.bx-video-swiper { margin-top: 30px; padding-bottom: 12px; --swiper-theme-color: var(--bx-cyan); }
.bx-phone { position: relative; margin: 0 auto; width: 260px; max-width: 78vw; aspect-ratio: 9 / 19; background: #05080c; border: 3px solid rgba(63,246,246,.35); border-radius: 30px; box-shadow: 0 18px 50px rgba(0,0,0,.6), 0 0 34px rgba(0,200,200,.12); padding: 10px; }
.bx-phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 80px; height: 16px; background: #05080c; border-radius: 0 0 12px 12px; z-index: 3; }
.bx-phone-screen { width: 100%; height: 100%; border-radius: 22px; overflow: hidden; background: #0a0f16; }
.bx-phone-screen video, .bx-phone-screen iframe, .bx-phone-screen blockquote { width: 100% !important; height: 100% !important; border: 0 !important; object-fit: cover; margin: 0 !important; min-width: 0 !important; }
.bx-video-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: radial-gradient(300px 300px at 50% 40%, rgba(63,246,246,.14), transparent 70%), #0a0f16; color: var(--bx-dim); font-size: 13px; }
.bx-play { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(63,246,246,.14); border: 1px solid var(--bx-cyan); color: var(--bx-cyan); font-size: 20px; animation: bxPulse 1.6s infinite ease-in-out; }
@keyframes bxPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(63,246,246,.35); } 50% { box-shadow: 0 0 0 14px rgba(63,246,246,0); } }

/* REVEAL */
.bx-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.bx-reveal.in { opacity: 1; transform: none; }

/* ABOUT */
.bx-about .text-content { background: var(--bx-card); border: 1px solid var(--bx-border); border-radius: var(--bx-radius); padding: 24px; }

/* ============================================================
   PAGINA CATEGORIA (senza sidebar)
   ============================================================ */
.bx-cat-page { padding-top: 34px; padding-bottom: 50px; }

.bx-cat-desc {
    background:
        radial-gradient(600px 200px at 50% 0%, rgba(63,246,246,.10), transparent 70%),
        var(--bx-card);
    border: 1px solid var(--bx-border);
    border-left: 3px solid var(--bx-cyan);
    border-radius: 16px;
    padding: 26px 30px;
    margin-bottom: 30px;
    box-shadow: 0 12px 34px rgba(0,0,0,.4);
}
.bx-cat-name {
    margin: 0 0 12px; font-size: clamp(24px, 3.4vw, 34px); font-weight: 900; letter-spacing: .4px;
    background: linear-gradient(180deg, #eafeff, #3ff6f6);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #3ff6f6;
}
.bx-cat-name-solo { text-align: center; margin: 10px 0 28px; }
.bx-cat-desc .text-content { color: var(--bx-text); line-height: 1.65; }
.bx-cat-desc .text-content strong { color: #fff; }

/* griglia pacchetti */
.bx-products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    align-items: start;
}
.bx-products .store-product { margin: 0 !important; }

/* ============================================================
   AZIONI CARD CATEGORIA — solo "Aggiungi al carrello" / "Nel carrello"
   ============================================================ */
.product-actions { padding: 4px 16px 16px; }

.product-actions .add.btn-primary,
.product-actions .subscribe.btn-primary {
    display: block; width: 100%; height: 40px; line-height: 40px; padding: 0 12px !important;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--bx-cyan), var(--bx-cyan2)) !important;
    color: #04121a !important; border: none !important; border-radius: 10px !important;
    font-weight: 800 !important; font-size: 13px !important; letter-spacing: .4px; text-transform: uppercase;
    text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: filter .15s ease, transform .1s ease;
}
.product-actions .add.btn-primary:hover,
.product-actions .subscribe.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

.product-actions .open-basket-cta {
    display: block; width: 100%; height: 40px; line-height: 40px; margin-top: 10px; padding: 0 12px !important;
    background: rgba(63,246,246,.10) !important; color: var(--bx-cyan) !important;
    border: 1px solid var(--bx-border) !important; border-radius: 10px !important;
    font-weight: 700 !important; font-size: 13px !important; text-transform: uppercase; letter-spacing: .4px;
    text-align: center; cursor: pointer; white-space: nowrap;
}
.product-actions .open-basket-cta:hover { background: var(--bx-cyan) !important; color: #04121a !important; }

/* nascondi del tutto eventuale controllo quantità nelle card */
.store-products .quantity-field,
.bx-products .quantity-field { display: none !important; }

/* bottone "Added to Basket" (varianti free/no-quantity) */
.product-actions .open-basket-cta {
    width: 100%; height: 42px; margin-top: 10px;
    background: rgba(63,246,246,.10) !important; color: var(--bx-cyan) !important;
    border: 1px solid var(--bx-border) !important; border-radius: 10px !important; font-weight: 700 !important;
}

/* ============================================================
   PERCHE' BRONX + TRUST BADGES
   ============================================================ */
.bx-why { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 30px; }
.bx-why-card {
    background: var(--bx-card); border: 1px solid var(--bx-border); border-radius: var(--bx-radius);
    padding: 26px 22px; text-align: center;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.bx-why-card:hover { transform: translateY(-5px); border-color: var(--bx-cyan); box-shadow: 0 16px 40px rgba(0,200,200,.16); }
.bx-why-ic {
    width: 60px; height: 60px; margin: 0 auto 14px; border-radius: 16px; font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(63,246,246,.10); border: 1px solid var(--bx-border); color: var(--bx-cyan);
}
.bx-why-card h3 { margin: 0 0 8px; font-size: 18px; color: #fff; }
.bx-why-card p { margin: 0; color: var(--bx-dim); font-size: 14px; line-height: 1.55; }

.bx-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.bx-trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 6px; }
.bx-trust-ic { flex: 0 0 auto; font-size: 24px; color: var(--bx-cyan); line-height: 1.2; }
.bx-trust-item h4 { margin: 0 0 6px; color: #fff; font-size: 16px; }
.bx-trust-item p { margin: 0; color: var(--bx-dim); font-size: 14px; line-height: 1.5; }

/* ============================================================
   FOOTER (3 colonne + watermark)
   ============================================================ */
.bx-footer { position: relative; background: #04070b; border-top: 1px solid var(--bx-border); margin-top: 50px; overflow: hidden; }
.bx-footer-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 46px 22px 20px; }
.bx-footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.bx-footer-col h4 { color: #fff; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 16px; }
.bx-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bx-footer-col ul li { margin-bottom: 10px; }
.bx-footer-col ul li a { color: var(--bx-dim) !important; font-size: 14px; }
.bx-footer-col ul li a:hover { color: var(--bx-cyan) !important; }

.bx-footer-logo { height: 42px; width: auto; margin-bottom: 14px; filter: drop-shadow(0 2px 8px rgba(0,200,200,.3)); }
.bx-footer-name { color: #fff; font-weight: 900; font-size: 26px; display: block; margin-bottom: 12px; }
.bx-footer-desc { color: var(--bx-dim); font-size: 14px; line-height: 1.6; max-width: 340px; margin: 0 0 16px; }
.bx-footer-social { display: flex; gap: 10px; }
.bx-footer-social a {
    width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    background: rgba(63,246,246,.08); border: 1px solid var(--bx-border); color: var(--bx-cyan) !important; font-size: 18px;
}
.bx-footer-social a:hover { background: var(--bx-cyan); color: #04121a !important; }

.bx-footer-pay-text { color: var(--bx-dim); font-size: 14px; line-height: 1.55; margin: 0 0 14px; }
.bx-footer .we-accept { display: flex; gap: 12px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; opacity: .85; }
.bx-footer .we-accept img { height: 22px; }

.bx-footer-bar {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
    margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06);
}
.bx-footer-bar .copyright { color: var(--bx-dim); font-size: 13px; margin: 0; }
.bx-footer-tebex { color: #4d6672; font-size: 12px; margin: 0; text-align: right; }

.bx-footer-watermark {
    position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
    font-family: 'Poppins','Arial Black',sans-serif; font-weight: 900; font-size: clamp(80px, 18vw, 240px);
    letter-spacing: 8px; color: transparent; -webkit-text-stroke: 1px rgba(63,246,246,.08);
    white-space: nowrap; pointer-events: none; z-index: 0; line-height: 1;
}

@media (max-width: 820px) {
    .bx-footer-cols { grid-template-columns: 1fr; gap: 28px; }
    .bx-footer-bar { flex-direction: column; text-align: center; }
    .bx-footer-tebex { text-align: center; }
}

/* ============================================================
   PAGINE CUSTOM (CMS: FAQ, Rimborsi, ecc.)
   ============================================================ */
.bx-cms-page { padding: 40px 22px 60px; max-width: 900px; }
.bx-cms-card {
    background:
        radial-gradient(700px 240px at 50% 0%, rgba(63,246,246,.08), transparent 70%),
        var(--bx-card);
    border: 1px solid var(--bx-border);
    border-radius: 18px;
    padding: 38px 40px;
    box-shadow: 0 16px 44px rgba(0,0,0,.45);
}
.bx-cms-card h1, .bx-cms-card h2 {
    color: #fff; margin-top: 0; font-weight: 900; letter-spacing: .4px;
}
.bx-cms-card h2 {
    font-size: clamp(22px, 3vw, 30px);
    background: linear-gradient(180deg, #eafeff, #3ff6f6);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.bx-cms-card h3 {
    color: #fff; font-size: 18px; margin: 28px 0 10px; padding-left: 12px;
    border-left: 3px solid var(--bx-cyan);
}
.bx-cms-card p { color: var(--bx-text); line-height: 1.7; }
.bx-cms-card strong { color: #fff; }
.bx-cms-card a { color: var(--bx-cyan) !important; }

/* mette ogni sezione (titolo h3 + paragrafi) dentro un box */
.bx-cms-card h3 {
    background: rgba(63,246,246,.06);
    border: 1px solid var(--bx-border);
    border-left: 3px solid var(--bx-cyan);
    border-radius: 10px;
    padding: 12px 16px;
    margin: 26px 0 14px;
}

/* evidenzia il primo blocco (Politica di Rimborso) */
.bx-cms-card h3:first-of-type {
    background: linear-gradient(135deg, rgba(63,246,246,.16), rgba(0,200,200,.06));
    border-color: var(--bx-cyan);
    color: #eafeff;
    box-shadow: 0 8px 24px rgba(0,200,200,.15);
}