/* ==================================
   PRODUCTO CASA ARUMA PRO
================================== */

.product-aruma-enhanced{
    padding-top:120px;
    padding-bottom:100px;
}

.product-flex-grid{
    display:grid;
    grid-template-columns:minmax(0,65%) minmax(350px,35%);
    gap:60px;
    align-items:start;
}

/* GALERIA */

.product-gallery-side{
    min-width:0;
}

.aruma-main-image img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}

/* INFO */

.product-info-side{
    position:sticky;
    top:120px;
    max-width:480px;
    width:100%;
}

.product-info-side h1{
    font-size:2rem;
    line-height:1.1;
    margin-bottom:15px;
}

.product-info-side .price{
    font-size:1.3rem;
    margin-bottom:25px;
}

.product-info-side .woocommerce-product-details__short-description{
    margin-bottom:25px;
    line-height:1.6;
}

/* SELECTOR TALLAS */

.variations{
    margin-bottom:25px;
}

.variations select{
    width:100%;
    height:55px;
    padding:0 15px;
    border:1px solid #ddd;
}

/* BOTON */

.single_add_to_cart_button{
    width:100%;
    height:58px;
    background:#000 !important;
    color:#fff !important;
    text-transform:uppercase;
    letter-spacing:.12em;
    border:none !important;
}

/* STRIPE */

.wc-stripe-product-checkout-container{
    width:100%;
    margin-top:12px;
}

.wc-stripe-payment-request-wrapper{
    width:100% !important;
    max-width:100% !important;
}

/* TABS */

.product-tabs-below{
    margin-top:80px;
}

/* ARMA TU FACHITA */

.product-recommendations{
    margin-top:100px;
}

.product-recommendations h2{
    font-size:2rem;
    margin-bottom:30px;
}

.recommendation-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.recommendation-item img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
}

.recommendation-item p{
    margin-top:10px;
    text-align:center;
}

/* MOVIL */

@media(max-width:768px){

    .product-aruma-enhanced{
        padding-top:90px;
    }

    .product-flex-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .product-info-side{
        position:relative;
        top:auto;
        max-width:100%;
    }

    .aruma-main-image img{
        max-height:65vh;
        object-fit:contain;
    }

    .recommendation-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .product-info-side h1{
        font-size:1.7rem;
    }

}
/* ==================================
   CATEGORÍAS CASA ARUMA
================================== */

.aruma-category-page{
    padding-top:140px;
    padding-bottom:120px;
}

.aruma-category-header{
    text-align:center;
    margin-bottom:80px;
}

.aruma-category-header h1{
    font-size:3rem;
    margin-bottom:15px;
}

.aruma-category-header p{
    max-width:700px;
    margin:auto;
    color:#666;
}

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

.aruma-product-card a{
    text-decoration:none;
    color:inherit;
}

.aruma-product-image{
    overflow:hidden;
    background:#f5f5f5;
}

.aruma-product-image img{
    width:100%;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.aruma-product-card:hover img{
    transform:scale(1.03);
}

.aruma-product-card h2{
    font-size:1rem;
    margin-top:15px;
    font-weight:400;
}

.aruma-product-card .price{
    display:block;
    margin-top:8px;
    color:#50635d;
}

@media(max-width:768px){

    .aruma-product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .aruma-category-header{
        margin-bottom:50px;
    }

    .aruma-category-header h1{
        font-size:2rem;
    }

}