:root {
    --dark: #111111;
    --dark-2: #1b1b1b;
    --light: #ffffff;
    --soft: #f6f3ee;
    --text: #222222;
    --muted: #777777;
    --yellow: #f5b301;
    --orange: #ff7a00;
    --border: #e7e2d8;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--soft);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* TOP BAR */

.top-bar {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
}

.top-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-info,
.top-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-info span {
    color: #ddd;
}

.top-actions a {
    color: var(--yellow);
    font-weight: 700;
}

/* HEADER */

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo img {
    max-height: 68px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 700;
    color: #222;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #f2f2f2;
}

.main-nav .order-btn {
    background: var(--yellow);
    color: #111;
    margin-left: 6px;
}

.main-nav .order-btn:hover,
.main-nav .order-btn.active {
    background: var(--orange);
    color: #fff;
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--dark);
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    transition: 0.25s ease;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
    font-size: 15px;
}

.btn-primary {
    background: var(--yellow);
    color: #111;
}

.btn-primary:hover {
    background: var(--orange);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--orange);
}

/* HERO */

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 680px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.45), rgba(0,0,0,0.18));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 720px;
}

.hero-badge,
.section-title span,
.split-content span,
.order-banner-content span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 179, 1, 0.16);
    color: var(--yellow);
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hero-content h1 {
    margin: 18px 0 18px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 0.96;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 19px;
    color: #e7e7e7;
    max-width: 620px;
    margin: 0 0 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* QUICK ORDER */

.quick-order {
    background: var(--yellow);
    color: #111;
}

.quick-order-inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.quick-order span {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.quick-order h2 {
    margin: 4px 0 0;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.1;
}

.quick-order-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* SECTIONS */

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-title h2 {
    margin: 16px 0 12px;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--muted);
    margin: 0;
}

.dark-section {
    background: var(--dark);
    color: #fff;
}

.dark-section p {
    color: #d5d5d5;
}

/* CATEGORY CARDS */

.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.category-card div {
    padding: 20px;
}

.category-card h3 {
    margin: 0 0 6px;
    font-size: 22px;
}

.category-card p {
    margin: 0;
    color: var(--muted);
}

/* SPLIT */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 54px;
}

.split-image img {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.split-content h2 {
    margin: 18px 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
}

.split-content.light p {
    color: var(--muted);
}

/* PRODUCTS */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eee;
}

.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category,
.product-tag {
    display: inline-flex;
    width: fit-content;
    background: #fff3c4;
    color: #7a5400;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.product-card h3 {
    margin: 0 0 8px;
    font-size: 23px;
    line-height: 1.15;
}

.product-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-bottom strong {
    font-size: 20px;
    color: #111;
}

.product-bottom a {
    background: var(--dark);
    color: #fff;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.product-bottom a:hover {
    background: var(--orange);
}

/* EMPTY */

.empty-info {
    background: #fff;
    border-radius: 24px;
    padding: 38px;
    text-align: center;
    box-shadow: var(--shadow);
}

.empty-info.small {
    padding: 20px;
    text-align: left;
    box-shadow: none;
    border: 1px dashed var(--border);
}

.empty-info h3 {
    margin: 0 0 8px;
    font-size: 28px;
}

.empty-info p {
    color: var(--muted);
}

/* ORDER BANNER */

.order-banner {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.order-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.68);
}

.order-banner-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
}

.order-banner-content h2 {
    margin: 16px 0;
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.04;
}

.order-banner-content p {
    color: #ddd;
    margin-bottom: 24px;
}

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* PAGE HERO */

.page-hero {
    background: radial-gradient(circle at top left, #333, #111 60%);
    color: #fff;
    padding: 90px 0;
}

.page-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.page-hero p {
    color: #ddd;
    max-width: 720px;
    margin: 0;
    font-size: 18px;
}

/* MENU PAGE */

.menu-category-nav {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 0 18px;
    margin-bottom: 34px;
    border-bottom: 1px solid var(--border);
    scrollbar-width: none;
}

.menu-category-nav::-webkit-scrollbar {
    display: none;
}

.menu-category-nav a {
    background: #fff;
    border: 1px solid var(--border);
    color: #111;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 800;
}

.menu-category-nav a.active,
.menu-category-nav a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.menu-category-block {
    margin-bottom: 64px;
}

.menu-category-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.menu-category-title h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
}

