/* ==========================================================================
   KABAB MIYAN - MAIN STYLESHEET (style.css)
   ========================================================================== */

/* ==========================================================================
   1. GLOBAL & LAYOUT STYLES
   ========================================================================== */
:root {
    --km-teal: #0B4A45;
    --km-teal-light: #0D7377;
    --km-magenta: #C2185B;
    --km-yellow: #F5B837;
    --km-cream: #FFFDF9;
    --km-card-bg: #FAF5EC;
    --km-dark-text: #2C221E;
    --km-fry-bg: #FFF8EF;
    --km-serve-bg: #F2F9F8;
}

body {
    background-color: var(--km-cream);
    color: var(--km-dark-text);
    font-family: 'Outfit', sans-serif;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Top Announcement Bar */
.top-feature-bar {
    background-color: #dc3545 !important;
    color: #FFFFFF;
    font-size: 0.78rem;
    padding: 8px 0;
    font-weight: 600;
}

.km-header-red, .bg-danger-header {
    background-color: #dc3545 !important;
}
.km-header-red .km-nav-link, .bg-danger-header .km-nav-link {
    color: #FFFFFF !important;
}
.km-header-red .btn-outline-dark, .bg-danger-header .btn-outline-dark {
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
}

.top-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-icon-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
.top-icon-yellow { background-color: #F5B837; color: #121212; }
.top-icon-magenta { background-color: #D81B60; color: #FFFFFF; }
.top-icon-teal { background-color: #0D7377; color: #FFFFFF; }

/* Navigation Header */
.km-navbar, .km-navbar-transparent {
    display: flex;
    align-items: center;
    transition: all 0.25s ease-in-out;
}
.km-navbar, .km-inner-header {
    background-color: #faf4ec !important;
    border-bottom: 1px solid #EFE6D8;
}

.km-navbar-transparent {
    box-shadow: none !important;
    background-color: transparent !important;
}

.km-nav-link {
    color: #3D2B29 !important;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.2s, background-color 0.2s;
}
.km-nav-link:hover, .km-nav-link.active {
    color: var(--km-magenta) !important;
}

/* Transparent Header Legibility */
.km-navbar-transparent .km-nav-link {
    color: #FFFFFF !important;
    text-shadow: none !important;
}
.km-navbar-transparent .km-nav-link:hover, 
.km-navbar-transparent .km-nav-link.active {
    color: #FFB703 !important;
}
.km-navbar-transparent .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.7) !important;
    color: #FFFFFF !important;
    background-color: rgba(0, 0, 0, 0.25);
    text-shadow: none !important;
}
.km-navbar-transparent .btn-outline-dark:hover {
    background-color: #FFFFFF !important;
    color: #111111 !important;
    text-shadow: none !important;
}
.km-navbar-transparent .text-dark {
    color: #FFFFFF !important;
}

/* Shrunk/Scrolled Header state */
.km-header-shrunk.km-navbar-transparent {
    background-color: rgba(20, 22, 26, 0.94) !important;
    backdrop-filter: blur(10px);
}

.btn-order-magenta {
    background-color: var(--km-magenta);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 9px 22px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(194, 24, 91, 0.35);
    transition: all 0.2s ease;
}
.btn-order-magenta:hover {
    background-color: #a30f49;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.floating-wa-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1050;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Header Responsive Styles */
@media (min-width: 992px) {
    .km-absolute-center-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1050 !important;
        pointer-events: auto !important;
    }
}

@media (max-width: 991.98px) {
    .km-navbar, .km-navbar-transparent {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }
    .km-header-row {
        position: relative !important;
    }
    .navbar-collapse {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #FFFDF9;
        border-radius: 14px;
        padding: 16px;
        margin-top: 10px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
        border: 1px solid #EFE6D8;
        z-index: 1100 !important;
    }
    .navbar-nav {
        gap: 6px !important;
    }
    .navbar-collapse .km-nav-link {
        color: #212529 !important;
        text-shadow: none !important;
        padding: 10px 14px !important;
        border-radius: 8px;
        display: block;
    }
    .navbar-collapse .km-nav-link:hover, 
    .navbar-collapse .km-nav-link.active {
        color: var(--km-magenta) !important;
        background-color: #FAF5EC;
    }
    .top-feature-bar {
        font-size: 0.72rem;
        padding: 6px 0;
    }
    header.km-mob-sticky {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    header.km-mob-fixed {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    header.km-mob-absolute {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    header.km-mob-relative {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
    }
}

@media (max-width: 575.98px) {
    .btn-order-magenta {
        padding: 7px 13px !important;
        font-size: 0.76rem !important;
    }
    .top-feature-bar {
        font-size: 0.68rem;
    }
    .top-feature-item span {
        font-size: 0.68rem;
    }
}

/* ==========================================================================
   2. HERO CAROUSEL & BANNER STYLES
   ========================================================================== */
.hero-carousel-wrapper {
    background-color: #FAF5EE;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    padding-top: 80px;
    padding-bottom: 90px;
}

.hero-bg-floating-leaf-left {
    position: absolute;
    bottom: 40px;
    left: 30px;
    width: 120px;
    height: auto;
    opacity: 0.85;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)) blur(0.5px);
    transform: rotate(-15deg);
    animation: floatLeafLeft 6s ease-in-out infinite alternate;
}

.hero-bg-floating-leaf-top {
    position: absolute;
    top: 25px;
    right: 320px;
    width: 70px;
    height: auto;
    opacity: 0.9;
    z-index: 2;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
    animation: floatLeafTop 5s ease-in-out infinite alternate;
}

.hero-bg-floating-garlic {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 160px;
    height: auto;
    opacity: 0.9;
    z-index: 2;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.12));
    animation: floatGarlic 7s ease-in-out infinite alternate;
}

@keyframes floatLeafLeft {
    0% { transform: translateY(0px) rotate(-15deg); }
    100% { transform: translateY(-14px) rotate(-10deg); }
}
@keyframes floatLeafTop {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(8deg); }
}
@keyframes floatGarlic {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(-5deg); }
}

