
.coupon-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.coupon-content {
    flex: 1;
    max-width: 500px;
}

.active-from {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.coupon-title {
    font-size: 48px;
    font-weight: 700;
    color: #016701;
    line-height: 1.1;
    margin-bottom: 24px;
}

.coupon-description {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 32px;
}

.get-code-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #198754;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    border: 2px solid #198754;
}

.get-code-btn:hover {
    transform: translateY(-2px);
    background: #016701;
    border-color: #016701;
    color: #fff;
}

.coupon-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: 40px;
    overflow: hidden;
}

.coupon-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-coupons {
    text-align: center;
    padding: 100px 20px;
}

.no-coupons h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 16px;
}

.no-coupons p {
    color: #6b7280;
    font-size: 18px;
}

@media (max-width: 991px) {
    .coupon-card {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }

    .coupon-content {
        max-width: 100%;
    }

    .coupon-title {
        font-size: 36px;
    }

    .get-code-btn {
        margin: 0 auto;
    }
}