﻿/* App store buttons */
.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #1a1a1a;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .store-button:hover {
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .store-button svg {
        width: 28px;
        height: 28px;
        fill: white;
    }

.store-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-button-small {
    font-size: 0.65rem;
    opacity: 0.8;
}

.store-button-large {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}