.hero-cursive-tagline {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.hero-restaurant-headline {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-weight: 900;
    color: #FF5722;
    font-size: 3.8rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.hero-description-paragraph {
    color: #665D5B;
    font-size: 0.95rem;
    max-width: 470px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 26px;
}

.btn-eat-now {
    background-color: #10B981;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 34px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35);
    transition: all 0.25s ease;
}
.btn-eat-now:hover {
    background-color: #059669;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(16, 185, 129, 0.45);
}

/* Right Showcase Area */
.hero-showcase-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.hero-showcase-bg-blob {
    position: absolute;
    width: 480px;
    height: 440px;
    background-color: #F4EBE0;
    border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
    z-index: 1;
    opacity: 0.85;
}

.hero-showcase-platter-img {
    max-width: 520px;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.18));
    transition: transform 0.4s ease;
}
.hero-showcase-platter-img:hover {
    transform: scale(1.03) rotate(1.5deg);
}

/* Bottom Wavy Shape */
.bottom-wavy-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    pointer-events: none;
}

/* Interactive Vertical Carousel Numbers */
.slider-vertical-indicators {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 25;
}

.indicator-num-btn {
    background: transparent;
    border: none;
    color: rgba(60, 50, 45, 0.4);
    font-weight: 800;
    font-size: 1rem;
    padding: 4px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.indicator-num-btn.active, .indicator-num-btn:hover {
    color: #FF5722;
    font-size: 1.3rem;
    transform: scale(1.15);
}

/* Restar Luxury Theme Hero Carousel Styles */
.restar-hero-outer-container {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 560px;
    max-height: 700px;
    background-color: transparent;
    overflow: hidden;
}

.restar-hero-main-area {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #FAF5EE;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 20c3-5 12-5 15 0 3 5 0 12-5 15-5 3-12 0-15-5s0-10 5-10zm40 30c4-4 10-4 14 0 4 4 4 10 0 14-4 4-10 4-14 0-4-4-4-10 0-14zm-30 25c2-3 8-3 10 0 2 3 0 8-3 10-3 2-8 0-10-3s0-7 3-7zm55-50c3-3 8-3 11 0 3 3 3 8 0 11-3 3-8 3-11 0-3-3-3-8 0-11z' fill='%23C59D5F' fill-opacity='0.07' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.restar-hero-left-col {
    padding-left: 1.5rem;
}
@media (min-width: 992px) {
    .restar-hero-left-col {
        padding-left: 10rem !important;
    }
}

.restar-script-line-tag {
    font-family: 'Caveat', cursive;
    font-size: 2.3rem;
    color: #C59D5F;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    line-height: 1.2;
}
.restar-script-line-tag::before, .restar-script-line-tag::after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 1.5px;
    background-color: #C59D5F;
}

