/* Store buttons */

.store-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.store-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 50px;
    padding: 0 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    color: white;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    overflow: hidden;
    background-clip: padding-box;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.store-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.play-store {
    background: #111827;
}

.app-store {
    background: #0877d8;
}

.store-button:hover,
.store-button:focus-visible {
    box-shadow: var(--shadow-md);
}

.store-button-outline {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border-color: var(--line);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

body.light .store-button-outline {
    color: var(--text-primary-light);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line-light);
}

.store-button-outline:hover,
.store-button-outline:focus-visible {
    border-color: rgba(79, 149, 244, 0.58);
}

@media (max-width: 640px) {
    .store-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .store-button {
        width: 100%;
    }
}