.bmbh-home{
    --green:#22c55e;
    --green-dark:#16a34a;
    --navy:#0f172a;
    --dark:#020617;
    --muted:#cbd5e1;
    width:100%;
    background:#f8fafc;
    font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.bmbh-home *{box-sizing:border-box}

.bmbh-hero{
    width:min(1180px,calc(100% - 40px));
    margin:28px auto 50px;
}

.bmbh-hero-inner{
    padding:68px 64px;
    border-radius:30px;
    overflow:hidden;
    background:
        radial-gradient(circle at 88% 18%,rgba(34,197,94,.24),transparent 32%),
        linear-gradient(145deg,#020617 0%,#0f172a 60%,#111827 100%);
    box-shadow:0 24px 60px rgba(15,23,42,.18);
}

.bmbh-eyebrow{
    display:block;
    margin-bottom:14px;
    color:#86efac;
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.bmbh-hero h1{
    max-width:850px;
    margin:0;
    color:#fff;
    font-size:clamp(40px,5vw,66px);
    line-height:1.03;
    letter-spacing:-.045em;
    font-weight:800;
}

.bmbh-hero h1 em{
    display:block;
    color:var(--green);
    font-style:normal;
}

.bmbh-hero>div>p{
    max-width:680px;
    margin:22px 0 28px;
    color:var(--muted);
    font-size:18px;
    line-height:1.6;
}

.bmbh-search{
    display:flex;
    max-width:790px;
    padding:6px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.20);
}

.bmbh-search input[type="search"]{
    flex:1;
    min-width:0;
    height:52px;
    padding:0 18px;
    border:0!important;
    outline:0;
    box-shadow:none!important;
    background:transparent;
    font-size:16px;
}

.bmbh-search button{
    min-width:130px;
    height:52px;
    border:0;
    border-radius:13px;
    background:var(--green);
    color:#052e16;
    font-weight:800;
    cursor:pointer;
}

.bmbh-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:22px;
}

.bmbh-btn{
    display:inline-flex;
    min-height:46px;
    align-items:center;
    justify-content:center;
    padding:0 20px;
    border-radius:13px;
    text-decoration:none!important;
    font-size:14px;
    font-weight:800;
}

.bmbh-primary{
    background:var(--green);
    color:#052e16!important;
}

.bmbh-secondary{
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.07);
    color:#fff!important;
}

.bmbh-trust{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    max-width:790px;
    margin-top:34px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
}

.bmbh-trust div{
    padding:16px 18px;
    border-right:1px solid rgba(255,255,255,.10);
    color:#94a3b8;
    font-size:12px;
}

.bmbh-trust div:last-child{border-right:0}

.bmbh-trust strong{
    display:block;
    color:#fff;
    font-size:14px;
}

.bmbh-trust span{display:block;margin-top:2px}

@media(max-width:640px){
.bmbh-hero{width:calc(100% - 24px);margin:12px auto 32px}
.bmbh-hero-inner{padding:38px 20px 24px;border-radius:22px}
.bmbh-hero h1{font-size:38px}
.bmbh-hero>div>p{font-size:15px}
.bmbh-search{display:block}
.bmbh-search input[type="search"]{width:100%}
.bmbh-search button{width:100%}
.bmbh-actions{display:grid}
.bmbh-trust{grid-template-columns:1fr}
.bmbh-trust div{border-right:0;border-bottom:1px solid rgba(255,255,255,.10)}
.bmbh-trust div:last-child{border-bottom:0}
}

/* CATEGORIAS */

.bmbh-section{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    padding:38px 0 54px;
}

.bmbh-heading{
    max-width:720px;
    margin-bottom:26px;
}

.bmbh-heading>span{
    display:block;
    margin-bottom:9px;
    color:#16a34a;
    font-size:13px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
}

.bmbh-heading h2{
    margin:0;
    color:#0f172a;
    font-size:clamp(30px,3vw,42px);
    line-height:1.1;
    letter-spacing:-.035em;
    font-weight:800;
}

.bmbh-heading p{
    margin:12px 0 0;
    color:#64748b;
    font-size:16px;
    line-height:1.6;
}

.bmbh-cat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.bmbh-cat{
    display:flex;
    min-height:205px;
    overflow:hidden;
    border:1px solid #e2e8f0;
    border-radius:22px;
    background:#fff;
    color:#0f172a!important;
    text-decoration:none!important;
    box-shadow:0 8px 28px rgba(15,23,42,.05);
    transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}

