@font-face {
    font-family: 'AkiraExpanded';
    src: url('/mayorista/css/fonts/akira/Akira-Expanded-SuperBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
body{
    font-family:'Baloo 2','Segoe UI',sans-serif;
    padding-top:80px;

    background:radial-gradient(
        ellipse at center,
        #FFFFFF 0%,
        #E6EBF0 35%,
        #C9D1DA 70%,
        #A7B2BF 100%
    );

    background-attachment:fixed;
    color:#ffffff;
}

/* =========================
   NAVBAR
========================= */
.navbar-web{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    overflow:visible !important;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.85) 50%,
        rgba(255,255,255,0.90) 100%
    );

    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);

    border-bottom:3px solid #C2A004;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);
}

.navbar-web::before{
    content:"";
    position:absolute;
    inset:0;
    border-bottom-left-radius:inherit;
    border-bottom-right-radius:inherit;
    pointer-events:none;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.65) 0%,
        rgba(255,255,255,0.30) 18%,
        rgba(255,255,255,0.08) 45%,
        rgba(255,255,255,0) 70%
    );
    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7),
        inset 0 0 12px rgba(0,0,0,0.06);
}

.navbar-web::after{
    content:"";
    position:absolute;
    top:-60%;
    left:-20%;
    width:40%;
    height:200%;
    transform:rotate(18deg);
    pointer-events:none;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 100%
    );
    filter:blur(10px);
    opacity:0.4;
}

.nav-inner{
    width:100%;
    max-width:none;
    margin:0;
}

.navbar-desktop .nav-inner{
    padding:4px 20px;
}

.navbar-web .navbar-collapse{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
}

.nav-left-group{
    display:flex;
    align-items:center;
    gap:18px;
    margin-right:auto;
}

.nav-logo-item .brand-web{
    margin-right:6px;
    padding:0;
}

.logo-web{
    display:block;
    height:48px;
    width:auto;
}

.navbar-web .navbar-nav{
    gap:20px;
}

.nav-web-link{
    color:#2C2C2C !important;
    font-size:15px;
    font-weight:600;
    padding:8px 10px !important;
    border-radius:10px;
    transition:.25s ease;
    text-decoration:none !important;
}

.nav-web-link:hover{
    background:linear-gradient(
        135deg,
        rgba(95,168,211,0.10),
        rgba(95,168,211,0.15)
    );
    color:#C2A004 !important;
    text-shadow:0 1px 2px rgba(255,255,255,0.25);
}

.nav-web-link.active{
    color:#C2A004 !important;
    text-shadow:0 1px 2px rgba(255,255,255,0.25);
}

.dropdown-divider-custom{
    height:1px;
    margin:8px 14px;
    background:rgba(0,0,0,0.10);
    border-radius:999px;
}

.dropdown-item-todos{
    font-weight:700;
}

/* =========================
   SIDEBAR PRODUCTOS
========================= */
body.sidebar-open{
    overflow:hidden;
}

.sidebar-overlay{
    position:fixed;
    inset:0;
    background:rgba(22,29,37,0.24);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
    opacity:0;
    visibility:hidden;
    transition:opacity .28s ease, visibility .28s ease;
    z-index:1998;
}

.sidebar-overlay.activo{
    opacity:1;
    visibility:visible;
}

.sidebar-productos{
    position:fixed;
    top:0;
    left:0;
    width:320px;
    max-width:88vw;
    height:100vh;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.97) 0%,
        rgba(249,251,253,0.96) 100%
    );
    backdrop-filter:blur(16px) saturate(140%);
    -webkit-backdrop-filter:blur(16px) saturate(140%);
    border-right:1px solid rgba(194,160,4,0.14);
    box-shadow:
        16px 0 40px rgba(0,0,0,0.12),
        inset -1px 0 0 rgba(255,255,255,0.70);
    transform:translateX(-105%);
    transition:transform .34s cubic-bezier(.22,.61,.36,1);
    z-index:1999;
    display:flex;
    flex-direction:column;
}

.sidebar-productos.activo{
    transform:translateX(0);
}

.sidebar-productos-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 18px 14px;
    border-bottom:1px solid rgba(0,0,0,0.06);
    background:linear-gradient(
        135deg,
        rgba(255,253,245,0.95),
        rgba(255,248,219,0.80)
    );
}

.sidebar-productos-title{
    font-size:18px;
    font-weight:800;
    color:#2C2C2C;
    letter-spacing:.2px;
}

.sidebar-productos-close{
    width:36px;
    height:36px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.85);
    color:#4A4A4A;
    cursor:pointer;
    transition:.22s ease;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);
}

.sidebar-productos-close:hover{
    background:#fff;
    color:#C2A004;
    transform:rotate(90deg);
}

.sidebar-productos-body{
    flex:1;
    overflow-y:auto;
    padding:12px;
}

.sidebar-categoria-bloque{
    margin-bottom:10px;
}

.sidebar-categoria-toggle{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:14px 14px;
    border:none;
    border-radius:16px;
    background:transparent;
    color:#2F2F2F;
    font-size:15px;
    font-weight:700;
    text-align:left;
    cursor:pointer;
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        color .18s ease;
}

.sidebar-categoria-toggle:hover{
    color:#C2A004;
    background:linear-gradient(
        135deg,
        rgba(95,168,211,0.08),
        rgba(255,248,219,0.75)
    );
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transform:translateX(4px);
}

.sidebar-categoria-flecha{
    font-size:12px;
    opacity:.70;
    transition:transform .25s ease;
}

.sidebar-categoria-bloque.activo .sidebar-categoria-flecha{
    transform:rotate(90deg);
}

.sidebar-subcategorias{
    max-height:0;
    overflow:hidden;
    opacity:0;
    margin-top:0;
    padding:0 8px;
    transition:
        max-height .32s ease,
        opacity .22s ease,
        margin-top .22s ease;
}

.sidebar-categoria-bloque.activo .sidebar-subcategorias{
    max-height:340px;
    overflow-y:auto;
    overflow-x:hidden;
    opacity:1;
    margin-top:8px;
    padding-right:4px;
}

