/* Game Store Buttons Styling */
.game-store-buttons,
.block-games-collection__card-button-wrapper .store-buttons-list,
.store-buttons-list {
    display: flex !important;
    gap: 10px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

.game-store-buttons .store-button,
.block-games-collection__card-button-wrapper .store-buttons-list .store-button,
.store-buttons-list .store-button {
    display: inline-block !important;
    height: 50px !important;
    max-height: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

.game-store-buttons .store-button:hover,
.block-games-collection__card-button-wrapper .store-buttons-list .store-button:hover,
.store-buttons-list .store-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.game-store-buttons .store-button-logo,
.game-store-buttons img,
.block-games-collection__card-button-wrapper .store-buttons-list .store-button-logo,
.store-buttons-list .store-button-logo {
    height: 50px !important;
    max-height: 50px !important;
    width: auto !important;
    display: block !important;
}

.store-buttons-list .store-button-text {
    display: inline-block;
    padding: 0 20px;
    background: #FFD700;
    color: #212121;
    font-weight: 600;
    font-size: 13px;
    height: 50px;
    line-height: 50px;
}

@media (max-width: 768px) {
    .store-buttons-list {
        gap: 8px;
    }
    
    .store-buttons-list .store-button {
        height: 36px;
    }
    
    .store-buttons-list .store-button-logo {
        height: 36px;
    }
    
    .store-buttons-list .store-button-text {
        height: 36px;
        line-height: 36px;
        padding: 0 16px;
        font-size: 12px;
    }
}
