/* .card_store_blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    width: 100%;
} */

.card_store_blocks {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.card_store_main {
    border: 2px solid var(--bottom-line-table);
    height: 244px;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 560px;
}

.card_store_main:hover img {
    transform: scale(1.05) translateY(-5px); 
    transition: transform 0.3s ease;
}

.card_store_main img {
    width: 250px;
    height: 250px;
    transition: transform 0.3s ease;
    margin: 0 20px;
    user-select: none;
    pointer-events: none;
}

.card_store_desc h2 {
    font-size: 24px;
}

.card_store_desc p {
    font-size: 16px;
}

.card_store_discount {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--span);
    font-weight: bold;
}

.card_store_arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    transition: transform 0.3s ease;
}

.card_store_main:hover .card_store_arrow {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

@media (max-width: 768.9px) {
    .card_store_main {
        flex-direction: column;
        height: 366px;
    }
    
    .card_store_desc {
        text-align: center;
    }

    .card_store_desc p {
        margin: 0 20px;
    }
}