/*==================================================
=               APHAREL BASE
==================================================*/


*,
*::before,
*::after{
    box-sizing:border-box;
}

.apharel-section{

    max-width:1400px;
    margin:90px auto;
    padding:0 25px;

}

/*==================================================
=               HEADER
==================================================*/

.apharel-header{

    max-width:1000px;

    margin:0 auto 55px;

    text-align:center;

}

.apharel-line{

    width:100%;

    height:2px;

    background:#111;

    opacity:.12;

    margin:25px 0;

}

.apharel-header h2{

    position:relative;

    overflow:hidden;

    margin:0;

    color:#5f6873;

    font-size:52px;

    font-weight:300;

    letter-spacing:8px;

    text-transform:uppercase;

    line-height:1.2;

}

.apharel-header h2::after{

    content:"";

    position:absolute;

    top:0;

    left:-180%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.95),
        transparent
    );

    transform:skewX(-25deg);

    opacity:0;

}

.apharel-header.shine h2::after{

    opacity:1;

    animation:apharelShine 1.8s ease;

}

@keyframes apharelShine{

    from{

        left:-180%;

    }

    to{

        left:180%;

    }

}

.apharel-header p{

    margin-top:15px;

    color:#777;

    font-size:20px;

    font-weight:600;

    letter-spacing:5px;

    text-transform:uppercase;

}

/*==================================================
=               SLIDER
==================================================*/

.apharel-slider{

    position:relative;

    overflow:hidden;

    padding:10px 5px 60px;

}

.apharel-slider .swiper-wrapper{

    align-items:stretch;

}

.apharel-slider .swiper-slide{

    height:auto;

}

/*==================================================
=               PRODUCT CARD
==================================================*/

.apharel-card{

    height:100%;

    display:flex;

    flex-direction:column;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.apharel-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.apharel-image{

    aspect-ratio:1/1;

    overflow:hidden;

    background:#f8f8f8;

}

.apharel-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.apharel-card:hover .apharel-image img{

    transform:scale(1.08);

}

/*==================================================
=               INFO
==================================================*/

.apharel-info{

    flex:1;

    display:flex;

    flex-direction:column;

    padding:22px;

}

.apharel-info h3{

    margin:0;

    font-size:18px;

    line-height:1.4;

    font-weight:600;

}

.apharel-info h3 a{

    color:#111;

    text-decoration:none;

}

.apharel-price{

    margin-top:12px;

    font-size:22px;

    font-weight:700;

    color:#111;

}

.apharel-button{

    margin-top:auto;

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#111;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.apharel-button:hover{

    transform:translateX(5px);

}

/*==================================================
=               SWIPER ARROWS
==================================================*/

.apharel-prev,
.apharel-next{

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    width:50px;

    height:50px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:30;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    transition:.3s;

}

.apharel-prev{

    left:8px;

}

.apharel-next{

    right:8px;

}

.apharel-prev:hover,
.apharel-next:hover{

    transform:translateY(-50%) scale(1.08);

}

/*==================================================
=               PAGINATION
==================================================*/

.swiper-pagination-bullet{

    width:10px;

    height:10px;

}

.swiper-pagination-bullet-active{

    background:#111;

}

/*==================================================
=               RESPONSIVE
==================================================*/

@media(max-width:768px){

    .apharel-header h2{

        font-size:34px;

        letter-spacing:4px;

    }

    .apharel-header p{

        font-size:15px;

        letter-spacing:2px;

    }

}

@media(max-width:560px){

    .apharel-header h2{

        font-size:26px;

        letter-spacing:2px;

    }

    .apharel-header p{

        font-size:13px;

        letter-spacing:1px;

    }

    .apharel-prev,
    .apharel-next{

        display:none;

    }

}

/*==================================================
=         APHAREL CATEGORIAS PREMIUM
==================================================*/

.apharel-categorias-grid{

    max-width:1400px;

    margin:80px auto;

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:30px;

}

/*======================================
=            CARD
======================================*/

.apharel-cat-card{

    position:relative;

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border-radius:22px;

    background:#fff;

    text-decoration:none;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.apharel-cat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 60px rgba(0,0,0,.16);

}

/*======================================
=            IMAGEN
======================================*/

.apharel-cat-img{

    width:100%;

    aspect-ratio:4/5;

    overflow:hidden;

    background:#f5f5f5;

}

.apharel-cat-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.45s;

}

