/* Badges de tiendas: mismo “slot” en px; Play se escala un poco porque el PNG oficial trae más margen que el SVG de Apple. */
.store-badges-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.store-badge-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto;
    width: 172px;
    min-height: 54px;
    padding: 0 !important;
    line-height: 0 !important;
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.store-badge-link:focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}

.store-badge-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    height: 52px;
    line-height: 0;
    overflow: visible;
}

/* Explícito en px: el SVG en <img> a veces ignora % frente a Bootstrap/img */
.store-badge-link img.store-badge-img {
    display: block !important;
    width: 168px !important;
    height: 52px !important;
    max-width: none !important;
    max-height: none !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top !important;
}

/* Compensa el padding interno del asset de Google (se ve más pequeño junto al SVG de Apple). */
.store-badge-link img.store-badge-img[src*="google-play"] {
    transform: scale(1.22);
    transform-origin: center center;
}
