@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root{
    --brand: #A3201D;
    --brand-dark: #7A1815;
    --brand-light: #C33B2E;
    --cream: #FBF3E7;
    --ink: #1C1712;
    --muted: #7A6F63;
    --line: #E7DDCF;
    --header-h: 76px;
    --nav-h: 76px;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Nunito", sans-serif;
}

html{
    scroll-behavior: smooth;
}

button{
    transition: transform .12s ease;
}

button:active{
    transform: scale(0.96);
}

body{
    background-color: var(--cream);
}

.container{
    width: 100%;
    padding: 0 60px;
}

.brand_logo{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 40px;
    font-weight: 800;
    color: var(--brand);
}

.brand_logo i{
    font-size: 0.65em;
}

.brand_logo_sm{
    font-size: 20px;
    gap: 8px;
}

/* ---------- Sayt header ---------- */

.site_header{
    background-color: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 15;
}

.site_header_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 60px;
}

.header_logo{
    font-size: 24px;
}

.header_nav{
    display: flex;
    gap: 32px;
}

.header_nav_link{
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
}

.header_nav_link:hover{
    color: var(--brand);
}

.header_nav_link.active{
    color: var(--brand);
    border-color: var(--brand);
}

.header_actions{
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang_switch{
    display: flex;
    gap: 6px;
}

.lang_btn{
    height: 32px;
    width: 46px;
    border: 1.5px solid var(--line);
    border-radius: 50px;
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s;
}

.lang_btn.active{
    background-color: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.header_order_btn{
    background-color: var(--brand);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color .15s, transform .15s;
    white-space: nowrap;
}

.header_order_btn:hover{
    background-color: var(--brand-dark);
    transform: translateY(-1px);
}

.my_orders_btn{
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color .15s, color .15s;
    white-space: nowrap;
}

.my_orders_btn:hover{
    border-color: var(--brand);
    color: var(--brand);
}

/* ---------- Hero ---------- */

.landing_page{
    width: 100%;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.landing_hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 0 80px;
    flex-wrap: wrap;
}

.landing_text{
    flex: 1 1 420px;
    min-width: 300px;
}

.landing_eyebrow{
    display: block;
    color: var(--brand);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.landing_name{
    font-size: 50px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
    max-width: 540px;
}

.landing_name span{
    color: var(--brand);
}

.landing_descr{
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    padding-top: 20px;
    max-width: 420px;
    line-height: 1.5;
}

.landing_actions{
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 30px;
}

.landing_cta{
    background-color: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    padding: 16px 30px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(163,32,29,0.28);
    transition: transform .15s ease, background-color .15s ease;
}

.landing_cta:hover{
    background-color: var(--brand-dark);
    transform: translateY(-2px);
}

.landing_cta_outline{
    background: transparent;
    color: var(--brand);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .02em;
    text-transform: uppercase;
    border: 2px solid var(--brand);
    border-radius: 50px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.landing_cta_outline:hover{
    background-color: var(--brand);
    color: #fff;
}

.landing_features{
    display: flex;
    gap: 0;
    padding-top: 38px;
    flex-wrap: wrap;
}

.landing_feature{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--ink);
    padding: 0 24px;
}

.landing_feature:first-child{
    padding-left: 0;
}

.landing_feature + .landing_feature{
    border-left: 2px solid var(--line);
}

.landing_feature i{
    color: var(--brand);
    font-size: 18px;
}

.landing_media{
    position: relative;
    flex: 0 1 420px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.landing_media_shape{
    position: absolute;
    inset: 8% -6% 8% 6%;
    background-color: var(--brand);
    border-radius: 50% 45% 55% 40% / 45% 55% 40% 60%;
    transform: rotate(-6deg);
    z-index: 0;
}

.landing_burger{
    position: relative;
    z-index: 1;
    width: 320px;
    max-width: 100%;
    filter: drop-shadow(0 20px 24px rgba(0,0,0,0.22));
}

.landing_stamp{
    position: absolute;
    top: 4%;
    left: 4%;
    z-index: 2;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-12deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.landing_stamp_pct{
    font-size: 18px;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
}

.landing_stamp span#landing_stamp_text{
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.2;
    padding-top: 2px;
}

.main{
    min-height: 100vh;
    width: 100%;
    background-color: var(--cream);
}

/* ---------- Kategoriya panel (skroll qilinganda tepada yopishib qoladi) ---------- */

.navbar{
    width: 100%;
    position: sticky;
    top: var(--header-h, 76px);
    z-index: 12;
    background-color: var(--cream);
    padding: 14px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.navbar_items{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.navbar_btn{
    height: 40px;
    padding: 0 22px;
    background-color: #fff;
    border: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background-color .2s, color .2s, transform .15s ease, box-shadow .2s ease;
}

.navbar_btn.active{
    background-color: var(--brand);
    color: #fff;
}

/* ---------- Top Picks ---------- */

.top_picks{
    padding: 40px 0 10px;
}

.section_heading{
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-bottom: 36px;
}

.section_heading_arrow{
    color: var(--brand);
    font-size: 22px;
}

.toppicks_cards{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.toppick_card{
    position: relative;
    width: 320px;
    max-width: 100%;
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.toppick_media{
    position: relative;
    height: 220px;
}

.toppick_media img, .toppick_media .toppick_emoji_bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toppick_emoji_bg .food_emoji{
    font-size: 70px;
}

.toppick_ribbon{
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 8px;
    line-height: 1.25;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    max-width: 90px;
}

.toppick_body{
    padding: 18px;
}

.toppick_name{
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    cursor: pointer;
}

.toppick_descr{
    font-size: 13px;
    color: var(--muted);
    padding-top: 6px;
    line-height: 1.4;
    min-height: 36px;
}

.toppick_footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
}

.toppick_price{
    font-size: 18px;
    font-weight: 900;
    color: var(--brand);
}

.toppick_add{
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 2px solid var(--brand);
    background-color: #fff;
    color: var(--brand);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .15s, color .15s;
    flex-shrink: 0;
}

.toppick_add:hover{
    background-color: var(--brand);
    color: #fff;
}

.toppicks_more{
    text-align: center;
    padding-top: 36px;
}

.view_menu_btn{
    background-color: var(--brand);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 34px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background-color .15s, transform .15s;
}

.view_menu_btn:hover{
    background-color: var(--brand-dark);
    transform: translateY(-2px);
}

/* ---------- Menyu bo'limi ---------- */

.burgers{
    min-height: 600px;
    width: 100%;
}

.burger_items{
    min-height: 600px;
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
}

.basket{
    min-height: 110px;
    width: 25%;
    background-color: #fff;
    padding: 15px;
    border-radius: 18px;
    position: sticky;
    top: calc(var(--header-h, 76px) + var(--nav-h, 76px) + 20px);
    max-height: calc(100vh - var(--header-h, 76px) - var(--nav-h, 76px) - 40px);
    overflow-y: auto;
}

.basket_text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.b__name{
    font-size: 24px;
    font-weight: 600;
}

.b__counter{
    height: 20px;
    width: 41px;
    border-radius: 6px;
    border: none;
    background-color: #F2F2F3;
}

.basket_cards{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    gap: 15px;
}

.basket_card{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #F2F2F3;
    padding-top: 10px;
}

.basket_card:last-child{
    border-bottom: 2px solid #F2F2F3;
    padding-bottom: 15px;
}

.part1{
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini_image{
    height: 60px;
    width: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    object-fit: cover;
}

.mini_image .food_emoji{
    font-size: 28px;
}

.basket_card_text{
    font-size: 14px;
}

.basket_card_gramm{
    font-size: 14px;
    padding-bottom: 7px;
    color: #B1B1B1;
}

.part2{
    height: 40px;
    width: 84px;
    border-radius: 12px;
    background-color: #F2F2F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.itogo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.itogo_text{
    font-size: 16px;
}

.oformit_btn{
    height: 42px;
    width: 100%;
    border-radius: 12px;
    background-color: var(--brand);
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color .15s;
}

.oformit_btn:hover{
    background-color: var(--brand-dark);
}

.dostavka{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}

.burger_content{
    width: 73%;
}

.menu_section{
    scroll-margin-top: calc(var(--header-h, 76px) + var(--nav-h, 76px) + 16px);
}

.menu_section + .menu_section{
    margin-top: 46px;
}

.menu_section_title{
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
}

.burger_cards{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
}

.burger__card{
    min-height: 411px;
    width: 32%;
    background-color: #fff;
    border-radius: 18px;
    padding: 10px;
}

.burger_image{
    width: 100%;
    height: 220px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

.food_emoji{
    font-size: 72px;
    line-height: 1;
}

.burger__price{
    font-size: 20px;
    font-weight: 800;
    color: var(--brand);
}

.burger__name{
    font-size: 16px;
    cursor: pointer;
}

.burger__gramm{
    padding-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #B1B1B1;
}

.add_burger{
    height: 40px;
    width: 100%;
    border: 2px solid var(--brand);
    border-radius: 12px;
    background-color: #fff;
    color: var(--brand);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-top: 7px;
    cursor: pointer;
    transition: background-color .15s, color .15s;
}

.add_burger:hover{
    background-color: var(--brand);
    color: #fff;
}

.basket_empty{
    color: #B1B1B1;
    font-size: 14px;
    padding: 10px 0;
}

.part2 span{
    cursor: pointer;
    user-select: none;
}

/* ---------- Kombo banner ---------- */

.combo_banner{
    padding: 50px 0 70px;
}

.combo_banner_inner{
    background-color: var(--brand);
    border-radius: 24px;
    padding: 44px 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.combo_banner_media{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.combo_sticker{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    background-color: #fff;
    border: 3px solid var(--ink);
    border-radius: 22px;
    font-size: 40px;
    line-height: 1;
    box-shadow: 0 12px 20px rgba(0,0,0,0.28);
}

.combo_sticker_1{
    transform: rotate(-10deg);
    z-index: 3;
}

.combo_sticker_2{
    transform: rotate(7deg);
    margin-left: -18px;
    z-index: 2;
}

.combo_sticker_3{
    transform: rotate(-5deg);
    margin-left: -18px;
    z-index: 1;
}

.combo_banner_text{
    flex: 1;
    min-width: 260px;
}

.combo_eyebrow{
    display: block;
    color: rgba(255,255,255,0.85);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.combo_banner_text h2{
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.15;
}

.combo_banner_text p{
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    font-weight: 600;
    padding-top: 10px;
}

.combo_btn{
    margin-top: 22px;
    background-color: #fff;
    color: var(--brand);
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .15s;
}

.combo_btn:hover{
    transform: translateY(-2px);
}

.combo_stamp{
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(8deg);
}

.combo_stamp span{
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
}

.combo_stamp strong{
    font-size: 26px;
    font-weight: 900;
    color: var(--brand);
}

/* ---------- Modal (taom haqida) ---------- */

.madal_Card{
    min-height: 100vh;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.madal_Card.open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.card{
    position: relative;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 18px;
    padding: 30px;
    transform: scale(0.92) translateY(20px);
    transition: transform .25s ease;
}

.madal_Card.open .card{
    transform: scale(1) translateY(0);
}

.modal_close{
    position: absolute;
    top: 15px;
    right: 15px;
    height: 32px;
    width: 32px;
    border: none;
    border-radius: 50%;
    background-color: #F2F2F3;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.b_nomi{
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 15px;
    padding-right: 30px;
}

.rasm_izoh{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rasm{
    width: 100%;
    height: 220px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rasm .food_emoji{
    font-size: 96px;
}

.haqida1{
    font-size: 14px;
    color: #6B6B6B;
    line-height: 1.4;
}

.sostav{
    padding-top: 10px;
}

.ssostav{
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 8px;
}

.sostavv{
    font-size: 14px;
    color: #6B6B6B;
    padding-bottom: 4px;
}

.sgramm{
    font-size: 13px;
    color: #B1B1B1;
    padding-top: 8px;
}

.dobavit{
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
}

.dobavit .part2{
    width: auto;
    padding: 8px 16px;
    gap: 14px;
    flex-shrink: 0;
}

.dobavit .add_burger1{
    width: auto;
    flex: 1;
    margin-top: 0;
}

.narx_b{
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.add_burger1{
    height: 40px;
    width: 100%;
    border: none;
    border-radius: 12px;
    background-color: var(--brand);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 7px;
    cursor: pointer;
    transition: background-color .15s;
}

.add_burger1:hover{
    background-color: var(--brand-dark);
}

.checkout_card{
    max-width: 480px;
}

.checkout_summary{
    padding-top: 10px;
    max-height: 220px;
    overflow-y: auto;
}

.checkout_row{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6B6B6B;
    padding: 6px 0;
}

.checkout_total_row{
    border-top: 2px solid #F2F2F3;
    border-bottom: 2px solid #F2F2F3;
    margin: 10px 0;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.checkout_label{
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 8px;
}

.checkout_input{
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 2px solid #F2F2F3;
    padding: 0 14px;
    font-size: 15px;
    font-family: inherit;
}

.checkout_input:focus{
    outline: none;
    border-color: var(--brand);
}

.checkout_error{
    color: #E0392C;
    font-size: 13px;
    min-height: 18px;
    padding-top: 6px;
}

.checkout_actions{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.checkout_cancel_btn{
    height: 40px;
    width: 100%;
    border: none;
    border-radius: 12px;
    background-color: #F2F2F3;
    font-size: 15px;
    cursor: pointer;
}

/* ---------- Buyurtmalarim ---------- */

.my_orders_section{
    padding-top: 18px;
}

.my_orders_section:first-child{
    padding-top: 10px;
}

.my_orders_section_title{
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    padding-bottom: 14px;
}

.order_stepper{
    display: flex;
    align-items: flex-start;
    padding: 4px 6px 20px;
}

.order_step{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    width: 74px;
}

.order_step_dot{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #F2F2F3;
    color: #B1B1B1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
}

.order_step_label{
    font-size: 11px;
    font-weight: 700;
    color: #B1B1B1;
    text-align: center;
    line-height: 1.3;
}

.order_step.done .order_step_dot{
    background-color: var(--brand);
    color: #fff;
}

.order_step.done .order_step_label{
    color: var(--ink);
}

.order_step.current .order_step_dot{
    background-color: var(--brand);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(163,32,29,0.18);
}

.order_step.current .order_step_label{
    color: var(--brand);
}

.order_step_line{
    flex: 1 1 auto;
    height: 2px;
    background-color: #F2F2F3;
    margin-top: 15px;
}

.my_order_card{
    background-color: #F9F9F9;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 10px;
}

.my_order_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}

.my_order_date{
    font-size: 12px;
    color: #B1B1B1;
}

.my_order_status{
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    background-color: #F2F2F3;
    color: var(--ink);
}

.my_order_status.status-tayyorlanmoqda,
.my_order_status.status-yangi{
    background-color: rgba(163,32,29,0.1);
    color: var(--brand);
}

.my_order_status.status-tayyorlandi{
    background-color: rgba(46,140,80,0.12);
    color: #2E8C50;
}

.my_order_status.status-yetkazildi{
    background-color: #EAF3EA;
    color: #2E8C50;
}

.my_order_status.status-bekor{
    background-color: #FDEDEB;
    color: #D8392C;
}

.my_order_items{
    font-size: 13px;
    color: #6B6B6B;
    line-height: 1.4;
}

.my_order_total{
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    padding-top: 8px;
}

/* ---------- Footer ---------- */

.footer{
    background-color: var(--ink);
    color: #D8CFC5;
    padding: 60px 0 0;
    width: 100%;
}

.footer_grid{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer_col h4{
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 18px;
}

.footer_col a{
    display: block;
    color: #B7ADA1;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 12px;
    transition: color .15s;
}

.footer_col a:hover{
    color: var(--brand-light);
}

.footer_brand_col .brand_logo{
    color: #fff;
    font-size: 22px;
}

.footer_brand_col .brand_logo i{
    color: var(--brand-light);
}

.footer_about{
    font-size: 13px;
    color: #B7ADA1;
    padding: 14px 0 18px;
    line-height: 1.6;
    max-width: 260px;
}

.footer_socials{
    display: flex;
    gap: 10px;
}

.icon{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color .15s;
}

.icon:hover{
    background-color: var(--brand);
}

.footer_contact_row{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #B7ADA1;
    font-size: 14px;
    padding-bottom: 14px;
    text-decoration: none;
    line-height: 1.4;
}

.footer_contact_row i{
    color: var(--brand-light);
    margin-top: 2px;
    width: 14px;
}

.footer_contact_row:hover{
    color: #fff;
}

.newsletter_descr{
    font-size: 13px;
    color: #B7ADA1;
    padding-bottom: 14px;
    line-height: 1.5;
}

.newsletter_form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter_form input{
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.15);
    background-color: rgba(255,255,255,0.06);
    color: #fff;
    padding: 0 14px;
    font-size: 14px;
    font-family: inherit;
}

.newsletter_form input::placeholder{
    color: #8A8074;
}

.newsletter_form input:focus{
    outline: none;
    border-color: var(--brand-light);
}

.newsletter_form button{
    height: 44px;
    border: none;
    border-radius: 10px;
    background-color: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .02em;
    transition: background-color .15s;
}

.newsletter_form button:hover{
    background-color: var(--brand-dark);
}

.newsletter_success{
    font-size: 13px;
    color: #7CC47F;
    padding-top: 10px;
    min-height: 16px;
}

.footer_bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer_bottom p{
    font-size: 13px;
    color: #8A8074;
}

.admin_link{
    font-size: 12px;
    color: #8A8074;
    text-decoration: none;
}

.admin_link:hover{
    color: var(--brand-light);
}

@media (max-width: 1100px){
    .footer_grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px){
    .container{
        padding: 0 20px;
    }

    .site_header_inner{
        padding: 14px 20px;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .header_nav{
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .burger_items{
        flex-direction: column;
    }

    .basket, .burger_content{
        width: 100%;
    }

    .basket{
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .navbar{
        top: 0;
    }

    .burger__card{
        width: 100%;
        height: auto;
    }

    .landing_hero{
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 0 50px;
    }

    .landing_text{
        text-align: center;
    }

    .landing_name{
        font-size: 34px;
        max-width: 100%;
    }

    .landing_descr{
        max-width: 100%;
        margin: 0 auto;
    }

    .landing_actions, .landing_features{
        justify-content: center;
    }

    .landing_feature{
        padding: 0 14px;
    }

    .landing_media{
        padding-top: 10px;
    }

    .landing_stamp{
        left: 50%;
        margin-left: -130px;
    }

    .combo_banner_inner{
        flex-direction: column;
        text-align: center;
        padding: 34px 24px;
    }

    .combo_banner_media{
        justify-content: center;
    }

    .combo_banner_text{
        text-align: center;
    }

    .combo_banner_text h2{
        font-size: 24px;
    }

    .footer_grid{
        grid-template-columns: 1fr;
    }

    .landing_burger, .landing_media_shape, .landing_stamp, .combo_stamp{
        animation: none;
    }
}

/* ================= Animatsiyalar ================= */

@keyframes fadeInUp{
    from{ opacity: 0; transform: translateY(26px); }
    to{ opacity: 1; transform: translateY(0); }
}

@keyframes fadeInMedia{
    from{ opacity: 0; transform: translateY(20px) scale(0.94); }
    to{ opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatBurger{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-14px); }
}

@keyframes blobPulse{
    0%, 100%{ transform: rotate(-6deg) scale(1); }
    50%{ transform: rotate(-3deg) scale(1.03); }
}

@keyframes stampWiggle{
    0%, 100%{ transform: rotate(-12deg); }
    50%{ transform: rotate(-7deg); }
}

@keyframes stampWiggleAlt{
    0%, 100%{ transform: rotate(8deg); }
    50%{ transform: rotate(3deg); }
}

@keyframes counterBump{
    0%{ transform: scale(1); }
    35%{ transform: scale(1.4); }
    100%{ transform: scale(1); }
}

@keyframes successFade{
    from{ opacity: 0; transform: translateY(-4px); }
    to{ opacity: 1; transform: translateY(0); }
}

/* Hero: sahifa yuklanganda ketma-ket paydo bo'lish */

.landing_eyebrow{
    animation: fadeInUp .6s ease both;
}

.landing_name{
    animation: fadeInUp .6s ease .08s both;
}

.landing_descr{
    animation: fadeInUp .6s ease .16s both;
}

.landing_actions{
    animation: fadeInUp .6s ease .24s both;
}

.landing_features{
    animation: fadeInUp .6s ease .32s both;
}

.landing_media{
    animation: fadeInMedia .7s ease .2s both;
}

.landing_burger{
    animation: floatBurger 4s ease-in-out infinite;
}

.landing_media_shape{
    animation: blobPulse 6s ease-in-out infinite;
}

.landing_stamp{
    animation: stampWiggle 3.2s ease-in-out infinite;
}

.combo_stamp{
    animation: stampWiggleAlt 3.2s ease-in-out infinite;
}

/* Header: pastga scroll qilinganda ixchamlashadi */

.site_header{
    transition: box-shadow .2s ease;
}

.site_header.scrolled{
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Savat hisoblagichi: mahsulot qo'shilganda "sakraydi" */

.b__counter.bump{
    animation: counterBump .35s ease;
}

.pop{
    animation: counterBump .3s ease;
}

/* Newsletter muvaffaqiyat xabari */

.newsletter_success.show{
    animation: successFade .3s ease both;
}

/* Kartalar: sudralib chiqish + hover ko'tarilish */

.reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in_view{
    opacity: 1;
    transform: translateY(0);
}

.toppick_card, .burger__card{
    transition: transform .22s ease, box-shadow .22s ease;
}

.toppick_card:hover, .burger__card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.09);
}

.toppick_media img, .toppick_media .toppick_emoji_bg, .burger_image{
    transition: transform .3s ease;
}

.toppick_card:hover .toppick_media img,
.toppick_card:hover .toppick_media .toppick_emoji_bg,
.burger__card:hover .burger_image{
    transform: scale(1.05);
}

.toppick_media{
    overflow: hidden;
}

.navbar_btn{
    transition: background-color .2s, color .2s, transform .15s ease, box-shadow .2s ease;
}

.navbar_btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.icon{
    transition: background-color .15s ease, transform .15s ease;
}

.icon:hover{
    transform: translateY(-3px);
}

.footer_col a{
    transition: color .15s ease, padding-left .15s ease;
}

.footer_col a:hover{
    padding-left: 4px;
}

@media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