.restar-main-headline {
    font-family: 'Outfit', 'Playfair Display', serif;
    font-weight: 900;
    font-style: italic;
    color: #121212;
    font-size: 4rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

.btn-restar-gold {
    background-color: #C59D5F;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 14px 38px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 6px 18px rgba(197, 157, 95, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}
.btn-restar-gold:hover {
    background-color: #a88248;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(197, 157, 95, 0.55);
}

/* Hero Carousel Navigation Controls (Arrows) */
.restar-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(17, 17, 17, 0.75);
    color: #FFFFFF;
    border: 2px solid rgba(197, 157, 95, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
    cursor: pointer;
    opacity: 0.85;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
.restar-carousel-arrow:hover {
    background-color: #C59D5F;
    color: #FFFFFF;
    border-color: #FFFFFF;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 22px rgba(197, 157, 95, 0.5);
}
.restar-carousel-arrow-prev {
    left: 20px;
}
.restar-carousel-arrow-next {
    right: 20px;
}

/* Delivery Partner Badges */
.delivery-partner-badge {
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, filter 0.2s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.delivery-partner-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Platter Showcase & Floating Discount Badge */
.restar-platter-wrapper {
    position: absolute;
    display: inline-block;
    left: -135px;
}

.restar-discount-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    z-index: 10;
    background-color: #C59D5F;
    color: #FFFFFF;
    padding: 14px 22px;
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.1;
}
.restar-discount-badge small {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.restar-discount-badge strong {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}

.restar-festive-ornaments {
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 4;
    opacity: 0.85;
}

/* Hero Banner Responsive Media Queries */
@media (max-width: 1399.98px) {
    .restar-hero-left-col {
        padding-left: 5rem !important;
    }
    .restar-platter-wrapper {
        left: -80px;
    }
}

@media (max-width: 1199.98px) {
    .restar-hero-left-col {
        padding-left: 2.5rem !important;
        padding-right: 1.5rem !important;
    }
    .restar-main-headline {
        font-size: clamp(2.4rem, 5vw, 3.4rem) !important;
    }
    .restar-platter-wrapper {
        left: -40px;
    }
}

@media (max-width: 991.98px) {
    .restar-hero-outer-container {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    .restar-hero-main-area,
    .restar-hero-main-area #heroCarousel,
    .restar-hero-main-area .carousel-inner,
    .restar-hero-main-area .carousel-item {
        height: auto !important;
        min-height: auto !important;
    }
    .restar-hero-main-area .col-lg-5 {
        height: auto !important;
        min-height: auto !important;
        padding-bottom: 2rem !important;
    }
    .restar-hero-left-col {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        padding-top: 3rem !important;
        padding-bottom: 1.5rem !important;
    }
    .restar-script-line-tag {
        font-size: clamp(1.6rem, 4vw, 2.2rem) !important;
    }
    .restar-main-headline {
        font-size: clamp(2.2rem, 5.5vw, 3.2rem) !important;
        margin-bottom: 16px !important;
    }
    .hero-description-paragraph {
        max-width: 100% !important;
        font-size: 0.92rem !important;
        margin-bottom: 20px !important;
    }
    .restar-platter-wrapper {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 1rem auto 1.5rem auto !important;
    }
    .restar-platter-img, .hero-platter-img {
        max-width: 360px !important;
        max-height: 300px !important;
        width: 85% !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    .restar-discount-badge {
        left: 50% !important;
        bottom: -10px !important;
        transform: translateX(-50%) !important;
    }
    .hero-bg-floating-garlic,
    .hero-bg-floating-leaf-top {
        display: none !important;
    }
    .hero-carousel-wrapper {
        min-height: auto !important;
        padding-top: 40px !important;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 767.98px) {
    .restar-hero-left-col {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        padding-top: 2.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .restar-script-line-tag {
        font-size: 1.6rem !important;
    }
    .restar-script-line-tag::before, .restar-script-line-tag::after {
        width: 20px !important;
    }
    .restar-main-headline {
        font-size: 2.1rem !important;
        line-height: 1.15 !important;
        margin-bottom: 14px !important;
    }
    .hero-description-paragraph {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }
    .btn-restar-gold {
        padding: 11px 28px !important;
        font-size: 0.82rem !important;
        margin-bottom: 20px !important;
    }
    .restar-carousel-arrow {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.85rem !important;
        background-color: rgba(17, 17, 17, 0.85) !important;
    }
    .restar-carousel-arrow-prev {
        left: 8px !important;
    }
    .restar-carousel-arrow-next {
        right: 8px !important;
    }
    .restar-platter-img, .hero-platter-img {
        max-width: 290px !important;
        max-height: 240px !important;
    }
    .hero-features-list {
        gap: 8px !important;
    }
    .hero-features-list span.small {
        font-size: 12px !important;
    }
}

@media (max-width: 575.98px) {
    .restar-hero-left-col {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-top: 1.75rem !important;
        padding-bottom: 1rem !important;
    }
    .restar-script-line-tag {
        font-size: 1.35rem !important;
    }
    .restar-main-headline {
        font-size: 3.7rem !important;
        margin-bottom: 10px !important;
    }
    .hero-description-paragraph {
        font-size: 0.84rem !important;
        margin-bottom: 14px !important;
    }
    .btn-restar-gold {
        padding: 10px 24px !important;
        font-size: 0.78rem !important;
        margin-bottom: 16px !important;
        letter-spacing: 0.06em !important;
    }
    .restar-platter-img, .hero-platter-img {
        max-width: 230px !important;
        max-height: 190px !important;
    }
    .delivery-partner-badge img {
        height: 26px !important;
    }
    .restar-carousel-arrow {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.75rem !important;
    }
    .restar-carousel-arrow-prev {
        left: 4px !important;
    }
    .restar-carousel-arrow-next {
        right: 4px !important;
    }
}

/* Hero Motion Keyframes & Animation Utility Classes */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoomIn {
    from { opacity: 0; transform: scale(0.88); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes heroSlideRight {
    from { opacity: 0; transform: translateX(-35px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroBounceIn {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    60% { opacity: 1; transform: translateY(-6px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatPlatterDish {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1.5deg); }
}
@keyframes pulseZoomImg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes rotateTiltPlatter {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-8px) rotate(-2deg) scale(1.02); }
    66% { transform: translateY(-14px) rotate(2deg) scale(1.03); }
}

/* Default Animation classes */
.carousel-item.active .hero-anim-tagline { animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.carousel-item.active .hero-anim-title { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both; }
.carousel-item.active .hero-anim-desc { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.carousel-item.active .hero-anim-btn { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both; }
.carousel-item.active .hero-anim-features { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both; }
.carousel-item.active .hero-anim-delivery { animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both; }
.hero-platter-img { animation: floatPlatterDish 5s ease-in-out infinite !important; }

/* ==========================================================================
   3. CAFE MENU STYLE (READY TO FRY SECTION)
   ========================================================================== */
.cafe-menu-wrapper {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 70px;
}

.ready-to-fry-container {
    width: 100%;
    padding-left: 100px !important;
    padding-right: 100px !important;
}

@media (max-width: 991.98px) {
    .ready-to-fry-container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 575.98px) {
    .ready-to-fry-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.cafe-pill-badge {
    background-color: #E2DDD5;
    color: #4A4A4A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 22px;
    display: inline-block;
    position: relative;
    clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
}

.cafe-main-title {
    font-family: 'Playfair Display', 'Cinzel', 'Georgia', serif;
    font-size: 2.6rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.1em;
    line-height: 1.25;
    color: #111111;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 28px;
}

@media (max-width: 767.98px) {
    .cafe-main-title {
        font-size: clamp(1.6rem, 6.5vw, 2.3rem) !important;
        margin-bottom: 18px !important;
        letter-spacing: 0.04em !important;
    }
    .cafe-tab-col {
        padding: 10px 0 !important;
    }
}

.cafe-column-title {
    font-family: 'Playfair Display', 'Cinzel', 'Georgia', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #1F1F1F;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 8px;
}

.cafe-item-row {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    transition: transform 0.2s ease;
}
.cafe-item-row:hover {
    transform: translateX(4px);
}

.cafe-item-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #FFFFFF;
}

.cafe-item-body {
    flex-grow: 1;
    margin-left: 16px;
    min-width: 0;
}

.cafe-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.cafe-item-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #111111;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cafe-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #B0A79E;
    margin: 0 10px;
    margin-bottom: 4px;
}

.cafe-item-price {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-size: 1.18rem;
    color: #C0392B;
    white-space: nowrap;
}

.cafe-item-desc {
    font-size: 0.81rem;
    color: #666666;
    font-style: italic;
    margin-top: 3px;
    margin-bottom: 0;
    line-height: 1.35;
}

.cafe-add-btn {
    background-color: transparent;
    color: #C0392B;
    border: 1px solid #D98880;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: 12px;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-add-cart-pill {
    background-color: #9E0100;
    color: #FFFFFF;
    border: 1px solid #9E0100;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(158, 1, 0, 0.2);
    flex-shrink: 0;
    margin-left: 10px;
    text-transform: uppercase;
}
.btn-add-cart-pill:hover {
    background-color: #7A0100;
    color: #FFFFFF;
    border-color: #7A0100;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 10px rgba(158, 1, 0, 0.35);
}

@media (max-width: 575.98px) {
    .cafe-item-row {
        margin-bottom: 20px !important;
        gap: 8px !important;
    }
    .cafe-item-img {
        width: 56px !important;
        height: 56px !important;
    }
    .cafe-item-body {
        margin-left: 8px !important;
    }
    .cafe-item-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 2px !important;
    }
    .cafe-item-name {
        font-size: 0.88rem !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }
    .cafe-item-dots {
        display: none !important;
    }
    .cafe-item-price {
        font-size: 1.5em !important;
    }
    .btn-add-cart-pill {
        padding: 6px 12px !important;
        font-size: 0.68rem !important;
        margin-left: 4px !important;
        white-space: nowrap !important;
    }
    .cafe-tab-btn {
        padding: 6px 14px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.05em !important;
    }
    .cafe-tab-icon {
        width: 18px !important;
        height: 18px !important;
        margin-right: 4px !important;
    }
    .feature-box-card {
        gap: 8px !important;
        padding: 8px 4px !important;
    }
    .feature-box-card i {
        font-size: 26px !important;
    }
    .feature-box-card img {
        width: 28px !important;
        height: 28px !important;
    }
    .feature-box-card strong {
        font-size: 18px !important;
        line-height: 1.25 !important;
    }
    .feature-box-card small {
        font-size: 10px !important;
        line-height: 1.2 !important;
    }
}

/* Category Filter Tabs Styles */
.cafe-tab-btn {
    background-color: #E2DDD5;
    color: #4A4A4A;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid #D5CDC4;
    transition: all 0.25s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.cafe-tab-btn:hover {
    background-color: #D3C9BE;
    color: #111111;
    transform: translateY(-1px);
}
.cafe-tab-btn.active {
    background-color: #C0392B;
    color: #FFFFFF;
    border-color: #C0392B;
    box-shadow: 0 4px 14px rgba(192, 57, 43, 0.3);
}

.cafe-tab-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: text-bottom;
    margin-right: 6px;
    filter: grayscale(1) brightness(0.2);
    transition: filter 0.2s ease;
}
.cafe-tab-btn.active .cafe-tab-icon {
    filter: brightness(0) invert(1);
}

/* Decorative Floating Icon Accents */
.cafe-accent-icon-left {
    position: absolute;
    left: 30px;
    bottom: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    animation: floatLeftIcon 6s ease-in-out infinite alternate;
}

.cafe-accent-icon-right {
    position: absolute;
    right: 30px;
    top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    pointer-events: none;
    z-index: 1;
    animation: floatRightIcon 7s ease-in-out infinite alternate;
}

.cafe-accent-icon-img {
    width: 85px;
    height: auto;
    object-fit: contain;
}

@keyframes floatLeftIcon {
    0% { transform: translateY(0px) rotate(-6deg); }
    100% { transform: translateY(-10px) rotate(6deg); }
}
@keyframes floatRightIcon {
    0% { transform: translateY(0px) rotate(6deg); }
    100% { transform: translateY(-12px) rotate(-6deg); }
}
@media (max-width: 991px) {
    .cafe-accent-icon-left, .cafe-accent-icon-right {
        display: none;
    }
}

/* ==========================================================================
   4. DELIVERY PROMO BANNER SECTION
   ========================================================================== */
.delivery-promo-fullwidth-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

.delivery-promo-banner-card {
    background-color: var(--promo-bg, #900C1F);
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: visible;
    padding: 55px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.promo-circles-pattern {
    position: absolute;
    right: 0;
    bottom: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 20%, transparent 20%), radial-gradient(circle, rgba(255,255,255,0.08) 20%, transparent 20%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    pointer-events: none;
    opacity: 0.7;
}

.promo-headline {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.promo-headline .highlight-yellow {
    color: #FFAE19;
    font-weight: 800;
}

.promo-desc {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 540px;
}

.btn-promo-order {
    background-color: #FF9F1C;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: 8px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 18px rgba(255, 159, 28, 0.4);
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-promo-order:hover {
    background-color: #F38D00;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 159, 28, 0.5);
}

.promo-phone-box {
    display: flex;
    flex-direction: column;
}

.promo-phone-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.promo-phone-num {
    font-family: 'Outfit', monospace;
    font-size: 1.45rem;
    font-weight: 800;
    color: #FFAE19;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.promo-courier-img {
    max-height: 435px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
    top: -70px;
    position: absolute;
    right: 0;
    z-index: 9999;
}

@media (max-width: 991px) {
    .promo-headline {
        font-size: 2rem;
    }
    .delivery-promo-banner-card {
        padding: 35px 24px;
    }
    .promo-courier-img {
        position: relative;
        top: 56px;
        right: auto;
        max-height: 280px;
    }
}

/* ==========================================================================
   5. READY TO SERVE SECTION (3-COLUMN LAYOUT)
   ========================================================================== */
.ready-to-serve-section {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
}

.ready-to-serve-section .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
}

.serve-tab-col {
    padding: 40px;
}

@media (max-width: 991px) {
    .serve-tab-col {
        padding: 10px;
    }
}

.serve-side-img-box {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
}

.serve-side-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    animation: none !important;
}

.serve-side-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #900C1F;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   6. FOOTER STYLES
   ========================================================================== */
.footer-caverta-style {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

.footer-main-phone {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-size: 2.75rem;
    letter-spacing: -0.02em;
    color: #1A1A1A !important;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-main-phone:hover {
    color: #900C1F !important;
    transform: scale(1.03);
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #0F1424;
    color: #FFFFFF !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(15, 20, 36, 0.15);
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: #900C1F;
    color: #FFFFFF !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(144, 12, 31, 0.3);
}

.partner-badge-footer {
    transition: all 0.25s ease;
}

.partner-badge-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.footer-copyright-text {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: #777777;
}

@media (max-width: 576px) {
    .footer-main-phone {
        font-size: 2rem;
    }
}