.bmbh-cat:hover{
    transform:translateY(-4px);
    border-color:#86efac;
    box-shadow:0 18px 42px rgba(15,23,42,.10);
}

.bmbh-cat-image{
    display:flex;
    width:44%;
    min-height:205px;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:linear-gradient(145deg,#f8fafc,#ecfdf5);
}

.bmbh-cat-image img{
    width:100%;
    height:100%;
    padding:18px;
    object-fit:contain;
}

.bmbh-cat-image span{
    color:#16a34a;
    font-size:42px;
    font-weight:900;
}

.bmbh-cat-info{
    display:flex;
    width:56%;
    flex-direction:column;
    justify-content:center;
    padding:22px;
}

.bmbh-cat-info small{
    margin-bottom:8px;
    color:#64748b;
    font-size:12px;
    font-weight:700;
}

.bmbh-cat-info h3{
    margin:0 0 18px;
    color:#0f172a;
    font-size:20px;
    line-height:1.2;
    font-weight:800;
}

.bmbh-cat-info strong{
    color:#16a34a;
    font-size:13px;
    font-weight:800;
}

@media(max-width:980px){
    .bmbh-cat-grid{grid-template-columns:repeat(2,1fr)}
}


/* MOBILE CATEGORIAS */

@media(max-width:640px){
.bmbh-section{width:calc(100% - 24px);padding:30px 0 38px}
.bmbh-heading{margin-bottom:20px}
.bmbh-heading h2{font-size:30px}
.bmbh-heading p{font-size:14px}
.bmbh-cat-grid{grid-template-columns:1fr;gap:12px}
.bmbh-cat{min-height:155px;border-radius:18px}
.bmbh-cat-image{width:42%;min-height:155px}
.bmbh-cat-image img{padding:12px}
.bmbh-cat-info{width:58%;padding:17px}
.bmbh-cat-info h3{margin-bottom:12px;font-size:18px}
}

/* AYUDA COMPATIBILIDAD */

.bmbh-help{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:26px;
    align-items:center;
    padding:34px 38px;
    border:1px solid #bbf7d0;
    border-radius:24px;
    background:linear-gradient(135deg,#fff,#f0fdf4);
}

.bmbh-help-icon{
    display:flex;
    width:64px;
    height:64px;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#22c55e;
    color:#052e16;
    font-size:30px;
    font-weight:900;
}

.bmbh-help-copy>span{
    color:#16a34a;
    font-size:12px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
}

.bmbh-help-copy h2{
    margin:6px 0 8px;
    color:#0f172a;
    font-size:28px;
    line-height:1.15;
    font-weight:800;
}

.bmbh-help-copy p{
    max-width:680px;
    margin:0;
    color:#64748b;
    font-size:15px;
    line-height:1.6;
}

.bmbh-help-button{
    background:#22c55e;
    color:#052e16!important;
    white-space:nowrap;
}

@media(max-width:760px){
    .bmbh-help{grid-template-columns:1fr;padding:25px 22px}
    .bmbh-help-button{width:100%}
}


/* PRODUCTOS HOME */

.bmbh-product-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
}

.bmbh-product{
overflow:hidden;
border:1px solid #e2e8f0;
border-radius:20px;
background:#fff;
box-shadow:0 6px 24px rgba(15,23,42,.05);
transition:.2s ease;
}

.bmbh-product:hover{
transform:translateY(-4px);
box-shadow:0 16px 38px rgba(15,23,42,.10);
}

.bmbh-product-image{
display:flex;
aspect-ratio:1/.82;
align-items:center;
justify-content:center;
overflow:hidden;
background:#f8fafc;
}

.bmbh-product-image img{
width:100%;
height:100%;
padding:18px;
object-fit:contain;
}

.bmbh-product-info{padding:18px}

.bmbh-product-info h3{
min-height:48px;
margin:0 0 12px;
font-size:15px;
line-height:1.45;
font-weight:700;
}

.bmbh-product-info h3 a{
color:#0f172a!important;
text-decoration:none!important;
}

.bmbh-price{
min-height:30px;
margin-bottom:14px;
color:#0f172a;
font-size:19px;
font-weight:800;
}

.bmbh-price del{
margin-right:5px;
color:#94a3b8;
font-size:13px;
}

.bmbh-price ins{text-decoration:none}

.bmbh-product-button{
display:flex;
height:42px;
align-items:center;
justify-content:center;
border-radius:11px;
background:#f0fdf4;
color:#16a34a!important;
text-decoration:none!important;
font-size:13px;
font-weight:800;
}

@media(max-width:980px){
.bmbh-product-grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:640px){
.bmbh-product-grid{grid-template-columns:1fr}
.bmbh-product-image{aspect-ratio:1/.7}
}


/* BENEFICIOS HOME */

.bmbh-benefits{
display:grid;
grid-template-columns:repeat(4,1fr);
overflow:hidden;
border:1px solid #e2e8f0;
border-radius:24px;
background:#fff;
}

.bmbh-benefits article{
min-height:210px;
padding:28px;
border-right:1px solid #e2e8f0;
}

.bmbh-benefits article:last-child{
border-right:0;
}

.bmbh-benefits article>strong{
display:block;
margin-bottom:30px;
color:#22c55e;
font-size:14px;
font-weight:900;
}

.bmbh-benefits h3{
margin:0 0 10px;
color:#0f172a;
font-size:18px;
font-weight:800;
}

.bmbh-benefits p{
margin:0;
color:#64748b;
font-size:14px;
line-height:1.6;
}

@media(max-width:900px){
.bmbh-benefits{grid-template-columns:repeat(2,1fr)}
.bmbh-benefits article:nth-child(2){border-right:0}
.bmbh-benefits article:nth-child(-n+2){border-bottom:1px solid #e2e8f0}
}

@media(max-width:640px){
.bmbh-benefits{grid-template-columns:1fr}
.bmbh-benefits article{
min-height:0;
border-right:0;
border-bottom:1px solid #e2e8f0;
}
.bmbh-benefits article:last-child{border-bottom:0}
}


/* MEDIOS DE PAGO */

.bmbh-payments{
display:grid;
grid-template-columns:.8fr 1.2fr;
gap:40px;
align-items:center;
padding:38px;
border:1px solid #e2e8f0;
border-radius:24px;
background:#fff;
}

.bmbh-payments-copy>span{
display:block;
margin-bottom:8px;
color:#16a34a;
font-size:12px;
font-weight:800;
letter-spacing:.07em;
text-transform:uppercase;
}

.bmbh-payments h2{
margin:0;
color:#0f172a;
font-size:31px;
font-weight:800;
}

.bmbh-payments p{
margin:8px 0 0;
color:#64748b;
font-size:14px;
}

.bmbh-payment-list{
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:flex-end;
}

.bmbh-payment-list b{
padding:12px 16px;
border:1px solid #e2e8f0;
border-radius:999px;
background:#f8fafc;
color:#0f172a;
font-size:13px;
font-weight:800;
}

@media(max-width:700px){
.bmbh-payments{grid-template-columns:1fr;gap:20px;padding:25px 22px}
.bmbh-payment-list{justify-content:flex-start}
}


/* LOCAL HOME */

.bmbh-local-section{
padding-bottom:70px;
}

.bmbh-local{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
padding:44px;
border-radius:26px;
background:
radial-gradient(circle at 90% 30%,rgba(34,197,94,.22),transparent 30%),
#020617;
}

.bmbh-local-copy>span{
display:block;
margin-bottom:10px;
color:#86efac;
font-size:12px;
font-weight:800;
letter-spacing:.08em;
}

.bmbh-local h2{
max-width:650px;
margin:0;
color:#fff;
font-size:34px;
line-height:1.12;
font-weight:800;
}

.bmbh-address{
margin:13px 0 18px;
color:#cbd5e1;
font-size:15px;
}

.bmbh-hours{
display:grid;
grid-template-columns:auto auto;
gap:5px 18px;
width:max-content;
color:#cbd5e1;
font-size:13px;
}

.bmbh-hours strong{
color:#fff;
}

.bmbh-local-actions{
display:flex;
flex-direction:column;
gap:10px;
min-width:230px;
}

.bmbh-local-secondary{
border:1px solid rgba(255,255,255,.20);
background:rgba(255,255,255,.06);
color:#fff!important;
}

@media(max-width:760px){
.bmbh-local{
align-items:flex-start;
flex-direction:column;
padding:28px 22px;
}

.bmbh-local h2{
font-size:28px;
}

.bmbh-local-actions{
width:100%;
min-width:0;
}

.bmbh-local-actions .bmbh-btn{
width:100%;
}
}


/* HEADER PREVIEW 2026 */

body.page-id-20433 header.header,
body.page-id-20433 .elementor-location-header{
display:none!important;
}

.bmbh-site-header{
width:100%;
background:#fff;
border-bottom:1px solid #e2e8f0;
box-shadow:0 4px 18px rgba(15,23,42,.05);
}

.bmbh-header-main{
width:min(1180px,calc(100% - 40px));
margin:auto;
display:grid;
grid-template-columns:220px 1fr auto;
gap:24px;
align-items:center;
padding:18px 0;
}

.bmbh-header-logo img{
display:block;
max-width:200px;
max-height:72px;
width:auto;
height:auto;
}

.bmbh-header-search{
display:flex;
padding:5px;
border:1px solid #dbe3ea;
border-radius:15px;
background:#f8fafc;
}

.bmbh-header-search input[type="search"]{
flex:1;
min-width:0;
height:46px;
padding:0 15px;
border:0!important;
outline:0;
box-shadow:none!important;
background:transparent;
}

.bmbh-header-search button{
height:46px;
padding:0 22px;
border:0;
border-radius:11px;
background:#22c55e;
color:#052e16;
font-weight:800;
cursor:pointer;
}

.bmbh-header-actions{
display:flex;
gap:9px;
}

.bmbh-header-actions a{
padding:11px 14px;
border:1px solid #e2e8f0;
border-radius:11px;
color:#0f172a!important;
text-decoration:none!important;
font-size:13px;
font-weight:800;
white-space:nowrap;
}

.bmbh-header-nav{
display:flex;
justify-content:center;
gap:6px;
padding:0 20px 12px;
overflow-x:auto;
}

.bmbh-header-nav a{
padding:8px 12px;
border-radius:10px;
color:#334155!important;
text-decoration:none!important;
font-size:13px;
font-weight:700;
white-space:nowrap;
}

.bmbh-header-nav a:hover{
background:#f0fdf4;
color:#16a34a!important;
}

@media(max-width:800px){
.bmbh-header-main{
width:calc(100% - 24px);
grid-template-columns:1fr auto;
gap:12px;
padding:12px 0;
}
.bmbh-header-logo img{max-width:150px}
.bmbh-header-search{grid-column:1/-1;grid-row:2}
.bmbh-header-actions a{padding:9px 10px;font-size:12px}
.bmbh-header-nav{justify-content:flex-start;padding:0 12px 10px}
}

@media(max-width:480px){
.bmbh-header-main{grid-template-columns:1fr}
.bmbh-header-actions{grid-row:2}
.bmbh-header-search{grid-row:3}
.bmbh-header-actions a{flex:1;text-align:center}
}


/* HEADER FINE V032 */

body.page-id-20433 .digitoshop-barra-superior{
display:none!important;
}

.bmbh-header-main{
grid-template-columns:270px minmax(320px,1fr) auto;
gap:18px;
padding:12px 0;
}

.bmbh-header-logo{
display:flex;
align-items:center;
gap:12px;
min-width:0;
}

.bmbh-header-logo>a{
display:flex;
flex:0 0 auto;
align-items:center;
}

.bmbh-header-logo img{
width:54px!important;
height:54px!important;
max-width:54px!important;
max-height:54px!important;
border-radius:14px;
object-fit:cover;
}

.bmbh-brand-text{
display:flex;
flex-direction:column;
line-height:1.1;
}

.bmbh-brand-text strong{
color:#0f172a;
font-size:19px;
font-weight:900;
letter-spacing:-.02em;
}

.bmbh-brand-text span{
margin-top:4px;
color:#64748b;
font-size:11px;
font-weight:600;
}

.bmbh-header-search{
border-color:#cbd5e1;
background:#fff;
}

.bmbh-header-search input[type="search"]{
font-size:14px;
}

.bmbh-header-actions a{
padding:12px 15px;
background:#f8fafc;
}

.bmbh-header-actions a:last-child{
border-color:#bbf7d0;
background:#f0fdf4;
color:#15803d!important;
}

.bmbh-header-nav{
border-top:1px solid #f1f5f9;
padding-top:8px;
padding-bottom:8px;
}

.bmbh-header-nav a{
font-size:12px;
}

@media(max-width:800px){
.bmbh-header-main{
grid-template-columns:1fr auto;
}
.bmbh-brand-text strong{font-size:17px}
.bmbh-brand-text span{display:none}
}

@media(max-width:480px){
.bmbh-header-logo img{
width:44px!important;
height:44px!important;
}
}


/* FOOTER PREVIEW 2026 */

body.page-id-20433 .elementor-location-footer{
display:none!important;
}

.bmbh-site-footer{
margin-top:20px;
background:#020617;
color:#cbd5e1;
}

.bmbh-footer-grid{
width:min(1180px,calc(100% - 40px));
margin:auto;
display:grid;
grid-template-columns:1.4fr repeat(3,1fr);
gap:48px;
padding:48px 0 36px;
}

.bmbh-footer-brand strong{
display:block;
color:#22c55e;
font-size:22px;
font-weight:900;
}

.bmbh-footer-brand p{
max-width:290px;
margin:12px 0 0;
color:#94a3b8;
font-size:14px;
line-height:1.6;
}

.bmbh-site-footer h3{
margin:0 0 14px;
color:#fff;
font-size:14px;
font-weight:800;
}

.bmbh-site-footer a{
display:block;
margin:8px 0;
color:#cbd5e1!important;
text-decoration:none!important;
font-size:13px;
}

.bmbh-site-footer a:hover{
color:#22c55e!important;
}

.bmbh-site-footer p{
margin:7px 0;
color:#94a3b8;
font-size:13px;
}

.bmbh-footer-bottom{
width:min(1180px,calc(100% - 40px));
margin:auto;
display:flex;
justify-content:space-between;
gap:20px;
padding:18px 0 22px;
border-top:1px solid rgba(255,255,255,.09);
color:#64748b;
font-size:12px;
}

@media(max-width:800px){
.bmbh-footer-grid{
grid-template-columns:repeat(2,1fr);
gap:30px;
}
}

@media(max-width:520px){
.bmbh-footer-grid{
width:calc(100% - 32px);
grid-template-columns:1fr;
gap:24px;
padding-top:34px;
}
.bmbh-footer-bottom{
width:calc(100% - 32px);
flex-direction:column;
gap:5px;
}
}


/* GREEN REFRESH V042 */

.bmbh-home{
--green:#22c55e;
--green-dark:#16a34a;
--navy:#0b2216;
--dark:#07170f;
--muted:#cfe5d7;
}

.bmbh-hero-inner{
background:
radial-gradient(circle at 88% 18%,rgba(34,197,94,.20),transparent 32%),
linear-gradient(145deg,#07170f 0%,#0b2216 60%,#102a1b 100%);
box-shadow:0 24px 60px rgba(7,23,15,.20);
}

.bmbh-local{
background:
radial-gradient(circle at 90% 30%,rgba(34,197,94,.18),transparent 30%),
linear-gradient(145deg,#07170f 0%,#0b2216 100%);
}

.bmbh-site-footer{
background:linear-gradient(180deg,#07170f 0%,#04110a 100%);
color:#cfe5d7;
}

.bmbh-footer-brand p,
.bmbh-site-footer p,
.bmbh-footer-bottom{
color:#9fbaa8;
}

.bmbh-header-nav a:hover{
background:#f0fdf4;
color:#15803d!important;
}

.bmbh-trust{
border-color:rgba(134,239,172,.15);
}

.bmbh-trust div{
background:rgba(7,23,15,.28);
border-color:rgba(134,239,172,.12);
}

.bmbh-secondary,
.bmbh-local-secondary{
border-color:rgba(134,239,172,.22);
background:rgba(34,197,94,.06);
}

/* MOBILE POLISH V043 */

@media(max-width:640px){

.bmbh-hero-inner{padding:26px 18px 18px}
.bmbh-hero h1{font-size:31px;line-height:1.02}
.bmbh-hero>div>p{font-size:14px;margin:15px 0 17px}

.bmbh-search{display:flex!important;padding:5px}
.bmbh-search input[type="search"]{width:auto!important;min-width:0;height:46px;font-size:13px}
.bmbh-search button{width:auto!important;min-width:94px;height:46px}

.bmbh-actions{display:grid;gap:8px;margin-top:12px}

.bmbh-trust{grid-template-columns:repeat(3,minmax(0,1fr));margin-top:17px}
.bmbh-trust div{padding:9px 5px;border-bottom:0}
.bmbh-trust strong{font-size:10px}
.bmbh-trust span{font-size:8px}

.bmbh-section{padding:22px 0 27px}
.bmbh-heading h2{font-size:28px;line-height:1.07}
.bmbh-heading p{font-size:14px}

.bmbh-help{padding:20px 18px;gap:14px}
.bmbh-help-copy h2{font-size:24px}
.bmbh-help-copy p{font-size:14px}

.bmbh-benefits article{min-height:0;padding:18px}
.bmbh-benefits article>strong{margin-bottom:9px}
.bmbh-benefits h3{font-size:17px}
.bmbh-benefits p{font-size:13px}

.bmbh-payments{padding:20px 18px;gap:16px}
.bmbh-payments h2{font-size:27px}
.bmbh-payment-list b{padding:9px 11px;font-size:12px}

.bmbh-local{padding:23px 18px;gap:18px}
.bmbh-local h2{font-size:27px}
.bmbh-address{font-size:14px}
.bmbh-hours{font-size:12px}

.bmbh-footer-grid{
width:calc(100% - 32px);
grid-template-columns:1fr 1fr;
gap:20px 18px;
padding:28px 0 22px;
}

.bmbh-footer-brand{grid-column:1/-1}
.bmbh-footer-grid>div:last-child{grid-column:1/-1}
.bmbh-site-footer a{font-size:12px;margin:6px 0}
.bmbh-site-footer p{font-size:12px}

}

/* MOBILE FLOATING CONTROLS V044 */
/* SOLO PREVIEW HOME 20433 */

@media(max-width:640px){

/* =========================================================
   1. SIDE CART
   arriba a la derecha y bastante más chico
   ========================================================= */

body.page-id-20433 .xoo-wsc-basket{
    width:54px!important;
    height:54px!important;
    min-width:54px!important;
    min-height:54px!important;

    top:132px!important;
    right:12px!important;
    bottom:auto!important;
    left:auto!important;

    z-index:99990!important;
}

body.page-id-20433 .xoo-wsc-bki{
    font-size:23px!important;
}

body.page-id-20433 .xoo-wsc-items-count{
    min-width:19px!important;
    width:19px!important;
    height:19px!important;
    line-height:19px!important;
    font-size:10px!important;
}


/* =========================================================
   2. ASISTENTE DIGITOSHOP
   abajo a la izquierda
   ========================================================= */

body.page-id-20433 #digi-ai-root{
    left:12px!important;
    right:auto!important;
    bottom:max(12px,env(safe-area-inset-bottom))!important;
    z-index:99970!important;
}

body.page-id-20433 #digi-ai-launcher{
    width:56px!important;
    height:56px!important;
}

body.page-id-20433 .digi-ai-avatar-launcher{
    width:46px!important;
    height:46px!important;
    flex-basis:46px!important;
}


/* =========================================================
   3. WHATSAPP CLICK TO CHAT
   abajo a la derecha
   ========================================================= */

body.page-id-20433 .ht-ctc-chat,
body.page-id-20433 #ht-ctc-chat{
    right:12px!important;
    left:auto!important;
    bottom:max(12px,env(safe-area-inset-bottom))!important;
    z-index:99980!important;
}


/* =========================================================
   4. SCROLL TO TOP NEVE
   pequeño y arriba de WhatsApp
   ========================================================= */

body.page-id-20433 #scroll-to-top,
body.page-id-20433 .scroll-to-top{
    right:18px!important;
    left:auto!important;
    bottom:84px!important;

    --padding:7px 8px!important;
    --size:13px!important;

    z-index:99960!important;
}


/* =========================================================
   EVITAR QUE LOS FLOTANTES GENEREN ESPACIOS EXTRA
   ========================================================= */

body.page-id-20433 #digi-ai-root,
body.page-id-20433 .xoo-wsc-basket,
body.page-id-20433 #scroll-to-top,
body.page-id-20433 .ht-ctc-chat,
body.page-id-20433 #ht-ctc-chat{
    margin:0!important;
}

}

/* MOBILE FLOATING CLEANUP V045 */
/* SOLO PREVIEW HOME 20433 */

@media(max-width:640px){

body.page-id-20433 .xoo-wsc-basket{
    display:none!important;
}

body.page-id-20433 #scroll-to-top,
body.page-id-20433 .scroll-to-top{
    display:none!important;
}

body.page-id-20433 #digi-ai-root{
    left:14px!important;
    right:auto!important;
    bottom:max(14px,env(safe-area-inset-bottom))!important;
    z-index:99970!important;
}

body.page-id-20433 #digi-ai-launcher{
    width:52px!important;
    height:52px!important;
}