.sidebar-subcategoria-item{
    display:block;
    padding:10px 14px;
    margin-bottom:6px;
    border-radius:12px;
    color:#4A4A4A;
    text-decoration:none !important;
    font-size:14px;
    font-weight:600;
    background:rgba(255,255,255,0.58);
    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.sidebar-subcategoria-item:hover{
    color:#C2A004;
    background:rgba(255,248,219,0.90);
    box-shadow:0 6px 14px rgba(0,0,0,0.04);
    transform:translateX(3px);
}

.sidebar-subcategoria-empty{
    display:block;
    padding:10px 14px;
    color:#8A8A8A;
    font-size:13px;
    font-weight:600;
}

.sidebar-subcategoria-footer{
    padding:8px 6px 2px;
}

.sidebar-ver-todos-cat{
    display:block;
    padding:10px 14px;
    border-radius:12px;
    text-decoration:none !important;
    font-size:13px;
    font-weight:800;
    color:#C2A004;
    background:linear-gradient(
        135deg,
        rgba(255,248,219,0.78),
        rgba(255,255,255,0.92)
    );
    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.sidebar-ver-todos-cat:hover{
    color:#A88700;
    box-shadow:0 6px 14px rgba(0,0,0,0.04);
    transform:translateX(3px);
}

.sidebar-categoria-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    width:100%;
    padding:14px 14px;
    margin-bottom:8px;
    border-radius:16px;
    color:#2F2F2F;
    font-size:15px;
    font-weight:700;
    text-decoration:none !important;
    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease,
        color .18s ease;
}

.sidebar-categoria-item:hover{
    color:#C2A004;
    background:linear-gradient(
        135deg,
        rgba(95,168,211,0.08),
        rgba(255,248,219,0.75)
    );
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transform:translateX(4px);
}

.sidebar-categoria-item i{
    font-size:12px;
    opacity:.65;
}

.sidebar-divider{
    margin:10px 6px 12px;
}

.sidebar-categoria-todos{
    color:#C2A004 !important;
    font-weight:800;
    background:linear-gradient(
        135deg,
        rgba(255,248,219,0.72),
        rgba(255,255,255,0.85)
    );
}

.sidebar-categoria-empty{
    display:block;
    padding:14px;
    color:#7A7A7A;
    font-weight:600;
}

.nav-item-productos > .nav-link,
.nav-item-productos-mobile > .nav-link{
    cursor:pointer;
}

.sidebar-categoria-bloque.activo .sidebar-subcategorias::-webkit-scrollbar{
    width:8px;
}

.sidebar-categoria-bloque.activo .sidebar-subcategorias::-webkit-scrollbar-track{
    background:rgba(0,0,0,0.05);
    border-radius:999px;
}

.sidebar-categoria-bloque.activo .sidebar-subcategorias::-webkit-scrollbar-thumb{
    background:rgba(194,160,4,0.55);
    border-radius:999px;
}

.sidebar-categoria-bloque.activo .sidebar-subcategorias::-webkit-scrollbar-thumb:hover{
    background:rgba(194,160,4,0.80);
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px){
    .sidebar-productos{
        width:300px;
        max-width:90vw;
    }
}
/* =========================
   CARRITO
========================= */
.cart-icon-web{
    position:relative;
    margin-left:auto;
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2C2C2C !important;
    text-decoration:none !important;
    transition:.2s ease;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.88) 0%,
        rgba(255,255,255,0.75) 40%,
        rgba(255,255,255,0.80) 100%
    );

    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);

    border:1px solid rgba(255,255,255,0.45);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7),
        inset 0 0 12px rgba(0,0,0,0.06);
}

.cart-icon-web:hover{
    color:#5FA8D3 !important;
    transform:translateY(-1px);
}

.cart-icon-web i{
    font-size:18px;
}

.cart-badge{
    position:absolute;
    top:-6px;
    right:-6px;
    min-width:19px;
    height:19px;
    padding:0 5px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#F7DC6F,#C2A004);
    color:#fff;
    font-size:11px;
    font-weight:700;
    line-height:1;

    box-shadow:
        0 4px 10px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.4);

    border:2px solid #fff;
    text-shadow:0 1px 2px rgba(0,0,0,0.25);
}

.icono-grid{
    font-size:14px;
}
.drawer-nota-peso{
    display:block;
    margin-top:4px;
    color:#777;
    font-size:11px;
    line-height:1.35;
}
/* =========================
   MENU PRODUCTOS
========================= */
.nav-item-productos{
    position:relative;
}

.nav-link-productos{
    user-select:none;
}

.flecha-productos{
    font-size:11px;
    transition:transform .2s ease;
}

.nav-item-productos.open .flecha-productos{
    transform:rotate(180deg);
}

.nav-item-productos.open .nav-link-productos,
.nav-link-productos:hover{
    background:linear-gradient(
        135deg,
        rgba(95,168,211,0.10),
        rgba(95,168,211,0.15)
    );
    color:#C2A004 !important;
    text-shadow:0 1px 2px rgba(255,255,255,0.25);
}

.nav-item-productos.open .nav-link-productos i,
.nav-link-productos:hover i{
    color:#C2A004 !important;
}

.dropdown-productos-menu{
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    min-width:270px;
    padding:12px;
    border-radius:20px;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,255,255,0.85) 50%,
        rgba(255,255,255,0.90) 100%
    );

    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);

    border:1px solid rgba(255,255,255,0.45);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7),
        inset 0 0 12px rgba(0,0,0,0.06);

    z-index:5000;

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-item-productos.open .dropdown-productos-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-productos-menu .dropdown-item{
    position:relative;
    display:block;
    width:100%;
    padding:12px 16px;
    border-radius:14px;
    color:#2f2f2f;
    font-weight:700;
    text-decoration:none;
    background:transparent !important;
    transition:.22s ease;
    z-index:2;
}

.dropdown-productos-menu .dropdown-item:hover{
    background:linear-gradient(
        135deg,
        rgba(95,168,211,0.10),
        rgba(95,168,211,0.15)
    ) !important;
    color:#C2A004 !important;
    text-shadow:0 1px 2px rgba(255,255,255,0.25);
    transform:translateX(2px);
}

.dropdown-empty{
    cursor:default;
    color:#777 !important;
}

/* =========================
   NAVBAR MOVIL SIMPLE
========================= */
.navbar-mobile{
    display:none;
}

.nav-mobile-inner{
    width:100%;
    padding:10px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.nav-mobile-left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.nav-item-productos-mobile{
    position:relative;
}

.nav-icon-only{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    padding:0 !important;
    border-radius:11px;
}

.logo-web-mobile{
    height:42px;
    width:auto;
}

.cart-icon-web-mobile{
    width:38px;
    height:38px;
    flex:0 0 auto;
    margin-left:auto;
}

.dropdown-productos-menu-mobile{
    top:calc(100% + 10px);
    left:0;
    min-width:220px;
    max-width:260px;
}

/* =========================
   BOTONES GENERALES
========================= */
.btn-gold{
    background:linear-gradient(135deg,#F7DC6F,#C2A004);
    color:#fff !important;
    border:none;
    border-radius:30px;
    padding:12px 28px;
    font-weight:700;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff !important;
    border-radius:30px;
}

/* =========================
   BANNER ROTATIVO
========================= */
.hero-banner-wrap{
    padding:28px 0 34px;
    overflow:hidden;
}

.banner-carousel{
    position:relative;
}

.banner-inner{
    position:relative;
    border-radius:30px;
    overflow:hidden;

    backdrop-filter:blur(6px) saturate(120%);
    -webkit-backdrop-filter:blur(6px) saturate(120%);

    border:1px solid rgba(255,255,255,0.12);
}

.banner-inner::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:30px;
    pointer-events:none;
    z-index:2;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.35) 0%,
        rgba(255,255,255,0.12) 18%,
        rgba(255,255,255,0.04) 40%,
        rgba(255,255,255,0) 70%
    );
}

.banner-inner::after{
    content:"";
    position:absolute;
    top:-30%;
    left:-30%;
    width:30%;
    height:180%;
    transform:rotate(18deg);
    pointer-events:none;
    z-index:3;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.12) 30%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0.12) 70%,
        rgba(255,255,255,0) 100%
    );

    filter:blur(12px);
    opacity:.75;
    animation:brilloBanner 7s ease-in-out infinite;
}

@keyframes brilloBanner{
    0%{
        transform:translateX(-140%) rotate(18deg);
        opacity:0;
    }
    10%{
        opacity:.30;
    }
    45%{
        opacity:.55;
    }
    60%{
        opacity:.22;
    }
    100%{
        transform:translateX(520%) rotate(18deg);
        opacity:0;
    }
}

