@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Caveat';
    src: url('../fonts/Caveat/Caveat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/* =========================================================
ROOT
========================================================= */

:root{

    /* COLORS */

    --primary:#ff5b1f;
    --primary-dark:#eb4a10;
    --secondary:#ff9f1c;

    --dark:#25140f;
    --heading:#1f130d;

    --text:#6e635d;
    --muted:#9b8f88;

    --white:#ffffff;

    /* BACKGROUND */

    --bg:
        linear-gradient(
            180deg,
            #fff8f3 0%,
            #fffaf7 46%,
            #fff5ef 100%
        );

    /* SURFACE */

    --surface:#ffffff;
    --surface-soft:#fffdfb;

    /* BORDER */

    --border:
        rgba(35,18,13,.07);

    --border-hover:
        rgba(255,91,31,.18);

    /* SHADOW */

    --shadow-sm:
        0 4px 14px rgba(15,15,15,.04);

    --shadow-md:
        0 12px 30px rgba(15,15,15,.06);

    --shadow-lg:
        0 24px 60px rgba(15,15,15,.08);

    --shadow-orange:
        0 20px 48px rgba(255,91,31,.14);

    /* RADIUS */

    --radius-card:28px;
    --radius-soft:18px;
    --radius-btn:16px;
    --radius-pill:999px;

    /* LAYOUT */

    --section-y:110px;
    --container-width:1320px;

    /* TYPOGRAPHY */

    --font-main:'Plus Jakarta Sans',sans-serif;
    --font-script:'Caveat',cursive;

    /* TRANSITION */

    --transition:
        .35s cubic-bezier(.4,0,.2,1);
}

/* =========================================================
RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    min-width:320px;

    overflow-x:hidden;

    background:var(--bg);

    color:var(--dark);

    font-family:var(--font-main);

    font-size:16px;

    line-height:1.75;

    text-rendering:optimizeLegibility;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

ul,
ol{
    list-style:none;
    padding:0;
    margin:0;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

button{
    border:none;
    outline:none;
    background:none;
    cursor:pointer;
}

/* =========================================================
CONTAINER
========================================================= */

.container{
    max-width:var(--container-width);
}

/* =========================================================
TYPOGRAPHY
========================================================= */

.section-title{

    color:var(--heading);

    font-size:64px;

    font-weight:900;

    line-height:1.05;

    letter-spacing:-.03em;
}

.section-title span{
    color:var(--primary);
}

.section-desc{

    color:var(--text);

    font-size:17px;

    line-height:1.9;
}

.section-header{

    max-width:760px;

    margin:
        0 auto 72px;
}

/* =========================================================
SECTION SUBTITLE
========================================================= */

.section-subtitle{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:8px;

    min-height:38px;

    padding:10px 16px;

    border:
        1px solid rgba(255,91,31,.12);

    border-radius:
        var(--radius-pill);

    background:
        rgba(255,255,255,.85);

    backdrop-filter:
        blur(12px);

    color:
        var(--primary);

    font-size:13px;
    font-weight:800;

    box-shadow:
        var(--shadow-sm);

    margin-bottom:18px;
}

/* =========================================================
BUTTONS
========================================================= */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 28px;

    border-radius:18px;

    font-size:15px;
    font-weight:800;

    letter-spacing:.01em;

    transition:
        all .35s cubic-bezier(.4,0,.2,1);

    border:none;

    text-decoration:none;
}

/* =========================
PRIMARY
========================= */

.btn-primary{

    color:#fff !important;

    background:
        linear-gradient(
            135deg,
            #ff5b1f,
            #ff7b22,
            #ffb224
        );

    box-shadow:
        0 14px 34px rgba(255,91,31,.22);

    border:none !important;
}

.btn-primary:hover{

    color:#fff !important;

    transform:
        translateY(-3px);

    box-shadow:
        0 22px 46px rgba(255,91,31,.30);

    background:
        linear-gradient(
            135deg,
            #ff4d12,
            #ff6a18,
            #ffa51c
        );
}

.btn-primary:focus{

    color:#fff !important;

    box-shadow:
        0 0 0 5px rgba(255,91,31,.15),
        0 18px 40px rgba(255,91,31,.25);
}

/* =========================
SECONDARY
========================= */

.btn-secondary{

    color:var(--heading) !important;

    background:
        rgba(255,255,255,.9);

    border:
        1px solid rgba(255,91,31,.15) !important;

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 10px 24px rgba(15,15,15,.05);
}

.btn-secondary:hover{

    color:var(--primary) !important;

    background:
        #fff;

    border-color:
        rgba(255,91,31,.25) !important;

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px rgba(15,15,15,.08);
}

.btn-secondary:focus{

    color:var(--primary) !important;

    box-shadow:
        0 0 0 5px rgba(255,91,31,.08);
}

/* =========================
ACTIVE
========================= */

.btn:active{
    transform:translateY(-1px);
}

/* =========================================================
UTILITY
========================================================= */

.text-primary{
    color:var(--primary)!important;
}

.bg-primary{
    background:var(--primary)!important;
}

.rounded-soft{
    border-radius:var(--radius-soft);
}

.rounded-card{
    border-radius:var(--radius-card);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    :root{
        --section-y:90px;
    }

    .section-title{
        font-size:52px;
    }

}

@media(max-width:768px){

    body{
        font-size:15px;
    }

    .section-title{
        font-size:42px;
    }

    .btn{
        width:100%;
    }

}

@media(max-width:576px){

    :root{
        --section-y:74px;
    }

    .section-title{
        font-size:36px;
    }

}

@media(max-width:420px){

    .section-title{
        font-size:32px;
    }

}

/* =========================================================
NAVBAR
========================================================= */

.navbar-custom{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    padding:18px 0;

    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.navbar-custom.scrolled{

    background:
        rgba(255,255,255,.82);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 10px 30px rgba(15,15,15,.05);
}

.navbar-menu-page{
    background:
        rgba(255,255,255,.86);
    backdrop-filter:
        blur(18px);
    box-shadow:
        0 10px 30px rgba(15,15,15,.05);
}

/* =========================================================
WRAPPER
========================================================= */

.nav-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:24px;
}

/* =========================================================
LOGO
========================================================= */

.logo{

    position:relative;

    z-index:1001;

    display:flex;
    align-items:center;

    gap:12px;
}

.logo img{

    width:52px;

    filter:
        drop-shadow(
            0 10px 24px rgba(255,91,31,.14)
        );
}