body.page-id-20433 .digi-ai-avatar-launcher{
    width:42px!important;
    height:42px!important;
    flex-basis:42px!important;
}

body.page-id-20433 .ht-ctc-chat,
body.page-id-20433 #ht-ctc-chat{
    right:14px!important;
    left:auto!important;
    bottom:max(14px,env(safe-area-inset-bottom))!important;
    transform:scale(.88)!important;
    transform-origin:bottom right!important;
    z-index:99980!important;
}

}

/* MOBILE FLOATING POLISH V046 */
/* SOLO PREVIEW HOME 20433 */

@media(max-width:640px){

body.page-id-20433 #digi-ai-root{
    left:8px!important;
    right:auto!important;
    bottom:max(8px,env(safe-area-inset-bottom))!important;
}

body.page-id-20433 #digi-ai-launcher{
    width:46px!important;
    height:46px!important;
}

body.page-id-20433 .digi-ai-avatar-launcher{
    width:38px!important;
    height:38px!important;
    flex-basis:38px!important;
}

body.page-id-20433 .digi-ai-online-dot{
    width:11px!important;
    height:11px!important;
    border-width:2px!important;
    right:0!important;
    top:2px!important;
}

body.page-id-20433 .ht-ctc-chat,
body.page-id-20433 #ht-ctc-chat{
    right:8px!important;
    left:auto!important;
    bottom:max(8px,env(safe-area-inset-bottom))!important;
    transform:scale(.76)!important;
    transform-origin:bottom right!important;
}

