/* ---------------------------------------------------
DISEÑO ELEGANTE PARA PRODUCTOS E-COMMERCE ODOO
--------------------------------------------------- */
/* 1. Contenedor del producto: Espaciado y efecto Hover */
.o_wsale_product_grid_wrapper .oe_product {
border: 1px solid transparent !important;
border-radius: 4px;
transition: all 0.4s ease;
padding-bottom: 20px;
background-color: #ffffff;
}
.o_wsale_product_grid_wrapper .oe_product:hover {
border-color: #f0f0f0 !important;
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
transform: translateY(-3px); /* Eleva ligeramente el producto */
}
/* 2. Título del producto: Quitar mayúsculas pesadas */
.o_wsale_product_grid_wrapper .o_wsale_products_item_title a {
font-size: 14px !important;
font-weight: 500 !important;
color: #333333 !important;
text-transform: capitalize !important; /* Pasa de MAYÚSCULAS a Tipo Título */
letter-spacing: 0.5px;
text-decoration: none;
display: block;
margin-bottom: 8px;
}
/* 3. Precio: Destacado pero limpio */
.o_wsale_product_grid_wrapper .product_price {
font-size: 17px !important;
font-weight: 600 !important;
color: #000000 !important;
margin-bottom: 18px;
}
/* 4. Botón "Add to Cart": Estilo Boutique (Negro Mate) */
.o_wsale_product_grid_wrapper .btn-primary,
.o_wsale_product_grid_wrapper .a-submit {
background-color: #1a1a1a !important;
color: #ffffff !important;
border: 1px solid #1a1a1a !important;
border-radius: 0px !important; /* Bordes rectos y afilados son más elegantes */
padding: 10px 0 !important;
text-transform: uppercase !important;
letter-spacing: 1.5px !important;
font-size: 11px !important;
font-weight: 600 !important;
transition: all 0.3s ease;
width: 100%;
}
/* Efecto al pasar el cursor sobre el botón */
.o_wsale_product_grid_wrapper .btn-primary:hover,
.o_wsale_product_grid_wrapper .a-submit:hover {
background-color: #ffffff !important;
color: #1a1a1a !important;
border: 1px solid #1a1a1a !important;
}