.wh-drawer{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
}

.wh-drawer.is-open{ display:block; }

.wh-drawer__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.wh-drawer__panel{
    position:absolute;
    top:0; left:0;
    height:100%;
    width:min(82vw, 360px);
    background:#000;
    color:#fff;
    padding:18px 0;
    box-shadow:12px 0 40px rgba(0,0,0,.35);
    overflow:auto;
}

/* ✅ BLINDAJE: evita svg gigantes por estilos globales */
.wh-drawer svg{
    width:18px;
    height:18px;
    flex:0 0 18px;
    max-width:18px;
    max-height:18px;
}

.wh-drawer__nav{
    display:flex;
    flex-direction:column;
}

.wh-drawer__item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    font-weight:800;
    letter-spacing:.02em;
}

.wh-drawer__itemBtn{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;
    text-align:left;
}

.wh-drawer__caret svg{
    width:22px;
    height:22px;
    flex:0 0 22px;
    max-width:22px;
    max-height:22px;
    opacity:.85;
}

.wh-drawer__sub{
    background:#0b0b0b;
    border-top:1px solid rgba(255,255,255,.06);
}

.wh-drawer__subItem{
    display:block;
    padding:14px 18px 14px 34px;
    color:#cfcfcf;
    text-decoration:none;
    font-weight:700;
    border-top:1px solid rgba(255,255,255,.06);
}

.wh-drawer__divider{
    height:1px;
    background:rgba(255,255,255,.10);
    margin:16px 0;
}

.wh-drawer__cta{
    margin:0 18px;
    background:#ff2b2b;
    color:#fff;
    border:none;
    padding:12px 18px;
    border-radius:24px;
    font-weight:800;
    cursor:pointer;
}

.wh-drawer__social{
    display:flex;
    gap:16px;
    padding:18px;
}

.wh-drawer__socialLink{
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.wh-drawer__socialLink svg{
    width:28px;
    height:28px;
    flex:0 0 28px;
    max-width:28px;
    max-height:28px;
}

/* ✅ INFO (address/email/phone) */
.wh-drawer__info{
    padding:0 18px 24px;
    display:flex;
    flex-direction:column;
    gap:12px;
    color:#ddd;
    font-weight:600;
}

.wh-drawer__infoRow{
    display:flex;
    align-items:center;
    gap:10px;
    color:#ddd;
    text-decoration:none;
}

.wh-drawer__infoRow span{
    line-height:1.25;
}

/* ✅ Lock scroll cuando drawer está abierto */
.wc-lock{
    overflow:hidden;
}

.wh-drawer__header{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:12px 0 18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.wh-drawer__logo{
    height:32px;
    width:auto;
}

.wh-drawer__item:hover{
    background:#111;
}

.wh-drawer__subItem:hover{
    background:#111;
}