body.page-id-20433 .bmbh-footer-bottom{
    padding-bottom:68px!important;
}

}

/* ==========================================================
   PRODUCTION FRONT PAGE V047
   Home real ID 7
   ========================================================== */

body.home header.header,
body.home .elementor-location-header{
    display:none!important;
}

body.home .digitoshop-barra-superior{
    display:none!important;
}

body.home .elementor-location-footer{
    display:none!important;
}


/* MOBILE PRODUCCION: usar el layout ya validado en preview */

@media(max-width:640px){

body.home .xoo-wsc-basket{
    display:none!important;
}

body.home #scroll-to-top,
body.home .scroll-to-top{
    display:none!important;
}

body.home #digi-ai-root{
    left:8px!important;
    right:auto!important;
    bottom:max(8px,env(safe-area-inset-bottom))!important;
    z-index:99970!important;
}

body.home #digi-ai-launcher{
    width:46px!important;
    height:46px!important;
}

body.home .digi-ai-avatar-launcher{
    width:38px!important;
    height:38px!important;
    flex-basis:38px!important;
}

body.home .digi-ai-online-dot{
    width:11px!important;
    height:11px!important;
    border-width:2px!important;
    right:0!important;
    top:2px!important;
}

body.home .ht-ctc-chat,
body.home #ht-ctc-chat{
    right:8px!important;
    left:auto!important;
    bottom:max(8px,env(safe-area-inset-bottom))!important;
    transform:scale(.76)!important;
    transform-origin:bottom right!important;
    z-index:99980!important;
}