.banner-link{
    display:block;
    text-decoration:none;
}

.banner-img{
    display:block;
    width:100%;
    height:clamp(260px, 34vw, 520px);
    object-fit:cover;
    object-position:center;
    border-radius:30px;
    border:1.5px solid rgba(255,255,255,0.35);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18),
        0 4px 10px rgba(0,0,0,0.10),
        inset 0 1px 0 rgba(255,255,255,0.25);

    transition:transform 1.2s ease, filter .8s ease;
}

/* CONTROLES */
.banner-control{
    width:7%;
    opacity:.92;
}

.banner-control .carousel-control-prev-icon,
.banner-control .carousel-control-next-icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background-color:rgba(255,255,255,0.22);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    background-size:45% 45%;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

/* INDICADORES */
.banner-indicators{
    margin-bottom:14px;
}

.banner-indicators li{
    width:10px;
    height:10px;
    border-radius:50%;
    border:none;
    background:rgba(255,255,255,0.55);
    margin:0 5px;
    transition:.2s ease;
}

.banner-indicators .active{
    background:#F7DC6F;
    box-shadow:0 0 0 2px rgba(255,255,255,0.25);
}

/* TRANSICION PREMIUM BANNER */
.banner-carousel .carousel-item{
    opacity:0;
    transform:scale(1.015);
    transition:
        opacity .9s ease,
        transform 1.2s ease;
}

.banner-carousel .carousel-item.active,
.banner-carousel .carousel-item-next.carousel-item-left,
.banner-carousel .carousel-item-prev.carousel-item-right{
    opacity:1;
    transform:scale(1);
}

.banner-carousel .carousel-item-next,
.banner-carousel .carousel-item-prev,
.banner-carousel .carousel-item.active.carousel-item-left,
.banner-carousel .carousel-item.active.carousel-item-right{
    opacity:0;
    transform:scale(1.02);
}

.banner-carousel .carousel-item.active .banner-img{
    transform:scale(1);
}

.banner-carousel .carousel-item .banner-img{
    transform:scale(1.01);
}

/* =========================
   BENEFICIOS
========================= */
.beneficios-pro { /* 🔥 azul bonito */
    padding: 40px 0;
}

.beneficio-card {
    position: relative;
    height: 150px;
    border-radius: 20px;

    /* 🔥 EFECTO GLASS SUAVE */
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(255,255,255,0.25);

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);

    transition: all .25s ease;
}

/* HOVER SUAVE */
.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* ❌ ELIMINAMOS OVERLAY (ya no se usa) */
.beneficio-overlay {
    display: none;
}

.beneficio-content {
    position: relative;
    z-index: 2;
    color: #333; /* 🔥 ahora oscuro para fondo claro */
    text-align: center;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beneficio-content i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #C2A004; /* dorado elegante */
}

.beneficio-content h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}
/* =========================
   OFERTAS
========================= */
.ofertas{
    padding:60px 0;
}
.ofertas-header h2{
    color:#fff;
}

.ofertas-vermas{
    color:#fff;
}

.ofertas-vermas:hover{
    color:#F7DC6F;
}
/* =========================
   OFERTAS - ESPACIADO
========================= */
.ofertas .row{
    margin-left:-3px;
    margin-right:-3px;
}

.ofertas .row > div{
    padding-left:3px;
    padding-right:3px;
}

/* =========================
   HEADER OFERTAS
========================= */
.ofertas-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.ofertas-header h2{
    margin:0;
    font-size:26px;
    font-weight:700;
    color:#fff;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.35),
        0 6px 14px rgba(0,0,0,0.28),
        0 0 2px rgba(0,0,0,0.25);
}

.ofertas-vermas{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.16);
    border:1px solid rgba(255,255,255,0.22);
    color:#fff;
    padding:10px 18px;
    border-radius:18px;
    font-weight:700;
    font-size:14px;
    text-decoration:none !important;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:.25s ease;
}

.ofertas-vermas:hover{
    color:#fff;
    text-decoration:none !important;
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(0,0,0,0.12);
}

/* =========================
   CARRUSEL OFERTAS
========================= */
.ofertas-carousel{
    position:relative;
        padding:10px 34px 18px;
        overflow:visible;
    }
    
    .ofertas-carousel .carousel-inner,
    .ofertas-carousel .carousel-item{
        overflow:visible;
    }

/* CONTROLES */
.ofertas-control{
    position:absolute !important;
    top:50% !important;
    bottom:auto !important;

    width:38px;
    height:38px;

    display:flex !important;
    align-items:center;
    justify-content:center;

    opacity:1;
    transform:translateY(-50%);
    z-index:20;
}

.ofertas-control.carousel-control-prev{
    left:-10px !important;
}

.ofertas-control.carousel-control-next{
    right:-10px !important;
}

.ofertas-control .carousel-control-prev-icon,
.ofertas-control .carousel-control-next-icon{
    width:32px;
    height:32px;
    border-radius:50%;
    background-color:rgba(255,255,255,0.96);
    background-size:55% 55%;
    box-shadow:0 6px 14px rgba(0,0,0,0.12);
}
/* =========================
   CARD PRODUCTO
========================= */
.card-producto{
    position:relative;
    overflow:hidden;

    width:100%;
    margin-left:0;
    padding:20px 14px 18px;
    height:100%;

    border-radius:22px;

    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(16px) saturate(135%);
    -webkit-backdrop-filter:blur(16px) saturate(135%);

    border:1.4px solid rgba(0,0,0,0.14);

    box-shadow:
        0 8px 18px rgba(0,0,0,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.55);

    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card-producto h5{
    text-shadow:0 1px 2px rgba(255,255,255,0.6);
}

.card-producto .precio{
    text-shadow:0 2px 6px rgba(255,255,255,0.45);
}

.precio-anterior{
    text-shadow:0 1px 3px rgba(255,255,255,0.4);
}

/* CAPA SUPERIOR TIPO VIDRIO */
.card-producto::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:22px;
    pointer-events:none;
    z-index:1;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.50) 0%,
        rgba(255,255,255,0.22) 16%,
        rgba(255,255,255,0.08) 36%,
        rgba(255,255,255,0) 72%
    );
}

/* BRILLO DIAGONAL */
.card-producto::before{
    content:"";
    position:absolute;
    top:-40%;
    left:-110%;
    width:65%;
    height:200%;
    pointer-events:none;
    z-index:3;

    background:linear-gradient(
        115deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.12) 25%,
        rgba(255,255,255,0.65) 50%,
        rgba(255,255,255,0.18) 75%,
        rgba(255,255,255,0) 100%
    );

    transform:skewX(-22deg);
    filter:blur(10px);
    opacity:0;
}

.card-clickable{
    cursor:pointer;
}
/* HOVER */
.card-producto:hover{
    transform:translateY(-4px);
    border-color:rgba(0,0,0,0.20);
    box-shadow:
        0 10px 20px rgba(0,0,0,0.10),
        inset 0 0 0 1px rgba(255,255,255,0.75);
}

.card-producto:hover::before{
    left:160%;
    opacity:1;
    transition:
        left 5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity .25s ease;
}
/* =========================
   CONTENIDO SOBRE EL VIDRIO
========================= */
.card-producto img,
.card-producto h5,
.precio-anterior,
.card-producto .precio,
.card-actions{
    position:relative;
    z-index:2;
}