.logo-title{

    color:var(--primary);

    font-size:22px;
    font-weight:900;

    line-height:1;
}

.logo-sub{

    margin-top:4px;

    color:var(--primary);

    font-size:10px;
    font-weight:800;

    letter-spacing:2px;
}

/* =========================================================
MENU
========================================================= */

.nav-menu{

    display:flex;
    align-items:center;

    gap:34px;
}

.nav-link-custom{

    position:relative;

    color:var(--dark);

    font-size:15px;
    font-weight:700;

    transition:
        color var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active{

    color:var(--primary);
}

.nav-link-custom::before{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:3px;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--secondary)
        );

    transition:
        width var(--transition);
}

.nav-link-custom:hover::before,
.nav-link-custom.active::before{

    width:100%;
}

/* =========================================================
ORDER BUTTON
========================================================= */

.btn-order{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:52px;

    padding:0 24px;

    border-radius:
        var(--radius-btn);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    font-size:14px;
    font-weight:700;

    box-shadow:
        var(--shadow-orange);

    transition:
        all var(--transition);
}

.btn-order:hover{

    color:#fff;

    transform:
        translateY(-2px);

    box-shadow:
        0 18px 40px rgba(255,91,31,.22);
}

/* =========================================================
MOBILE TOGGLE
========================================================= */

.mobile-toggle{

    display:none;

    width:50px;
    height:50px;

    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:#fff;

    box-shadow:
        var(--shadow-sm);
}

.mobile-toggle i{

    color:var(--primary);

    font-size:24px;
}

/* =========================================================
MOBILE MENU
========================================================= */

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:320px;
    max-width:88%;

    height:100vh;

    z-index:1000;

    padding:110px 28px 36px;

    background:#fff;

    transition:
        right .4s ease;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 0;

    border-bottom:
        1px solid var(--border);

    font-size:15px;
    font-weight:700;
}

/* =========================================================
OVERLAY
========================================================= */

.mobile-overlay{

    position:fixed;
    inset:0;

    z-index:998;

    opacity:0;
    visibility:hidden;

    background:
        rgba(0,0,0,.45);

    transition:.3s;
}

.mobile-overlay.active{

    opacity:1;
    visibility:visible;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .nav-menu{
        display:none;
    }

    .btn-order{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

}

@media(max-width:576px){

    .logo img{
        width:46px;
    }

    .logo-title{
        font-size:18px;
    }

    .logo-sub{
        font-size:9px;
        letter-spacing:1.5px;
    }

    .mobile-menu{
        width:300px;
    }

}
/* =========================================================
HERO
========================================================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    padding:150px 0 100px;

    background:
        linear-gradient(
            180deg,
            #fff8f2 0%,
            #fffdfb 100%
        );
}

/* =========================================================
BACKGROUND GLOW
========================================================= */

.hero::before{

    content:'';

    position:absolute;

    top:-300px;
    right:-200px;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(255,91,31,.20) 0%,
            rgba(255,91,31,.08) 45%,
            transparent 75%
        );

    filter:blur(90px);

    pointer-events:none;
}

.hero::after{

    content:'';

    position:absolute;

    left:-200px;
    bottom:-220px;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(255,159,28,.16) 0%,
            transparent 70%
        );

    filter:blur(100px);

    pointer-events:none;
}

/* =========================================================
CONTENT
========================================================= */

.hero-content{
    position:relative;
    z-index:2;
}

.script-title{

    font-family:var(--font-script);

    font-size:90px;

    line-height:1;

    color:var(--primary);

    text-shadow:
        0 12px 30px rgba(255,91,31,.12);
}

.hero-title{

    margin-top:10px;

    line-height:.88;
}

.hero-title span{

    display:block;

    font-size:130px;

    font-weight:900;

    letter-spacing:-.06em;
}

.hero-title .orange{

    background:
        linear-gradient(
            135deg,
            #ff6b1c,
            #ffb100
        );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.hero-title .dark{

    color:var(--heading);
}

.hero-desc{

    max-width:620px;

    margin-top:28px;

    color:var(--text);

    font-size:18px;

    line-height:1.9;
}

/* =========================================================
BUTTONS
========================================================= */

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:36px;
}

.hero-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:58px;

    padding:0 28px;

    border-radius:18px;

    font-size:14px;
    font-weight:700;

    transition:.3s ease;
}

.hero-btn.primary{

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    box-shadow:
        0 18px 40px rgba(255,91,31,.18);
}

.hero-btn.primary:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 25px 50px rgba(255,91,31,.28);
}

.hero-btn.secondary{

    background:#fff;

    border:1px solid rgba(255,91,31,.12);

    color:var(--primary);
}

.hero-btn.secondary:hover{

    background:
        rgba(255,91,31,.05);

    transform:translateY(-3px);
}

/* =========================================================
IMAGE AREA
========================================================= */

.hero-image-wrap{

    position:relative;

    text-align:center;
}

/* ORANGE GLOW */

.hero-glow{

    position:absolute;

    top:50%;
    left:50%;

    width:460px;
    height:460px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(255,145,0,.30) 0%,
            rgba(255,145,0,.12) 45%,
            transparent 75%
        );

    transform:
        translate(-50%,-50%);

    filter:blur(60px);

    z-index:1;
}

/* FOOD IMAGE */

.hero-image img{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:auto;

    filter:
        drop-shadow(
            0 50px 90px rgba(0,0,0,.18)
        );

    animation:
        heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat{

    50%{
        transform:
            translateY(-14px);
    }
}

/* =========================================================
TOP BADGE
========================================================= */

.badge-top{
    position:absolute;
    top:28px;
    left:0;
    z-index:3;
    width:130px;
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fff7ef
        );
    border: 8px double rgba(240,90,36,.28);
    color:var(--primary);
    font-size:17px;
    font-weight:900;
    line-height:1.2;
    text-align:center;
    transform:rotate(-12deg);
    box-shadow: 0 25px 50px rgba(0,0,0,.08);
}

/* =========================================================
BOTTOM BADGE
========================================================= */

.badge-bottom{

    position:absolute;

    right:0;
    bottom:40px;

    z-index:3;

    padding:24px;

    border-radius:24px;

    background:
        rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(255,91,31,.08);

    box-shadow:
        0 25px 60px rgba(0,0,0,.08);
}

.badge-bottom h3{

    margin:0;

    font-size:38px;

    font-weight:900;

    line-height:1;
}