body.home .bmbh-footer-bottom{
    padding-bottom:68px!important;
}

}

/* ==========================================================
   GLOBAL HEADER + FOOTER V048
   Todo el frontend excepto Home
   ========================================================== */

body:not(.home) header.header,
body:not(.home) .elementor-location-header,
body:not(.home) .digitoshop-barra-superior{
    display:none!important;
}

body:not(.home) .elementor-location-footer{
    display:none!important;
}


/* GLOBAL MOBILE CLEANUP V049 */

@media(max-width:640px){

/* Redundantes: ya existe Carrito en el header */
body:not(.home) .xoo-wsc-basket{
    display:none!important;
}

/* Flecha Neve */
body:not(.home) #scroll-to-top,
body:not(.home) .scroll-to-top{
    display:none!important;
}

/* Asistente IA */
body:not(.home) #digi-ai-root{
    left:8px!important;
    right:auto!important;
    bottom:max(8px,env(safe-area-inset-bottom))!important;
    z-index:99970!important;
}

body:not(.home) #digi-ai-launcher{
    width:46px!important;
    height:46px!important;
}

body:not(.home) .digi-ai-avatar-launcher{
    width:38px!important;
    height:38px!important;
    flex-basis:38px!important;
}

body:not(.home) .digi-ai-online-dot{
    width:11px!important;
    height:11px!important;
    border-width:2px!important;
    right:0!important;
    top:2px!important;
}

