/* widget-style.css */

.woocommerce-product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.5);
    transition: all .3s;
}

.woocommerce-product-card:hover {
    transform: scale(1.03);
}

.wpc-encabezado {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border-radius: 15px 15px 0 0;
    padding: 20px 0;
}

.wpc-encabezado h2 {
    font-size: 27px;
    margin: 10px 0;
    text-align: center;
}

.wpc-encabezado p {
    font-size: 16px;
}

.wpc-promo-cont {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wpc-promo {
    background-color: crimson;
    position: absolute;
    display: flex;
    top: -15px;
    padding: 5px 15px;
}

.wpc-promo p {
    font-size: 16px;
    margin: 0px;
}

.wpc-imagen {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:1rem ;
}

.wpc-imagen .product-image {
    width: 100%;
    height: auto;
}

.wpc-product-price {
    display: flex;
    font-size: 16px;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

.wpc-product-price .product-price {
    color: black;
    font-size: 27px;
    font-weight: bold;
}

.wpc-product-price .product-discount span bdi {
    color: green;
    font-weight: bold;
}

.wpc-product-price .product-discount, .wpc-product-price .product-normal-price {
    margin-top: 0.6rem;
}


.wpc-compra-directa .txt_btn {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 15px;
    margin: 1rem 0;
}

.wpc-compra-directa .txt_btn:hover {
    filter: saturate(130%);
}

.wpc-compra-directa svg {
    margin-right: 0.5rem;
    stroke: #FFFFFF; /* Cambiar el color del trazo */
    fill: none;
}

.wpc-envio {
    font-weight: bold;
    margin-bottom: 2rem;
}