.menu-category-title span {
    color: var(--muted);
    font-weight: 700;
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.contact-info,
.contact-form-wrap,
.order-card,
.value-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-info h2,
.contact-form-wrap h2,
.order-card h2 {
    margin-top: 0;
    font-size: 30px;
}

.contact-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    color: var(--muted);
}

.contact-form label {
    display: block;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    font-family: inherit;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.alert.success {
    background: #e7f7ec;
    color: #0b7a2a;
}

.alert.error {
    background: #ffe8e8;
    color: #a40000;
}

/* ORDER PAGE */

.order-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.order-card p {
    color: var(--muted);
}

/* VALUES */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card h3 {
    margin: 0 0 8px;
    font-size: 23px;
}

.value-card p {
    margin: 0;
    color: var(--muted);
}

/* FOOTER */

.site-footer {
    background: #111;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 34px;
    padding-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    margin: 0 0 16px;
}

.footer-col h3 {
    font-size: 30px;
    color: var(--yellow);
}

.footer-col p {
    color: #bbb;
    margin: 0 0 10px;
}

.footer-col a {
    display: block;
    color: #bbb;
    margin-bottom: 9px;
    transition: 0.25s ease;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    color: #aaa;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    background: #25d366;
    color: #fff;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
}
/* MENU PAGE COMPACT DESIGN */

.menu-page {
    padding-top: 55px;
}

.menu-hero {
    padding: 60px 0;
}

.menu-category-nav {
    position: sticky;
    top: 88px;
    z-index: 50;
    background: var(--soft);
    padding: 14px 0 16px;
    margin-bottom: 30px;
}

.menu-product-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.menu-product-card {
    border-radius: 18px;
}

.menu-product-card img {
    height: 145px;
}

.menu-product-card .product-body {
    padding: 15px;
}

.menu-product-card .product-tag,
.menu-product-card .product-category {
    font-size: 11px;
    padding: 4px 9px;
    margin-bottom: 8px;
}

.menu-product-card h3 {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 7px;
}

.menu-product-card p {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-product-card .product-bottom strong {
    font-size: 16px;
}

.menu-product-card .product-bottom a {
    padding: 7px 11px;
    font-size: 12px;
}

.menu-category-title {
    margin-bottom: 20px;
}

.menu-category-title h2 {
    font-size: 34px;
}
/* HAKKIMIZDA DEĞER KARTLARI DÜZELTME */

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.value-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    min-height: 180px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    display: block;
    color: #111111 !important;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 14px 0;
    line-height: 1.25;
}

.value-card p {
    color: #5f646d !important;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
/* HAKKIMIZDA DEĞER KARTLARI */

.values-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.value-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    min-height: 180px;
    width: calc(25% - 14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    display: block;
    color: #111111 !important;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 14px 0;
    line-height: 1.25;
}

.value-card p {
    color: #5f646d !important;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* HAKKIMIZDA DEĞER KARTLARI */

.values-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.value-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    min-height: 180px;
    width: calc(25% - 14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    display: block;
    color: #111111 !important;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 14px 0;
    line-height: 1.25;
}

.value-card p {
    color: #5f646d !important;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
/* CART PAGE */

.cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: flex-start;
}

.cart-table-area {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 14px 10px;
    border-bottom: 1px solid #eeeeee;
    text-align: left;
    vertical-align: middle;
}

.cart-table th {
    color: #111111;
    font-weight: 800;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-product img {
    width: 74px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-qty {
    width: 74px;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    font-weight: 700;
}

.cart-remove {
    color: #d60000;
    font-weight: 800;
    text-decoration: none;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
}

.cart-summary {
    background: #111111;
    color: #ffffff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.cart-summary h2 {
    margin-bottom: 22px;
    color: #ffffff;
}

.summary-row,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.summary-row span,
.summary-row strong {
    color: #ffffff;
}

.summary-total {
    font-size: 20px;
    border-bottom: none;
    margin-bottom: 22px;
}

.summary-total span,
.summary-total strong {
    color: #ffba08;
}

.full-btn {
    width: 100%;
    text-align: center;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #111111;
    color: #111111;
}

.btn-outline-dark:hover {
    background: #111111;
    color: #ffffff;
}
/* MENU CART BUTTON */

.menu-top-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.menu-top-actions .btn {
    min-width: 130px;
    text-align: center;
}
/* CHECKOUT PAGE */

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: flex-start;
}

.checkout-form-area {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.checkout-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.checkout-card h2 {
    margin-bottom: 22px;
    color: #111111;
}

.checkout-summary {
    background: #111111;
    color: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 110px;
}

.checkout-summary h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.checkout-items {
    margin-bottom: 18px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.checkout-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
}

.checkout-item span {
    display: block;
    color: #cccccc;
    font-size: 13px;
    margin-top: 4px;
}

.checkout-item b {
    color: #ffba08;
    white-space: nowrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #111111;
}

/* ORDER SUCCESS */

.success-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.success-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.success-card h2 {
    color: #111111;
    margin-bottom: 18px;
}

.order-success-info {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 18px;
    margin: 22px 0;
}

.order-success-info p {
    margin-bottom: 8px;
}
/* HEADER CART COUNT */

.cart-menu-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: 5px;
    border-radius: 50px;
    background: #ffba08;
    color: #111111;
    font-size: 12px;
    font-weight: 900;
}
button:disabled,
.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
/* PROFESSIONAL CHECKOUT PAGE */

.checkout-section {
    background: #f4f1ec;
}

.checkout-alert {
    max-width: 900px;
    margin: 0 auto 24px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 28px;
    align-items: flex-start;
}

.checkout-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-panel {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.checkout-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 26px;
}

.checkout-step {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: #ffba08;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
}

.checkout-panel h2 {
    margin: 0 0 6px;
    color: #111111;
    font-size: 28px;
}

.checkout-panel p {
    margin: 0;
    color: #777777;
}

.checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.checkout-field.full {
    grid-column: 1 / -1;
}

.checkout-field label {
    display: block;
    font-weight: 900;
    color: #111111;
    margin-bottom: 8px;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    border: 1px solid #e2ded7;
    background: #fafafa;
    border-radius: 16px;
    padding: 15px 16px;
    font-size: 15px;
    color: #111111;
    outline: none;
    transition: 0.2s;
}

.checkout-field textarea {
    resize: vertical;
    min-height: 110px;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    border-color: #ffba08;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 186, 8, 0.18);
}

.checkout-option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.checkout-option-grid.payment-grid {
    margin-top: 16px;
}

.checkout-radio-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 2px solid #eeeeee;
    background: #fafafa;
    border-radius: 18px;
    padding: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.checkout-radio-card:hover {
    border-color: #ffba08;
    background: #ffffff;
}

.checkout-radio-card input {
    margin-top: 4px;
    accent-color: #ffba08;
}

.checkout-radio-card strong {
    display: block;
    color: #111111;
    font-size: 16px;
    margin-bottom: 4px;
}

.checkout-radio-card small {
    display: block;
    color: #777777;
    line-height: 1.4;
}

.checkout-radio-card:has(input:checked) {
    border-color: #ffba08;
    background: #fff7dd;
}

.checkout-summary-pro {
    position: sticky;
    top: 110px;
    background: #111111;
    color: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.20);
}

.checkout-summary-pro h2 {
    color: #ffffff;
    margin: 0 0 22px;
    font-size: 26px;
}

.checkout-items-pro {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.checkout-item-pro {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-item-pro img {
    width: 58px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
}

.checkout-item-pro strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
}

.checkout-item-pro span {
    color: #cccccc;
    font-size: 13px;
}

.checkout-item-pro b {
    color: #ffba08;
    white-space: nowrap;
    font-size: 14px;
}

.checkout-total-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 18px;
}

.checkout-total-box div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    color: #ffffff;
}

.checkout-total-box span {
    color: #dddddd;
}

.checkout-total-box strong {
    color: #ffffff;
}

.checkout-total-box .grand-total {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 20px;
}

.checkout-total-box .grand-total span,
.checkout-total-box .grand-total strong {
    color: #ffba08;
    font-weight: 900;
}

.checkout-note {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.checkout-submit {
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 15px 18px;
    border-radius: 16px;
}

.checkout-back {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
}

.checkout-back:hover {
    color: #ffba08;
}
/* ORDER TRACK PAGE */

.order-track-section {
    background: #f4f1ec;
}

.order-track-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 28px;
    align-items: flex-start;
}

.order-track-card,
.order-track-result {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.order-track-card h2,
.order-track-result h2 {
    color: #111111;
    margin-top: 0;
}

.order-track-card p {
    color: #666666;
    line-height: 1.6;
}

.track-form {
    margin-top: 22px;
}

.track-form .checkout-field {
    margin-bottom: 16px;
}

.track-status-head {
    margin-bottom: 26px;
}

.track-status-head h2 {
    margin: 14px 0 8px;
    font-size: 30px;
}

.track-status-head p {
    margin: 0;
    color: #666666;
}

.track-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.track-step {
    position: relative;
    background: #f2f2f2;
    border-radius: 18px;
    padding: 18px 14px;
    text-align: center;
    color: #777777;
    font-weight: 800;
}

.track-step.active {
    background: #fff3cd;
    color: #111111;
}

.track-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #cccccc;
    margin: 0 auto 10px;
}

.track-step.active .track-dot {
    background: #ffba08;
}

.track-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.track-info-grid div {
    background: #fafafa;
    border-radius: 18px;
    padding: 16px;
}

.track-info-grid strong {
    display: block;
    color: #111111;
    margin-bottom: 6px;
}

.track-info-grid span {
    color: #666666;
}

.track-address {
    background: #fafafa;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 24px;
}

.track-address strong {
    color: #111111;
}

.track-address p {
    margin: 8px 0 0;
    color: #666666;
}

.track-products {
    background: #111111;
    color: #ffffff;
    border-radius: 22px;
    padding: 22px;
}

.track-products h3 {
    color: #ffffff;
    margin-top: 0;
}

.track-product-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.track-product-row:last-child {
    border-bottom: none;
}

.track-product-row span {
    color: #ffffff;
}

.track-product-row strong {
    color: #ffba08;
}
/* ORDER TRACK PROFESSIONAL */

.order-track-section {
    background: #f5f1ea;
}

.order-track-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 28px;
    align-items: flex-start;
}

.order-track-search-card,
.order-track-result-card,
.order-track-empty-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.order-track-search-card h2,
.order-track-result-card h2,
.order-track-empty-card h2 {
    margin-top: 0;
    color: #111111;
}

.order-track-search-card p,
.order-track-empty-card p {
    color: #666666;
    line-height: 1.6;
}

.track-form {
    margin-top: 20px;
}

.track-form-group {
    margin-bottom: 16px;
}

.track-form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111111;
}

