/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
*/

body{
margin:0;
font-family:sans-serif;
}

.container{
max-width:1200px;
margin:auto;
padding:20px;
}

/* HEADER */

.site-header{
background:#ffffff;
height:100px;
width:100%;
position:sticky;
top:0;
z-index:9999;

display:flex;
align-items:center;
justify-content:center;
}

.header-inner{
width:100%;
max-width:1200px;

display:flex;
justify-content:center;
align-items:center;
}

.logo{
display:block;
}

.logo img{
height:60px;
width:auto;
display:block;
margin:auto;
}

.site-footer{
padding:40px;
text-align:center;
background:#111;
color:#fff;
}

.wp-block-woocommerce-product-template img{
border-radius:18px;
}

.wp-block-woocommerce-product-title{
color:#6A0DAD;
}

.wp-block-woocommerce-product-price{
color:#6A0DAD;
}

.wp-block-woocommerce-product-button a{
background:#6A0DAD;
color:white;
border-radius:25px;
}
/* mover estrellas entre imagen y titulo */

.woocommerce ul.products li.product .star-rating {
    order: 2;
    margin: 8px auto;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    order: 3;
}

/* hacer que la tarjeta use flex */
.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* estrellas amarillas */

.woocommerce .star-rating span::before{
color:#FFC107;
}

.woocommerce .star-rating::before{
color:#ddd;
}