.apharel-cat-card:hover .apharel-cat-img img{

    transform:scale(1.08);

}

/*======================================
=          NUMERO
======================================*/

.apharel-cat-numero{

    position:absolute;

    top:20px;

    left:20px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(8px);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

    font-weight:700;

    color:#111;

    z-index:20;

}

/*======================================
=          INFORMACION
======================================*/

.apharel-cat-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

}

.apharel-cat-info h3{

    margin:0;

    font-size:24px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#111;

}

.apharel-cat-arrow{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    transition:.35s;

}

.apharel-cat-card:hover .apharel-cat-arrow{

    transform:translateX(6px) rotate(-45deg);

}

/*======================================
=          BORDE ANIMADO
======================================*/

.apharel-cat-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:3px;

    background:linear-gradient(90deg,#ff7a00,#111);

    transition:.45s;

    z-index:30;

}

.apharel-cat-card::after{

    content:"";

    position:absolute;

    bottom:0;

    right:0;

    width:0;

    height:3px;

    background:linear-gradient(90deg,#111,#ff7a00);

    transition:.45s;

    z-index:30;

}

.apharel-cat-border-left,
.apharel-cat-border-right{

    position:absolute;

    top:0;

    width:3px;

    height:0;

    background:#ff7a00;

    transition:.45s;

    z-index:30;

}

.apharel-cat-border-left{

    left:0;

}

.apharel-cat-border-right{

    right:0;

}

/*======================================
=            ACTIVA
======================================*/

.apharel-cat-card.active{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}

.apharel-cat-card.active::before,
.apharel-cat-card.active::after{

    width:100%;

}

.apharel-cat-card.active .apharel-cat-border-left,
.apharel-cat-card.active .apharel-cat-border-right{

    height:100%;

}

.apharel-cat-card.active img{

    transform:scale(1.05);

}

.apharel-cat-card.active .apharel-cat-numero{

    background:#ff7a00;

    color:#111;

}

.apharel-cat-card.active .apharel-cat-arrow{

    transform:translateX(6px);

}

/*======================================
=          RESPONSIVE
======================================*/

@media(max-width:992px){

    .apharel-categorias-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .apharel-categorias-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

        padding:0 15px;

    }

    .apharel-cat-info{

        padding:16px;

    }

    .apharel-cat-info h3{

        font-size:18px;

        letter-spacing:1px;

    }

    .apharel-cat-arrow{

        width:40px;

        height:40px;

    }

}

@media(max-width:480px){

    .apharel-categorias-grid{

        grid-template-columns:1fr;

    }

    .apharel-cat-card{

        border-radius:18px;

    }

    .apharel-cat-info{

        padding:18px;

    }

    .apharel-cat-info h3{

        font-size:22px;

    }

}
/*==================================================
=               TIENDA APHAREL
==================================================*/

.apharel-tienda{

    display:flex;

    align-items:flex-start;

    gap:40px;

}

/*==================================================
=               SIDEBAR
==================================================*/

.apharel-sidebar{

    width:250px;

    flex-shrink:0;

    position:sticky;

    top:120px;

}

.apharel-sidebar h3{

    margin:0 0 25px;

    font-size:28px;

    font-weight:700;

    color:#111;

}

/*==================================================
=            MENU CATEGORIAS
==================================================*/

.apharel-categorias{

    list-style:none;

    padding:0;

    margin:0;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.apharel-categorias li{

    margin:0;

}

.apharel-categorias a{

    display:block;

    padding:14px 18px;

    border-radius:10px;

    color:#222;

    text-decoration:none;

    font-weight:600;

    transition:.30s;

}

.apharel-categorias a:hover{

    background:#111;

    color:#fff;

}

.apharel-categorias a.activo{

    background:#111;

    color:#fff;

}

/*==================================================
=            PRODUCTOS
==================================================*/

.apharel-productos{

    flex:1;

}

/*==================================================
=            TOOLBAR
==================================================*/

.apharel-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

}

.apharel-total{

    font-size:18px;

    font-weight:700;

    color:#111;

}

.apharel-toolbar select{

    padding:12px 18px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    background:#fff;

    cursor:pointer;

}

