/* Store Badges Styles */
.store-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.store-badges.justify-center {
    justify-content: center;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    min-width: 160px;
}

.store-badge i {
    font-size: 24px;
}

.store-badge div {
    display: flex;
    flex-direction: column;
}

.store-badge span {
    font-size: 0.65rem;
    text-transform: uppercase;
}

.store-badge strong {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.1;
}

.store-badge.disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.store-badge.disabled:hover {
    transform: none;
}

/* "Coming Soon" styling overlay or tooltip could go here, 
   but simplistic opacity change handles the "inactive" look well. */

.store-badge.white {
    background: white;
    color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.store-badge.disabled.white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.link-muted {
    color: var(--text-secondary);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.link-muted:hover {
    color: var(--primary-blue);
}

.btn-sm {
    padding: 8px 16px !important;
    font-size: 0.9rem !important;
}

/* Adjust header link spacing */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

@media (max-width: 768px) {
    .store-badges {
        justify-content: center;
    }
}