/* =========================
   IMAGEN
========================= */
.card-producto img{
    width:100%;
    max-width:130px;
    height:130px;
    object-fit:contain;
    margin:0 auto 12px;
    display:block;
}

/* =========================
   TITULO
========================= */
.card-producto h5{
    font-family:'Segoe UI',sans-serif;
    font-weight:500;
    font-size:13px;
    color:#2b2b2b;
    letter-spacing:0.4px;
    line-height:1.35;
    min-height:35px;
    max-height:35px;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    text-overflow:ellipsis;
}

/* =========================
   PRECIOS
========================= */
.precio-anterior{
    font-size:14px;
    color:#999;
    text-decoration:line-through;
    margin-bottom:4px;
}

.card-producto .precio{
    font-size:26px;
    font-weight:700;
    color:#000;
    margin-bottom:14px;
}

/* =========================
   ACCIONES
========================= */
.card-actions{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:10px;
}

/* INPUT */
.input-cantidad{
    width:55px;
    height:42px;
    border-radius:12px;
    border:1px solid rgba(194,160,4,0.28);
    background:rgba(255,255,255,0.88);
    text-align:center;
    font-weight:600;
    color:#2b2b2b;
    outline:none;
}

.input-cantidad:focus{
    border-color:#C2A004;
    box-shadow:0 0 0 2px rgba(194,160,4,0.15);
}

/* BOTÓN */
.btn-agregar{
    flex:1;
    height:42px;
    background:linear-gradient(135deg,#C2A004,#F7DC6F);
    color:#000;
    border:none;
    border-radius:12px;
    font-weight:700;
    transition:.25s ease;
    position:relative;
    z-index:2;
}

.btn-agregar:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(194,160,4,0.28);
}

/* =========================
   MENSAJE TOAST
========================= */
.toast-carrito{
    position:fixed;
    top:90px;
    right:-280px;

    padding:12px 22px;
    border-radius:18px;

    font-weight:600;
    font-size:14px;
    color:#1f2d1f;

    background:rgba(40,199,111,0.8);
    border:1px solid rgba(40,199,111,0.45);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(40,199,111,0.35);

    box-shadow:
        0 10px 22px rgba(40,199,111,0.18),
        inset 0 1px 0 rgba(255,255,255,0.5);

    opacity:0;
    pointer-events:none;

    transition:all .4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index:9999;

    text-shadow:0 1px 4px rgba(255,255,255,0.7);
}

.toast-carrito::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.35),
        rgba(255,255,255,0.05)
    );
    pointer-events:none;
}

.toast-carrito.show{
    right:20px;
    opacity:1;
}
/* =========================
   SLIDER OFERTAS SIN BOOTSTRAP
========================= */
.ofertas-slider-wrap{
    position:relative;
    padding:18px 34px 18px;
}

.ofertas-viewport{
    overflow:hidden;
    width:100%;
    padding-top:8px;
}

.ofertas-track{
    display:flex;
    gap:0;
    transition:transform .38s ease;
    will-change:transform;
}

.ofertas-slide{
    flex:0 0 16.666667%;
    max-width:16.666667%;
    padding-left:3px;
    padding-right:3px;
    box-sizing:border-box;
}

.ofertas-slide .card-producto{
    height:100%;
}

/* FLECHAS */
.ofertas-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:20;

    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.96);
    box-shadow:0 6px 14px rgba(0,0,0,0.12);
    color:#7a7a7a;
    transition:.22s ease;
}

.ofertas-arrow:hover{
    transform:translateY(-50%) scale(1.06);
    color:#C2A004;
}

.ofertas-arrow span{
    font-size:24px;
    line-height:1;
    margin-top:-2px;
}

.ofertas-arrow-prev{
    left:-10px;
}

.ofertas-arrow-next{
    right:-10px;
}

.ofertas-arrow[disabled]{
    opacity:.45;
    cursor:default;
    pointer-events:none;
}

/* TABLET */
@media (max-width: 991px){
    .ofertas-slider-wrap{
        padding:10px 22px 18px;
    }

    .ofertas-slide{
        flex:0 0 33.333333%;
        max-width:33.333333%;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .ofertas-slider-wrap{
        padding:8px 18px 16px;
    }

    .ofertas-slide{
        flex:0 0 50%;
        max-width:50%;
    }

    .ofertas-arrow{
        width:30px;
        height:30px;
    }

    .ofertas-arrow span{
        font-size:20px;
    }
}
/* =========================
   RESPONSIVE OFERTAS
========================= */
@media (max-width:991px){
    .ofertas-carousel{
        padding:10px 22px 18px;
    }

    .ofertas-header h2{
        font-size:22px;
    }

    .ofertas-vermas{
        font-size:13px;
    }
}

@media (max-width:768px){
    .ofertas-header{
        margin-bottom:18px;
        align-items:flex-start;
    }

    .ofertas-header h2{
        font-size:20px;
    }

    .ofertas-vermas{
        padding:8px 14px;
        font-size:13px;
    }

    .ofertas-carousel{
        padding:8px 18px 16px;
    }

    .ofertas-control .carousel-control-prev-icon,
    .ofertas-control .carousel-control-next-icon{
        width:24px;
        height:24px;
    }
}
/* =========================
   DATOS TIENDA FISICA
========================= */
.bloque-info{
    padding:50px 20px;
}

/* CONTENEDOR */
.info-grid{
    align-items:stretch;
}

/* TARJETAS (MISMO EFECTO BENEFICIOS 🔥) */
.info-card{
    height:100%;
    border-radius:20px;

    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);

    border:1px solid rgba(255,255,255,0.3);

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    padding:25px 20px;

    display:flex;
    flex-direction:column;
    justify-content:center; /* 🔥 CENTRADO VERTICAL */
    text-align:center;

    transition:all .25s ease;
}

.info-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

/* TITULOS */
.titulo-seccion{
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    color:#333;
    margin-bottom:10px;
}

/* DIRECCIÓN */
.direccion a{
    color:#000;
    font-weight:600;
    text-decoration:none;
}

.direccion a:hover{
    text-decoration:underline;
}

