/* =========================
   TIPOGRAFÍA (IMPORTA EN HEAD)
========================= */
/*
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet">
*/

/* =========================
   VARIABLES BOUTIQUE
========================= */
:root {
    --primary: #C2185B;
    --primary-dark: #a3154a;
    --primary-soft: #F8BBD0;

    --secondary: #6A1B9A;

    --bg: #FAFAFA;
    --card-bg: #FFFFFF;

    --text: #2B2B2B;
    --text-light: #777;

    --radius: 16px;

    --shadow: 0 8px 25px rgba(0,0,0,0.06);
    --shadow-hover: 0 15px 35px rgba(0,0,0,0.12);
}

/* =========================
   BASE
========================= */
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4,h6, .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary);
}

button, .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

#checkoutModal .modal-content {
    max-width: 500px;
    padding: 20px;
}

/* =========================
   TOP BAR
========================= */

/* =========================
   TOP BAR
========================= */
.top-bar {
    background: linear-gradient(90deg, #C2185B, #E91E63);
    color: white;
    text-align: center;
    font-size: 13px;
    padding: 8px;
    font-weight: 500;
}

/* =========================
   HEADER PRINCIPAL
========================= */
.main-header {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
}

/* LOGO */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #C2185B !important;
    font-weight: 600;
}

/* BOTÓN MENU MOBILE */
.btn-menu {
    background: #fff0f5;
    border: none;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 10px;
}

/* =========================
   BUSCADOR
========================= */
.search-box {
    width: 45%;
}

.search-box input {
    border-radius: 25px 0 0 25px;
    border: 1px solid #eee;
    padding: 10px 15px;
}

.btn-search {
    border-radius: 0 25px 25px 0;
    background: #C2185B;
    color: white;
    border: none;
}

/* =========================
   ICONOS HEADER
========================= */
.header-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon-btn {
    font-size: 18px;
    text-decoration: none;
    background: #fff0f5;
    padding: 8px 10px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
    color: #444;
}

.icon-btn:hover {
    background: #C2185B;
    color: white;
    transform: translateY(-2px);
}

/* CARRITO */
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #E60023;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* =========================
   SEARCH MOBILE
========================= */
.search-mobile {
    padding: 10px;
}

.search-mobile input {
    border-radius: 25px;
    border: 1px solid #eee;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .search-box {
        display: none !important;
    }
}

@keyframes slideTop {
    0% { background-position: left; }
    100% { background-position: right; }
}
/* =========================
   MENÚ
========================= */
.menu-bar {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.menu-bar a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s;
}

.menu-bar a:hover,
.menu-bar a.active {
    color: var(--primary);
}

/* =========================
   BUSCADOR
========================= */
/* =========================
   FIX BUSCADOR PRO
========================= */

.search-box .input-group,
.search-mobile .input-group {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid #eee;
    background: white;
}

/* INPUT */
.search-box input,
.search-mobile input {
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 15px;
    height: 42px;
    box-shadow: none !important;
}

/* BOTÓN LUPA */
.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 42px;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 16px;
}

/* HOVER */
.btn-search:hover {
    background: var(--primary-dark);
}

/* QUITAR BORDE EXTRA BOOTSTRAP */
.search-box input:focus,
.search-mobile input:focus {
    outline: none;
    box-shadow: none;
}

/* MOBILE */
.search-mobile .input-group {
    border-radius: 25px;
}
/* =========================
   HERO / SLIDER
========================= */
.hero-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 18px;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#heroSlider .carousel-item {
    height: 450px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.35);
    padding: 18px;
    border-radius: 12px;
}

/* HERO BOX */
.hero-box {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fff, #fff0f5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.hero-text h1 {
    font-size: 36px;
}

/* =========================
   CATEGORÍAS
========================= */
.categories-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.cat-item {
    min-width: 100px;
    background: white;
    padding: 15px;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: var(--shadow);
}

.cat-item:hover {
    background: var(--primary);
    color: white;
}

/* =========================
   PRODUCTOS BOUTIQUE
========================= */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: var(--shadow);
    border: 1px solid #f3f3f3;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 240px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