/*==================================================
=            GRID PRODUCTOS
==================================================*/

.apharel-productos ul.products{

    list-style:none;

    margin:0;

    padding:0;

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:28px;

}

.apharel-productos ul.products li.product{

    width:100%;

    margin:0;

    padding:0;

    float:none;

    display:flex;

    flex-direction:column;

}

/*==================================================
=            IMAGEN
==================================================*/

.apharel-productos ul.products li.product img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    display:block;

    border-radius:14px;

}

/*==================================================
=            TITULO
==================================================*/

.apharel-productos ul.products li.product h2,

.apharel-productos ul.products li.product .woocommerce-loop-product__title{

    margin:16px 0 10px;

    font-size:18px;

    line-height:1.4;

    font-weight:600;

    color:#111;

    min-height:54px;

}

.apharel-productos ul.products li.product a{

    color:#111;

    text-decoration:none;

}

/*==================================================
=            PRECIO
==================================================*/

.apharel-productos ul.products li.product .price{

    display:block;

    margin-bottom:18px;

    font-size:20px;

    font-weight:700;

    color:#111;

}

/*==================================================
=            BOTON
==================================================*/

.apharel-productos ul.products li.product .button{

    width:100%;

    padding:13px;

    border-radius:10px;

    background:#111;

    color:#fff;

    text-align:center;

    transition:.30s;

}

.apharel-productos ul.products li.product .button:hover{

    background:#333;

}

/*==================================================
=            RESULTADOS AJAX
==================================================*/

#apharel-resultados{

    min-height:300px;

    transition:.25s;

}
/*==================================================
=            MOBILE TOOLBAR
==================================================*/

.apharel-mobile-toolbar{

    display:none;

}

/*==================================================
=            BOTON FILTROS
==================================================*/

.apharel-filtro-btn{

    background:#111;

    color:#fff;

    border:none;

    border-radius:10px;

    padding:12px 22px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.30s;

}

.apharel-filtro-btn:hover{

    background:#333;

}

/*==================================================
=            SELECT MOBILE
==================================================*/

.apharel-mobile-order{

    flex:1;

}

.apharel-mobile-order select{

    width:100%;

    padding:12px 15px;

    border-radius:10px;

    border:1px solid #ddd;

    background:#fff;

}

/*==================================================
=            SIDEBAR MOBILE
==================================================*/

@media(max-width:768px){

    .apharel-mobile-toolbar{

        display:flex;

        justify-content:space-between;

        align-items:center;

        gap:15px;

        margin-bottom:25px;

    }

    .apharel-sidebar{

        display:none;

        position:fixed;

        left:0;

        top:0;

        width:290px;

        height:100vh;

        background:#fff;

        padding:30px;

        overflow-y:auto;

        z-index:99999;

        box-shadow:0 0 35px rgba(0,0,0,.25);

    }

    .apharel-sidebar.abierto{

        display:block;

    }

    .apharel-tienda{

        display:block;

    }

}

/*==================================================
=            GRID TABLET
==================================================*/

@media(max-width:1100px){

    .apharel-productos ul.products{

        grid-template-columns:repeat(3,1fr);

    }

}

/*==================================================
=            GRID TABLET
==================================================*/

