/* 
 * Estilos Públicos para Smart QR Carteles
 * CONTROL TOTAL PARA BRICKS BUILDER
 */

/* Banner - Forzamos a la imagen a ser TOTALMENTE dependiente del contenedor de Bricks */
.cartel-bio-banner-container {
    width: 100%;
    height: 100%; /* Toma la altura del elemento de Bricks */
    display: flex;
    overflow: hidden;
}

.cartel-bio-banner {
    width: 100% !important;
    height: 100% !important; /* Llena el contenedor de Bricks sí o sí */
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important; /* Evita que la foto se estire */
    display: block !important;
}

/* Logo - También lo hacemos flexible pero manteniendo su forma */
.cartel-bio-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cartel-bio-logo {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Enlaces */
.smart-qr-bio-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 20px 0;
}

.smart-qr-bio-links .bio-btn {
    display: block;
    padding: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ─── Fix: WooCommerce tfoot → td (fondo claro) oscuro, th (fondo oscuro) claro ─── */
.woocommerce table.shop_table tfoot td,
table.shop_table tfoot td {
    color: #1e293b !important;
}

.woocommerce table.shop_table tfoot td .amount,
table.shop_table tfoot td .amount {
    color: #1e293b !important;
}

.woocommerce table.shop_table tfoot th,
table.shop_table tfoot th {
    color: rgba(255, 255, 255, 0.9) !important;
}