/* MAPA */
.mapa-box{
    margin:15px auto 0;
    width:220px;
    height:220px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.mapa-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* HORARIO */
.horario{
    font-size:14px;
    color:#222;
}

.titulo-dia{
    font-weight:600;
}

.colacion{
    font-size:12px;
    color:#444;
}

.cerrado{
    font-weight:600;
}

/* 📱 MOBILE */
@media (max-width:768px){
    .info-col{
        margin-bottom:24px;
    }

    .info-col:last-child{
        margin-bottom:0;
    }

    .info-card{
        height:auto;
    }
}
/* =========================
   FOOTER
========================= */
.footer{
    background:#2C2C2C;
    color:#fff;
    padding:20px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:991px){

    body{
        padding-top:75px;
    }

    .navbar-desktop{
        display:none !important;
    }

    .navbar-mobile{
        display:block !important;
    }

    .nav-mobile-inner{
        padding:5px 12px;
        min-height:8px;
    }

    .nav-mobile-left{
        gap:8px;
    }

    .nav-icon-only{
        width:40px;
        height:40px;
        border-radius:12px;
        padding:0 !important;
    }

    .nav-item-productos-mobile .icono-grid{
        display:none;
    }

    .nav-item-productos-mobile .nav-icon-only::before{
        content:"";
        display:block;
        width:22px;
        height:22px;
        transform:translate(9.5px, 9.5px);
        background-repeat:no-repeat;
        background-position:center;
        background-size:contain;
        background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='5' y='5' width='30' height='30' rx='6' fill='none' stroke='%23C2A004' stroke-width='6'/%3E%3Ccircle cx='75' cy='20' r='15' fill='none' stroke='%23C2A004' stroke-width='6'/%3E%3Cpolygon points='10,80 35,45 60,80' fill='none' stroke='%23C2A004' stroke-width='6' stroke-linejoin='round'/%3E%3Crect x='60' y='55' width='30' height='30' rx='6' fill='none' stroke='%23C2A004' stroke-width='6'/%3E%3C/svg%3E");
    }

    .logo-web-mobile{
        height:36px;
        width:auto;
    }

    .cart-icon-web-mobile{
        width:38px;
        height:38px;
    }

    .cart-icon-web-mobile i{
        font-size:17px;
    }

    .cart-badge{
        top:-4px;
        right:-4px;
        min-width:18px;
        height:18px;
        font-size:10px;
    }

    .dropdown-productos-menu-mobile{
        top:calc(100% + 8px);
        left:0;
        min-width:220px;
        max-width:250px;
    }

    .hero-banner-wrap{
        padding:14px 0 20px;
    }

    .banner-inner,
    .banner-img{
        border-radius:20px;
    }

    .banner-img{
        height:clamp(180px, 42vw, 280px);
    }

    .banner-control{
        width:12%;
    }

    .banner-control .carousel-control-prev-icon,
    .banner-control .carousel-control-next-icon{
        width:30px;
        height:30px;
    }

    .banner-indicators{
        margin-bottom:8px;
    }

    .beneficios{
        padding:38px 0;
    }
}

@media (min-width:992px){
    .navbar-mobile{
        display:none !important;
    }

    .navbar-desktop{
        display:flex !important;
    }
}

@media (max-width:768px){

    .beneficios-pro{
        padding: 22px 0;
        overflow: hidden;
    }

    .beneficios-pro .container{
        padding-left: 10px;
        padding-right: 10px;
    }

    .beneficios-pro .row{
        display: flex;
        flex-wrap: nowrap;
        margin-left: 0;
        margin-right: 0;
    }

    .beneficios-pro .col-md-4{
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
        padding-left: 4px;
        padding-right: 4px;
    }

    .beneficio-card{
        height: 102px;
        border-radius: 16px;
        width: 100%;
    }

    .beneficio-content{
        padding: 8px 6px;
    }

    .beneficio-content i{
        font-size: 18px;
        margin-bottom: 6px;
    }

    .beneficio-content h5{
        font-size: 10px;
        line-height: 1.15;
        margin: 0;
    }
}
/* =========================
   DRAWER CARRITO
========================= */
.drawer-carrito{
    position:fixed;
    top:0;
    right:0;
    width:100%;
    height:100%;
    z-index:99999;
    pointer-events:none;
}

.drawer-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
    opacity:0;
    transition:.3s ease;
}

.drawer-panel{
    position:absolute;
    top:0;
    right:-380px;
    width:340px;
    height:100%;
    background:#fff;
    box-shadow:-10px 0 30px rgba(0,0,0,0.2);
    display:flex;
    flex-direction:column;
    transition:.35s ease;
}

.drawer-carrito.open{
    pointer-events:auto;
}

.drawer-carrito.open .drawer-overlay{
    opacity:1;
}

.drawer-carrito.open .drawer-panel{
    right:0;
}

/* HEADER */
.drawer-header{
    padding:18px;
    border-bottom:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.drawer-header h4{
    margin:0;
    font-weight:800;
}

.drawer-header button{
    border:none;
    background:none;
    font-size:22px;
    cursor:pointer;
}

/* BODY */
.drawer-body{
    flex:1;
    overflow:auto;
    padding:15px;
}

/* ITEM */
.drawer-item{
    display:flex;
    gap:10px;
    margin-bottom:12px;
    padding-bottom:12px;
    border-bottom:1px solid #eee;
}

.drawer-item img{
    width:60px;
    height:60px;
    object-fit:contain;
}

.drawer-item h6{
    margin:0;
    font-size:13px;
    font-weight:700;
}

.drawer-item span{
    font-size:13px;
    color:#C2A004;
    font-weight:700;
}

/* FOOTER */
.drawer-footer{
    padding:15px;
    border-top:1px solid #eee;
}

.btn-finalizar{
    display:block;
    width:100%;
    text-align:center;
    padding:12px;
    border-radius:30px;
    background:linear-gradient(135deg,#F7DC6F,#C2A004);
    color:#fff !important;
    font-weight:700;
    text-decoration:none;
}
/* =========================
   DRAWER CARRITO PRO
========================= */
.drawer-carrito{
    position:fixed;
    inset:0;
    z-index:99999;
    pointer-events:none;
}

.drawer-carrito.open{
    pointer-events:auto;
}

.drawer-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.34);
    opacity:0;
    transition:opacity .28s ease;
}

.drawer-carrito.open .drawer-overlay{
    opacity:1;
}