@media(max-width:900px){

    .apharel-productos ul.products{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==================================================
=            GRID CELULAR
==================================================*/

@media(max-width:560px){

    .apharel-productos ul.products{

        grid-template-columns:repeat(2,1fr);

        gap:16px;

    }

    .apharel-toolbar{

        display:none;

    }

}

/*==================================================
=            TITULO PRODUCTO
==================================================*/

@media(max-width:560px){

    .apharel-productos ul.products li.product h2,

    .apharel-productos ul.products li.product .woocommerce-loop-product__title{

        font-size:15px;

        min-height:auto;

        margin:10px 0 6px;

    }

}

/*==================================================
=            PRECIO MOVIL
==================================================*/

@media(max-width:560px){

    .apharel-productos ul.products li.product .price,

    .apharel-productos ul.products li.product .price bdi{

        color:#fff;

        font-size:18px;

    }

}

/*==================================================
=            BOTON PRODUCTO
==================================================*/

@media(max-width:560px){

    .apharel-productos ul.products li.product .button{

        padding:11px;

        font-size:14px;

    }

}

/*==================================================
=            IMAGEN PRODUCTO
==================================================*/

@media(max-width:560px){

    .apharel-productos ul.products li.product img{

        aspect-ratio:4/5;

    }

}

/*==================================================
=            TRANSICIONES
==================================================*/

.apharel-productos ul.products li.product,
.apharel-cat-card,
.apharel-card{

    transition:.35s;

}

/*==================================================
=            SCROLLBAR
==================================================*/

.apharel-sidebar::-webkit-scrollbar{

    width:7px;

}

.apharel-sidebar::-webkit-scrollbar-thumb{

    background:#bbb;

    border-radius:30px;

}

/*==================================================
=            FIN CSS APHAREL
==================================================*/

/* Ocultar categoría debajo del precio */

.apharel-productos .entry-meta,
.apharel-productos .meta-categories{
    display:none !important;
}
/* =========================================================
   WHATSAPP - PEDIDO RECIBIDO
   ========================================================= */

.apharel-whatsapp-pedido {
    width: 90%;
    max-width: 700px;

    margin: 30px auto;

    padding: 35px 30px;

    text-align: center;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}


/* ICONO */

.apharel-whatsapp-icon {
    font-size: 35px;

    margin-bottom: 5px;
}


/* TÍTULO */

.apharel-whatsapp-pedido h3 {

    margin: 0 0 12px 0;

    font-size: 26px;

    font-weight: 700;

    color: #00d9e8;
}


/* TEXTO */

.apharel-whatsapp-pedido p {

    margin: 0 auto 25px auto;

    font-size: 16px;

    line-height: 1.6;

    color: #777;

    max-width: 550px;
}


/* BOTÓN */

.apharel-btn-whatsapp {

    display: inline-block;

    padding: 17px 32px;

    background: #25D366;

    color: #ffffff !important;

    font-size: 18px;

    font-weight: 700;

    text-decoration: none !important;

    border-radius: 9px;

    transition: all 0.25s ease;

    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.25);
}


/* HOVER */

.apharel-btn-whatsapp:hover {

    background: #1ebe5d;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

    .apharel-whatsapp-pedido {

        width: 92%;

        padding: 28px 20px;

        margin: 25px auto;
    }

    .apharel-whatsapp-pedido h3 {

        font-size: 22px;
    }

    .apharel-whatsapp-pedido p {

        font-size: 15px;
    }

    .apharel-btn-whatsapp {

        width: 100%;

        box-sizing: border-box;

        padding: 16px 15px;

        font-size: 16px;
    }
    
}
/* =========================================================
   BOTÓN SEGUIR COMPRANDO - CARRITO
========================================================= */
/* BOTÓN SEGUIR COMPRANDO */
.apharel-seguir-comprando {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 24px;
    margin: 0 !important;
    background: #ffffff;
    color: #111111 !important;
    border: 1px solid #111111;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    white-space: nowrap;
}

.apharel-seguir-comprando:hover {
    background: #111111;
    color: #ffffff !important;
}


/* ORGANIZAR LAS ACCIONES DEL CARRITO */
.woocommerce-cart-form .actions {
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    align-items: center !important;
    gap: 10px !important;
}


/* CUPÓN */
.woocommerce-cart-form .actions .coupon {
    grid-column: 1 / -1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}


/* SEGUIR COMPRANDO */
.woocommerce-cart-form .actions .apharel-seguir-comprando {
    grid-column: 2 !important;
    grid-row: 2 !important;
}


/* ACTUALIZAR CARRITO */
.woocommerce-cart-form .actions button[name="update_cart"],
.woocommerce-cart-form .actions input[name="update_cart"] {
    grid-column: 3 !important;
    grid-row: 2 !important;
    margin: 0 !important;
}
/* =========================================================
   APHAREL - OCULTAR MÉTODOS NATIVOS DE WOOCOMMERCE
========================================================= */

.woocommerce-checkout #payment .wc_payment_methods {
    display: none !important;
}

.woocommerce-checkout #payment .payment_box {
    display: none !important;
}

/* =========================================================
   APHAREL - MÉTODOS DE PAGO
========================================================= */

.apharel-metodos-pago {
    margin-top: 25px;
}

