/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 6px 16px;
    /* Reduced padding */
    border-radius: 8px;
    /* Slightly reduced radius */
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    border: 1px solid #333;
    min-width: 130px;
}

.store-btn:hover {
    transform: translateY(-2px);
    background-color: #222;
}

.store-btn svg {
    width: 24px;
    /* Reduced specific size */
    height: 24px;
    margin-right: 10px;
    /* Space between icon and text */
    flex-shrink: 0;
}

/* Specific adjustment for Google Play icon to balance visual weight */
.store-buttons a:last-child svg {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    /* Compensate for smaller icon to keep alignment */
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.store-btn-text span:first-child {
    font-size: 0.65rem;
    /* Smaller subtext */
    font-weight: 400;
}

.store-btn-text span:last-child {
    font-size: 1rem;
    /* Smaller main text */
    font-weight: 600;
}