.badge-bottom span{
    color:var(--primary);
}

.badge-bottom p{

    margin-top:12px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-height:36px;

    padding:0 14px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    font-size:12px;
    font-weight:700;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .hero{
        text-align:center;
    }

    .hero-desc{
        margin-inline:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image-wrap{
        margin-top:40px;
    }

    .hero-title span{
        font-size:86px;
    }

    .script-title{
        font-size:70px;
    }
}

@media(max-width:768px){

    .hero{
        padding:130px 0 80px;
    }

    .hero-title span{
        font-size:64px;
    }

    .script-title{
        font-size:50px;
    }

    .hero-btn{
        width:100%;
    }

    .hero-glow{
        width:320px;
        height:320px;
    }
}

@media(max-width:480px){

    .hero-title span{
        font-size:48px;
    }

    .script-title{
        font-size:40px;
    }

    .badge-top{

        width:90px;
        height:90px;

        font-size:11px;
    }

    .badge-bottom{

        padding:16px;
    }

    .badge-bottom h3{
        font-size:24px;
    }
}

/* =========================================================
ARTICLE SECTION
========================================================= */

.article-section{
    position:relative;
    padding:120px 0;
}

.article-footer{
    margin-top:56px;
    text-align:center;
}

/* =========================================================
CARD
========================================================= */

.article-card{

    display:flex;
    flex-direction:column;

    height:100%;

    overflow:hidden;

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

    border-radius:24px;

    transition:all .35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.03);
}

.article-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,91,31,.18);

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}

/* =========================================================
IMAGE
========================================================= */

.article-image{
    position:relative;
    overflow:hidden;
}

.article-image img{

    width:100%;
    height:240px;

    object-fit:cover;

    transition:.6s;
}

.article-card:hover .article-image img{
    transform:scale(1.08);
}

.article-category{

    position:absolute;

    top:18px;
    left:18px;

    padding:8px 14px;

    background:rgba(255,255,255,.95);

    border-radius:999px;

    border:1px solid rgba(0,0,0,.05);

    backdrop-filter:blur(10px);

    font-size:12px;
    font-weight:700;

    color:var(--primary);
}

/* =========================================================
CONTENT
========================================================= */

.article-content{

    display:flex;
    flex-direction:column;
    flex:1;

    padding:24px;
}

.article-meta{

    display:flex;
    flex-wrap:wrap;

    gap:18px;

    margin-bottom:16px;

    color:#8c8c8c;

    font-size:13px;
}

.article-meta span{

    display:flex;
    align-items:center;

    gap:6px;
}

.article-meta i{
    color:var(--primary);
}

.article-title{

    margin-bottom:12px;

    color:var(--heading);

    font-size:22px;
    font-weight:800;

    line-height:1.4;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.article-desc{

    margin-bottom:20px;

    color:var(--text);

    font-size:14px;

    line-height:1.8;

    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.article-link{

    margin-top:auto;

    display:inline-flex;
    align-items:center;

    gap:8px;

    font-size:14px;
    font-weight:700;

    color:var(--primary);

    transition:.3s;
}

.article-link:hover{

    gap:12px;

    color:var(--primary-dark);
}

/* =========================================================
BUTTON
========================================================= */

.article-more-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 32px;

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    border-radius:18px;

    color:var(--heading);

    font-weight:700;

    transition:.3s;
}

.article-more-btn:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 16px 35px rgba(255,91,31,.25);
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:991px){

    .article-section{
        padding:90px 0;
    }

    .article-image img{
        height:220px;
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .article-section{
        padding:70px 0;
    }

    .article-section .row{
        --bs-gutter-x:12px;
        --bs-gutter-y:12px;
    }

    .article-card{
        border-radius:18px;
    }

    .article-image img{
        height:120px;
    }

    .article-category{

        top:10px;
        left:10px;

        padding:5px 10px;

        font-size:10px;
    }

    .article-content{
        padding:14px;
    }

    .article-meta{

        gap:10px;

        margin-bottom:8px;

        font-size:10px;
    }

    .article-title{

        font-size:14px;

        margin-bottom:8px;
    }

    .article-desc{

        font-size:12px;

        margin-bottom:12px;

        line-height:1.5;

        -webkit-line-clamp:2;
    }

    .article-link{

        gap:4px;

        font-size:12px;
    }

    .article-footer{
        margin-top:36px;
    }

    .article-more-btn{

        width:100%;
        min-height:50px;
    }

}

/* =========================================================
ARTICLE DETAIL
========================================================= */

.article-detail-section{
    padding:
        calc(
            var(--menu-navbar-height, 84px) +
            54px
        )
        0 110px;
}

.article-back-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:34px;
    color:var(--primary);
    font-size:14px;
    font-weight:800;
    transition:
        color var(--transition),
        gap var(--transition);
}

.article-back-link:hover{
    gap:12px;
    color:var(--primary-dark);
}

.article-detail-header{
    max-width:920px;
    margin:0 auto 42px;
    text-align:center;
}

.article-detail-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    margin-bottom:18px;
    padding:0 16px;
    border:1px solid rgba(255,91,31,.14);
    border-radius:999px;
    background:#fff;
    color:var(--primary);
    font-size:13px;
    font-weight:900;
    box-shadow:var(--shadow-sm);
}

.article-detail-title{
    margin:0;
    color:var(--heading);
    font-size:58px;
    font-weight:900;
    line-height:1.12;
}

.article-detail-lead{
    max-width:760px;
    margin:22px auto 0;
    color:var(--text);
    font-size:18px;
    line-height:1.9;
}

.article-detail-meta{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px 22px;
    margin-top:24px;
    color:var(--muted);
    font-size:14px;
    font-weight:700;
}

.article-detail-meta span{
    display:inline-flex;
    align-items:center;
    gap:7px;
}

.article-detail-meta i{
    color:var(--primary);
    font-size:18px;
}

.article-detail-hero{
    overflow:hidden;
    margin-bottom:58px;
    border-radius:28px;
    background:#fff3eb;
    box-shadow:var(--shadow-lg);
}

.article-detail-hero img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.article-detail-layout{
    align-items:flex-start;
}

.article-detail-content{
    padding:42px;
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    background:#fff;
    color:var(--text);
    font-size:17px;
    line-height:1.95;
    box-shadow:0 14px 40px rgba(0,0,0,.04);
}

.article-detail-content > *:first-child{
    margin-top:0;
}