.apharel-metodos-pago > h3 {
    color: #00d9e8;
    font-size: 18px;
    margin-bottom: 18px;
}

.apharel-pago-opcion {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    cursor: pointer;
}

.apharel-pago-opcion input {
    margin: 0 !important;
}

.apharel-pago-opcion span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.apharel-pago-opcion strong {
    font-size: 15px;
}

.apharel-pago-opcion small {
    font-size: 12px;
    color: #999;
}

.apharel-info-pago {
    margin: 10px 0 20px 0;
    padding: 18px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

.apharel-info-pago h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 17px;
}

.apharel-info-pago p {
    margin: 8px 0;
    line-height: 1.5;
}

.apharel-monto-pago {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0 18px;
}

.apharel-comprobante {
    display: block;
    margin-top: 18px;
    font-weight: 600;
}

.apharel-comprobante input[type="file"] {
    display: block;
    margin-top: 10px;
    width: 100%;
}
/* =========================================================
   APHAREL - NOMBRE DE PRODUCTOS
   ========================================================= */

.apharel-productos ul.products li.product h2 {
    font-size: 18px !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.apharel-productos ul.products li.product h2 a {
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
}
/* =========================================================
   APHAREL - ARMA TU COMBO
   MODAL Y PRODUCTOS
========================================================= */

/* =========================================================
   BLOQUE PRINCIPAL
========================================================= */

.apharel-armar-combo {
    margin: 25px 0;
    padding: 25px;
    border: 1px solid #111;
    background: #fff;
    text-align: center;
}

.apharel-armar-combo-titulo {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.apharel-armar-combo-texto {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
}

.apharel-btn-armar-combo {
    display: inline-block;
    padding: 14px 28px;
    background: #111;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.apharel-btn-armar-combo:hover {
    background: #333;
    transform: translateY(-2px);
}


/* =========================================================
   MODAL
========================================================= */

.apharel-combo-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
}

.apharel-combo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}


/* =========================================================
   CONTENIDO DEL MODAL
========================================================= */

.apharel-combo-contenido {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 92%;
    max-width: 1100px;
    max-height: 90vh;

    overflow-y: auto;

    background: #fff;

    padding: 35px;

    border-radius: 16px;

    box-shadow: 0 20px 70px rgba(0,0,0,.35);
}


/* =========================================================
   BOTÓN CERRAR
========================================================= */

.apharel-combo-cerrar {
    position: absolute;

    top: 15px;
    right: 18px;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #111;
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;
}

.apharel-combo-cerrar:hover {
    background: #333;
}


/* =========================================================
   HEADER DEL MODAL
========================================================= */

.apharel-combo-header {
    text-align: center;
    margin-bottom: 30px;
}

.apharel-combo-header h2 {
    margin: 0 0 8px;

    font-size: 32px !important;
    font-weight: 700 !important;

    color: #111 !important;

    letter-spacing: 1px !important;
}

.apharel-combo-header p {
    margin: 0;

    font-size: 15px;
    color: #777;
}


/* =========================================================
   PASO
========================================================= */

.apharel-combo-paso h3 {
    margin: 0 0 20px;

    font-size: 21px;
    font-weight: 700;

    color: #111;
}


/* =========================================================
   GRID DE PRODUCTOS
========================================================= */

.apharel-combo-productos {

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

}


/* =========================================================
   PRODUCTO
========================================================= */

.apharel-combo-producto {

    position: relative;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 12px;

    overflow: hidden;

    cursor: pointer;

    transition: .25s;
}

.apharel-combo-producto:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0,0,0,.10);

}


/* PRODUCTO SELECCIONADO */

.apharel-combo-producto.seleccionado {

    border: 3px solid #111;

    box-shadow: 0 8px 25px rgba(0,0,0,.15);

}


/* =========================================================
   IMAGEN
========================================================= */

.apharel-combo-imagen {

    width: 100%;

    aspect-ratio: 4 / 5;

    background: #f5f5f5;

    overflow: hidden;
}

.apharel-combo-imagen img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================================
   INFORMACIÓN
========================================================= */

.apharel-combo-info {

    padding: 14px;
}

.apharel-combo-nombre {

    font-size: 15px;

    font-weight: 600;

    color: #111;

    line-height: 1.3;

    margin-bottom: 7px;
}

