/* Store Button Styles */
.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.store-btn:hover {
    background: #333;
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.store-btn i {
    font-size: 2rem;
    color: #fff;
    /* Keep icons white for store standards */
}

.store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-btn div small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #ccc;
}

.store-btn div span {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    /* Store font look */
}