/* Coupon-Style Offers Page */
.offers-section {
    min-height: 60vh;
    background: #f5f5f5;
    padding: 80px 0;
}

/* Coupon Card - Main Container */
.coupon-card {
    width: 100%;
    height: 180px;
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    padding: 10px;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.coupon-card:hover {
    border-color: #0068D9;
    transform: translateY(-2px);
}

.coupon-card.upcoming {
    opacity: 0.85;
}

.coupon-card.highlighted {
    border: 2px solid #0068D9;
}

/* Perforation circles on sides */
.coupon-card::after {
    position: absolute;
    content: "";
    height: 40px;
    right: -20px;
    border-radius: 40px;
    z-index: 1;
    top: 70px;
    background-color: #f5f5f5;
    width: 40px;
}

.coupon-card::before {
    position: absolute;
    content: "";
    height: 40px;
    left: -20px;
    border-radius: 40px;
    z-index: 1;
    top: 70px;
    background-color: #f5f5f5;
    width: 40px;
}

.coupon-card.highlighted::before,
.coupon-card.highlighted::after {
    background-color: #0068D9;
}

/* Main Content */
.coupon-main {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    height: 100px;
    position: relative;
}

/* Image */
.coupon-img {
    flex-shrink: 0;
    padding-right: 20px;
}

.coupon-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 4px;
}


/* Content */
.coupon-content {
    flex: 1;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.coupon-content h1 {
    font-size: 35px;
    margin: 0;
    color: #565656;
    font-weight: 600;
    line-height: 1.2;
}

.coupon-content h1 span {
    font-size: 18px;
    font-weight: 400;
}

.coupon-content h2 {
    font-size: 18px;
    margin: 0;
    color: #565656;
    text-transform: uppercase;
    font-weight: 500;
}

.coupon-content p {
    font-size: 16px;
    color: #696969;
    margin: 0;
}

/* Copy Button Section */
.coupon-copy-button {
    margin: 12px 0 -5px 0;
    height: 45px;
    border-radius: 4px;
    padding: 0 5px;
    border: 1px solid #e1e1e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-copy-button input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 0 10px;
    color: #565656;
    background: transparent;
}

.coupon-copybtn {
    padding: 5px 20px;
    background-color: #0068D9;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.coupon-copybtn:hover {
    background-color: #0056b3;
}

.coupon-copybtn.copied {
    background-color: #10b981;
}

/* Section Headers */
.offers-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Highlighted coupon animation */
@keyframes highlightPulse {
    0%, 100% {
        border-color: #0068D9;
    }
    50% {
        border-color: #0056b3;
    }
}

.coupon-card.highlighted {
    animation: highlightPulse 2s ease-in-out;
}

/* Responsive Design */
@media (max-width: 991px) {
    .coupon-card {
        height: auto;
        min-height: 180px;
    }

    .coupon-main {
        flex-direction: column;
        height: auto;
        padding: 15px 10px;
    }

    .coupon-vertical {
        display: none;
    }

    .coupon-content {
        margin-left: 0;
        text-align: center;
        margin-top: 15px;
    }

    .coupon-content h1,
    .coupon-content h2,
    .coupon-content p {
        margin-left: 0;
    }

    .coupon-card::before,
    .coupon-card::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .offers-section {
        padding: 40px 0;
    }
    
    .offers-section h1 {
        font-size: 32px !important;
    }
    
    .coupon-card {
        padding: 15px;
    }

    .coupon-img img {
        width: 80px;
        height: 80px;
    }

    .coupon-content h1 {
        font-size: 28px;
    }

    .coupon-content h1 span {
        font-size: 16px;
    }

    .coupon-content h2 {
        font-size: 16px;
    }

    .coupon-content p {
        font-size: 14px;
    }

    .coupon-copy-button {
        height: 40px;
    }

    .coupon-copybtn {
        padding: 5px 15px;
        font-size: 12px;
    }
}