/* WhatsApp */
body:not(.home) .ht-ctc-chat,
body:not(.home) #ht-ctc-chat{
    right:8px!important;
    left:auto!important;
    bottom:max(8px,env(safe-area-inset-bottom))!important;
    transform:scale(.76)!important;
    transform-origin:bottom right!important;
    z-index:99980!important;
}

/* Aire para los dos flotantes en footer */
body:not(.home) .bmbh-footer-bottom{
    padding-bottom:68px!important;
}

/* Eliminar antiguo hero Elementor de categorías */
body.tax-product_cat
.elementor-10964
.elementor-element-e366cf5{
    display:none!important;
}

/* Acercar el catálogo al nuevo header */
body.tax-product_cat
.elementor-10964
.elementor-element-7db9c228{
    padding-top:24px!important;
}

}


/* ==========================================================
   MOBILE ORIGINAL MENU V050
   Usa menu1 de WordPress
   ========================================================== */

.bmbh-mobile-menu{
    display:none;
}

@media(max-width:640px){

/* En móvil dejamos de mostrar la barra horizontal */
.bmbh-header-nav{
    display:none!important;
}

.bmbh-mobile-menu{
    display:block;
    margin:0 24px 18px;
}

.bmbh-mobile-menu summary{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-height:52px;
    padding:12px 18px;

    border:1px solid #d7e5dc;
    border-radius:16px;

    background:#f7fbf8;
    color:#10231a;

    font-weight:800;
    font-size:17px;

    cursor:pointer;
    user-select:none;
}

.bmbh-mobile-menu summary::-webkit-details-marker{
    display:none;
}

.bmbh-mobile-menu-icon{
    font-size:22px;
    line-height:1;
    color:#16a34a;
}

.bmbh-mobile-menu[open] summary{
    border-radius:16px 16px 0 0;
    background:#eefaf2;
}

.bmbh-mobile-menu-panel{
    border:1px solid #d7e5dc;
    border-top:0;

    border-radius:0 0 16px 16px;

    background:#ffffff;

    overflow:hidden;
    box-shadow:0 12px 28px rgba(10,35,22,.10);
}

.bmbh-mobile-menu-list{
    list-style:none;
    margin:0!important;
    padding:0!important;
}

.bmbh-mobile-menu-list li{
    margin:0!important;
    padding:0!important;
    border-bottom:1px solid #edf2ef;
}

.bmbh-mobile-menu-list li:last-child{
    border-bottom:0;
}

.bmbh-mobile-menu-list a{
    display:block;
    padding:15px 18px;

    color:#18261f!important;
    text-decoration:none!important;

    font-size:16px;
    font-weight:700;
    line-height:1.35;
}

.bmbh-mobile-menu-list a:hover,
.bmbh-mobile-menu-list a:focus{
    background:#effbf3;
    color:#16a34a!important;
}

}


