/*=========================================================
    PREMIUM OFFER BANNER
=========================================================*/

.kk-offer-banner{

    padding:60px 0;

}

.kk-offer-card{

    position:relative;

    overflow:hidden;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:45px;

    border-radius:30px;

    background:
        radial-gradient(circle at top right,#F7B73122 0%,transparent 45%),
        linear-gradient(135deg,#8E1B1B,#C0392B,#E67E22);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.kk-offer-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../../images/menu/spices-pattern.png");

    opacity:.05;

    pointer-events:none;

}

/*=========================================================*/

.kk-offer-left{

    position:relative;

    z-index:2;

    flex:1;

    max-width:520px;

}

.kk-offer-pill{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    color:#fff;

    font-size:14px;

    font-weight:600;

}

.kk-offer-left h2{

    margin:20px 0 15px;

    color:#fff;

    font-size:54px;

    line-height:1.05;

    font-weight:800;

}

.kk-offer-left p{

    color:#FFF;

    font-size:19px;

    line-height:1.7;

    opacity:.95;

    margin-bottom:30px;

}

/*=========================================================*/

.kk-offer-visual{

    display:flex;

    align-items:center;

    gap:25px;

    position:relative;

    z-index:2;

}

.kk-offer-center{

    position:relative;

}

.kk-offer-center img{

    width:340px;

    animation:kkFloat 4s ease-in-out infinite;

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.35));

}

.kk-offer-right{

    margin-left:-40px;

    z-index:5;

}

.kk-discount-circle{

    width:170px;

    height:170px;

    border-radius:50%;

    background:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}

.kk-discount-circle small{

    color:#999;

    letter-spacing:2px;

    font-weight:700;

    font-size:12px;

}

.kk-discount-circle span{

    font-size:62px;

    line-height:1;

    font-weight:800;

    color:var(--kk-primary);

}

.kk-discount-circle strong{

    color:var(--kk-primary);

    font-size:22px;

}

/*=========================================================*/

@keyframes kkFloat{

    0%,100%{

        transform:translateY(8px);

    }

    50%{

        transform:translateY(-8px);

    }

}

/*=========================================================
    LAPTOP
=========================================================*/

@media(max-width:1200px){

    .kk-offer-left h2{

        font-size:42px;

    }

    .kk-offer-left p{

        font-size:17px;

    }

    .kk-offer-center img{

        width:270px;

    }

    .kk-discount-circle{

        width:145px;

        height:145px;

    }

    .kk-discount-circle span{

        font-size:50px;

    }

}

/*=========================================================
    TABLET
=========================================================*/

@media(max-width:991px){

    .kk-offer-card{

        flex-direction:column;

        text-align:center;

        padding:35px;

    }

    .kk-offer-left{

        max-width:100%;

    }

    .kk-offer-visual{

        justify-content:center;

    }

    .kk-offer-left h2{

        font-size:38px;

    }

    .kk-offer-center img{

        width:240px;

    }

    .kk-offer-right{

        margin-left:-25px;

    }

}

/*=========================================================
    MOBILE
=========================================================*/

@media(max-width:767px){

    .kk-offer-banner{

        padding:35px 0;

    }

    .kk-offer-card{

        padding:22px 18px;

        border-radius:22px;

    }

    .kk-offer-pill{

        font-size:12px;

    }

    .kk-offer-left h2{

        font-size:30px;

    }

    .kk-offer-left p{

        font-size:15px;

        margin-bottom:20px;

    }

    .kk-offer-actions .kk-btn{

        width:100%;

    }

    .kk-offer-visual{

        flex-direction:row;

        gap:10px;

    }

    .kk-offer-center img{

        width:170px;

    }

    .kk-offer-right{

        margin-left:-15px;

    }

    .kk-discount-circle{

        width:95px;

        height:95px;

    }

    .kk-discount-circle small{

        font-size:9px;

    }

    .kk-discount-circle span{

        font-size:32px;

    }

    .kk-discount-circle strong{

        font-size:16px;

    }

}