.apharel-combo-precio {

    font-size: 17px;

    font-weight: 700;

    color: #111;
}


/* =========================================================
   CHECK
========================================================= */

.apharel-combo-check {

    position: absolute;

    top: 10px;
    right: 10px;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #111;

    color: #fff;

    font-size: 17px;
    font-weight: 700;

    opacity: 0;

    transform: scale(.7);

    transition: .2s;
}

.apharel-combo-producto.seleccionado
.apharel-combo-check {

    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   SELECCIÓN
========================================================= */

.apharel-combo-seleccion {

    margin-top: 25px;

    padding: 18px;

    background: #f7f7f7;

    border: 1px solid #e5e5e5;

    border-radius: 10px;
}

.apharel-combo-seleccion strong {

    display: block;

    margin-bottom: 10px;

    color: #111;

}


/* =========================================================
   RESULTADO
========================================================= */

.apharel-combo-resultado {

    margin-top: 18px;

    padding: 18px;

    border-radius: 10px;

    background: #f7f7f7;

    color: #333;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================================================
   BOTÓN AGREGAR
========================================================= */

.apharel-btn-agregar-combo {

    display: block;

    width: 100%;

    margin-top: 20px;

    padding: 15px;

    background: #111;

    color: #fff;

    border: none;

    border-radius: 9px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s;
}

.apharel-btn-agregar-combo:hover:not(:disabled) {

    background: #333;

    transform: translateY(-2px);
}

.apharel-btn-agregar-combo:disabled {

    opacity: .45;

    cursor: not-allowed;
}


/* =========================================================
   SCROLL DEL MODAL
========================================================= */

.apharel-combo-contenido::-webkit-scrollbar {

    width: 7px;
}

.apharel-combo-contenido::-webkit-scrollbar-thumb {

    background: #aaa;

    border-radius: 20px;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px) {

    .apharel-combo-productos {

        grid-template-columns: repeat(3, 1fr);

    }

}


/* =========================================================
   MÓVIL
========================================================= */

@media(max-width:600px) {

    .apharel-armar-combo {

        padding: 20px 15px;

    }

    .apharel-armar-combo-titulo {

        font-size: 20px;

    }

    .apharel-armar-combo-texto {

        font-size: 14px;

    }

    .apharel-combo-contenido {

        width: 95%;

        max-height: 92vh;

        padding: 25px 15px;

        border-radius: 12px;

    }

    .apharel-combo-header h2 {

        font-size: 25px !important;

    }

    .apharel-combo-productos {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

    }

    .apharel-combo-info {

        padding: 10px;

    }

    .apharel-combo-nombre {

        font-size: 13px;

    }

    .apharel-combo-precio {

        font-size: 15px;

    }

}
/* =========================================================
   APHAREL - ARMA TU COMBO
   ========================================================= */

.apharel-armar-combo {
    margin: 30px 0;
    padding: 30px;
    background: #fff;
    border: 1px solid #111;
    text-align: center;
}

.apharel-armar-combo-titulo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.apharel-armar-combo-texto {
    color: #777;
    margin-bottom: 20px;
}

.apharel-btn-armar-combo {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 25px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 8px;
}


/* =========================================================
   MODAL
   ========================================================= */

.apharel-combo-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.apharel-combo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.apharel-combo-contenido {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
}

.apharel-combo-cerrar {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}


/* =========================================================
   HEADER
   ========================================================= */

.apharel-combo-header {
    text-align: center;
    margin-bottom: 30px;
}

.apharel-combo-header h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
}

.apharel-combo-header p {
    color: #777;
}


/* =========================================================
   PRODUCTOS
   ========================================================= */

.apharel-combo-productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.apharel-combo-producto {
    position: relative;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: .25s;
}

.apharel-combo-producto:hover {
    transform: translateY(-4px);
    border-color: #111;
}

.apharel-combo-producto.seleccionado {
    border-color: #ff7a00;
    box-shadow: 0 0 0 3px rgba(255,122,0,.15);
}

.apharel-combo-imagen {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f5f5f5;
}

.apharel-combo-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.apharel-combo-info {
    padding: 12px;
}

.apharel-combo-nombre {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.apharel-combo-precio {
    margin-top: 7px;
    font-size: 17px;
    font-weight: 700;
}

.apharel-combo-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.apharel-combo-producto.seleccionado
.apharel-combo-check {
    display: flex;
}


/* =========================================================
   SELECCIÓN
   ========================================================= */

.apharel-combo-seleccion {
    margin-top: 25px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
}

.apharel-combo-seleccion strong {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
}

.apharel-combo-item-seleccionado {
    padding: 5px 0;
}


/* =========================================================
   RESULTADO
   ========================================================= */

.apharel-combo-resultado {
    margin-top: 15px;
    padding: 18px;
    background: #f7f7f7;
    border-radius: 10px;
}


/* =========================================================
   BOTÓN AGREGAR
   ========================================================= */

.apharel-btn-agregar-combo {
    width: 100%;
    margin-top: 18px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.apharel-btn-agregar-combo:disabled {
    background: #aaa;
    cursor: not-allowed;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width: 800px) {

    .apharel-combo-productos {
        grid-template-columns: repeat(2, 1fr);
    }

    .apharel-combo-contenido {
        padding: 25px 18px;
    }

}

@media(max-width: 480px) {

    .apharel-combo-productos {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .apharel-combo-header h2 {
        font-size: 25px;
    }

}
/* =========================================================
   APHAREL - CENTRAR MODAL ARMA TU COMBO
========================================================= */

.apharel-combo-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;

    z-index: 999999 !important;
}

.apharel-combo-contenido {
    position: relative !important;

    top: auto !important;
    left: auto !important;

    transform: none !important;

    width: 92% !important;
    max-width: 1000px !important;

    max-height: 90vh !important;

    margin: 0 auto !important;

    overflow-y: auto !important;

    background: #fff !important;
}
/* =========================================================
   APHAREL - ARMA TU COMBO
   MENSAJES DE PROMOCIONES
   ========================================================= */

.apharel-combo-info {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 18px;
    border: 1px solid #eeeeee;
}

.apharel-combo-info-titulo {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.apharel-combo-falta {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #333;
}

.apharel-combo-falta strong {
    color: #111;
}

.apharel-combo-opcion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;

    background: #fff;

    border-radius: 8px;

    margin-top: 8px;

    font-size: 14px;

    border: 1px solid #e8e8e8;
}

.apharel-combo-opcion span {
    font-weight: 700;
    white-space: nowrap;
}

.apharel-combo-falta-secundaria {
    margin-top: 12px;

    font-size: 13px;

    color: #777;

    line-height: 1.5;
}


/* =========================================================
   COMBO COMPLETO
   ========================================================= */

.apharel-combo-exito {
    background: #f1fff4;

    border: 1px solid #b7e4c0;

    border-radius: 12px;

    padding: 18px;

    text-align: center;

    color: #155724;
}

.apharel-combo-exito-titulo {
    font-size: 19px;

    font-weight: 800;

    margin-bottom: 6px;
}

.apharel-combo-exito strong {
    display: block;

    font-size: 26px;

    margin-top: 8px;

    color: #111;
}


/* =========================================================
   PRODUCTO SELECCIONADO
   ========================================================= */

.apharel-combo-producto.seleccionado {
    border: 2px solid #111 !important;

    transform: translateY(-2px);

    box-shadow: 0 4px 15px rgba(0,0,0,.12);
}

.apharel-combo-producto.seleccionado
.apharel-combo-check {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   CHECK
   ========================================================= */

.apharel-combo-check {
    opacity: 0;

    transform: scale(.7);

    transition: all .2s ease;
}


/* =========================================================
   PRENDAS SELECCIONADAS
   ========================================================= */

.apharel-combo-item-seleccionado {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 7px 0;

    font-size: 14px;

    border-bottom: 1px solid #eeeeee;
}

.apharel-combo-item-seleccionado:last-child {
    border-bottom: none;
}

.apharel-combo-item-seleccionado span:first-child {
    font-weight: 700;
}


/* =========================================================
   BOTÓN DESHABILITADO
   ========================================================= */

.apharel-btn-agregar-combo:disabled {
    opacity: .45;

    cursor: not-allowed;
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 768px) {

    .apharel-combo-info {
        padding: 14px;
    }

    .apharel-combo-info-titulo {
        font-size: 16px;
    }

    .apharel-combo-opcion {
        font-size: 13px;
        padding: 10px;
    }

}