.article-detail-content > *:last-child{
    margin-bottom:0;
}

.article-detail-content p,
.article-detail-content ul,
.article-detail-content ol,
.article-detail-content blockquote,
.article-detail-content table,
.article-detail-content figure{
    margin-bottom:24px;
}

.article-detail-content h2,
.article-detail-content h3,
.article-detail-content h4{
    margin:34px 0 14px;
    color:var(--heading);
    font-weight:900;
    line-height:1.28;
}

.article-detail-content h2{
    font-size:32px;
}

.article-detail-content h3{
    font-size:26px;
}

.article-detail-content h4{
    font-size:21px;
}

.article-detail-content a{
    color:var(--primary);
    font-weight:800;
    text-decoration:underline;
    text-decoration-thickness:2px;
    text-underline-offset:4px;
}

.article-detail-content ul,
.article-detail-content ol{
    padding-left:22px;
}

.article-detail-content ul{
    list-style:disc;
}

.article-detail-content ol{
    list-style:decimal;
}

.article-detail-content li + li{
    margin-top:8px;
}

.article-detail-content blockquote{
    padding:22px 24px;
    border-left:5px solid var(--primary);
    border-radius:18px;
    background:#fff7f1;
    color:var(--heading);
    font-size:18px;
    font-weight:700;
    line-height:1.75;
}

.article-detail-content img{
    overflow:hidden;
    width:100%;
    margin:8px 0 26px;
    border-radius:20px;
}

.article-detail-content table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:16px;
    background:#fff;
}

.article-detail-content th,
.article-detail-content td{
    padding:14px 16px;
    border:1px solid rgba(35,18,13,.08);
    text-align:left;
    vertical-align:top;
}

.article-detail-content th{
    color:var(--heading);
    background:#fff7f1;
    font-weight:900;
}

.article-detail-sidebar{
    position:sticky;
    top:calc(var(--menu-navbar-height, 84px) + 22px);
    display:grid;
    gap:18px;
}

.article-sidebar-card{
    padding:24px;
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    background:#fff;
    box-shadow:0 14px 36px rgba(0,0,0,.04);
}

.article-sidebar-card h3{
    margin:0 0 18px;
    color:var(--heading);
    font-size:22px;
    font-weight:900;
    line-height:1.3;
}

.related-article{
    display:grid;
    grid-template-columns:86px minmax(0,1fr);
    gap:13px;
    padding:12px 0;
    border-top:1px solid rgba(35,18,13,.07);
}

.related-article:first-of-type{
    border-top:0;
    padding-top:0;
}

.related-article:last-child{
    padding-bottom:0;
}

.related-article img{
    width:86px;
    height:74px;
    border-radius:14px;
    object-fit:cover;
    background:#fff3eb;
}

.related-article span{
    min-width:0;
}

.related-article strong{
    display:-webkit-box;
    overflow:hidden;
    color:var(--heading);
    font-size:14px;
    font-weight:900;
    line-height:1.45;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    transition:color var(--transition);
}

.related-article small{
    display:block;
    margin-top:7px;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.related-article:hover strong{
    color:var(--primary);
}

.article-order-card{
    padding:28px;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff7f1 100%
        );
}

.article-order-card > span{
    display:inline-flex;
    margin-bottom:12px;
    color:var(--primary);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.article-order-card p{
    margin:0 0 20px;
    color:var(--text);
    font-size:14px;
    line-height:1.8;
}

.article-order-card .btn{
    width:100%;
}

@media(max-width:991px){

    .article-detail-section{
        padding:
            calc(
                var(--menu-navbar-height, 74px) +
                42px
            )
            0 88px;
    }

    .article-detail-title{
        font-size:44px;
    }

    .article-detail-hero img{
        height:420px;
    }

    .article-detail-sidebar{
        position:static;
        margin-top:4px;
    }

}

@media(max-width:768px){

    .article-detail-section{
        padding:
            calc(
                var(--menu-navbar-height, 74px) +
                32px
            )
            0 70px;
    }

    .article-back-link{
        margin-bottom:24px;
        font-size:13px;
    }

    .article-detail-header{
        margin-bottom:28px;
        text-align:left;
    }

    .article-detail-kicker{
        min-height:36px;
        margin-bottom:14px;
        padding:0 13px;
        font-size:12px;
    }

    .article-detail-title{
        font-size:32px;
        line-height:1.18;
    }

    .article-detail-lead{
        margin-top:16px;
        font-size:15px;
        line-height:1.75;
    }

    .article-detail-meta{
        justify-content:flex-start;
        gap:9px 16px;
        margin-top:18px;
        font-size:12px;
    }

    .article-detail-meta i{
        font-size:16px;
    }

    .article-detail-hero{
        margin-bottom:32px;
        border-radius:20px;
    }

    .article-detail-hero img{
        height:260px;
    }

    .article-detail-content{
        padding:24px;
        border-radius:20px;
        font-size:15px;
        line-height:1.85;
    }

    .article-detail-content p,
    .article-detail-content ul,
    .article-detail-content ol,
    .article-detail-content blockquote,
    .article-detail-content table,
    .article-detail-content figure{
        margin-bottom:18px;
    }

    .article-detail-content h2{
        font-size:24px;
    }

    .article-detail-content h3{
        font-size:21px;
    }

    .article-detail-content h4{
        font-size:18px;
    }

    .article-detail-content blockquote{
        padding:18px;
        border-radius:16px;
        font-size:15px;
    }

    .article-detail-content table{
        display:block;
        overflow-x:auto;
        white-space:nowrap;
    }

    .article-sidebar-card{
        padding:20px;
        border-radius:20px;
    }

    .related-article{
        grid-template-columns:78px minmax(0,1fr);
    }

    .related-article img{
        width:78px;
        height:68px;
        border-radius:12px;
    }

}

@media(max-width:480px){

    .article-detail-title{
        font-size:28px;
    }

    .article-detail-hero img{
        height:220px;
    }

    .article-detail-content{
        padding:20px;
    }

}

/* =========================================================
CONTACT SECTION
========================================================= */

.contact-section{
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.contact-left{
    padding-right: 20px;
}


.contact-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
}

.contact-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    transition: all .3s ease;
}

