
/*=========================================================
  menu-item.css - Eye Soothing Version
=========================================================*/
.kk-menu-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #EFE6DA;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    transition: all .30s ease;
    min-width: 0;
}

.kk-menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

.kk-menu-image {
    background: #FFF8F0;
    height: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* important */
    padding: 0;       /* remove padding if image should fully fit/fill area */
}

.kk-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* fills the full area */
    object-position: center; /* keeps image centered */
    transition: .35s ease;
}

.kk-menu-card:hover .kk-menu-image img {
    transform: scale(1.05);
}

.kk-menu-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #C62828;
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
}

.kk-menu-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.kk-food-type {
    display: inline-block;
    align-self: flex-start;
    background: #F6F6F6;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 12px;
    color: #666;
}

.kk-menu-body h3 {
    font-size: 21px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.kk-menu-body p {
    font-size: 14.5px;
    color: #777;
    line-height: 1.55;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.kk-price {
    margin-top: auto;
    color: var(--kk-primary);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.1;
}

.kk-price span {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

.kk-menu-body .kk-btn,
.kk-menu-body .kk-btn-primary {
    margin-top: 16px;
    font-size: 14px;
    padding: 13px 16px;
}

.kk-whatsapp-btn {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px 16px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.kk-whatsapp-btn:hover {
    background: #1EBE5D;
}

@media (max-width: 991px) {
    .kk-menu-image {
        height: 200px;
    }

    .kk-menu-body {
        padding: 20px;
    }

    .kk-menu-body h3 {
        font-size: 20px;
    }

    .kk-price {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .kk-menu-card {
        border-radius: 18px;
    }

    .kk-menu-image {
        height: 200px;
    }

    .kk-menu-body {
        padding: 18px;
    }

    .kk-menu-body h3 {
        font-size: 18px;
    }

    .kk-menu-body p {
        font-size: 12px;
        min-height: auto;
    }

    .kk-price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .kk-menu-image {
        height: 190px;
    }

    .kk-menu-body h3 {
        font-size: 18px;
    }

    .kk-price {
        font-size: 24px;
    }
}

/*=========================================================
    MENU META
=========================================================*/

.kk-menu-meta{

    display:flex;

    align-items:flex-start;

    gap:8px;

    margin-bottom:8px;

    font-size:13px;

    color: var(--kk-text-muted);

}

.kk-menu-meta i{

    color:var(--kk-primary);

    font-weight:600;

    width:18px;

    margin-top:2px;

    flex-shrink:0;

}