/* LAYOUT PRINCIPAL */

.tenzo-shop-layout{
    display:flex;
    gap:30px;
    align-items:flex-start;
}

/* SIDEBAR */

.tenzo-shop-sidebar{
    width:260px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:120px;
}

/* PRODUCTOS */

.tenzo-shop-products{
    flex:1;
}

/* TOOLBAR */

.tenzo-shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

/* GRID PRODUCTOS (NO TOCA WOOCOMMERCE) */

.woocommerce ul.products{
    display:grid !important;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:25px;
}

/* TARJETA PRODUCTO */

.woocommerce ul.products li.product{
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.25s;
    padding:15px;
}

.woocommerce ul.products li.product:hover{
    transform:translateY(-4px);
}

/* BADGE MOD DIGITAL */

.woocommerce ul.products li.product.product_cat-productos-digitales::before{
    content:"MOD DIGITAL";
    position:absolute;
    background:#0b7dda;
    color:#fff;
    padding:6px 10px;
    font-size:11px;
    border-radius:4px;
    top:12px;
    left:12px;
}

/* ===== BOTONES COMPRA TENZO ===== */

/* botones del catálogo */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_simple,
.woocommerce ul.products li.product .product_type_variable{
    background:#081A24 !important;
    color:#fff !important;
    border-radius:10px;
    padding:12px 16px;
    font-weight:600;
    border:none;
    display:block;
    text-align:center;
    transition:all .25s ease;
}

/* hover catálogo */
.woocommerce ul.products li.product a.button:hover{
    background:#0b5d57 !important;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

/* botón producto individual */
.single-product .single_add_to_cart_button{
    background:#081A24 !important;
    color:#fff !important;
    border-radius:12px;
    padding:16px 22px;
    font-size:16px;
    font-weight:700;
    border:none;
}

/* hover individual */
.single-product .single_add_to_cart_button:hover{
    background:#0b5d57 !important;
}

/* RESPONSIVE */

@media(max-width:900px){

    .tenzo-shop-layout{
        flex-direction:column;
    }

    .tenzo-shop-sidebar{
        width:100%;
        position:relative;
        top:0;
    }
}

/* ===== FIX HEADER STICKY TENZO ===== */

body.woocommerce-shop .site-content,
body.post-type-archive-product .site-content{
    padding-top: 40px;
}

/* título tienda */
.woocommerce-products-header{
    margin-top: 20px !important;
}