.drawer-panel{
    position:absolute;
    top:0;
    right:-390px;
    width:360px;
    max-width:92vw;
    height:100%;
    background:linear-gradient(180deg,#ffffff,#fcfcfc);
    box-shadow:-16px 0 36px rgba(0,0,0,0.18);
    display:flex;
    flex-direction:column;
    transition:right .32s ease;
}

.drawer-carrito.open .drawer-panel{
    right:0;
}

.drawer-header{
    padding:18px 18px 16px;
    border-bottom:1px solid #ececec;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:linear-gradient(135deg,#fffdf5,#fff8db);
}

.drawer-header h4{
    margin:0;
    font-size:20px;
    font-weight:800;
    color:#2b2b2b;
}

.drawer-header button{
    width:34px;
    height:34px;
    border:none;
    border-radius:12px;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    font-size:22px;
    line-height:1;
    cursor:pointer;
}

.drawer-body{
    flex:1;
    overflow:auto;
    padding:14px;
}

.drawer-item{
    display:flex;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #efefef;
}

.drawer-item img{
    width:64px;
    height:64px;
    object-fit:contain;
    border-radius:14px;
    background:#fff;
    border:1px solid #efefef;
    flex:0 0 64px;
}

.drawer-item-info{
    flex:1;
    min-width:0;
}

.drawer-item-info h6{
    margin:0 0 4px;
    font-size:13px;
    font-weight:800;
    line-height:1.35;
    color:#2b2b2b;

    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.drawer-item-info small{
    display:block;
    color:#7e7e7e;
    font-size:12px;
    margin-bottom:8px;
}

.drawer-item-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:8px;
}

.drawer-cantidad-box{
    display:flex;
    align-items:center;
    gap:8px;
    background:#f8f8f8;
    border:1px solid #ececec;
    border-radius:14px;
    padding:4px 6px;
}

.drawer-btn-cant{
    width:28px;
    height:28px;
    border:none;
    border-radius:10px;
    background:#fff;
    color:#2b2b2b;
    font-size:18px;
    font-weight:700;
    line-height:1;
    cursor:pointer;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.drawer-btn-cant:hover{
    color:#C2A004;
}

.drawer-cantidad{
    min-width:24px;
    text-align:center;
    font-size:13px;
    font-weight:800;
    color:#2b2b2b;
}

.drawer-btn-eliminar{
    width:34px;
    height:34px;
    border:none;
    border-radius:12px;
    background:#fff5f5;
    color:#d9534f;
    cursor:pointer;
}

.drawer-btn-eliminar:hover{
    background:#ffecec;
}

.drawer-subtotal{
    font-size:16px;
    font-weight:800;
    color:#C2A004;
}

.drawer-resumen{
    margin-top:14px;
    padding:16px;
    border-radius:18px;
    background:linear-gradient(135deg,#fff,#fffdf6);
    border:1px solid rgba(194,160,4,0.14);
}

.drawer-resumen-linea{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:8px;
    color:#555;
    font-size:14px;
}

.drawer-resumen-linea.total{
    margin-top:10px;
    padding-top:10px;
    border-top:1px dashed rgba(194,160,4,0.22);
    font-size:18px;
    font-weight:800;
    color:#2b2b2b;
}

.drawer-footer{
    padding:14px;
    border-top:1px solid #ececec;
    background:#fff;
}

.btn-finalizar{
    display:block;
    width:100%;
    text-align:center;
    padding:13px 16px;
    border-radius:30px;
    background:linear-gradient(135deg,#F7DC6F,#C2A004);
    color:#fff !important;
    font-weight:800;
    text-decoration:none !important;
    box-shadow:0 8px 18px rgba(194,160,4,0.24);
}

.drawer-vacio{
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
    color:#777;
    gap:10px;
}

.drawer-vacio i{
    font-size:40px;
    color:#C2A004;
}
/* =========================
   PRODUCTOS
========================= */

.producto-detalle-wrap{
    padding:32px 0 50px;
    min-height:100vh;
}

.volver-link{
    display:inline-block;
    margin-bottom:18px;
    color:#fff;
    font-weight:700;
    text-decoration:none;
}

.volver-link:hover{
    color:#fff;
    text-decoration:underline;
}

/* GRID GENERAL */
.producto-grid{
    align-items:flex-start;
    margin-left:-10px;
    margin-right:-10px;
}

.producto-grid > .col-lg-6{
    display:flex;
    padding-left:10px;
    padding-right:10px;
}

/* TARJETA IMAGEN */
.producto-card-img{
    width:100%;
    aspect-ratio:1 / 1;
    margin:0;

    background:#fff;
    border-radius:28px;
    padding:0;
    overflow:hidden;

    box-shadow:0 12px 28px rgba(0,0,0,0.10);
    flex:1 1 auto;
}

/* TARJETA INFO */
.producto-card-info{
    width:100%;
    margin:0;

    background:#fff;
    border-radius:28px;
    padding:26px 24px;
    box-shadow:0 12px 28px rgba(0,0,0,0.10);
    height:auto;

    flex:1 1 auto;
}

/* TEXTOS */
.producto-marca{
    font-size:15px;
    font-weight:600;
    color:#666;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.producto-nombre{
    font-size:28px;
    line-height:1.15;
    font-weight:800;
    color:#1f1f1f;
    margin-bottom:18px;
}

.producto-presentacion{
    font-size:18px;
    font-weight:700;
    color:#d81f26;
    margin-bottom:20px;
}

.producto-linea{
    height:1px;
    background:rgba(0,0,0,0.10);
    margin:16px 0 20px;
}

.producto-precio-base{
    font-size:18px;
    color:#666;
    margin-bottom:6px;
}

.producto-precio-anterior{
    font-size:20px;
    color:#999;
    text-decoration:line-through;
    margin-bottom:4px;
}

.producto-precio{
    font-size:56px;
    font-weight:800;
    color:#111;
    line-height:1.05;
    margin-bottom:8px;
}

.producto-precio-detalle{
    display:block;
    font-size:17px;
    font-weight:600;
    color:#444;
    margin-top:10px;
    line-height:1.35;
}

.producto-aprox{
    font-size:13px;
    line-height:1.5;
    color:#666;
    background:rgba(247,220,111,0.20);
    border:1px solid rgba(194,160,4,0.24);
    border-radius:14px;
    padding:12px 14px;
    margin:16px 0 18px;
}

/* ACCIONES */
.producto-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:nowrap;
    margin-top:6px;
}

.producto-actions .input-cantidad{
    width:86px;
    min-width:86px;
    height:54px;
    border-radius:16px;
    border:1px solid rgba(194,160,4,0.28);
    background:#fff;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#2b2b2b;
    outline:none;
    box-shadow:none;
}

.producto-actions .input-cantidad:focus{
    border-color:#C2A004;
    box-shadow:0 0 0 2px rgba(194,160,4,0.15);
}

.producto-actions .producto-btn{
    flex:1;
    height:54px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#F7DC6F,#C2A004);
    color:#000;
    font-size:18px;
    font-weight:800;
    transition:.2s ease;
}

.producto-actions .producto-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(194,160,4,0.25);
}

/* MOBILE */
@media (max-width:991px){

    .producto-card-info{
        padding:22px 20px;
    }

    .producto-nombre{
        font-size:24px;
    }

    .producto-precio{
        font-size:44px;
    }
}

@media (max-width:767px){

    .producto-detalle-wrap{
        padding:20px 0 35px;
    }

    .producto-grid{
        margin-left:0;
        margin-right:0;
    }

    .producto-grid > .col-lg-6{
        display:block;
        padding-left:0;
        padding-right:0;
    }

    .producto-card-img{
        width:100%;
        aspect-ratio:1 / 1;
        margin-bottom:16px;
        border-radius:22px;
    }

    .producto-card-info{
        width:100%;
        padding:18px 16px;
        border-radius:22px;
    }

    .producto-marca{
        font-size:14px;
    }

    .producto-nombre{
        font-size:20px;
    }

    .producto-presentacion{
        font-size:16px;
    }

    .producto-precio{
        font-size:36px;
    }

    .producto-precio-detalle{
        font-size:15px;
    }

    .producto-actions{
        gap:10px;
    }

    .producto-actions .input-cantidad{
        width:76px;
        min-width:76px;
        height:48px;
        font-size:17px;
    }

    .producto-actions .producto-btn{
        height:48px;
        font-size:16px;
        border-radius:16px;
    }
}

/* =========================
   SEO INTRO (ARRIBA)
========================= */
.seo-intro{
    padding:28px 0 8px;
    background:transparent;
    color:#fff;
    text-align:center;
}

.seo-intro h1{
    margin:0 0 10px;
    font-family:'Baloo 2', sans-serif;
    font-size:34px;
    font-weight:800;
    line-height:1.1;
    color:#ffffff;
}

.seo-intro p{
    max-width:880px;
    margin:0 auto;
    font-size:16px;
    line-height:1.7;
    color:#eef8ff;
}

.seo-contenido{
    padding:42px 0 30px;
    background:transparent;
    color:#fff;
}

.seo-contenido .seo-box{
    background:rgba(255,255,255,0.28);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,0.35);
    border-radius:22px;

    padding:28px 26px;

    box-shadow:
        0 18px 38px rgba(0,0,0,0.28),
        0 0 24px rgba(0,0,0,0.18);
}

.seo-contenido h2{
    margin:0 0 12px;
    font-family:'Baloo 2', sans-serif;
    font-size:30px;
    font-weight:800;
    line-height:1.1;

    color:#1E293B;

    text-shadow:
        0 2px 6px rgba(255,255,255,.35);
}

.seo-contenido p{
    margin:0 0 14px;
    font-size:16px;
    line-height:1.75;

    color:#374151;

    text-shadow:none;
}

.seo-contenido p:last-child{
    margin-bottom:0;
}

/* =========================
   CATALOGO
========================= */

.catalogo-wrap{
    min-height:100vh;
    padding:60px 0;
}

/* ESTRUCTURA */
.catalogo-wrap .catalogo-layout{
    display:flex;
    width:100%;
    align-items:flex-start;
}

.catalogo-wrap .catalogo-lateral{
    width:130px;
    min-width:130px;
    flex:0 0 130px;
}

.catalogo-wrap .catalogo-lateral-izq,
.catalogo-wrap .catalogo-lateral-der{
    min-height:20px;
}

.catalogo-wrap .catalogo-contenido{
    flex:1;
    min-width:0;
}

/* TOOLBAR */
.catalogo-wrap .catalogo-toolbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.catalogo-wrap .catalogo-head{
    color:#fff;
    margin-bottom:0;
}

.catalogo-wrap .catalogo-head h1{
    margin:0;
    font-size:26px;
    font-weight:700;
    color:#fff;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.35),
        0 6px 14px rgba(0,0,0,0.28),
        0 0 2px rgba(0,0,0,0.25);
}

/* FILTRO */
.catalogo-wrap .catalogo-filtro{
    display:flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.16);
    border:1px solid rgba(255,255,255,0.22);
    color:#fff;
    padding:8px 14px;
    border-radius:18px;
    font-weight:600;
    font-size:13px;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    position:relative;
}