/* BOTÓN */
.btn-add {
    width: 100%;
    margin-top: 10px;
    border-radius: 12px;
    background: var(--primary);
    border: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-add:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* BADGE */
.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* =========================
   SIDEBAR BOUTIQUE
========================= */
.sidebar-desktop {
    background: linear-gradient(180deg, #ffffff, #fff0f5);
    border-right: 1px solid #f8d7e2;
    height: 100vh;
    position: sticky;
    top: 0;
    padding-top: 15px;
}

.sidebar-desktop h6 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    text-align: center;
    color: var(--primary);
}

.sidebar-desktop a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    margin: 6px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s;
}

.sidebar-desktop a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(6px);
}

/* =========================
   CARRITO
========================= */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    transition: 0.4s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 15px;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cart-item img {
    width: 60px;
    border-radius: 8px;
}



/* =========================
   QUICK VIEW
========================= */
.quick-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.quick-view.active {
    display: flex;
}

.quick-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    width: 320px;
    text-align: center;
}

.quick-content img {
    width: 100%;
    border-radius: 10px;
}

/* ANIMACIÓN */
.fly {
    position: fixed;
    width: 40px;
    z-index: 9999;
    transition: all 0.8s ease;
}

/* =========================
   WHATSAPP
========================= */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 26px;
    padding: 14px;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(194,24,91,0.3);
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(194,24,91,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(194,24,91,0); }
    100% { box-shadow: 0 0 0 0 rgba(194,24,91,0); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .hero-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .hero-img,
    #heroSlider .carousel-item {
        height: 250px;
    }

    .hero-text h1 {
        font-size: 22px;
    }

    .menu-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 13px;
    }

    .price {
        font-size: 16px;
    }
}


/**CSS DEL MODAL**/

/* =========================
   PRODUCTOS NUEVOS (MEJORADO)
========================= */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-img {
    position: relative;
}

.badge-sale {
    z-index: 5;
}

.btn-fav {
    z-index: 5;
}
.btn-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-fav:hover {
    background: var(--primary);
    color: white;
}
/* =========================
   MICRO INTERACCIONES TIENDA PRO
========================= */

button, .btn {
    transition: all 0.2s ease;
}

button:active {
    transform: scale(0.96);
}

.product-card {
    will-change: transform;
}

/* =========================
   MODAL PRODUCTO PREMIUM
========================= */


.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.product-modal.active {
    display: flex;
}

/*.modal-content {
    background: white;
    width: 85%;
    max-width: 1000px;
    border-radius: 18px;
    padding: 20px;
    position: relative;
    animation: fadeIn 0.3s ease;
}*/

@keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CLOSE */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
}

/* BODY */
.modal-body {
    display: flex;
    gap: 20px;
}

/* GALERÍA */
.modal-gallery {
    flex: 1;
}

.modal-gallery img {
    width: 100%;
    border-radius: 12px;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbs img:hover {
    border-color: #C2185B;
}

/* INFO */
.modal-info {
    flex: 1;
}

.modal-info h2 {
    font-family: 'Playfair Display', serif;
    color: #C2185B;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #C2185B;
}

.desc {
    color: #666;
    margin: 10px 0;
}

.features {
    padding-left: 18px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
    }
}


/**FIN CSS DEL MODAL**/

/**checkout**/
/* =========================
   CHECKOUT MODAL
========================= */
/* =========================
   CHECKOUT - D'GALI STYLE
========================= */

.checkout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.checkout-modal.active {
    display: flex;
}