.track-form-group input {
    width: 100%;
    border: 1px solid #dfd8ce;
    border-radius: 16px;
    background: #faf9f7;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: 0.2s;
}

.track-form-group input:focus {
    border-color: #f5b301;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(245, 179, 1, 0.15);
}

.track-help-box {
    margin-top: 24px;
    padding: 20px;
    background: #faf7ef;
    border-radius: 20px;
}

.track-help-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #111111;
}

.track-help-box p {
    margin: 0 0 10px;
}

.track-result-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.track-status-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.track-status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.track-status-badge.status-preparing {
    background: #cfe8ff;
    color: #004085;
}

.track-status-badge.status-on_the_way {
    background: #d8f2ff;
    color: #0c5460;
}

.track-status-badge.status-completed {
    background: #d4edda;
    color: #155724;
}

.track-status-badge.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.track-result-head h2 {
    margin: 0 0 8px;
    font-size: 34px;
}

.track-result-head p {
    margin: 0;
    color: #666666;
}

.track-total-highlight {
    min-width: 180px;
    background: #111111;
    color: #ffffff;
    border-radius: 22px;
    padding: 18px 20px;
    text-align: right;
}

.track-total-highlight small {
    display: block;
    color: #cccccc;
    margin-bottom: 6px;
}

.track-total-highlight strong {
    color: #f5b301;
    font-size: 26px;
    font-weight: 900;
}