.contact-item:hover{
    transform: translateY(-4px);
    border-color: rgba(255,91,31,.18);
    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.contact-icon{
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    color: #fff;
    font-size: 24px;
    box-shadow:
        0 10px 25px rgba(255,91,31,.18);
}

.contact-content h4{
    margin-bottom: 6px;
    color: var(--heading);
    font-size: 18px;
    font-weight: 800;
}

.contact-content p{
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}


.contact-form-wrap{
    padding: 40px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 32px;
    backdrop-filter: blur(14px);
    box-shadow:
        0 24px 60px rgba(0,0,0,.06);
}


.form-group label{
    display: block;
    margin-bottom: 10px;
    color: var(--heading);
    font-size: 14px;
    font-weight: 700;
}

.form-control-custom{
    width: 100%;
    height: 58px;
    padding: 0 20px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    outline: none;
    font-size: 14px;
    transition: all .3s ease;
}

.form-control-custom::placeholder{
    color: #a0a0a0;
}

.form-control-custom:focus{
    border-color: rgba(255,91,31,.35);
    box-shadow:
        0 0 0 4px rgba(255,91,31,.08);
}

.textarea-custom{
    height: 180px;
    padding-top: 18px;
    resize: none;
}



/* =========================================================
CONTACT RESPONSIVE
========================================================= */

@media (max-width:991px){

    .contact-left{
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .contact-item{
        text-align: left;
    }

}

@media (max-width:768px){

    .contact-section{
        padding: 80px 0;
    }

    .contact-form-wrap{
        padding: 24px;
        border-radius: 24px;
    }

    .contact-item{
        padding: 18px;
        border-radius: 20px;
    }

    .contact-icon{
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .contact-content h4{
        font-size: 16px;
    }

    .contact-content p{
        font-size: 13px;
    }

    .textarea-custom{
        height: 140px;
    }
}

/* =========================================================
CONTACT PAGE
========================================================= */

.contact-page-section{
    padding:
        calc(
            var(--menu-navbar-height, 84px) +
            64px
        )
        0 0;
}

.contact-page-section .section-header{
    margin-bottom:54px;
}

.contact-page-section .contact-list{
    margin-top:0;
}

.contact-page-info{
    margin-top:34px;
}

.contact-info-panel,
.contact-map-panel{
    height:100%;
    display:flex;
    align-items:center;
    gap:18px;
    padding:28px;
    border:1px solid rgba(255,91,31,.10);
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.contact-info-icon,
.contact-map-panel > i{
    width:62px;
    height:62px;
    min-width:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    color:#fff;
    font-size:28px;
}

.contact-info-panel h2,
.contact-map-panel h2{
    margin:0 0 4px;
    color:var(--heading);
    font-size:22px;
    font-weight:900;
}

.contact-info-panel p,
.contact-map-panel p{
    margin:0;
    color:var(--text);
    font-size:14px;
    line-height:1.75;
}

.contact-info-panel strong{
    display:block;
    margin-top:4px;
    color:var(--primary);
    font-size:18px;
    font-weight:900;
}

@media(max-width:768px){

    .contact-page-section{
        padding:
            calc(
                var(--menu-navbar-height, 74px) +
                44px
            )
            0 0;
    }

    .contact-page-section .section-header{
        margin-bottom:36px;
    }

    .contact-page-info{
        margin-top:24px;
    }

    .contact-info-panel,
    .contact-map-panel{
        align-items:flex-start;
        padding:20px;
        border-radius:20px;
    }

    .contact-info-icon,
    .contact-map-panel > i{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:15px;
        font-size:22px;
    }

    .contact-info-panel h2,
    .contact-map-panel h2{
        font-size:18px;
    }

}


/* =========================================================
FOOTER
========================================================= */

.footer-section{
    position:relative;
    margin-top:120px;
    background: linear-gradient(180deg, #28130c 0%, #190c07 100%);
    border-top: 1px solid rgba(255,255,255,.08);
    color:#fff;
    overflow:hidden;
}

.footer-top{
    padding:80px 0 60px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.footer-logo img{
    width:58px;
}

.footer-logo-title{

    font-size:24px;
    font-weight:800;
    line-height:1.1;
    color:#fff;
}

.footer-logo-sub{

    margin-top:4px;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    color:rgba(255,255,255,.5);
}

.footer-desc{

    margin-top:22px;
    max-width:360px;
    color:rgba(255,255,255,.65);
    line-height:1.9;
    font-size:15px;
}

.footer-social{

    display:flex;
    gap:10px;
    margin-top:28px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    transition:all .25s ease;
}

.footer-social a:hover{
    background:var(--primary);
    border-color:var(--primary);
    transform:translateY(-2px);
}

.footer-widget{
    height:100%;
}

.footer-title{
    margin-bottom:22px;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{

    font-size:15px;
    color:rgba(255,255,255,.65);
    transition:.25s ease;
}

.footer-links a:hover{
    color:#fff;
    padding-left:4px;
}

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.footer-contact-item i{
    color:var(--primary);
    font-size:18px;
}

.footer-contact-item span{
    color:rgba(255,255,255,.65);
    line-height:1.8;
    font-size:15px;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,.08);
    padding:22px 0;
}

.footer-bottom-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.footer-copyright{
    color:rgba(255,255,255,.45);
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:22px;
}

.footer-bottom-links a{
    color:rgba(255,255,255,.45);
    font-size:14px;
    transition:.25s ease;
}

.footer-bottom-links a:hover{
    color:#fff;
}

/* =========================================================
FOOTERRESPONSIVE
========================================================= */

@media(max-width:991px){

    .footer-about{
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-desc{
        margin-left:auto;
        margin-right:auto;
    }

    .footer-social{
        justify-content:center;
    }

}

@media(max-width:768px){

    .footer-section{
        margin-top:80px;
    }

    .footer-top{
        padding:60px 0 40px;
    }

    .footer-widget{
        text-align:center;
    }

    .footer-contact-item{
        justify-content:center;
        text-align:left;
    }

    .footer-bottom-wrap{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
        flex-wrap:wrap;
    }

}

@media(max-width:576px){

    .footer-logo-title{
        font-size:20px;
    }

    .footer-desc{
        font-size:14px;
    }

    .footer-bottom-links{

        gap:14px;
    }

}

/* =========================================================
CTA SECTION
========================================================= */

.cta-section{
    padding:0;
}

/* =========================================================
WRAPPER
========================================================= */

.cta-wrapper{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    background:
        linear-gradient(
            135deg,
            #ea4d1b 0%,
            #ff6d1d 55%,
            #ff9f1c 100%
        );
}

/* =========================================================
DECORATION
========================================================= */

.cta-circle{

    position:absolute;

    border-radius:50%;

    pointer-events:none;
}

.cta-circle-1{

    top:-180px;
    left:-120px;

    width:420px;
    height:420px;

    background:
        rgba(255,255,255,.08);
}

.cta-circle-2{

    right:-120px;
    top:-80px;

    width:300px;
    height:300px;

    background:
        rgba(255,255,255,.10);
}

.cta-circle-3{

    right:15%;
    bottom:-120px;

    width:260px;
    height:260px;

    background:
        rgba(255,255,255,.06);
}

/* =========================================================
CONTENT
========================================================= */

.cta-content{
    position:relative;
    z-index:2;
}

.cta-badge{

    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:
        rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:13px;
    font-weight:700;

    margin-bottom:22px;
}

.cta-title{

    color:#fff;

    font-size:72px;

    line-height:1;

    font-weight:900;

    letter-spacing:-.04em;
}

.cta-title span{

    display:block;

    color:#fff5d7;
}

.cta-desc{

    max-width:620px;

    margin-top:26px;

    color:
        rgba(255,255,255,.90);

    font-size:17px;

    line-height:1.9;
}

/* =========================================================
BUTTONS
========================================================= */

.cta-buttons{

    display:flex;
    flex-wrap:wrap;

    gap:14px;

    margin-top:36px;
}

.cta-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 28px;

    border-radius:16px;

    font-size:14px;
    font-weight:700;

    transition:.3s ease;
}

.cta-btn.primary{

    background:#fff;

    color:var(--primary);

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);
}

.cta-btn.primary:hover{

    transform:translateY(-4px);
}

.cta-btn.secondary{

    background:
        rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.2);

    color:#fff;
}

.cta-btn.secondary:hover{

    background:
        rgba(255,255,255,.22);

    transform:translateY(-4px);
}

/* =========================================================
IMAGE
========================================================= */

.cta-image{

    position:relative;

    z-index:2;

    text-align:center;
}

.cta-image img{

    max-width:100%;

    filter:
        drop-shadow(
            0 35px 60px rgba(0,0,0,.18)
        );

    animation:
        ctaFloat 4s ease-in-out infinite;
}

@keyframes ctaFloat{

    50%{
        transform:
            translateY(-12px);
    }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .cta-wrapper{
        text-align:center;
    }

    .cta-buttons{
        justify-content:center;
    }

    .cta-desc{
        margin-inline:auto;
    }

    .cta-title{
        font-size:58px;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:80px 0;
    }

    .cta-wrapper{
        padding:60px 0;
    }

    .cta-title{
        font-size:42px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-btn{
        width:100%;
    }

}

@media(max-width:480px){

    .cta-title{
        font-size:34px;
    }
}

/* =========================================================
MENU SECTION
========================================================= */

.best-seller{
    position:relative;
    padding:120px 0;
}

.best-seller .row{
    --bs-gutter-x:24px;
    --bs-gutter-y:24px;
}

/* =========================================================
CARD
========================================================= */

.menu-card{

    position:relative;

    display:flex;
    flex-direction:column;

    height:100%;

    padding:12px;

    overflow:hidden;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-radius:24px;

    transition:.35s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);
}

.menu-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,91,31,.15);

    box-shadow:
        0 22px 50px rgba(0,0,0,.10);
}

/* =========================================================
IMAGE
========================================================= */

.menu-image{

    position:relative;

    overflow:hidden;

    margin-bottom:18px;

    border-radius:18px;
}

.menu-image img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    transition:.6s ease;
}

.menu-card:hover .menu-image img{
    transform:scale(1.08);
}

.menu-badge{

    position:absolute;

    top:14px;
    left:14px;

    padding:8px 12px;

    border-radius:999px;

    background:#fff;

    color:var(--primary);

    font-size:11px;
    font-weight:800;

    box-shadow:
        0 8px 20px rgba(0,0,0,.08);
}

/* =========================================================
CONTENT
========================================================= */

.menu-content{

    display:flex;
    flex-direction:column;

    flex:1;

    padding:0 6px 6px;
}

.menu-title{

    margin-bottom:10px;

    color:var(--heading);

    font-size:22px;
    font-weight:900;

    line-height:1.3;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.menu-desc{

    color:var(--text);

    font-size:14px;

    line-height:1.8;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* =========================================================
BOTTOM
========================================================= */

.menu-bottom{

    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    gap:12px;

    margin-top:auto;

    padding-top:18px;
}

.menu-price{

    color:var(--primary);

    font-size:30px;
    font-weight:900;

    line-height:1;
}

.menu-price span{

    display:block;

    margin-bottom:6px;

    color:#999;

    font-size:10px;
    font-weight:700;

    letter-spacing:.12em;
}

.menu-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:46px;
    height:46px;

    border:none;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:#fff;

    font-size:18px;

    box-shadow:
        0 10px 24px rgba(255,91,31,.20);

    transition:.3s;
}

.menu-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 16px 30px rgba(255,91,31,.30);
}

/* =========================================================
FOOTER
========================================================= */

.menu-footer{

    margin-top:60px;

    text-align:center;
}

/* =========================================================
BUTTON
========================================================= */

.menu-more-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 32px;

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    border-radius:18px;

    color:var(--heading);

    font-weight:700;

    transition:.3s;
}

