.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;
    }
}

.card_store_discount {
    position: absolute;
    top: 18px;
    right: 24px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(74, 222, 128, 0.55);
    box-shadow:
        0 0 8px rgba(34, 197, 94, 0.45),
        0 0 18px rgba(34, 197, 94, 0.28);

    color: #bbf7d0;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: discountPulse 2.2s ease-in-out infinite;
}

@keyframes discountPulse {

    0%,
    100% {
        transform: translateY(0);
        box-shadow:
            0 0 8px rgba(34, 197, 94, 0.45),
            0 0 18px rgba(34, 197, 94, 0.28);
        background: rgba(34, 197, 94, 0.14);
    }

    50% {
        transform: translateY(-1px);
        box-shadow:
            0 0 3px rgba(34, 197, 94, 0.7),
            0 0 10px rgba(34, 197, 94, 0.45);
        background: rgba(34, 197, 94, 0.22);
    }
}