.checkout-dialog {
    width: 100%;
    max-width: 620px;
    max-height: 92vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* HEADER */
.checkout-header {
    background: linear-gradient(135deg, #D63384, #F06292);
    color: #fff;
    padding: 22px 24px;
}

.checkout-header h3 {
    margin: 0;
    font-weight: 600;
}

.checkout-header p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* BODY */
.checkout-body {
    padding: 20px;
    overflow-y: auto;
    background: #FAFAFA;
}

/* CARDS */
.checkout-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
    border: 1px solid #f1f1f1;
}

/* TITULOS */
.checkout-title {
    font-weight: 600;
    color: #D63384;
    margin-bottom: 10px;
}

/* INPUTS */
.checkout-card .form-control,
.checkout-card select {
    border-radius: 12px;
    border: 1px solid #ddd;
}

.checkout-card .form-control:focus {
    border-color: #D63384;
    box-shadow: 0 0 0 0.15rem rgba(214, 51, 132, 0.15);
}

/* QR */
.qr-box {
    background: #FFF0F6;
    border-radius: 14px;
    padding: 12px;
}

.qr-box img {
    width: 140px;
    display: none;
    margin-bottom: 8px;
}

/* RESUMEN */
.summary-line {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
}

.total-line {
    border-top: 1px solid #eee;
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 700;
    color: #D63384;
}

/* NOTA */
.checkout-note {
    background: #FFF0F6;
    color: #B02A6F;
    border-radius: 12px;
    padding: 12px;
    font-size: 0.9rem;
}

/* FOOTER */
.checkout-footer {
    padding: 16px;
    background: #fff;
    border-top: 1px solid #eee;
}

/* BOTÓN */
.checkout-btn {
    background: linear-gradient(135deg, #D63384, #C2185B);
    border: none;
    border-radius: 14px;
    padding: 12px;
    font-weight: 600;
    transition: 0.2s;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #B02A6F, #9C1A4C);
}

/* BOTÓN CERRAR */
.checkout-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 20px;
}
/**FIN checkout**/





/**SECCION ME GUSTA**/


.btn-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #c2185b;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 3;
    transition: all 0.2s ease;
}

.btn-fav:hover {
    transform: scale(1.08);
}

.btn-fav.active {
    background: #ffe3ef;
    color: #d63384;
}
/** FIN SECCION ME GUSTA**/

/** BUSQUEDA DE PRODUCTOS**/

.search-results-box{
    position:absolute;
    background:#fff;
    width:100%;
    top:100%;
    left:0;
    border:1px solid #ddd;
    border-radius:10px !important;
    z-index:999;
    max-height:250px;
    overflow-y:auto;
}

.search-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
}

.search-item img{
    width:40px;
    height:40px;
    object-fit:cover;
    border-radius:5px;
}

.search-item:hover{
    background:#f5f5f5;
}




/** FIN BUSQUEDA DE PRODUCTOS**/


/**SLIDEBAR CON ESTILO**/


/* =========================
   SIDEBAR DESKTOP MODERNO
========================= */

/* =========================
   FIX SIDEBAR OFERTAS
========================= */



/** MODAL DE CATEGORIAS**/