.menu-more-btn:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 16px 35px rgba(255,91,31,.25);
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:991px){

    .best-seller{
        padding:90px 0;
    }

    .menu-title{
        font-size:18px;
    }

    .menu-price{
        font-size:24px;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .best-seller{
        padding:70px 0;
    }

    .best-seller .row{

        --bs-gutter-x:12px;
        --bs-gutter-y:12px;
    }

    .menu-card{

        padding:8px;

        border-radius:18px;
    }

    .menu-image{

        margin-bottom:12px;

        border-radius:12px;
    }

    .menu-content{
        padding:0 4px 4px;
    }

    .menu-title{

        font-size:14px;

        margin-bottom:6px;

        line-height:1.4;
    }

    .menu-desc{

        font-size:11px;

        line-height:1.5;
    }

    .menu-bottom{

        gap:8px;

        padding-top:12px;
    }

    .menu-price{

        font-size:18px;
    }

    .menu-price span{

        margin-bottom:4px;

        font-size:8px;
    }

    .menu-btn{

        width:36px;
        height:36px;

        border-radius:10px;

        font-size:14px;
    }

    .menu-badge{

        top:8px;
        left:8px;

        padding:4px 8px;

        font-size:9px;
    }

    .menu-footer{
        margin-top:40px;
    }

    .menu-more-btn{
        width:100%;
        min-height:50px;
    }
}

/* =========================================================
MOBILE RESPONSIVE FIX
========================================================= */

html,
body{
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1320px;
    padding-left:16px;
    padding-right:16px;
}

.row{
    --bs-gutter-x:24px;
}

img{
    max-width:100%;
    height:auto;
}

.best-seller,
.contact-section,
.cta-section{
    overflow:hidden;
}

@media(max-width:991px){

    .navbar-custom{
        padding:14px 0;
    }

    .nav-wrapper{
        gap:12px;
    }

    .logo{
        min-width:0;
    }

    .logo img{
        width:44px;
    }

    .logo-title{
        font-size:18px;
        line-height:1.1;
    }

    .logo-sub{
        font-size:9px;
        letter-spacing:1.5px;
    }

    .mobile-toggle{
        width:46px;
        height:46px;
        min-width:46px;
    }

    .hero{
        min-height:auto;
        padding:130px 0 80px;
        text-align:center;
    }

    .hero-image{
        max-width:620px;
        margin:0 auto 40px;
    }

    .hero-image img{
        max-width:100%;
    }

    .hero-desc{
        margin:24px auto 32px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .badge-top{
        width:100px;
        height:100px;
        font-size:12px;
        top:10px;
        left:10px;
    }

    .cta-wrapper{
        padding:56px 32px;
        text-align:center;
    }

    .cta-content{
        position:relative;
        z-index:2;
    }

    .cta-title{
        font-size:52px;
    }

    .cta-desc{
        margin-inline:auto;
    }

    .cta-buttons{
        justify-content:center;
    }

    .cta-image{
        max-width:520px;
        margin:auto;
    }

    .contact-left{
        text-align:center;
    }

    .contact-list{
        margin-top:28px;
    }

    .footer-top{
        padding:70px 0 50px;
    }

    .footer-about{
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-desc{
        margin-inline:auto;
    }

    .footer-social{
        justify-content:center;
    }

}

@media(max-width:768px){

    .hero{
        padding:120px 0 70px;
    }

    .script-title{
        font-size:42px;
    }

    .hero-title span{
        font-size:58px;
        line-height:.95;
    }

    .hero-desc{
        font-size:14px;
        line-height:1.8;
    }

    .hero-buttons,
    .cta-buttons{
        width:100%;
    }

    .hero-btn,
    .cta-btn{
        width:100%;
    }

    .badge-top{
        width:100px;
        height:100px;
        font-size:12px;
        top:5px;
        left:5px;
    }

    .section-header{
        margin-bottom:44px;
    }

    .section-title{
        font-size:38px;
        line-height:1.1;
    }

    .section-desc{
        font-size:14px;
        line-height:1.8;
    }

    .menu-card{
        padding:10px;
    }

    .menu-image{
        margin-bottom:16px;
    }

    .menu-image img{
        border-radius:18px;
    }

    .menu-title{
        font-size:16px;
        line-height:1.3;
    }

    .menu-desc{
        margin-top:2px;
        font-size:12px;
        line-height:1.7;
        -webkit-line-clamp:2;
    }

    .menu-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
        padding-top:2px;
    }

    .menu-price{
        font-size:22px;
    }

    .menu-btn{
        width:100%;
    }

    .cta-wrapper{
        padding:42px 22px;
    }

    .cta-title{
        font-size:36px;
        line-height:1.1;
    }

    .cta-desc{
        font-size:14px;
        line-height:1.8;
    }

    .contact-form-wrap{
        padding:22px;
    }

    .contact-item{
        padding:18px;
        border-radius:20px;
    }

    .contact-icon{
        width:48px;
        height:48px;
        min-width:48px;
        font-size:18px;
    }

    .contact-content h4{
        font-size:16px;
    }

    .contact-content p{
        font-size:13px;
        line-height:1.7;
    }

    .form-control-custom{
        height:54px;
        font-size:14px;
    }

    .textarea-custom{
        height:140px;
    }

    .contact-btn{
        width:100%;
    }

    .footer-section{
        margin-top:80px;
    }

    .footer-title{
        font-size:18px;
    }

    .footer-links li{
        margin-bottom:10px;
    }

    .footer-bottom-wrap{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

}

@media(max-width:480px){

    .script-title{
        font-size:34px;
    }

    .hero-image{
        margin-bottom:24px;
    }

    .badge-top{
        width:100px;
        height:100px;
        font-size:12px;
        top:5px;
        left:5px;
    }

    .section-title{
        font-size:30px;
    }

    .menu-card{
        border-radius:22px;
    }

    .menu-title{
        font-size:15px;
    }

    .menu-price{
        font-size:20px;
    }

    .cta-title{
        font-size:30px;
    }

}

.menu-card{
    width:100%;
}

.menu-content{
    min-width:0;
}

.row > *{
    min-width:0;
}

.hero *,
.cta-wrapper *,
.menu-card *,
.article-card *,
.contact-form-wrap *{
    word-wrap:break-word;
}

.hero-image,
.cta-image,
.menu-image,
.article-image{
    max-width:100%;
}

/* =========================================================
MENU PAGE
========================================================= */

.menu-category-bar{
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid rgba(255,91,31,.10);
    transition:
        border-color var(--transition);
}

.navbar-menu-page.scrolled .menu-category-bar{
    border-color:rgba(255,91,31,.08);
}

.menu-category-list{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding-bottom:2px;
    scrollbar-width:none;
    scroll-behavior:smooth;
}

.menu-category-list::-webkit-scrollbar{
    display:none;
}

.menu-category-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    border:1px solid rgba(255,91,31,.14);
    border-radius:999px;
    background:#fff;
    color:var(--heading);
    font-size:13px;
    font-weight:800;
    white-space:nowrap;
    box-shadow:var(--shadow-sm);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.menu-category-link.active{
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
    );
    color:#fff;
    border-color:transparent;
    box-shadow:0 12px 26px rgba(255,91,31,.20);
}

.menu-category-link:hover{
    background:rgba(255,91,31,.08);
    color:var(--primary);
    border-color:rgba(255,91,31,.22);
    transform:translateY(-1px);
}

.menu-category-link.active{
    transform:translateY(-2px);
}

.menu-category-link.active:hover{
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
    );
    color:#fff;
    border-color:transparent;
    box-shadow:0 12px 26px rgba(255,91,31,.20);
}

.menu-list-section{
    padding:
        calc(
            var(--menu-navbar-height, 162px) +
            18px
        )
        0 100px;
}

/* .menu-category-block{
    scroll-margin-top:
        calc(
            var(--menu-navbar-height, 162px) +
            16px
        );
} */

.menu-category-block {
    margin-top:26px;
}


.menu-category-block + .menu-category-block{
    margin-top:52px;
}

.menu-category-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:28px;
}

