    /* General Styling */
    .store-card, .coupon-card {
        border: none;
        border-radius: 12px;
        padding: 15px;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }
    .store-card:hover, .coupon-card:hover {
        transform: scale(1.02);
    }
    .store-card img {
        max-width: 100px;
        margin: auto;
    }
    .coupon-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
        padding: 15px;
        border-left: 5px solid #c61cc6;
    }
    .coupon-card img {
        width: 80px;
        height: auto;
        border-radius: 8px;
    }
    .coupon-details {
        flex-grow: 1;
        padding: 10px;
    }
    .coupon-details span {
        font-size: 28px;
        margin: 0;
    }
    .coupon-details p {
        font-size: 16px;
        margin: 0;
    }
    .coupon-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
        .bg-purple {
        background-color: #6f42c1;
        color: #fff;
    }

    /* .coupon-actions a {
        text-decoration: none;
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease-in-out;
    } */


    /* Responsive Styles */
    @media (max-width: 768px) {
        .stores-section {
            text-align: center;
            margin-bottom: 20px;
        }
        .coupon-card {
            flex-direction: row;
            align-items: center;
            padding: 12px;
        }
        .coupon-card img {
            width: 60px;
        }
        .coupon-details {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .coupon-details span {
            font-size: 14px;
        }
        .coupon-details p {
            font-size: 12px;
        }
        .coupon-actions {
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
    }