.catalogo-wrap .catalogo-filtro label{
    margin:0;
    color:#fff;
    font-weight:700;
    font-size:13px;
    white-space:nowrap;
}

.catalogo-wrap .catalogo-filtro::after{
    content:"▼";
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    font-size:10px;
    color:#555;
    pointer-events:none;
}

.catalogo-wrap .catalogo-filtro select{
    min-width:230px;
    height:40px;
    border-radius:14px;
    padding:0 40px 0 14px;
    background:linear-gradient(135deg,#ffffff,#f3f3f3);
    color:#2b2b2b;
    font-size:13px;
    font-weight:700;
    border:1px solid rgba(0,0,0,0.08);
    appearance:none;
    outline:none;
    box-shadow:
        0 4px 10px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);
    cursor:pointer;
}

.catalogo-wrap .catalogo-filtro select:hover{
    box-shadow:
        0 6px 14px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.catalogo-wrap .catalogo-filtro select:focus{
    border:1px solid #C2A004;
    box-shadow:
        0 0 0 2px rgba(194,160,4,0.2),
        0 6px 14px rgba(0,0,0,0.12);
}

/* GRID PRODUCTOS */
.catalogo-wrap .catalogo-slider-wrap{
    position:relative;
    padding:18px 0 0;
}

.catalogo-wrap .catalogo-viewport{
    width:100%;
    overflow:visible;
    padding-top:8px;
}

.catalogo-wrap .catalogo-track{
    display:flex;
    flex-wrap:wrap;
    margin-left:-3px;
    margin-right:-3px;
}

.catalogo-wrap .catalogo-slide{
    flex:0 0 16.666667%;
    max-width:16.666667%;
    padding-left:9px;
    padding-right:9px;
    margin-bottom:22px;
    box-sizing:border-box;
}

.catalogo-wrap .catalogo-slide .card-producto{
    height:100%;
}

.catalogo-wrap .catalogo-label-precio{
    font-size:14px;
    color:#999;
    margin-bottom:4px;
}

/* VACIO */
.catalogo-wrap .catalogo-empty{
    background:rgba(255,255,255,0.92);
    border-radius:22px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.catalogo-wrap .catalogo-empty i{
    font-size:42px;
    color:#C2A004;
    margin-bottom:12px;
}

.catalogo-wrap .catalogo-empty h4{
    font-weight:800;
    margin-bottom:8px;
    color:#2b2b2b;
}

.catalogo-wrap .catalogo-empty p{
    margin:0;
    color:#666;
}

/* PAGINACION */
.catalogo-wrap .paginacion-catalogo{
    margin-top:10px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

.catalogo-wrap .paginacion-catalogo a,
.catalogo-wrap .paginacion-catalogo span{
    min-width:42px;
    height:42px;
    padding:0 14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-weight:700;
}

.catalogo-wrap .paginacion-catalogo a{
    background:rgba(255,255,255,0.92);
    color:#2b2b2b;
}

.catalogo-wrap .paginacion-catalogo a:hover{
    transform:translateY(-2px);
    color:#C2A004;
}

.catalogo-wrap .paginacion-catalogo span.activo{
    background:linear-gradient(135deg,#F7DC6F,#C2A004);
    color:#000;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1199px){
    .catalogo-wrap .catalogo-layout{
        display:block;
    }

    .catalogo-wrap .catalogo-lateral{
        display:none;
    }

    .catalogo-wrap .catalogo-slide{
        flex:0 0 33.333%;
        max-width:33.333%;
    }
}

@media (max-width:767px){
    .catalogo-wrap{
        padding:40px 0;
    }

    .catalogo-wrap .catalogo-toolbar{
        position:sticky;
        top:60px;
        z-index:50;
        padding:10px 0;
    }

    .catalogo-wrap .catalogo-head h1{
        font-size:22px;
    }

    .catalogo-wrap .catalogo-slide{
        flex:0 0 50%;
        max-width:50%;
    }

    .catalogo-wrap .catalogo-filtro{
        width:100%;
        justify-content:space-between;
    }

    .catalogo-wrap .catalogo-filtro select{
        width:100%;
    }
}
/* =========================
   PRODUCTO DETALLE
========================= */

.producto-detalle-wrap .producto-img-cuadro{
    position:relative;
    width:100%;
    margin:0;
    padding:0;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    aspect-ratio:1 / 1;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.producto-detalle-wrap .producto-img-cuadro .carousel,
.producto-detalle-wrap .producto-img-cuadro .carousel-inner,
.producto-detalle-wrap .producto-img-cuadro .carousel-item{
    width:100%;
    height:100%;
    border-radius:24px;
}

.producto-detalle-wrap .producto-img-cuadro .carousel-item{
    text-align:center;
    background:#f5f5f5;
}

.producto-detalle-wrap .producto-img-cuadro .carousel-item img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
    margin:0;
    background:#f5f5f5;
}

/* CONTROLES */
.producto-detalle-wrap .producto-img-cuadro .carousel-control-prev,
.producto-detalle-wrap .producto-img-cuadro .carousel-control-next{
    width:12%;
    opacity:1;
}

.producto-detalle-wrap .producto-img-cuadro .carousel-control-prev-icon,
.producto-detalle-wrap .producto-img-cuadro .carousel-control-next-icon{
    background-color:rgba(0,0,0,0.45);
    border-radius:50%;
    background-size:55% 55%;
    width:42px;
    height:42px;
}

/* INDICADORES */
.producto-detalle-wrap .producto-img-cuadro .carousel-indicators{
    bottom:10px;
}

.producto-detalle-wrap .producto-img-cuadro .carousel-indicators li{
    width:10px;
    height:10px;
    border-radius:50%;
    border:none;
    background:#d4d4d4;
    opacity:1;
}

.producto-detalle-wrap .producto-img-cuadro .carousel-indicators .active{
    background:#C2A004;
}

/* MOBILE */
@media (max-width:575px){
    .producto-detalle-wrap .producto-img-cuadro{
        border-radius:18px;
    }

    .producto-detalle-wrap .producto-img-cuadro .carousel,
    .producto-detalle-wrap .producto-img-cuadro .carousel-inner,
    .producto-detalle-wrap .producto-img-cuadro .carousel-item{
        border-radius:18px;
    }
}
/* =========================
   BADGE OFERTA (FLOAT FOTO)
========================= */
.badge-oferta{
    position:absolute;
    top:10px;   /* altura de la foto */
    right:12px;  /* pegado al borde derecho */

    z-index:6;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:4px 10px;
    border-radius:999px;

    font-size:11px;
    font-weight:800;
    letter-spacing:.5px;

    color:#fff;
    background:linear-gradient(135deg,#ef4444,#b91c1c);

    box-shadow:
        0 6px 14px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.3);

    pointer-events:none;
}
/* =========================
   TITULO
========================= */
.card-producto h5.catalogo-nombre-producto{
    font-family:'Segoe UI',sans-serif;
    font-weight:500;
    font-size:13px;
    color:#2b2b2b;
    letter-spacing:0.4px;
    line-height:18px;

    height:36px;
    max-height:36px;
    overflow:hidden;

    position:relative;
    display:block !important;
}

.card-producto h5.catalogo-nombre-producto .catalogo-nombre-texto{
    display:block !important;
    width:100%;
    padding-right:0;
    box-sizing:border-box;

    font-weight:500;
    overflow:hidden;
}

.card-producto h5.catalogo-nombre-producto .catalogo-contenido-texto{
    position:absolute !important;
    right:0;
    bottom:0;

    display:inline-block !important;
    font-weight:800;
    color:#1E3A8A;
    white-space:nowrap;
    background:#eef8ff;
    padding-left:4px;
}
/* =========================
   BADGE OFERTA (PRODUCTO DETALLE)
========================= */
.producto-detalle-wrap .badge-oferta{
    position:absolute;
    top:14px;
    right:14px;

    font-size:17px;
    padding:10px 18px;
    border-radius:22px;

    font-weight:800;
    letter-spacing:0.6px;

    background:linear-gradient(135deg,#ff3b3b,#c40000);
    color:#fff;

    box-shadow:0 8px 18px rgba(0,0,0,0.25);
    z-index:5;
}
/* BADGE SOLO PARA PRODUCTO DETALLE */
.badge-oferta-detalle{
    position:absolute;
    top:16px;
    right:16px;

    font-size:18px;
    padding:10px 18px;
    border-radius:24px;

    font-weight:800;
    letter-spacing:0.6px;

    background:linear-gradient(135deg,#ff3b3b,#c40000);
    color:#fff;

    box-shadow:0 10px 22px rgba(0,0,0,0.28);
    z-index:10;
}
/* BADGE CENTRADO SOLO PRIMERA IMAGEN */
.badge-oferta-centro{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    font-size:22px;
    padding:12px 24px;
    border-radius:30px;

    font-weight:800;
    letter-spacing:0.6px;

    background:linear-gradient(135deg,#ff3b3b,#c40000);
    color:#fff;

    box-shadow:0 12px 30px rgba(0,0,0,0.35);
    z-index:10;

    pointer-events:none; /* no molesta clicks */
}
/* BADGE PRECIO UNITARIO */
.badge-precio-unitario{
    position:absolute;
    left:50%;
    bottom:70px;
    transform:translateX(-50%);

    min-width:58%;
    max-width:80%;
    padding:10px 28px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    border-radius:36px;
    background:linear-gradient(135deg,rgba(255,191,60,0.9),rgba(245,158,11,0.9));
    color:#fff;

    font-family:'AkiraExpanded','Arial Black',sans-serif;
    font-weight:900;
    line-height:1;

    text-shadow:
        0 3px 0 rgba(0,0,0,0.35),
        0 5px 10px rgba(0,0,0,0.35);

    box-shadow:
        0 12px 22px rgba(0,0,0,0.28),
        inset 0 2px 0 rgba(255,255,255,0.45);

    z-index:20;
    pointer-events:none;
}

.badge-precio-unitario .simbolo{
    font-size:38px;
}

.badge-precio-unitario .monto{
    font-size:64px;
}

.badge-precio-unitario .unidad{
    font-size:28px;
    margin-bottom:6px;
}

/* importante */
.carousel-item{
    position:relative;
}
@media (max-width: 767px){

    .badge-precio-unitario{
        bottom: 40px;        /* 🔽 más arriba (ajusta fino 50–65px) */
        
        min-width: 50%;      /* 🔽 un poco más ancho */
        max-width: 80%;

        padding: 8px 15px;   /* 🔽 más compacto */

        border-radius: 28px; /* 🔽 menos alto visual */

        font-size: 22px;     /* 🔽 tamaño base texto */
        gap: 6px;
    }
    
    .badge-precio-unitario .simbolo{
        font-size: 20px;     /* 🔥 $ más chico */
    }
    .badge-precio-unitario .monto{
        font-size: 60px;     /* 🔥 número principal */
    }

    .badge-precio-unitario .unidad{
        font-size: 20px;     /* 🔥 c/u más chico */
    }
}
/* ==========================================
   CONTROL CANTIDAD
========================================== */

.qty-control{
    display:flex;
    align-items:center;
    justify-content:space-between;

    width:100%;
    height:46px;

    background:rgba(255,255,255,.95);

    border-radius:999px;
    padding:5px 8px;

    border:1px solid rgba(194,160,4,.18);

    box-shadow:
        0 6px 16px rgba(0,0,0,.06);
}

.qty-btn{
    width:34px;
    height:34px;

    border:none;
    border-radius:50%;

    background:linear-gradient(135deg,#F7DC6F,#C2A004);

    color:#fff;

    font-size:19px;
    font-weight:900;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    flex-shrink:0;

    transition:.2s;
}

.qty-btn:active{
    transform:scale(.94);
}

.input-cantidad{
    flex:1;

    height:34px;

    border:none !important;
    background:transparent;

    text-align:center;

    font-size:17px;
    font-weight:800;

    color:#2b2b2b;

    outline:none;
    box-shadow:none !important;

    -moz-appearance:textfield;
}

.input-cantidad::-webkit-inner-spin-button,
.input-cantidad::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

/* CELULAR */

@media(max-width:767px){

    .qty-control{

        width:100%;
        padding:4px;
        gap:6px;
    }

    .qty-btn{

        width:34px;
        height:34px;

        font-size:20px;
    }

    .input-cantidad{

        width:44px !important;

        height:34px;

        font-size:16px;
    }

}
.mensaje-volumen{
    margin-top:8px;
    font-size:11px;
    font-weight:900;
    color:#0D47A1;
    text-align:center;
    line-height:1.2;
    animation:pulsoVolumen .9s ease 1;
}

.mensaje-volumen.aplicado{
    color:#198754;
}

@keyframes pulsoVolumen{
    0%{ transform:scale(.96); opacity:0; }
    60%{ transform:scale(1.04); opacity:1; }
    100%{ transform:scale(1); }
}