.track-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.track-progress-step {
    position: relative;
    background: #f5f5f5;
    border-radius: 18px;
    padding: 20px 12px 16px;
    text-align: center;
}

.track-progress-step span {
    display: block;
    font-weight: 800;
    font-size: 14px;
    color: #777777;
    line-height: 1.4;
}

.track-progress-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #cfcfcf;
    margin: 0 auto 12px;
}

.track-progress-step.done {
    background: #edf8ef;
}

.track-progress-step.done .track-progress-dot {
    background: #28a745;
}

.track-progress-step.done span {
    color: #155724;
}

.track-progress-step.current {
    background: #fff5d6;
    border: 2px solid #f5b301;
}

.track-progress-step.current .track-progress-dot {
    background: #f5b301;
}

.track-progress-step.current span {
    color: #111111;
}

.track-progress-step.upcoming {
    background: #f3f3f3;
}

.track-progress-step.upcoming .track-progress-dot {
    background: #d6d6d6;
}

.track-progress-step.upcoming span {
    color: #8a8a8a;
}

.track-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.track-info-card {
    background: #fafafa;
    border: 1px solid #eee7de;
    border-radius: 20px;
    padding: 18px;
}

.track-info-card strong {
    display: block;
    margin-bottom: 8px;
    color: #111111;
}