.menu-category-title{
    margin:0;
    color:var(--primary);
    font-size:36px;
    font-weight:900;
    line-height:1.15;
}

.menu-category-title span{
    color:var(--primary);
}

.menu-list-card{
    height:100%;
    display:grid;
    grid-template-columns:112px minmax(0,1fr);
    gap:14px;
    padding:12px;
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    background:rgba(255,255,255,.85);
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    transition:.3s ease;
}

.menu-list-card:hover{
    transform:translateY(-5px);
    border-color:rgba(255,91,31,.16);
    box-shadow:0 20px 46px rgba(0,0,0,.08);
}

.menu-list-image{
    position:relative;
    overflow:hidden;
    align-self:start;
    aspect-ratio:1/1;
    border-radius:18px;
    background:#fff3eb;
}

.menu-list-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.menu-list-content{
    min-width:0;
    display:grid;
    align-content:start;
    padding:4px 4px 4px 0;
}

.menu-list-top{
    display:contents;
}

.menu-list-title{
    order:1;
    margin:0;
    color:var(--heading);
    font-size:18px;
    font-weight:700;
    line-height:1.3;
}

.menu-list-price{
    order:3;
    margin-top:5px;
    color:var(--primary);
    font-size:19px;
    font-weight:900;
    white-space:nowrap;
}

