/* 1. CENTRAR EL LOGO Y AJUSTAR TAMAÑO */
.site-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.custom-logo {
    max-width: 250px !important;
    height: auto !important;
}

/* 2. TEXTOS EN NEGRO Y CON CUERPO (700) */
.main-navigation a, .site-description, h1, h2, h3 {
    color: #000000 !important;
    font-weight: 700 !important;
}

/* 3. FORZAR 3 BOTELLAS POR FILA (TIENDA) */
.woocommerce ul.products li.product {
    width: 30% !important;
    margin: 1.6% !important;
    float: left !important;
    clear: none !important;
}

.woocommerce ul.products::after {
    content: "";
    display: table;
    clear: both;
}