.track-info-card span {
    color: #666666;
    line-height: 1.5;
}

.track-address-box {
    background: #fafafa;
    border: 1px solid #eee7de;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
}

.track-address-box strong {
    display: block;
    color: #111111;
    margin-bottom: 8px;
}

.track-address-box p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
}

.track-products-box {
    background: #111111;
    color: #ffffff;
    border-radius: 24px;
    padding: 24px;
}

.track-products-box h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: #ffffff;
}

.track-product-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.track-product-item:last-child {
    border-bottom: none;
}

.track-product-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.track-product-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    font-weight: 900;
    color: #ffffff;
}

.track-product-name {
    color: #ffffff;
}

.track-product-price {
    color: #f5b301;
    white-space: nowrap;
}

.order-track-empty-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* ORDER OPTIONS PAGE */

.order-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.order-option-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: 0.25s;
}

.order-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.order-option-card.highlighted {
    background: #111111;
    color: #ffffff;
}

.order-option-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #fff1c5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.order-option-card.highlighted .order-option-icon {
    background: #ffba08;
}

.order-option-card h2 {
    color: #111111;
    margin: 0 0 18px;
    font-size: 27px;
}

.order-option-card.highlighted h2 {
    color: #ffffff;
}

.order-option-card p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.order-option-card.highlighted p {
    color: #dddddd;
}
/* MENU CATEGORY HORIZONTAL SCROLL FIX */

.menu-category-nav {
    overflow: hidden;
}

.menu-category-nav .container {
    overflow: hidden;
}

.menu-category-tabs,
.category-tabs,
.menu-categories {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 12px 0 18px;
    cursor: grab;
}

.menu-category-tabs:active,
.category-tabs:active,
.menu-categories:active {
    cursor: grabbing;
}

.menu-category-tabs a,
.category-tabs a,
.menu-categories a {
    flex: 0 0 auto;
}

.menu-category-tabs::-webkit-scrollbar,
.category-tabs::-webkit-scrollbar,
.menu-categories::-webkit-scrollbar {
    height: 7px;
}

.menu-category-tabs::-webkit-scrollbar-track,
.category-tabs::-webkit-scrollbar-track,
.menu-categories::-webkit-scrollbar-track {
    background: #eee7de;
    border-radius: 20px;
}

.menu-category-tabs::-webkit-scrollbar-thumb,
.category-tabs::-webkit-scrollbar-thumb,
.menu-categories::-webkit-scrollbar-thumb {
    background: #ffba08;
    border-radius: 20px;
}