.menu-list-desc{
    order:2;
    margin:5px 0 0;
    color:var(--text);
    font-size:13px;
    line-height:1.75;
}

@media(max-width:991px){

    .menu-category-header{
        display:block;
        text-align:center;
    }

}

@media(max-width:768px){

    .menu-list-section{
        padding:
            calc(
                var(--menu-navbar-height, 148px) +
                16px
            )
            0 80px;
    }

    .menu-category-block{
        scroll-margin-top:
            calc(
                var(--menu-navbar-height, 148px) +
                14px
            );
    }

    .menu-category-block + .menu-category-block{
        margin-top:58px;
    }

    .menu-category-title{
        font-size:30px;
    }

    .menu-list-card{
        grid-template-columns:104px minmax(0,1fr);
        gap:12px;
        padding:10px;
        border-radius:20px;
    }

    .menu-list-image{
        aspect-ratio:1/1;
        border-radius:14px;
    }

    .menu-list-title{
        font-size:16px;
    }

    .menu-list-price{
        margin-top:4px;
        font-size:17px;
    }

    .menu-list-desc{
        margin-top:6px;
        font-size:12px;
        line-height:1.55;
    }

}

@media(max-width:480px){

    .menu-category-link{
        min-height:40px;
        padding:0 14px;
        font-size:12px;
    }

    .menu-list-card{
        grid-template-columns:96px minmax(0,1fr);
    }

    .menu-list-image{
        aspect-ratio:1/1;
    }

}

/* =========================================================
ARTICLE PAGE
========================================================= */

.article-page-section{
    padding:
        calc(
            var(--menu-navbar-height, 84px) +
            64px
        )
        0 110px;
}

.article-category-filter{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    max-width:980px;
    margin:-28px auto 42px;
}

.article-category-filter-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:0 16px;
    border:1px solid rgba(255,91,31,.14);
    border-radius:999px;
    background:#fff;
    color:var(--heading);
    font-size:13px;
    font-weight:800;
    box-shadow:var(--shadow-sm);
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.article-category-filter-btn span{
    min-width:24px;
    height:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:rgba(255,91,31,.09);
    color:var(--primary);
    font-size:11px;
    font-weight:900;
}

.article-category-filter-btn:hover{
    color:var(--primary);
    border-color:rgba(255,91,31,.24);
    background:rgba(255,91,31,.06);
    transform:translateY(-2px);
}

.article-category-filter-btn.active{
    color:#fff;
    border-color:transparent;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    box-shadow:0 12px 26px rgba(255,91,31,.20);
}

.article-category-filter-btn.active span{
    background:rgba(255,255,255,.22);
    color:#fff;
}

.article-grid > .is-hidden{
    display:none;
}

.article-pagination .is-hidden{
    display:none;
}

.article-grid{
    scroll-margin-top:
        calc(
            var(--menu-navbar-height, 84px) +
            24px
        );
}

.article-pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:54px;
}

.pagination-link,
.pagination-arrow,
.pagination-dots{
    width:46px;
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    font-size:14px;
    font-weight:800;
}

.pagination-link,
.pagination-arrow{
    border:1px solid rgba(255,91,31,.14);
    background:#fff;
    color:var(--heading);
    box-shadow:var(--shadow-sm);
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.pagination-link:hover,
.pagination-arrow:hover,
.pagination-link.active{
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    color:#fff;
    border-color:transparent;
    box-shadow:0 12px 26px rgba(255,91,31,.20);
}

.pagination-link:hover,
.pagination-arrow:hover{
    transform:translateY(-2px);
}

.pagination-arrow.disabled{
    opacity:.45;
    pointer-events:none;
}

.pagination-dots{
    color:var(--muted);
}

@media(max-width:768px){

    .article-page-section{
        padding:
            calc(
                var(--menu-navbar-height, 74px) +
                44px
            )
            0 80px;
    }

    .article-category-filter{
        justify-content:flex-start;
        flex-wrap:nowrap;
        overflow-x:auto;
        margin:-18px -16px 30px;
        padding:0 16px 4px;
        scrollbar-width:none;
    }

    .article-category-filter::-webkit-scrollbar{
        display:none;
    }

    .article-category-filter-btn{
        flex:0 0 auto;
        min-height:40px;
        padding:0 14px;
        font-size:12px;
    }

    .article-pagination{
        gap:8px;
        margin-top:38px;
    }

    .pagination-link,
    .pagination-arrow,
    .pagination-dots{
        width:40px;
        height:40px;
        border-radius:12px;
        font-size:13px;
    }

}