/* =========================
   MODAL CATEGORÍAS
========================= */
/* =========================
   MODAL CATEGORÍAS
========================= */
.categorias-modal-content{
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.categorias-modal-header{
    background: linear-gradient(135deg, #C2185B, #E91E63);
    color: white;
    padding: 22px 24px;
    border-bottom: none;
}

.categorias-modal-header h5{
    margin: 0;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.categorias-modal-header p{
    margin-top: 4px;
    opacity: .92;
    font-size: 14px;
}

.categorias-modal-body{
    background: #fffafc;
    padding: 24px;
}

.categoria-card-modal{
    width: 100%;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    background: #fff;
    border: 1px solid #f3dce6;
    border-radius: 20px;
    padding: 22px 16px;
    transition: all .25s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.categoria-card-modal:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
    border-color: #f3b5cd;
    background: #fff;
}

.categoria-icono{
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f7d5e2;
    flex-shrink: 0;
}

.categoria-icono img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.categoria-card-modal h6{
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.categoria-card-modal span{
    font-size: 14px;
    color: #C2185B;
    font-weight: 500;
    display: inline-block;
}

@media (max-width: 768px){
    .categoria-card-modal{
        min-height: 170px;
        padding: 18px 12px;
    }

    .categoria-icono{
        width: 72px;
        height: 72px;
    }

    .categoria-card-modal h6{
        font-size: 16px;
    }
}








/** FIN DE SMODAL DE CATEGORIAS**/



/** SLIDEBAR DE CELULARES**/

/* =========================
   MOBILE SIDEBAR PREMIUM
========================= */
/* =========================
   MOBILE SIDEBAR PREMIUM FIX
========================= */
.mobile-menu{
    width: 320px !important;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.mobile-menu-header{
    background: linear-gradient(135deg, #C2185B, #E91E63);
    color: white;
    padding: 18px 18px;
}

.mobile-menu-header h5{
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: white;
}

.mobile-menu-header small{
    opacity: .9;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.mobile-menu-body{
    background: #fffafc;
    padding: 14px;
}

.mobile-menu-section{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    background: white;
    border: 1px solid #f3dce6;
    border-radius: 16px;
    padding: 14px 15px;
    font-weight: 500;
    transition: all .2s ease;
}

.mobile-nav-left{
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link:hover{
    color: #C2185B;
    border-color: #f2bdd0;
}

.mobile-nav-link .material-symbols-outlined{
    color: #C2185B;
    font-size: 22px;
}

.mobile-arrow{
    transition: transform .25s ease;
}

.mobile-arrow.rotate{
    transform: rotate(180deg);
}

.mobile-categories-list{
    display: none;
    padding: 2px 0 8px 8px;
}

.mobile-categories-list.active{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-sub-link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    background: white;
    border-radius: 14px;
    border: 1px solid #f6dbe6;
    padding: 10px 12px;
    color: #444;
    transition: all .2s ease;
}

.mobile-sub-link:hover{
    border-color: #efbfd0;
    color: #C2185B;
}

.mobile-sub-left{
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.mobile-sub-icon{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-sub-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-sub-empty{
    padding: 10px 12px;
    color: #888;
    font-size: 14px;
}

/* =========================
   GOOGLE MATERIAL SYMBOLS FIX
========================= */
/* =========================
   GOOGLE MATERIAL SYMBOLS FIX
========================= */
/* =========================
   GOOGLE MATERIAL SYMBOLS
========================= */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings:
        'FILL' 0,
        'wght' 500,
        'GRAD' 0,
        'opsz' 24;
}


/** FIN  SLIDEBAR DE CELULARES**/


/** FIN  CATEGORIAS DESTACADAS**/

/* =========================
   CATEGORÍAS HOME
========================= */

.cat-card-link{
    text-decoration: none;
}

.cat-card{
    background: white;
    border-radius: 16px;
    padding: 14px 10px;
    border: 1px solid #f3dce6;
    transition: all .25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.cat-card:hover{
    transform: translateY(-4px);
    border-color: #f2bdd0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.cat-card .icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card .icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card p{
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}
/** FIN  CATEGORIAS DESTACADAS**/

/* =========================
  SIDEBAR OFERTAS LAOTOS
========================= */

.sidebar-highlight {
    margin: 18px 6px 0;
    background: #fff;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    border: 1px solid #f3dce6;
    overflow: hidden;
}

.sidebar-highlight .highlight-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}

#sidebarProductSlider {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
}

/* ocultar todos */
#sidebarProductSlider .sidebar-product-item {
    display: none !important;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

/* mostrar solo el activo */
#sidebarProductSlider .sidebar-product-item.active {
    display: block !important;
    animation: fadeSidebar .35s ease;
}

#sidebarProductSlider .sidebar-product-item img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    margin-bottom: 14px;
}

#sidebarProductSlider .sidebar-product-item .info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#sidebarProductSlider .sidebar-product-item .tag {
    align-self: flex-start;
    background: #fff0f5;
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}

#sidebarProductSlider .sidebar-product-item .info h6 {
    margin: 0;
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.3;
    font-weight: 600;
    color: #333 !important;
}

#sidebarProductSlider .sidebar-product-item .info p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

@keyframes fadeSidebar {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
    FINAL SIDEBAR OFERTAS LAOTOS
========================= */



/* =========================
   HOME REORDENADO
========================= */
/* =========================
   HOME RESPONSIVE MEJORADO
========================= */

/* DESKTOP */
.home-top-section{
    align-items: stretch;
}

.hero-compact{
    height: 100%;
    min-height: 340px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.hero-banner-img{
    height: 340px;
    object-fit: cover;
}

.hero-caption{
    background: rgba(0,0,0,0.28);
    padding: 18px;
    border-radius: 14px;
    max-width: 320px;
}

.hero-caption h2{
    color: white;
    font-size: 30px;
    margin-bottom: 8px;
}

.hero-caption p{
    color: white;
    margin-bottom: 10px;
}

.home-categories-panel{
    background: linear-gradient(180deg, #ffffff, #fff8fb);
    border: 1px solid #f3dce6;
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
    height: 100%;
}

.section-head h5{
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--primary);
    margin: 0;
}

.section-head p{
    font-size: 14px;
    color: var(--text-light);
}

.cat-card.compact{
    padding: 12px 10px;
    min-height: 122px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-card.compact .icon{
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
}

.cat-card.compact p{
    font-size: 13px;
    line-height: 1.2;
}

/* TABLET Y MOBILE */
@media (max-width: 991px){
    .hero-banner-img{
        height: 250px;
    }

    .hero-caption{
        max-width: 250px;
        padding: 14px;
    }

    .hero-caption h2{
        font-size: 22px;
        margin-bottom: 6px;
    }

    .hero-caption p{
        font-size: 13px;
        margin-bottom: 8px;
    }

    .home-categories-panel{
        margin-top: 14px;
        padding: 14px;
    }

    .section-head h5{
        font-size: 20px;
    }

    .section-head p{
        font-size: 13px;
    }
}

/* CELULAR */
@media (max-width: 768px){
    .hero-compact{
        min-height: auto;
        border-radius: 18px;
    }

    .hero-banner-img{
        height: 220px;
    }

    .hero-caption{
        max-width: 220px;
        padding: 12px;
        border-radius: 12px;
    }

    .hero-caption h2{
        font-size: 19px;
        line-height: 1.2;
    }

    .hero-caption p{
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .hero-caption .btn{
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 10px;
    }

    .home-categories-panel{
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .home-categories-panel .row{
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        margin: 0;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .home-categories-panel .row::-webkit-scrollbar{
        display: none;
    }

    .home-categories-panel .row > div{
        flex: 0 0 110px;
        max-width: 110px;
        padding: 0;
    }

    .cat-card.compact{
        min-height: 105px;
        padding: 10px 8px;
        border-radius: 14px;
    }

    .cat-card.compact .icon{
        width: 42px;
        height: 42px;
        margin-bottom: 6px;
    }

    .cat-card.compact p{
        font-size: 12px;
    }
}


/* =========================
   AJUSTE CATEGORÍAS HOME MOBILE
========================= */
/* =========================
   PORTADA CATEGORÍA CENTRADA
========================= */

/* =========================
   PORTADA MÁS BAJA EN LAPTOP
========================= */

.category-hero-full{
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 1.5; /* 🔥 MÁS BAJO */
    overflow: hidden;
    border-radius: 20px;
}

.category-hero-full img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-hero-full .hero-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255,255,255,0.18);
    padding: 20px;
}

.category-hero-full .hero-overlay h1{
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #5a2e1f;
    background: rgba(255,255,255,0.78);
    padding: 14px 24px;
    border-radius: 16px;
    line-height: 1.2;
    max-width: 90%;
}

/* TABLET */
@media (max-width: 991px){
    .category-hero-full{
        aspect-ratio: 16 / 6;
    }

    .category-hero-full .hero-overlay h1{
        font-size: 30px;
        padding: 12px 20px;
    }
}

/* CELULAR */
@media (max-width: 768px){
    .category-hero-full{
        aspect-ratio: 16 / 7.5;
        border-radius: 16px;
    }

    .category-hero-full .hero-overlay{
        padding: 14px;
    }

    .category-hero-full .hero-overlay h1{
        font-size: 22px;
        padding: 10px 16px;
        border-radius: 12px;
        max-width: 95%;
    }
}


/* =========================
   FINAL HOME REORDENADO
========================= */

/* =========================
  MODAL DE PRODUCTOOOOOOOOOOOO
========================= */

.product-modal{
    position: fixed;
    inset: 0;
    background: rgba(22, 16, 20, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.product-modal.active{
    display: flex;
}

.product-modal-box{
    position: relative;
    width: min(100%, 1050px);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
    animation: modalFadeIn .28s ease;
}

@keyframes modalFadeIn{
    from{
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-modal-close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #333;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all .2s ease;
}

.product-modal-close:hover{
    background: #fff0f5;
    color: var(--primary);
    transform: scale(1.05);
}

.product-modal-body{
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 560px;
}

.product-modal-gallery{
    background: linear-gradient(180deg, #fff8fb, #fff);
    padding: 24px;
    border-right: 1px solid #f3dce6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-main-image-wrap{
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f3dce6;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.product-main-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumbs{
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.product-thumb{
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all .2s ease;
}

.product-thumb:hover,
.product-thumb.active{
    border-color: var(--primary);
    transform: translateY(-2px);
}

.product-modal-info{
    padding: 34px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-modal-badge{
    display: inline-flex;
    align-self: flex-start;
    background: #fff0f5;
    color: var(--primary);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.product-modal-title{
    margin: 0 0 10px;
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    line-height: 1.15;
    color: var(--primary);
}

.product-modal-price{
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

.product-modal-desc{
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-modal-features{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-item{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8fb;
    border: 1px solid #f5dbe6;
    border-radius: 14px;
    padding: 10px 12px;
}

.feature-item span{
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item p{
    margin: 0;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

.product-modal-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-modal-btn,
.product-modal-btn-secondary{
    width: 100%;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 600;
}

.product-modal-btn-secondary{
    background: #fff;
}

/* TABLET */
@media (max-width: 991px){
    .product-modal-body{
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .product-modal-gallery{
        border-right: none;
        border-bottom: 1px solid #f3dce6;
    }

    .product-modal-title{
        font-size: 28px;
    }
}

/* CELULAR */
@media (max-width: 768px){
    .product-modal{
        padding: 12px;
        align-items: flex-end;
    }

    .product-modal-box{
        width: 100%;
        max-height: 92vh;
        overflow-y: auto;
        border-radius: 22px 22px 0 0;
    }

    .product-modal-gallery{
        padding: 16px;
    }

    .product-modal-info{
        padding: 20px 16px 18px;
    }

    .product-main-image-wrap{
        border-radius: 18px;
    }

    .product-thumb{
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .product-modal-title{
        font-size: 24px;
    }

    .product-modal-price{
        font-size: 22px;
    }

    .product-modal-desc{
        font-size: 14px;
    }
}

/* =========================
   SCROLL EN DESCRIPCIÓN MODAL
========================= */

.product-modal-desc{
    max-height: 90px; /* 🔥 controla altura */
    overflow-y: auto;
    padding-right: 6px;
}

/* Scroll bonito */
.product-modal-desc::-webkit-scrollbar{
    width: 6px;
}

.product-modal-desc::-webkit-scrollbar-thumb{
    background: #e0a8c2;
    border-radius: 10px;
}

.product-modal-desc::-webkit-scrollbar-track{
    background: transparent;
}
.product-modal-desc{
    position: relative;
}

.product-modal-desc::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
}
/* =========================
  FIN DE MODAL DE PRODUCTOOOOOOOOOOOO
========================= */

/* =========================
  FOOTER DEL CARRITO DE COMPRAS
========================= */

.cart-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    background: #fff;

    position: sticky;
    bottom: 0;
}

/* fila total */
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
    margin-bottom: 10px;
}

.cart-total-row span {
    color: #555;
}

.cart-total-row strong {
    font-size: 18px;
    color: #d63384; /* tu color marca */
}

/* botón comprar */
.cart-btn-buy {
    width: 100%;
    border-radius: 12px;
    font-weight: 600;
    padding: 10px;

    background: #198754;
    border: none;

    transition: all 0.2s ease;
}

.cart-btn-buy:hover {
    background: #157347;
    transform: scale(1.02);
}
.cart-sidebar {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.cart-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 9998;
    display: none;
}

.cart-overlay.active{
    display: block;
}

.checkout-field{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.checkout-field:last-child{
    margin-bottom: 0;
}

.checkout-label{
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.checkout-card .form-control,
.checkout-card select{
    border-radius: 12px;
    border: 1px solid #ddd;
    min-height: 46px;
    padding: 10px 12px;
}

.checkout-card .form-control:focus,
.checkout-card select:focus{
    border-color: #D63384;
    box-shadow: 0 0 0 0.15rem rgba(214, 51, 132, 0.15);
}

/* móvil */
@media (max-width: 768px){
    .checkout-label{
        font-size: 13px;
    }

    .checkout-card .form-control,
    .checkout-card select{
        min-height: 44px;
        font-size: 14px;
    }

    .checkout-card{
        padding: 14px;
    }
}
/* =========================
  FIN DEL CARRITO DE COMPRAS
========================= */



/* =========================
   USER MENU HEADER
========================= */
.user-menu-wrapper{
    position: relative;
}

.user-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* 🔥 IGUALAR A LOS OTROS BOTONES */
    width: 45px;
    height: 45px;
    border-radius: 12px;

    /* mantener diseño original */
    background: #fff0f5;
    color: #444;
    border: 1px solid transparent;

    transition: all .22s ease;
}

.user-btn:hover{
    background: #fff;
    color: var(--primary);
    border-color: #f1c7d8;
    box-shadow: 0 8px 20px rgba(194,24,91,0.10);
    transform: translateY(-1px);
}

.user-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform .2s ease;
}

.user-btn:hover .user-icon{
    transform: scale(1.05);
}

.user-btn.logged{
    background: linear-gradient(180deg, #f4fff7, #ecfaf1);
    color: #198754;
    border: 1px solid #cfe9d8;
    box-shadow: 0 6px 16px rgba(25,135,84,0.10);
}

.user-btn.logged:hover{
    background: #f7fffa;
    color: #157347;
    border-color: #bde3ca;
    box-shadow: 0 10px 22px rgba(25,135,84,0.14);
}

.user-status-dot{
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 0 10px rgba(34,197,94,0.25);
}

/* menú */
.user-dropdown-menu{
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #f3dce6;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 8px;
    display: none;
    z-index: 1200;
    overflow: hidden;
}

.user-dropdown-menu.show{
    display: block;
    animation: userMenuFade .18s ease;
}

@keyframes userMenuFade{
    from{
        opacity: 0;
        transform: translateY(8px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-menu a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 12px;
    border-radius: 12px;
    transition: all .2s ease;
}

.user-dropdown-menu a:hover{
    background: #fff0f6;
    color: var(--primary);
    transform: translateX(2px);
}

.user-dropdown-menu .logout-link{
    color: #c2185b;
}

.user-dropdown-menu .logout-link:hover{
    background: #fff1f4;
    color: #a3154a;
}

/* separador opcional si luego lo usas */
.user-dropdown-menu hr{
    margin: 6px 4px;
    border: 0;
    border-top: 1px solid #f3e5ec;
}

/*ESTILOS PARA MIS COMPRAS*/


.mis-compras-page {
    max-width: 1050px;
}

.mis-compras-header h2 {
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 4px;
}

.mis-compras-header p {
    color: #6b7280;
    margin: 0;
}

.mis-compras-list {
    display: grid;
    gap: 20px;
}

.pedido-card {
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #f1f5f9;
}

.pedido-card-top,
.pedido-resumen,
.pedido-footer {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.pedido-id {
    color: #e11d48;
    font-weight: 800;
    font-size: 14px;
}

.pedido-card-top h4 {
    margin: 4px 0 0;
    font-size: 15px;
    color: #64748b;
}

.pedido-estado {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    height: fit-content;
}

.estado-pendiente {
    background: #fef3c7;
    color: #92400e;
}

.estado-proceso {
    background: #dbeafe;
    color: #1d4ed8;
}

.estado-enviado {
    background: #e0e7ff;
    color: #4338ca;
}

.estado-entregado {
    background: #dcfce7;
    color: #166534;
}

.estado-cancelado {
    background: #fee2e2;
    color: #b91c1c;
}

.pedido-resumen {
    margin: 20px 0;
    background: #f8fafc;
    border-radius: 18px;
    padding: 16px;
}

.pedido-resumen div {
    min-width: 150px;
}

.pedido-resumen small {
    display: block;
    color: #64748b;
    margin-bottom: 3px;
}

.pedido-total {
    color: #16a34a;
    font-size: 18px;
}

.pedido-timeline {
    display: flex;
    align-items: center;
    margin: 22px 0;
    overflow-x: auto;
    padding-bottom: 4px;
}

.timeline-step {
    text-align: center;
    min-width: 82px;
}

.timeline-step span {
    width: 30px;
    height: 30px;
    background: #e5e7eb;
    color: #64748b;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.timeline-step p {
    margin: 6px 0 0;
    font-size: 12px;
    color: #64748b;
}

.timeline-step.active span {
    background: #e11d48;
    color: #fff;
}

.timeline-step.active p {
    color: #e11d48;
    font-weight: 700;
}

.timeline-line {
    height: 3px;
    min-width: 50px;
    background: #e5e7eb;
    border-radius: 999px;
}

.pedido-detalle {
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
}

.pedido-producto {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
}

.pedido-producto small {
    display: block;
    color: #64748b;
    font-size: 12px;
}

.pedido-footer {
    align-items: center;
    margin-top: 16px;
    color: #64748b;
    font-size: 14px;
}

.btn-consultar-pedido,
.btn-ir-comprar {
    background: #22c55e;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
}

.btn-consultar-pedido:hover,
.btn-ir-comprar:hover {
    color: #fff;
    opacity: 0.9;
}

.sin-compras-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.sin-compras-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.sin-compras-card h4 {
    font-weight: 800;
}

.sin-compras-card p {
    color: #64748b;
}

@media (max-width: 768px) {
    .pedido-card {
        padding: 18px;
        border-radius: 20px;
    }

    .pedido-resumen {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pedido-producto {
        align-items: flex-start;
    }

    .pedido-footer {
        display: grid;
    }

    .btn-consultar-pedido {
        text-align: center;
        width: 100%;
    }
}

/*FIN PARA MIS COMPRAS*/

.bank-payment-info {
    margin-top: 12px;
}

.bank-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px;
    text-align: left;
}

.bank-card strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
}

.bank-card p {
    margin: 5px 0;
    color: #374151;
    font-size: 14px;
}

.qr-box img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: block;
}

/*ENFOQUE EN INPUTS */
@media (max-width: 768px) {
    input,
    select,
    textarea,
    .form-control {
        font-size: 16px !important;
    }

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .checkout-modal,
    .checkout-dialog,
    .checkout-body,
    .checkout-card {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        overflow-x: hidden;
    }

    body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }

    input,
    select,
    textarea,
    button {
        font-size: 16px !important;
        max-width: 100%;
    }

    .form-control {
        font-size: 16px !important;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .checkout-modal {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .checkout-dialog {
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow-x: hidden;
    }

    .checkout-body,
    .checkout-card,
    .checkout-field {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}
.btn-fill-profile {
    width: 100%;
    border: none;
    background: #fff1f5;
    color: #be123c;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 800;
    margin-bottom: 14px;
    transition: 0.2s ease;
}

.btn-fill-profile:hover {
    background: #ffe4ec;
}

/*AGREGUE NUEVO DEL HEADER */
.user-status-dot {
    display: none;
}

.user-btn.logged .user-status-dot {
    display: block;
}

.user-email {
    font-size: 13px;
    font-weight: 600;
    color: #198754;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 6px;
    word-break: break-all;
}

@media (max-width: 991px) {
    .user-dropdown-menu {
        right: 0;
        left: auto;
        z-index: 99999;
    }
}

@media (max-width: 991px) {

    /* ocultar todo menos email y logout */
    #userDropdownMenu a:not(.logout-link) {
        display: none;
    }

}