/* Ocultar tabla por defecto de WooCommerce */
.woocommerce-grouped-product-list {
    display: none !important;
}

/* Ocultar descripción corta estándar */
.woocommerce-product-details__short-description {
    display: none !important;
}

/* Ocultar elementos de Temas de Bloques (Twenty Twenty-Four/Five) */
.wp-block-post-excerpt,
.wp-block-woocommerce-product-price {
    display: none !important;
}

/* Fix: Forzar ancho del formulario en temas de bloques (Twenty Twenty-Four) */
.wp-block-woocommerce-add-to-cart-form .cart.grouped_form {
    width: 100% !important;
}

/* Contenedor Bento Grid */
.brv-bento-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    width: 100%;
    /* Forzar ancho completo para evitar colapso en temas de bloques */
    /* Tarjetas más compactas */
    gap: 16px;
    margin-bottom: 30px;
    font-family: inherit;
}

/* Tarjetas (Estilo Google Store) */
.brv-bento-card {
    background: #fff;
    border: 1px solid #dadce0;
    /* Borde gris suave */
    border-radius: 8px;
    padding: 16px;
    box-sizing: border-box;
    /* Asegurar que el padding no afecte el ancho */
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    /* Indicar interactividad */
    position: relative;
}

.brv-bento-card:hover {
    border-color: #202124;
    /* Oscurecer borde al hover */
}

/* Estado Seleccionado (Simulado con JS) */
.brv-bento-card.brv-selected {
    border: 2px solid #1967d2;
    /* Azul Google */
    background-color: #e8f0fe;
    /* Azul muy claro */
    padding: 15px;
    /* Ajustar padding por el borde extra */
}

/* Tarjeta Principal (Destacada) - Ahora transparente/texto plano */
.brv-card-main {
    grid-column: 1 / -1;
    background: transparent;
    border: none;
    padding: 0 0 10px 0;
    box-shadow: none;
}

.brv-card-main:hover {
    transform: none;
    box-shadow: none;
}

.brv-card-main.brv-selected {
    background: transparent;
    border: none;
    padding: 0 0 10px 0;
}

/* Títulos */
.brv-card-title {
    margin: 0 0 8px 0;
    font-size: 1em;
    font-weight: 500;
    color: #202124;
}

/* Precios */
.brv-card-price {
    font-size: 0.95em;
    color: #5f6368;
    margin-bottom: 12px;
}

/* Descripción */
.brv-card-description {
    font-size: 1em;
    /* Tamaño estándar */
    color: inherit;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Layout Grid para Tarjeta (Imagen + Info) */
.brv-card-grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
}

.brv-card-image-column {
    width: 30%;
    flex-shrink: 0;
    padding-right: 15px;
}

.brv-card-image-column img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.brv-card-info-column {
    width: 70%;
    display: flex;
    flex-direction: column;
}

/* Control de Cantidad */
.brv-quantity-control {
    margin-top: auto;
}

.brv-quantity-control label {
    display: none;
    /* Ocultar etiqueta "Cantidad" para limpieza */
}

/* Inputs de cantidad con flecha (estilo Select) */
.brv-quantity-control select.qty,
.brv-parent-quantity select.qty {
    width: 100%;
    text-align: center;
    text-align-last: center;
    /* Para centrar texto en selects */
    padding: 8px 20px 8px 8px;
    /* Espacio para la flecha a la derecha */
    border: 1px solid #dadce0;
    border-radius: 4px;
    background-color: #fff;
    font-weight: 500;
    font-size: 1em;
    cursor: pointer;
    /* Flecha SVG codificada en base64 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.brv-selected .brv-quantity-control select.qty {
    border-color: #1967d2;
    color: #1967d2;
    /* Flecha azul cuando está seleccionado */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231967d2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Ajuste específico para el input del padre */
.brv-parent-quantity select.qty {
    width: 80px;
    height: 48px;
    font-size: 1.1em;
}

/* Barra de Acción (Footer) */
.brv-action-bar {
    display: flex;
    flex-direction: column;
    /* Columna: Precio arriba, controles abajo */
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dadce0;
}

/* Precio Principal */
.brv-main-price {
    font-size: 1.5em;
    /* Grande */
    font-weight: 700;
    /* Negrita */
    color: #202124;
}

.brv-main-price .amount {
    color: #202124;
}

/* Fila de Acción (Cantidad + Botón) */
.brv-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.brv-parent-quantity {
    display: flex;
    align-items: center;
}

/* Webkit spinner styling (opcional, el usuario pidió "botón de selección",
   a veces es mejor dejar los spinners nativos o usar un select real.
   Por ahora dejamos el input limpio) */

/* Botón Añadir al Carrito (Estilo Google) */
button.single_add_to_cart_button {
    background-color: #1967d2 !important;
    color: #fff !important;
    border-radius: 24px !important;
    /* Pill shape */
    padding: 0 40px !important;
    /* Padding horizontal */
    height: 48px !important;
    /* Altura fija para alinear con input */
    line-height: 48px !important;
    font-weight: 500 !important;
    border: none !important;
    transition: background-color 0.2s !important;
    margin: 0 !important;
    /* Reset margin */
    width: auto !important;
    /* Reset width */
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

button.single_add_to_cart_button:hover {
    background-color: #174ea6 !important;
}

/* Responsive */
@media (min-width: 768px) {
    /* Ya no necesitamos float right porque usamos flexbox en el contenedor */
}

/* Cuando el padre se vende individualmente (sin selector de cantidad visible) */
.brv-parent-quantity:has(input[type="hidden"]) {
    display: none;
}

/* Ajustar la fila de acción cuando no hay selector de cantidad */
.brv-action-row:has(.brv-parent-quantity input[type="hidden"]) {
    gap: 0;
    justify-content: flex-start;
}

.brv-action-row:has(.brv-parent-quantity input[type="hidden"]) button.single_add_to_cart_button {
    margin-left: 0 !important;
}