/* Minimal store buttons styles for homepage */

.store-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

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

.play-store {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #ea4335 100%);
}

.app-store {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

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

    .store-button {
        width: 100%;
        justify-content: center;
    }
}