/*=========================================================
    SIGNATURE DISHES
=========================================================*/

.kk-signature-dishes{

    padding:90px 0;

    background:#FFFDF9;

    overflow:hidden;

}

/*=========================================================
    SWIPER
=========================================================*/

.kk-featured-swiper{

    margin-top:55px;

    padding-bottom:65px;

}

.kk-featured-swiper .swiper-wrapper{

    align-items:stretch;

}

.kk-featured-swiper .swiper-slide{

    display:flex;

    height:auto;

}

/*=========================================================
    CARD
=========================================================*/

.kk-featured-card{

    height:100%;

     width:100%;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #F2E8DA;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.kk-featured-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

/*=========================================================
    IMAGE
=========================================================*/

.kk-featured-image{

    position:relative;

    height:260px;

    background:#FFF8EE;

    display:flex;

    justify-content:center;

    align-items:center;

    padding: 0;       /* remove padding if image should fully fit/fill area */

}

.kk-featured-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.kk-featured-card:hover .kk-featured-image img{

    transform:scale(1.08);

}

/*=========================================================
    BADGE
=========================================================*/

.kk-featured-badge{

    position:absolute;

    top:18px;

    left:18px;

    background:#C62828;

    color:#fff;

    padding:8px 16px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    z-index:5;

}

.kk-chef-special{

    background:#D97706;

}

/*=========================================================
    CONTENT
=========================================================*/

.kk-featured-content{

    padding:24px;

}

.kk-featured-content h3{

    font-size:24px;

    color:#222;

    margin-bottom:12px;

    font-weight:700;

}

.kk-featured-content p{

    color:#666;

    font-size:15px;

    line-height:1.7;

    margin-bottom:22px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:52px;

}

.kk-featured-price{

    font-size:34px;

    font-weight:800;

    color:var(--kk-primary);

}

.kk-featured-price span{

    font-size:16px;

    color:#777;

    font-weight:500;

}

.kk-featured-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:20px;

    text-decoration:none;

    color:var(--kk-primary);

    font-weight:700;

    transition:.3s;

}

.kk-featured-link:hover{

    gap:14px;

}

/*=========================================================
    NAVIGATION
=========================================================*/

.kk-featured-swiper .swiper-button-next,
.kk-featured-swiper .swiper-button-prev{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#fff;

    border:1px solid #EEE;

    color:var(--kk-primary);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.kk-featured-swiper .swiper-button-next::after,
.kk-featured-swiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:700;

}

.kk-featured-swiper .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#DDD;

    opacity:1;

}

.kk-featured-swiper .swiper-pagination-bullet-active{

    width:28px;

    border-radius:999px;

    background:var(--kk-primary);

}

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

@media(max-width:991px){

    .kk-signature-dishes{

        padding:70px 0;

    }

    .kk-featured-image{

        height:220px;

    }

}

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

@media(max-width:767px){

    .kk-signature-dishes{

        padding:55px 0;

    }

    .kk-featured-swiper{

        margin-top:35px;

    }

    .kk-featured-content{

        padding:18px;

    }

    .kk-featured-image{

        height:200px;

    }

    .kk-featured-content h3{

        font-size:18px;

    }

    .kk-featured-content p{

        font-size:12px;

        min-height:auto;

    }

    .kk-featured-price{

        font-size:24px;

    }

     .kk-featured-swiper .swiper-button-prev,
    .kk-featured-swiper .swiper-button-next{

        display:none !important;

    }

      .kk-featured-swiper .swiper-pagination{

        bottom:0;

    }

    .kk-featured-swiper .swiper-pagination-bullet{

        width:10px;

        height:10px;

        margin:0 5px !important;

    }

    .kk-featured-swiper .swiper-pagination-bullet-active{

        width:28px;

    }

}