/* Start custom CSS for html, class: .elementor-element-88887a5 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #2b2024;
}

.jenvora-offers {
    background: #fff8fa;
    padding: 25px 0 90px;
}

.offers-container {
    width: min(1200px, 92%);
    margin: auto;
}


/* Breadcrumb */

.offers-breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.offers-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.offers-breadcrumb strong {
    color: #c82c67;
}


/* =========================================
   HERO
========================================= */

.offers-hero {
    min-height: 380px;
    padding: 55px 70px;
    border-radius: 20px;
    background: linear-gradient(
        120deg,
        #f8dce5,
        #fff0f4
    );

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;
}

.offers-hero-content {
    max-width: 650px;
}

.offers-hero-content > span {
    color: #c82c67;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.offers-hero-content h1 {
    font-size: 52px;
    margin: 12px 0;
    line-height: 1.1;
}

.offers-hero-content p {
    max-width: 530px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.offers-btn {
    display: inline-block;
    padding: 14px 24px;
    background: #c82c67;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.offers-btn:hover {
    background: #a92155;
}


/* Discount Circle */

.offer-discount {
    width: 210px;
    height: 210px;
    flex-shrink: 0;

    border-radius: 50%;
    background: #c82c67;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform: rotate(8deg);
}

.offer-discount small {
    font-size: 12px;
    letter-spacing: 2px;
}

.offer-discount strong {
    font-size: 65px;
    line-height: .95;
}

.offer-discount span {
    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   COUPON
========================================= */

.coupon-strip {
    margin: 25px 0 70px;

    background: #2b2024;
    color: white;

    border-radius: 10px;
    padding: 18px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-strip > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coupon-strip > div:first-child > span {
    font-size: 28px;
}

.coupon-strip strong {
    display: block;
}

.coupon-strip small {
    color: #ccc;
    font-size: 11px;
}

.coupon-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-code span {
    font-size: 10px;
    color: #ccc;
}

.coupon-code strong {
    color: #f4a4be;
    letter-spacing: 1px;
}

.coupon-code button {
    border: 1px dashed #f4a4be;
    background: transparent;
    color: white;
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 11px;
}


/* =========================================
   HEADING
========================================= */

.offers-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
}

.offers-heading > div > span {
    color: #c82c67;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.offers-heading h2 {
    font-size: 35px;
    margin: 8px 0;
}

.offers-heading p {
    color: #777;
    font-size: 14px;
}

.view-all-offers {
    color: #c82c67;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================
   PRODUCTS
========================================= */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.offer-product {
    min-width: 0;
}

.offer-image {
    height: 365px;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    background: #f7e9ee;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.offer-product:hover .offer-image img {
    transform: scale(1.06);
}


/* Badge */

.offer-badge {
    position: absolute;
    z-index: 3;
    left: 12px;
    top: 12px;

    background: #c82c67;
    color: white;

    padding: 7px 11px;
    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;
}


/* Wishlist */

.offer-wishlist {
    position: absolute;
    z-index: 4;
    right: 12px;
    top: 12px;

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;
    background: white;

    font-size: 21px;
    color: #555;
}

.offer-wishlist.active,
.offer-wishlist:hover {
    color: #c82c67;
}


/* Cart */

.offer-cart {
    position: absolute;
    z-index: 3;

    left: 12px;
    right: 12px;
    bottom: -55px;

    height: 44px;

    border: none;
    border-radius: 6px;

    background: #c82c67;
    color: white;

    font-size: 13px;
    font-weight: 700;

    transition: .35s;
}

.offer-product:hover .offer-cart {
    bottom: 12px;
}

.offer-cart:hover {
    background: #a92155;
}


/* Info */

.offer-info {
    padding-top: 15px;
}

.offer-info small {
    color: #999;
    font-size: 9px;
    letter-spacing: 1.5px;
}

.offer-info h3 {
    margin: 7px 0;
    font-size: 16px;
    line-height: 1.4;
}

.offer-rating {
    color: #e19a27;
    font-size: 12px;
}

.offer-rating span {
    color: #999;
}

.offer-price {
    display: flex;
    gap: 9px;
    margin-top: 8px;
    align-items: center;
}

.offer-price del {
    color: #999;
    font-size: 13px;
}

.offer-price strong {
    color: #c82c67;
    font-size: 17px;
}


/* =========================================
   BIG OFFER
========================================= */

.big-offer {
    margin-top: 75px;

    min-height: 300px;

    padding: 45px 60px;

    border-radius: 18px;

    background: #c82c67;
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.big-offer > div:first-child {
    max-width: 650px;
}

.big-offer span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.big-offer h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 12px 0;
}

.big-offer p {
    font-size: 14px;
    line-height: 1.7;
    opacity: .9;
}

.big-offer a {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 23px;

    background: white;
    color: #c82c67;

    border-radius: 5px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.big-offer-percent {
    width: 190px;
    height: 190px;

    border: 2px solid rgba(255,255,255,.5);
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: rotate(-8deg);
}

.big-offer-percent strong {
    font-size: 58px;
}

.big-offer-percent span {
    font-size: 15px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .offers-hero {
        padding: 45px;
    }

    .offers-hero-content h1 {
        font-size: 42px;
    }

    .offer-discount {
        width: 170px;
        height: 170px;
    }

    .offer-discount strong {
        font-size: 50px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-image {
        height: 340px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .jenvora-offers {
        padding: 20px 0 60px;
    }

    .offers-hero {
        min-height: auto;
        padding: 40px 25px;

        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .offers-hero-content h1 {
        font-size: 34px;
    }

    .offer-discount {
        width: 145px;
        height: 145px;
        align-self: center;
    }

    .offer-discount strong {
        font-size: 43px;
    }


    /* Coupon */

    .coupon-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 50px;
    }

    .coupon-code {
        width: 100%;
        justify-content: space-between;
    }


    /* Heading */

    .offers-heading {
        align-items: flex-start;
        gap: 15px;
    }

    .offers-heading h2 {
        font-size: 28px;
    }

    .offers-heading p {
        font-size: 12px;
    }

    .view-all-offers {
        white-space: nowrap;
    }


    /* Products */

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 12px;
    }

    .offer-image {
        height: 240px;
    }

    .offer-info h3 {
        font-size: 13px;
    }

    .offer-cart {
        display: none;
    }


    /* Big Offer */

    .big-offer {
        margin-top: 55px;
        padding: 40px 25px;

        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .big-offer h2 {
        font-size: 29px;
    }

    .big-offer-percent {
        width: 140px;
        height: 140px;
        align-self: center;
    }

    .big-offer-percent strong {
        font-size: 45px;
    }

}/* End custom CSS */