/* MOBILE FLOATING POLISH V051 */

@media(max-width:640px){

/* --------------------------------------------------
   FLO TANTES - Home y resto del sitio
   -------------------------------------------------- */

body #digi-ai-root{
    left:6px!important;
    right:auto!important;
    bottom:max(6px,env(safe-area-inset-bottom))!important;
    z-index:99970!important;
}

body #digi-ai-launcher{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    min-height:42px!important;
}

body .digi-ai-avatar-launcher{
    width:34px!important;
    height:34px!important;
    flex-basis:34px!important;
}

body .digi-ai-online-dot{
    width:10px!important;
    height:10px!important;
    border-width:2px!important;
    right:0!important;
    top:2px!important;
}

body .ht-ctc-chat,
body #ht-ctc-chat{
    right:6px!important;
    left:auto!important;
    bottom:max(6px,env(safe-area-inset-bottom))!important;
    transform:scale(.68)!important;
    transform-origin:bottom right!important;
    z-index:99980!important;
}

/* --------------------------------------------------
   Dar aire en cierres / contenido inferior
   -------------------------------------------------- */

body .bmbh-footer-bottom{
    padding-bottom:86px!important;
}

body.single-product .site-content,
body.tax-product_cat .site-content,
body.post-type-archive-product .site-content,
body.woocommerce-shop .site-content{
    padding-bottom:86px!important;
}

/* Un poquito más de aire al final del summary del producto */
body.single-product .entry-summary{
    padding-bottom:18px!important;
}

}
