:root {
    --color-dark: #2B1618;
    --color-cream: #FBF3E7;
    --color-orange: #991E20;
    --color-orange-deep: #6E1114;
    --color-orange-light: #E2C088;
    --color-muted: #8d7a72;
    --font-display: ui-rounded, "Arial Black", "Segoe UI", sans-serif;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius-card: 18px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(900px 480px at 50% -8%, rgba(200,155,75,0.38), transparent 62%),
        radial-gradient(700px 500px at 100% 30%, rgba(200,155,75,0.14), transparent 60%),
        linear-gradient(180deg, #31181a 0%, #2B1618 42%);
    background-attachment: fixed;
    color: var(--color-dark);
    font-family: var(--font-body);
}

a, button { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

body.modal-open { overflow: hidden; }

button { font-family: inherit; }

/* ── Header ── */

.site-header {
    background: var(--color-dark);
    background-image: none;
    background-size: 140px;
    color: var(--color-cream);
    padding: 34px 20px 26px;
    text-align: center;
    position: relative;
    border-bottom: 6px solid var(--color-orange);
}

.site-header .logo-badge {
    width: 84px;
    height: 84px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-cream);
}

.site-header .logo-badge img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.site-header .brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 32px;
    letter-spacing: 1px;
    margin: 0;
    text-transform: lowercase;
    background: linear-gradient(120deg, var(--color-orange-light), var(--color-orange) 55%, var(--color-orange-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.site-header .brand-name .dot {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--color-cream);
}

.site-header .tagline {
    font-size: 12px;
    color: var(--color-orange-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 700;
}

.header-controls {
    position: absolute;
    top: 18px;
    right: 16px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.header-controls a {
    display: inline-block;
    padding: 6px 12px;
    border: 1.5px solid var(--color-orange);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-orange-light);
}

.header-controls a.active {
    background: var(--color-orange);
    color: var(--color-dark);
}

/* ── Menu shell ── */

.menu-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 26px 16px 60px;
}

/* ── Home: category tile grid ── */

.category-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.category-grid.visible { display: grid; }

.category-tile {
    position: relative;
    aspect-ratio: 1 / 1.08;
    background: linear-gradient(165deg, #241a10 0%, #14100c 100%);
    border: 1px solid rgba(200,155,75,0.28);
    border-radius: 16px;
    padding: 12px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 10px 22px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.15s ease, border-color 0.2s ease;
}

.category-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(140px 140px at var(--x, 50%) var(--y, 30%), rgba(200,155,75,0.4), transparent 70%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.category-tile:hover::before,
.category-tile:focus-visible::before,
.category-tile.spot-active::before {
    opacity: 1;
}

.category-tile:hover,
.category-tile:focus-visible {
    border-color: rgba(200,155,75,0.6);
}

.category-tile:active { transform: scale(0.95); }

.category-tile-watermark {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 52px;
    height: 52px;
    object-fit: contain;
    opacity: 0.14;
    z-index: 0;
    pointer-events: none;
}

.category-tile-badge {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.category-tile-badge img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 3px 5px rgba(0,0,0,.35)); }

.category-tile-name {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12.5px;
    text-align: center;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--color-orange-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.category-tile-count {
    position: relative;
    z-index: 1;
    font-size: 10.5px;
    color: rgba(255,247,236,0.45);
    font-weight: 600;
}

/* ── Category detail view ── */

.category-view {
    display: none;
}

.category-view.visible {
    display: block;
}

.category-view-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-dark);
    color: var(--color-orange-light);
    border: 1px solid rgba(200,155,75,0.4);
    border-radius: 20px;
    padding: 8px 14px 8px 10px;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.category-view-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0;
    background: linear-gradient(120deg, var(--color-cream), var(--color-orange-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-list {
    position: relative;
    background: var(--color-cream);
    border-radius: var(--radius-card);
    padding: 8px 18px 4px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    border: 1px solid rgba(24,20,16,0.06);
    overflow: hidden;
}

.product-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange-deep), var(--color-orange), var(--color-orange-light));
}

.product {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 4px;
    margin: 0 -4px;
    border-bottom: 1px solid rgba(24,20,16,0.09);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.product:hover,
.product:focus-visible {
    background-color: rgba(200,155,75,0.08);
    outline: none;
}

.product:last-child { border-bottom: none; }

.product-photo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(200,155,75,0.12);
}

.product-photo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(200,155,75,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-photo-placeholder img {
    width: 28px;
    height: 28px;
    opacity: 0.5;
}

.product-info { min-width: 0; }

.product-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.product-name {
    font-weight: 700;
    font-size: 15.5px;
    line-height: 1.3;
}

.product-price {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-orange-light);
    font-weight: 800;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-price-alt {
    font-size: 11.5px;
    color: var(--color-muted);
    font-weight: 700;
    margin-top: 5px;
}

.product-desc {
    font-size: 12.5px;
    color: var(--color-muted);
    margin-top: 5px;
    line-height: 1.45;
}

.empty-note {
    color: var(--color-muted);
    font-size: 14px;
    font-style: italic;
    background: var(--color-cream);
    border-radius: var(--radius-card);
    padding: 20px;
    text-align: center;
}

/* ── Footer ── */

.site-footer {
    background: var(--color-dark);
    background-image: none;
    background-size: 140px;
    color: var(--color-cream);
    padding: 42px 20px 34px;
    text-align: center;
    border-top: 6px solid var(--color-orange);
    margin-top: 10px;
}

.footer-inner { max-width: 680px; margin: 0 auto; }

.footer-instagram { display: flex; flex-direction: column; align-items: center; }

.footer-eyebrow {
    color: var(--color-orange-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(100deg, #feda75 0%, #fa7e1e 30%, #d62976 62%, #962fbf 82%, #4f5bd5 100%);
    padding: 12px 24px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(214,41,118,0.3);
    transition: transform .18s ease, box-shadow .18s ease;
}

.footer-social:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(214,41,118,0.42); }
.footer-social svg { width: 22px; height: 22px; flex: 0 0 auto; }

.footer-divider { width: 56px; height: 2px; margin: 28px auto 24px; background: rgba(255,255,255,.16); }

.footer-credit { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-credit span { color: rgba(255,247,236,.64); font-size: 11px; letter-spacing: .2px; }
.footer-credit img { width: 92px; height: auto; opacity: .94; }
.footer-onmart-link { display: inline-flex; transition: transform .18s ease, opacity .18s ease; }
.footer-onmart-link:hover { transform: translateY(-2px); opacity: 1; }
/* Varsayılan (koyu/turuncu) temada beyaz logo, açık temada siyah logo */
.onmart-logo-light-theme { display: none; }
body.theme-light .onmart-logo-light-theme { display: block; }
body.theme-light .onmart-logo-dark-theme { display: none; }

/* ── Tablet / desktop ── */

@media (min-width: 600px) {
    .menu-wrap { max-width: 760px; padding-top: 34px; }
    .category-grid { grid-template-columns: repeat(8, 1fr); gap: 16px; }
    .category-tile { grid-column: span 2; }
    .category-grid .category-tile:last-child:nth-child(4n + 3) { grid-column: 6 / span 2; }
    .category-grid .category-tile:nth-last-child(2):nth-child(4n + 2) { grid-column: 4 / span 2; }
    .category-grid .category-tile:nth-last-child(3):nth-child(4n + 1) { grid-column: 2 / span 2; }
    .category-tile-badge { width: 46px; height: 46px; }
    .category-tile-name { font-size: 13.5px; }
}

@media (min-width: 900px) {
    .menu-wrap { max-width: 820px; }
    .category-grid { gap: 18px; }
}

@media (max-width: 599px) {
    .site-header { padding-top: 20px; }
    .header-controls {
        position: static;
        width: 100%;
        justify-content: center;
        margin: 0 auto 18px;
        gap: 8px;
    }
    .header-controls a { min-width: 46px; padding: 7px 12px; }
    .theme-toggle { width: 32px; height: 32px; }
    .site-header .logo-badge { margin-bottom: 12px; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .category-tile { aspect-ratio: 1.2 / 1; grid-column: auto; }
    .category-grid .category-tile:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
    .menu-wrap { padding-bottom: 40px; }
}

@media (max-width: 360px) {
    .category-grid { gap: 8px; }
    .category-tile { padding: 10px 6px 8px; }
    .category-tile-badge { width: 34px; height: 34px; }
    .category-tile-name { font-size: 11px; }
    .product { grid-template-columns: 46px 1fr; gap: 10px; }
    .product-photo, .product-photo-placeholder { width: 46px; height: 46px; }
}

/* ── Ürün detay popup'ı ── */

.product-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(12,9,6,0.72);
    backdrop-filter: blur(3px);
    z-index: 100;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.product-modal-overlay.visible {
    display: flex;
}

.product-modal {
    background: var(--color-cream);
    width: 100%;
    max-width: 480px;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 22px 22px 0 0;
    position: relative;
    box-shadow: 0 -12px 40px rgba(0,0,0,0.5);
}

.product-modal-toolbar {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 14px 0;
}

.modal-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12.5px;
    cursor: pointer;
    background: var(--color-dark);
    color: var(--color-orange-light);
    padding: 8px 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.modal-btn-close {
    padding: 8px;
}

.product-modal-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(200,155,75,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    overflow: hidden;
}

.product-modal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal-image-wrap img.product-modal-placeholder {
    width: 90px;
    height: 90px;
    object-fit: contain;
    opacity: 0.45;
}

.product-modal-body {
    padding: 22px 22px 32px;
}

.product-modal-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--color-dark);
}

.product-modal-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-modal-price {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-orange-light);
    font-weight: 800;
    font-size: 15px;
    padding: 6px 14px;
    border-radius: 20px;
}

.product-modal-price-alt {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 700;
}

.product-modal-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4a4136;
    margin: 0;
}

.removable-ingredients { margin-top: 15px; padding: 13px; border-radius: 14px; background: rgba(255,255,255,.48); border: 1px solid rgba(137,57,0,.17); }
.removable-ingredients-title { margin-bottom: 9px; color: #74401e; font-size: 11px; font-weight: 800; }
.removable-ingredient-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.removable-ingredient-tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 11px; border-radius: 999px; border: 1px solid #8c3b00; color: #2a190e; background: linear-gradient(145deg, #ffc66f, #f2891b); box-shadow: 0 3px 0 #9b4300; font-size: 11px; font-weight: 800; cursor: pointer; transition: .16s ease; }
.removable-ingredient-tag span { display: grid; place-items: center; width: 16px; height: 16px; border-radius: 50%; color: var(--color-orange); background: var(--color-dark); }
.removable-ingredient-tag.is-removed { color: #85776c; background: #e6ddd1; border-color: #b6a99c; box-shadow: 0 2px 0 #a99c90; text-decoration: line-through; opacity: .76; transform: translateY(1px); }
.removable-ingredient-tag.is-removed span { color: #fff; background: #8f8175; }

/* Çıkarılan malzemeler bölümü — seçilen etiketler buraya düşer */
.removed-ingredients-zone { margin-top: 12px; padding: 11px 12px; border-radius: 12px; background: rgba(140,59,0,.07); border: 1px dashed rgba(140,59,0,.38); animation: removedZoneIn .22s ease; }
@keyframes removedZoneIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.removed-ingredients-zone-title { margin-bottom: 8px; color: #8c3b00; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.removed-ingredient-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.removed-ingredient-chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; border: 1px solid #b04a00; color: #fff; background: #8c3b00; font-size: 11px; font-weight: 800; cursor: pointer; transition: .16s ease; animation: removedChipIn .2s ease; }
@keyframes removedChipIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.removed-ingredient-chip span { display: grid; place-items: center; width: 15px; height: 15px; border-radius: 50%; font-size: 9px; color: #8c3b00; background: #ffe3c2; }
.removed-ingredient-chip:hover { background: #a44a06; }

@media (min-width: 600px) {
    .product-modal-overlay { align-items: center; padding: 20px; }
    .product-modal { border-radius: 22px; max-height: 82vh; }
}

/* ── Ürün popup'ı: sepete ekleme bölümü ── */

.product-modal-cart-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed rgba(24,20,16,0.15);
}

.price-options {
    display: none;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.price-option-btn {
    border: 1.5px solid rgba(24,20,16,0.2);
    background: #fff;
    color: var(--color-dark);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
}

.price-option-btn.selected {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-orange-light);
}

.modal-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1.5px solid rgba(24,20,16,0.2);
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.qty-stepper button {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
}

.qty-stepper button:hover { background: rgba(200,155,75,0.12); }

.qty-stepper span {
    min-width: 28px;
    text-align: center;
    font-weight: 800;
    font-size: 14px;
}

.qty-stepper-sm button { width: 28px; height: 28px; font-size: 15px; }
.qty-stepper-sm span { min-width: 20px; font-size: 13px; }

.btn-add-cart {
    flex: 1;
    border: none;
    background: var(--color-orange);
    color: var(--color-dark);
    font-weight: 800;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(200,155,75,0.35);
    transition: background-color 0.2s ease;
}

.btn-go-cart { flex: .78; border: 1px solid #5f2a04; padding: 12px 14px; border-radius: 22px; color: #ffe5bd; background: linear-gradient(145deg, #332219, #17100c); box-shadow: 0 5px 0 #783000; font-size: 13px; font-weight: 800; cursor: pointer; }
.btn-go-cart:hover { color: #fff; background: #43291a; }
.btn-go-cart:active { transform: translateY(3px); box-shadow: 0 2px 0 #4f2100; }

.btn-add-cart:hover { background: var(--color-orange-deep); }

.btn-add-cart.added {
    background: #4a8f4a;
    color: #fff;
}

/* ── Sepet FAB ── */

.cart-fab {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-dark);
    color: var(--color-orange);
    border: 2px solid var(--color-orange);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    box-shadow: 0 10px 26px rgba(0,0,0,0.5);
}

.cart-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-orange);
    color: var(--color-dark);
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--color-dark);
}

/* ── Sepet / sipariş görünümleri ── */

.cart-view,
.order-review-view,
.order-success-view {
    display: none;
}

.cart-view.visible,
.order-review-view.visible,
.order-success-view.visible {
    display: block;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(24,20,16,0.09);
}

.cart-list .cart-item:last-child { border-bottom: none; }

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cart-item-name {
    font-weight: 700;
    font-size: 14.5px;
}

.cart-item-name em {
    font-style: normal;
    color: var(--color-muted);
    font-weight: 600;
    font-size: 12px;
}

.cart-item-unit {
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 600;
}
.cart-item-note { display: block; max-width: 430px; margin-top: 2px; padding: 5px 8px; border-radius: 7px; color: #8b2f00; background: #fff0d8; border-left: 3px solid var(--color-orange); font-size: 10.5px; line-height: 1.35; }

@media (max-width: 520px) {
    .modal-cart-row { flex-wrap: wrap; }
    .modal-cart-row .qty-stepper { order: 1; }
    .btn-go-cart { order: 2; }
    .btn-add-cart { order: 3; flex-basis: 100%; }
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-item-remove {
    border: none;
    background: none;
    color: #a33;
    cursor: pointer;
    padding: 6px;
}

.cart-item-line-total {
    font-weight: 800;
    color: var(--color-orange-deep);
    font-size: 14px;
    flex-shrink: 0;
}

.cart-summary {
    position: sticky;
    bottom: 14px;
    margin-top: 18px;
    background: var(--color-dark);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-cream);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

#cart-total-amount,
#order-review-total {
    color: var(--color-orange-light);
    font-weight: 800;
    font-size: 18px;
}

/* Sipariş onay ekranındaki toplam satırı: iki temada da okunur, üstten nefes alan hap */
.order-review-total-row {
    margin: 18px 0 6px;
    padding: 13px 18px;
    border-radius: 14px;
    background: rgba(24, 20, 16, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-cream);
}
.order-review-total-row #order-review-total {
    color: var(--color-orange-light);
}
body.theme-light .order-review-total-row {
    background: rgba(140, 59, 0, 0.09);
    border-color: rgba(140, 59, 0, 0.26);
    color: #2a190e;
}
body.theme-light .order-review-total-row #order-review-total {
    color: #b04a00;
}

.btn-send-orkipa {
    width: 100%;
    border: none;
    background: var(--color-orange);
    color: var(--color-dark);
    font-weight: 800;
    font-size: 15px;
    padding: 14px;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(200,155,75,0.3);
}

.btn-send-orkipa:hover { background: var(--color-orange-deep); }

/* ── Sipariş kontrol / onay ekranı ── */

.order-name-field {
    background: var(--color-cream);
    border-radius: var(--radius-card);
    padding: 18px;
    margin-top: 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.order-name-field label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 8px;
}

.order-name-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(24,20,16,0.2);
    font-size: 15px;
    font-family: inherit;
}

.order-name-error,
.order-submit-error {
    display: none;
    color: #c0392b;
    font-size: 12.5px;
    font-weight: 700;
    margin-top: 8px;
}

.order-name-error.visible,
.order-submit-error.visible {
    display: block;
}

.order-review-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.btn-give-up,
.btn-confirm-order {
    flex: 1;
    padding: 14px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 14.5px;
    cursor: pointer;
    border: none;
}

.btn-give-up {
    background: transparent;
    border: 1.5px solid rgba(255,247,236,0.5);
    color: var(--color-cream);
}

.btn-confirm-order {
    background: var(--color-orange);
    color: var(--color-dark);
    box-shadow: 0 8px 20px rgba(200,155,75,0.3);
}

.btn-confirm-order:disabled { opacity: 0.6; cursor: wait; }

/* ── Sipariş başarı ekranı ── */

.order-success-view {
    text-align: center;
    background: var(--color-cream);
    border-radius: var(--radius-card);
    padding: 46px 24px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}

.order-success-mascot {
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    opacity: 0.85;
}

.order-success-view h2 {
    font-family: var(--font-display);
    font-size: 21px;
    margin: 0 0 10px;
}

.order-success-view p {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 24px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.order-success-view .btn-send-orkipa {
    max-width: 240px;
    margin: 0 auto;
}

/* ── Tema geçişi (açık/koyu) ── */

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--color-orange);
    background: transparent;
    color: var(--color-orange-light);
    cursor: pointer;
    flex-shrink: 0;
}

.theme-toggle svg { width: 15px; height: 15px; }

.theme-toggle .icon-moon { display: none; }

body.theme-light .theme-toggle .icon-sun { display: none; }
body.theme-light .theme-toggle .icon-moon { display: block; }

/* ── Açık tema override'ları ── */

body.theme-light {
    background:
        radial-gradient(900px 480px at 50% -8%, rgba(200,155,75,0.14), transparent 62%),
        #FBF7F0;
    color: var(--color-dark);
}

body.theme-light .site-header {
    background: #FFFDF9;
    background-image: none;
    color: var(--color-dark);
    border-bottom: 4px solid var(--color-orange);
}

body.theme-light .site-header .tagline {
    color: var(--color-orange-deep);
}

body.theme-light .site-header .brand-name .dot {
    color: var(--color-dark);
}

body.theme-light .header-controls a {
    color: var(--color-orange-deep);
}

body.theme-light .header-controls a.active {
    background: var(--color-orange);
    color: #fff;
}

body.theme-light .theme-toggle {
    color: var(--color-orange-deep);
}

body.theme-light .category-tile {
    background: linear-gradient(165deg, #ffffff 0%, #fff7ea 100%);
    border-color: rgba(200,155,75,0.35);
    box-shadow: 0 10px 22px rgba(24,20,16,0.1), inset 0 1px 0 rgba(255,255,255,0.7);
}

body.theme-light .category-tile:hover,
body.theme-light .category-tile:focus-visible {
    border-color: rgba(200,155,75,0.7);
}

body.theme-light .category-tile-name {
    color: var(--color-dark);
}

body.theme-light .category-tile-count {
    color: var(--color-muted);
}

body.theme-light .category-view-title {
    background: linear-gradient(120deg, var(--color-dark), var(--color-orange-deep));
    -webkit-background-clip: text;
    background-clip: text;
}

body.theme-light .product-list {
    background: #fff;
    border: 1px solid rgba(24,20,16,0.08);
    box-shadow: 0 14px 30px rgba(24,20,16,0.1);
}

body.theme-light .btn-give-up {
    border-color: rgba(24,20,16,0.25);
    color: var(--color-dark);
}

body.theme-light .empty-note {
    background: #fff;
    border: 1px solid rgba(24,20,16,0.08);
}

body.theme-light .order-name-field {
    background: #fff;
    border: 1px solid rgba(24,20,16,0.08);
    box-shadow: 0 8px 18px rgba(24,20,16,0.08);
}

/* ── TOSTOLOJİ mandalina tema ── */

html, body {
    background:
        radial-gradient(900px 520px at 100% 0%, rgba(255,145,25,.28), transparent 62%),
        radial-gradient(700px 460px at 0% 82%, rgba(200,155,75,.14), transparent 65%),
        linear-gradient(145deg, #241507 0%, #15110d 54%, #0e0c0a 100%);
}

.site-header,
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-image: linear-gradient(145deg, #2a190c 0%, #14110e 72%, #0e0c0a 100%);
}

.site-header::before,
.site-footer::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -1;
    background-image: var(--brand-logo-image), var(--brand-logo-image);
    background-repeat: no-repeat, no-repeat;
    background-size: 150px 150px, 150px 150px;
    background-position: 15% center, 85% center;
    opacity: .09;
    filter: grayscale(1) contrast(1.3) drop-shadow(0 9px 10px rgba(0,0,0,.42));
    pointer-events: none;
}

.site-header { border-bottom-color: #ff9d20; }
.site-footer { border-top-color: #ff9d20; }

.menu-wrap { max-width: 860px; }

.category-tile {
    background:
        radial-gradient(circle at 100% 0%, rgba(255,247,229,.48), transparent 48%),
        linear-gradient(145deg, #ffb44e 0%, #f2891b 58%, #cf6808 100%);
    border-color: rgba(92,38,0,.42);
    box-shadow:
        inset 0 2px 0 rgba(255,238,207,.65),
        0 6px 0 #9f4300,
        0 18px 28px -15px rgba(0,0,0,.72);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.category-tile:hover,
.category-tile:focus-visible {
    border-color: rgba(255,218,162,.85);
    transform: translateY(-4px) rotateX(2deg);
    box-shadow:
        inset 0 2px 0 rgba(255,244,222,.75),
        0 8px 0 #873700,
        0 24px 34px -15px rgba(0,0,0,.78);
}

.category-tile:active {
    transform: translateY(2px) scale(.985);
    box-shadow: inset 0 3px 7px rgba(94,37,0,.28), 0 2px 0 #873700;
}

.category-tile-name { color: var(--color-dark); text-shadow: 0 1px 0 rgba(255,232,194,.5); }
.category-tile-count { color: rgba(24,20,16,.68); }
.category-tile-badge {
    background: transparent;
    border: 0;
    box-shadow: none;
}
body.theme-light .category-tile-badge img { filter: drop-shadow(0 3px 5px rgba(102,41,0,.3)); }
.category-tile-watermark { opacity: .28; }

.category-view-title {
    background: linear-gradient(120deg, #fff2da, #ffab3b);
    -webkit-background-clip: text;
    background-clip: text;
}

.back-btn {
    background: linear-gradient(145deg, #ffb44e, #f2891b);
    color: var(--color-dark);
    border-color: #713000;
    box-shadow: 0 4px 0 #853700, 0 12px 20px -10px rgba(0,0,0,.7);
}

.product-list,
.cart-list,
.order-name-field,
.order-success-view {
    background: linear-gradient(145deg, #fffaf1 0%, #ffdfb3 100%);
    border: 1px solid rgba(196,88,0,.28);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,.82),
        0 6px 0 #d99a4a,
        0 20px 34px -17px rgba(0,0,0,.58);
}

.product-list::before { height: 5px; background: linear-gradient(90deg, #b94d00, #ff9518, #ffc66c); }

.product {
    border-bottom-color: rgba(111,46,0,.16);
    transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.product:hover,
.product:focus-visible {
    background: linear-gradient(90deg, rgba(200,155,75,.2), rgba(255,190,97,.38));
    transform: translateY(-2px);
    box-shadow: 0 9px 17px -14px rgba(91,37,0,.65);
}

.product-photo,
.product-photo-placeholder {
    background: linear-gradient(145deg, #ffd797, #f29a29);
    box-shadow: inset 0 2px 0 rgba(255,255,255,.6), 0 4px 0 #c67a1b;
}

.product-photo-placeholder img { opacity: .78; }

.product-price {
    background: linear-gradient(145deg, #2c2017, #100d0a);
    border: 1px solid #060504;
    color: #ffad3d;
    box-shadow: 0 3px 0 #7b3500, 0 8px 12px -9px rgba(0,0,0,.8);
}

.product-modal {
    background: linear-gradient(160deg, #fffaf1 0%, #ffdca7 100%);
    border: 1px solid rgba(196,88,0,.3);
    box-shadow: 0 8px 0 #b85a0b, 0 26px 60px rgba(0,0,0,.6);
}

.price-option-btn { background: #fff5e5; border-color: rgba(111,46,0,.28); }
.price-option-btn.selected { background: linear-gradient(145deg, #ffad3d, #e8750b); color: var(--color-dark); border-color: #773100; }

.cart-summary {
    background: linear-gradient(145deg, #2a190c, #110e0b);
    border: 1px solid rgba(255,157,32,.35);
    box-shadow: 0 6px 0 #783000, 0 18px 30px -14px rgba(0,0,0,.76);
}

.btn-send-orkipa,
.btn-confirm-order,
.btn-add-cart {
    background: linear-gradient(145deg, #ffb64f, #f2891b);
    border: 1px solid #863700;
    box-shadow: 0 5px 0 #8d3a00, 0 13px 20px -12px rgba(0,0,0,.65);
}

.btn-send-orkipa:active,
.btn-confirm-order:active,
.btn-add-cart:active { transform: translateY(3px); box-shadow: 0 2px 0 #783000; }

.cart-fab {
    background: linear-gradient(145deg, #ffb64f, #f2891b);
    color: var(--color-dark);
    border-color: #6f2d00;
    box-shadow: 0 6px 0 #873700, 0 16px 28px rgba(0,0,0,.58);
}

.footer-credit img { filter: drop-shadow(0 8px 12px rgba(0,0,0,.55)); }
body.theme-light .footer-credit img { filter: drop-shadow(0 4px 8px rgba(0,0,0,.18)); }

.footer-orkipa-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
}

.footer-orkipa-mark img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    filter:
        drop-shadow(0 2px 0 rgba(255,170,57,.65))
        drop-shadow(0 11px 13px rgba(0,0,0,.58));
    transform: perspective(260px) rotateY(-5deg);
}

.footer-orkipa-mark + .footer-divider { margin-top: 22px; }

body.theme-light {
    background:
        radial-gradient(850px 480px at 100% 0%, rgba(255,145,25,.24), transparent 62%),
        linear-gradient(145deg, #fff8ed, #ffe3bc);
}

body.theme-light .site-header {
    background-image: linear-gradient(145deg, #ffb44e, #e9780e);
    color: var(--color-dark);
}

body.theme-light .site-header::before { opacity: .12; filter: grayscale(1) contrast(1.45); }
body.theme-light .site-header .tagline { color: #572300; }
body.theme-light .site-header .brand-name { background: none; color: var(--color-dark); }
body.theme-light .site-header .brand-name .dot { color: #fff4df; }
body.theme-light .category-tile { border-color: rgba(92,38,0,.42); }
body.theme-light .category-tile-name { color: var(--color-dark); }
body.theme-light .category-tile-count { color: rgba(24,20,16,.68); }
body.theme-light .category-view-title {
    background: linear-gradient(120deg, #3b1c07, #a84200);
    -webkit-background-clip: text;
    background-clip: text;
}

@media (max-width: 599px) {
    .site-header::before,
    .site-footer::before {
        background-size: 84px 84px, 84px 84px;
        background-position: 5% 28%, 95% 72%;
        opacity: .075;
    }
    .footer-orkipa-mark img { width: 78px; height: 78px; }
    .category-tile { box-shadow: inset 0 2px 0 rgba(255,238,207,.65), 0 4px 0 #9f4300, 0 13px 21px -14px rgba(0,0,0,.7); }
    .product-list { padding-left: 12px; padding-right: 12px; }
}

/* ── Mandalina bütün yüzey teması ── */

html,
body,
body.theme-light {
    background:
        radial-gradient(900px 520px at 50% -10%, rgba(255,239,205,.44), transparent 58%),
        radial-gradient(720px 480px at 100% 78%, rgba(167,70,0,.2), transparent 64%),
        linear-gradient(145deg, #ffb44e 0%, #f2891b 52%, #d56a08 100%);
    color: var(--color-dark);
}

.site-header,
.site-footer,
body.theme-light .site-header {
    background-image:
        radial-gradient(560px 260px at 50% 0%, rgba(255,244,218,.38), transparent 66%),
        linear-gradient(145deg, #ffb64f 0%, #f2891b 58%, #ce6507 100%);
    color: var(--color-dark);
    border-color: #7f3300;
    box-shadow:
        inset 0 2px 0 rgba(255,239,209,.62),
        0 6px 0 #963d00,
        0 18px 30px -18px rgba(75,29,0,.72);
}

.site-header::before,
.site-footer::before,
body.theme-light .site-header::before {
    opacity: .14;
    filter: grayscale(1) contrast(1.55) drop-shadow(0 8px 9px rgba(83,32,0,.25));
}

.site-header .brand-name,
body.theme-light .site-header .brand-name {
    background: none;
    color: var(--color-dark);
    text-shadow: 0 1px 0 rgba(255,236,199,.55);
}

.site-header .brand-name .dot,
body.theme-light .site-header .brand-name .dot { color: #fff1d4; }

.site-header .tagline,
body.theme-light .site-header .tagline {
    color: #5f2700;
    text-shadow: 0 1px 0 rgba(255,225,177,.45);
}

.header-controls a,
body.theme-light .header-controls a,
.theme-toggle,
body.theme-light .theme-toggle {
    color: var(--color-dark);
    border-color: rgba(75,29,0,.62);
    background: rgba(255,242,216,.25);
    box-shadow: 0 3px 0 rgba(130,51,0,.48);
}

.header-controls a.active,
body.theme-light .header-controls a.active {
    background: linear-gradient(145deg, #2a1b10, #100d0a);
    color: #ffb44e;
    border-color: #080605;
}

.menu-wrap {
    position: relative;
    background: transparent;
}

.category-tile {
    border-color: rgba(91,35,0,.55);
    box-shadow:
        inset 0 2px 0 rgba(255,242,218,.76),
        0 7px 0 #8f3900,
        0 19px 27px -15px rgba(73,27,0,.72);
}

.site-footer .footer-eyebrow { color: #4c1e00; text-shadow: 0 1px 0 rgba(255,230,187,.5); }
.site-footer .footer-credit span { color: rgba(39,20,8,.75); font-weight: 700; }
.site-footer .footer-divider { background: rgba(65,25,0,.35); }
.footer-orkipa-mark img { filter: drop-shadow(0 2px 0 rgba(255,232,190,.7)) drop-shadow(0 12px 13px rgba(83,32,0,.42)); }

@media (max-width: 599px) {
    .site-header,
    .site-footer { box-shadow: inset 0 2px 0 rgba(255,239,209,.6), 0 4px 0 #963d00; }
}

/* ── 3D tost başlığı ve özel footer imzası ── */

.site-header .logo-badge,
body.theme-light .site-header .logo-badge {
    position: relative;
    width: 126px;
    height: 118px;
    margin: 2px auto 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    perspective: 500px;
}

.site-header .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 84px;
    height: 15px;
    border-radius: 50%;
    background: rgba(78,29,0,.35);
    filter: blur(7px);
    transform: translateX(-50%);
    z-index: -1;
}

.site-header .logo-badge img,
body.theme-light .site-header .logo-badge img {
    width: 118px;
    height: 118px;
    object-fit: contain;
    filter:
        drop-shadow(0 2px 0 rgba(255,239,207,.8))
        drop-shadow(0 5px 2px rgba(141,57,0,.42))
        drop-shadow(0 14px 13px rgba(66,24,0,.46));
    transform: rotateY(-7deg) rotateX(3deg) translateY(-2px);
    transform-origin: center bottom;
    animation: header-mascot-float 4.2s ease-in-out infinite;
}

@keyframes header-mascot-float {
    0%, 100% { transform: rotateY(-7deg) rotateX(3deg) translateY(-2px); }
    50% { transform: rotateY(5deg) rotateX(1deg) translateY(-8px); }
}

.site-footer .footer-inner {
    position: relative;
    max-width: 620px;
    padding: 30px 28px 24px;
    border: 1px solid rgba(83,31,0,.28);
    border-radius: 28px;
    background:
        radial-gradient(260px 120px at 50% 0%, rgba(255,245,223,.34), transparent 70%),
        rgba(255,225,179,.2);
    box-shadow:
        inset 0 2px 0 rgba(255,244,222,.5),
        0 6px 0 rgba(133,53,0,.52),
        0 20px 32px -20px rgba(64,23,0,.58);
}

.footer-orkipa-signature {
    position: relative;
    margin: 27px auto 0;
    padding: 19px 20px 17px;
    max-width: 360px;
}

.footer-orkipa-signature::before,
.footer-orkipa-signature::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 54px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(74,27,0,.55));
}

.footer-orkipa-signature::before { left: -34px; }
.footer-orkipa-signature::after { right: -34px; transform: scaleX(-1); }

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: .4px;
    text-shadow: 0 2px 0 rgba(255,240,211,.52), 0 7px 12px rgba(106,41,0,.18);
}

.footer-brand-name span { color: #fff0d1; }

.footer-brand-tagline {
    margin-top: 8px;
    color: #672900;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-orkipa-signature + .footer-divider { margin-top: 12px; }

@media (prefers-reduced-motion: reduce) {
    .site-header .logo-badge img { animation: none; }
}

@media (max-width: 599px) {
    .site-header .logo-badge { width: 108px; height: 102px; margin-top: 0; }
    .site-header .logo-badge img { width: 102px; height: 102px; }
    .site-footer .footer-inner { padding: 26px 18px 22px; border-radius: 22px; }
    .footer-orkipa-signature::before,
    .footer-orkipa-signature::after { width: 34px; }
    .footer-orkipa-signature::before { left: -5px; }
    .footer-orkipa-signature::after { right: -5px; }
    .footer-brand-name { font-size: 27px; }
}

/* ── TOSTOLOJİ sahne başlığı ── */

.site-header,
body.theme-light .site-header {
    min-height: 278px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 330px 180px at 50% 43%, rgba(255,244,218,.76) 0%, rgba(255,190,99,.38) 38%, transparent 72%),
        radial-gradient(circle 240px at 50% 45%, rgba(123,45,0,.18), transparent 74%),
        linear-gradient(112deg, #d96808 0%, #f2891b 24%, #ffb44e 50%, #f2891b 76%, #d96808 100%);
    border-bottom: 6px solid #4a1b00;
    box-shadow:
        inset 0 2px 0 rgba(255,244,220,.72),
        inset 0 -18px 38px rgba(111,39,0,.16),
        0 7px 0 #8a3500,
        0 20px 36px -22px rgba(61,21,0,.74);
}

.site-header::before,
body.theme-light .site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        repeating-linear-gradient(118deg, transparent 0 52px, rgba(84,29,0,.055) 53px 54px, transparent 55px 104px),
        repeating-linear-gradient(62deg, transparent 0 78px, rgba(255,240,210,.075) 79px 80px, transparent 81px 156px);
    opacity: 1;
    filter: none;
    transform: none;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: min(560px, 72vw);
    height: 218px;
    border: 1px solid rgba(91,32,0,.18);
    border-radius: 50%;
    background:
        radial-gradient(ellipse at center, rgba(255,246,224,.24), transparent 68%);
    box-shadow:
        0 0 0 14px rgba(255,235,197,.045),
        0 0 0 34px rgba(91,32,0,.025),
        inset 0 0 34px rgba(255,244,220,.2);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.site-header .logo-badge { z-index: 2; }
.site-header .brand-name,
.site-header .tagline,
.site-header .header-controls { position: relative; z-index: 2; }

.site-header .brand-name {
    font-size: 34px;
    text-shadow:
        0 2px 0 rgba(255,239,209,.72),
        0 7px 15px rgba(91,32,0,.22);
}

.site-header .tagline {
    padding: 5px 13px;
    border-radius: 999px;
    background: rgba(255,235,199,.18);
    border: 1px solid rgba(91,32,0,.13);
}

@media (max-width: 599px) {
    .site-header,
    body.theme-light .site-header {
        min-height: 300px;
        padding-top: 18px;
    }
    .site-header::after { width: 88vw; height: 206px; top: 58%; }
    .site-header .brand-name { font-size: 31px; }
}

/* ── TOSTOLOJİ karakterli başlık: tost + kep motifi ── */

.site-header,
body.theme-light .site-header {
    min-height: 286px;
    background:
        radial-gradient(ellipse 310px 190px at 50% 46%, rgba(255,239,205,.72), rgba(255,174,63,.24) 48%, transparent 74%),
        repeating-linear-gradient(124deg, transparent 0 86px, rgba(255,226,178,.045) 87px 88px, transparent 89px 172px),
        linear-gradient(96deg, #321607 0%, #8f3b05 16%, #e8750b 34%, #f7a131 50%, #e8750b 66%, #8f3b05 84%, #321607 100%);
    border-bottom-color: #120c08;
    box-shadow:
        inset 0 2px 0 rgba(255,225,176,.4),
        inset 0 -24px 42px rgba(35,14,3,.28),
        0 7px 0 #6e2900,
        0 20px 38px -22px rgba(24,10,2,.86);
}

.site-header::before,
body.theme-light .site-header::before {
    content: "";
    position: absolute;
    left: clamp(-105px, -4vw, -42px);
    bottom: -80px;
    width: 390px;
    height: 390px;
    z-index: 0;
    background: url('../img/orkipa-emblem-256.webp') center / contain no-repeat;
    opacity: .18;
    filter: grayscale(1) contrast(1.9) drop-shadow(16px 18px 18px rgba(0,0,0,.28));
    transform: rotate(-7deg);
    pointer-events: none;
}

.site-header::after {
    content: "";
    position: absolute;
    right: clamp(40px, 9vw, 180px);
    top: 50%;
    width: 164px;
    height: 68px;
    z-index: 1;
    border-radius: 80% 18% 80% 18%;
    background:
        radial-gradient(ellipse at 54% 50%, #100d0a 0 10%, #ffc13b 11% 30%, #17110c 31% 58%, rgba(28,16,8,.28) 59% 66%, transparent 67%);
    filter: drop-shadow(0 9px 12px rgba(22,9,2,.46));
    opacity: .78;
    transform: translateY(-50%) rotate(-8deg);
    pointer-events: none;
}

.site-header .logo-badge,
.site-header .brand-name,
.site-header .tagline,
.site-header .header-controls { position: relative; z-index: 3; }

.site-header .brand-name,
body.theme-light .site-header .brand-name {
    color: #16100c;
    text-shadow: 0 2px 0 rgba(255,226,178,.62), 0 8px 16px rgba(47,17,2,.34);
}

.site-header .tagline,
body.theme-light .site-header .tagline {
    color: #2c1405;
    background: rgba(255,214,150,.18);
    border-color: rgba(32,14,4,.22);
}

@media (max-width: 820px) {
    .site-header::before {
        left: -118px;
        width: 310px;
        height: 310px;
        bottom: -60px;
        opacity: .13;
    }
    .site-header::after {
        right: 24px;
        width: 116px;
        height: 48px;
        opacity: .58;
    }
}

/* ── Siyah geçişli premium zemin ve uçan tostlar ── */

html,
body,
body.theme-light {
    background:
        radial-gradient(circle at 50% 8%, rgba(255,158,31,.5), transparent 34%),
        radial-gradient(circle at 18% 58%, rgba(143,49,0,.3), transparent 32%),
        radial-gradient(circle at 82% 72%, rgba(240,112,5,.24), transparent 30%),
        linear-gradient(125deg, #090807 0%, #2a1005 20%, #7e2d02 48%, #291005 80%, #080706 100%);
    background-size: 160% 160%;
}

.site-header,
body.theme-light .site-header {
    background:
        radial-gradient(circle at 50% 48%, rgba(255,213,142,.78) 0%, rgba(241,126,11,.48) 25%, transparent 52%),
        linear-gradient(96deg, #070606 0%, #211006 14%, #7c2c02 34%, #e77208 50%, #7c2c02 66%, #211006 86%, #070606 100%);
    background-size: 145% 145%;
}

.site-header::after {
    border-color: rgba(255,184,71,.14);
    box-shadow:
        0 0 0 22px rgba(246,134,15,.035),
        0 0 0 54px rgba(14,8,5,.12),
        inset 0 0 82px rgba(255,192,94,.09);
}

.menu-wrap {
    background:
        radial-gradient(circle at 50% 0%, rgba(242,130,14,.24), transparent 40%),
        linear-gradient(145deg, rgba(9,7,6,.9), rgba(74,25,2,.74) 50%, rgba(12,8,6,.92));
    border-color: rgba(255,155,34,.25);
}

.site-footer {
    background:
        radial-gradient(circle at 50% 10%, rgba(241,132,18,.45), transparent 35%),
        linear-gradient(110deg, #070606 0%, #351405 24%, #9c3902 50%, #351405 76%, #070606 100%);
    background-size: 150% 150%;
}

.toast-flight {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.toast-flight img {
    position: absolute;
    left: -90px;
    width: 34px;
    height: 34px;
    object-fit: contain;
    clip-path: inset(0 0 22% 0);
    opacity: 0;
    filter: brightness(0) drop-shadow(0 7px 7px rgba(0,0,0,.42));
    animation: toast-crossing 19s linear infinite;
}

.toast-flight img:nth-child(1) { top: 18%; width: 28px; animation-delay: -3s; animation-duration: 18s; }
.toast-flight img:nth-child(2) { top: 34%; width: 20px; animation-delay: -11s; animation-duration: 24s; opacity: .28; }
.toast-flight img:nth-child(3) { top: 68%; width: 38px; animation-delay: -16s; animation-duration: 27s; }
.toast-flight img:nth-child(4) { top: 55%; width: 24px; animation-delay: -7s; animation-duration: 22s; }
.toast-flight img:nth-child(5) { top: 12%; width: 17px; animation-delay: -19s; animation-duration: 31s; }

.toast-flight-footer img:nth-child(1) { top: 22%; animation-duration: 26s; }
.toast-flight-footer img:nth-child(2) { top: 64%; animation-duration: 31s; }
.toast-flight-footer img:nth-child(3) { top: 42%; animation-duration: 23s; }

.site-header .logo-badge,
.site-header .brand-name,
.site-header .tagline,
.site-header .header-controls { z-index: 4; }

.site-footer .footer-inner { z-index: 4; }

@keyframes toast-crossing {
    0% { left: -90px; opacity: 0; transform: translateY(12px) scale(.72) rotate(-4deg); }
    8% { opacity: .2; }
    42% { transform: translateY(-18px) scale(.9) rotate(3deg); }
    72% { opacity: .24; transform: translateY(8px) scale(1) rotate(-2deg); }
    100% { left: calc(100% + 90px); opacity: 0; transform: translateY(-12px) scale(.82) rotate(4deg); }
}

@media (max-width: 599px) {
    .toast-flight img:nth-child(n+4) { display: none; }
    .toast-flight img { width: 22px; opacity: .15; }
    .toast-flight img:nth-child(3) { width: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    .toast-flight { display: none; }
}

/* ── TOSTOLOJİ Signature: ortak premium header + footer ── */

.site-header,
body.theme-light .site-header,
.site-footer {
    background:
        radial-gradient(circle at 50% 46%, rgba(255,169,51,.42) 0%, rgba(207,84,0,.18) 28%, transparent 52%),
        radial-gradient(circle at 16% 20%, rgba(200,155,75,.14), transparent 31%),
        radial-gradient(circle at 84% 78%, rgba(200,155,75,.11), transparent 32%),
        linear-gradient(112deg, #050505 0%, #130b06 18%, #3e1704 42%, #6e2802 50%, #3e1704 58%, #130b06 82%, #050505 100%);
    background-size: 150% 150%;
    border-color: #c65b08;
    box-shadow:
        inset 0 1px 0 rgba(255,190,91,.36),
        inset 0 -26px 52px rgba(0,0,0,.28),
        0 5px 0 #3b1502,
        0 24px 46px -25px rgba(0,0,0,.92);
    animation: signature-ember-flow 17s ease-in-out infinite alternate;
}

/* Önceki büyük göz/oval dekoru kesin olarak kaldır. */
.site-header::after,
body.theme-light .site-header::after {
    content: none !important;
    display: none !important;
}

.site-header::before,
body.theme-light .site-header::before,
.site-footer::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, transparent 0 8%, rgba(255,150,34,.08) 8.1% 8.18%, transparent 8.28% 91.7%, rgba(255,150,34,.08) 91.82% 91.9%, transparent 92%),
        radial-gradient(circle, rgba(255,183,74,.6) 0 1px, transparent 1.7px),
        repeating-linear-gradient(124deg, transparent 0 90px, rgba(255,151,32,.035) 91px 92px, transparent 93px 181px);
    background-size: auto, 96px 96px, auto;
    opacity: .48;
    filter: none;
    transform: none;
    animation: signature-dust 28s linear infinite;
    pointer-events: none;
}

.site-header {
    min-height: clamp(320px, 27vw, 440px);
    padding: 48px 20px 38px;
}

.site-header .logo-badge,
.site-header .brand-name,
.site-header .tagline,
.site-header .header-controls {
    position: relative;
    z-index: 5;
}

.site-header .logo-badge img {
    filter:
        drop-shadow(0 2px 0 rgba(255,182,71,.7))
        drop-shadow(0 7px 3px rgba(0,0,0,.64))
        drop-shadow(0 20px 22px rgba(0,0,0,.5));
}

.site-header .brand-name,
body.theme-light .site-header .brand-name {
    color: #f49a27;
    text-shadow: 0 2px 0 #4c1b02, 0 10px 18px rgba(0,0,0,.66);
}

.site-header .brand-name .dot,
body.theme-light .site-header .brand-name .dot { color: #fff0d2; }

.site-header .tagline,
body.theme-light .site-header .tagline {
    color: #ffbd62;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,.48), transparent);
    border: 0;
    border-top: 1px solid rgba(255,158,34,.24);
    border-bottom: 1px solid rgba(255,158,34,.24);
    border-radius: 0;
    box-shadow: none;
}

.site-footer {
    padding: 58px 20px 54px;
    border-top-width: 5px;
}

.site-footer .footer-inner {
    position: relative;
    z-index: 5;
    max-width: 650px;
    padding: 34px 30px 27px;
    border: 1px solid rgba(200,155,75,.34);
    background:
        radial-gradient(circle at 50% 0%, rgba(200,155,75,.17), transparent 42%),
        linear-gradient(145deg, rgba(8,7,6,.88), rgba(42,18,5,.84));
    box-shadow:
        inset 0 1px 0 rgba(255,183,75,.2),
        0 6px 0 #3d1602,
        0 28px 48px -22px rgba(0,0,0,.88);
    backdrop-filter: blur(12px);
}

.site-footer .footer-eyebrow,
.site-footer .footer-brand-tagline { color: #f7a23a; }

.site-footer .footer-brand-name {
    color: #f49a27;
    text-shadow: 0 2px 0 #4c1b02, 0 10px 18px rgba(0,0,0,.62);
}

.site-footer .footer-credit span { color: rgba(255,235,205,.66); }
.site-footer .footer-divider { background: linear-gradient(90deg, transparent, #e77a13, transparent); }

.footer-social {
    border: 1px solid rgba(255,255,255,.34);
    box-shadow: 0 5px 0 rgba(75,20,50,.72), 0 17px 30px -14px rgba(0,0,0,.86);
}

@keyframes signature-ember-flow {
    from { background-position: 0% 30%; }
    to { background-position: 100% 70%; }
}

@keyframes signature-dust {
    from { background-position: 0 0, 0 0, 0 0; }
    to { background-position: 0 0, 96px -48px, 181px 0; }
}

@media (max-width: 599px) {
    .site-header { min-height: 370px; padding: 72px 16px 34px; }
    .site-footer { padding: 42px 12px 44px; }
    .site-footer .footer-inner { padding: 28px 18px 23px; border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-footer,
    .site-header::before,
    .site-footer::before { animation: none !important; }
}

/* ── Dengeli temiz sahne: hareketli logo + ortak footer ── */

.site-header,
body.theme-light .site-header {
    min-height: clamp(340px, 33.7vw, 520px);
    padding: 48px 20px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #5b2204;
    background-image: url('../img/orkipa-scene.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.site-header .logo-badge,
body.theme-light .site-header .logo-badge {
    display: flex;
    width: 126px;
    height: 118px;
    margin: 0 auto 10px;
}

.site-header .brand-name,
body.theme-light .site-header .brand-name {
    display: block;
    color: #100d0a;
    font-size: 35px;
    text-shadow: 0 2px 0 rgba(255,208,126,.72), 0 8px 14px rgba(39,13,1,.48);
}

.site-header .tagline,
body.theme-light .site-header .tagline {
    display: block;
    margin-top: 10px;
    padding: 6px 18px;
    color: #1d1007;
    background: rgba(255,183,69,.58);
    border: 1px solid rgba(52,18,1,.34);
    box-shadow: inset 0 1px 0 rgba(255,228,181,.45), 0 7px 12px rgba(54,18,1,.18);
    backdrop-filter: blur(3px);
}

.site-header::before,
.site-header::after,
body.theme-light .site-header::before { display: none; }

.site-footer {
    background-color: #512004;
    background-image:
        linear-gradient(rgba(69,24,2,.2), rgba(41,14,1,.42)),
        url('../img/orkipa-scene.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding-top: 54px;
    padding-bottom: 50px;
}

.site-footer::before { display: none; }

.site-footer .footer-inner {
    background: rgba(255,151,29,.72);
    border-color: rgba(43,15,1,.54);
    box-shadow:
        inset 0 2px 0 rgba(255,226,178,.48),
        0 7px 0 rgba(75,25,0,.72),
        0 24px 42px -22px rgba(0,0,0,.8);
    backdrop-filter: blur(8px);
}

.site-footer .footer-eyebrow,
.site-footer .footer-brand-tagline { color: #2b1305; }

@media (max-width: 900px) {
    .site-header,
    body.theme-light .site-header {
        min-height: 390px;
        background-size: auto 100%;
        background-position: center center;
    }
}

@media (max-width: 599px) {
    .site-header,
    body.theme-light .site-header {
        min-height: 410px;
        padding: 76px 16px 34px;
        background-size: auto 100%;
    }

    .site-header .logo-badge,
    body.theme-light .site-header .logo-badge {
        width: 108px;
        height: 102px;
    }

    .site-header .logo-badge img,
    body.theme-light .site-header .logo-badge img {
        width: 102px;
        height: 102px;
    }

    .site-header .brand-name,
    body.theme-light .site-header .brand-name { font-size: 31px; }

    .site-header .tagline,
    body.theme-light .site-header .tagline {
        font-size: 10px;
        letter-spacing: 1.8px;
        padding: 6px 12px;
    }

    .site-footer {
        background-size: auto 100%;
        background-position: center bottom;
        padding: 40px 14px 42px;
    }
}

/* ── TOSTOLOJİ görsel hero ── */

.site-header,
body.theme-light .site-header {
    min-height: clamp(310px, 33.7vw, 520px);
    padding: 0;
    display: block;
    background-color: #381403;
    background-image: url('../img/orkipa-hero.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-bottom: 6px solid #9b3b00;
    box-shadow: 0 7px 0 #4a1a00, 0 22px 38px -22px rgba(24,8,0,.9);
}

.site-header::before,
.site-header::after,
body.theme-light .site-header::before { display: none; }

.site-header .logo-badge,
.site-header .brand-name,
.site-header .tagline { display: none; }

.site-header .header-controls {
    position: absolute;
    top: 20px;
    right: 22px;
    left: auto;
    width: auto;
    margin: 0;
    transform: none;
    z-index: 5;
}

.site-header .header-controls a,
.site-header .theme-toggle,
body.theme-light .site-header .header-controls a,
body.theme-light .site-header .theme-toggle {
    background: rgba(22,12,7,.72);
    color: #ffb23f;
    border-color: rgba(255,174,52,.72);
    box-shadow: 0 4px 10px rgba(0,0,0,.32);
    backdrop-filter: blur(5px);
}

.site-header .header-controls a.active,
body.theme-light .site-header .header-controls a.active {
    background: #f2891b;
    color: #17100b;
    border-color: #ffcb75;
}

@media (max-width: 599px) {
    .site-header,
    body.theme-light .site-header {
        min-height: 360px;
        background-position: center center;
    }

    .site-header .header-controls {
        top: 15px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        justify-content: center;
        white-space: nowrap;
    }
}

@media (max-width: 599px) {
    .site-header,
    body.theme-light .site-header { min-height: 360px; }
    .site-header::before {
        left: -98px;
        bottom: -42px;
        width: 230px;
        height: 230px;
        opacity: .1;
    }
    .site-header::after {
        right: -22px;
        top: 68%;
        width: 96px;
        height: 40px;
        opacity: .42;
    }
}

/* Final responsive hero/footer overrides */
.site-header,
body.theme-light .site-header {
    min-height: clamp(340px, 33.7vw, 520px);
    padding: 48px 20px 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #5b2204 url('../img/orkipa-scene.webp') center / cover no-repeat;
}
.site-header::before,
.site-header::after,
body.theme-light .site-header::before { display: none; }
.site-header .logo-badge,
body.theme-light .site-header .logo-badge { display: flex; width: 126px; height: 118px; margin: 0 auto 10px; }
.site-header .brand-name,
body.theme-light .site-header .brand-name { display: block; color: #100d0a; font-size: 35px; }
.site-header .tagline,
body.theme-light .site-header .tagline { display: block; }
.site-footer {
    background: linear-gradient(rgba(69,24,2,.2), rgba(41,14,1,.42)), url('../img/orkipa-scene.webp') center bottom / cover no-repeat;
}
.site-footer::before { display: none; }

@media (max-width: 900px) {
    .site-header,
    body.theme-light .site-header { min-height: 390px; background-size: auto 100%; }
}
@media (max-width: 599px) {
    .site-header,
    body.theme-light .site-header { min-height: 410px; padding: 76px 16px 34px; background-size: auto 100%; }
    .site-header .logo-badge,
    body.theme-light .site-header .logo-badge { display: flex; width: 108px; height: 102px; }
    .site-header .logo-badge img,
    body.theme-light .site-header .logo-badge img { width: 102px; height: 102px; }
    .site-header .brand-name,
    body.theme-light .site-header .brand-name { display: block; font-size: 31px; }
    .site-header .tagline,
    body.theme-light .site-header .tagline { display: block; }
    .site-footer { background-size: auto 100%; }
}

/* ── Premium hareketli TOSTOLOJİ atmosferi ── */

html,
body,
body.theme-light {
    background:
        radial-gradient(circle at 14% 22%, rgba(255,183,75,.34), transparent 32%),
        radial-gradient(circle at 86% 74%, rgba(124,43,0,.42), transparent 38%),
        linear-gradient(125deg, #391706, #8f3904 34%, #e67109 64%, #4b1b04);
    background-size: 170% 170%;
    animation: orkipa-ambient-flow 18s ease-in-out infinite alternate;
}

.site-header,
body.theme-light .site-header {
    position: relative;
    min-height: clamp(330px, 30vw, 470px);
    padding: 50px 20px 40px;
    background:
        radial-gradient(circle at 50% 46%, rgba(255,231,184,.88) 0%, rgba(255,165,46,.48) 22%, transparent 47%),
        radial-gradient(circle at 14% 80%, rgba(255,145,19,.32), transparent 38%),
        radial-gradient(circle at 88% 18%, rgba(255,187,80,.24), transparent 34%),
        linear-gradient(118deg, #281006 0%, #7c2d03 20%, #d96506 42%, #f28a14 58%, #7c2d03 82%, #281006 100%);
    background-size: 145% 145%;
    animation: orkipa-hero-flow 13s ease-in-out infinite alternate;
    overflow: hidden;
}

.site-header::before,
body.theme-light .site-header::before {
    content: "";
    display: block;
    position: absolute;
    inset: -18%;
    z-index: 0;
    background-image:
        radial-gradient(circle, rgba(255,205,121,.7) 0 1px, transparent 2px),
        radial-gradient(circle, rgba(31,12,3,.48) 0 1.5px, transparent 2.5px),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 38px, rgba(255,205,124,.075) 39px 40px, transparent 41px 79px);
    background-size: 74px 74px, 113px 113px, auto;
    background-position: 0 0, 35px 18px, center;
    opacity: .72;
    filter: none;
    animation: orkipa-particles-drift 26s linear infinite;
    pointer-events: none;
}

.site-header::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 52%;
    width: min(620px, 72vw);
    height: min(300px, 76%);
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(255,211,140,.16);
    box-shadow:
        0 0 0 20px rgba(255,201,112,.035),
        0 0 0 52px rgba(255,201,112,.025),
        inset 0 0 70px rgba(255,216,151,.13);
    transform: translate(-50%, -50%);
    animation: orkipa-ring-breathe 6s ease-in-out infinite;
    pointer-events: none;
}

.site-header .logo-badge,
.site-header .brand-name,
.site-header .tagline,
.site-header .header-controls { z-index: 3; }

.menu-wrap {
    position: relative;
    max-width: 920px;
    margin: 30px auto;
    padding: 36px 24px 70px;
    border: 1px solid rgba(255,185,76,.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,171,50,.22), transparent 42%),
        linear-gradient(145deg, rgba(38,15,5,.74), rgba(104,38,2,.54));
    box-shadow:
        inset 0 1px 0 rgba(255,213,147,.2),
        0 8px 0 rgba(51,18,2,.62),
        0 28px 54px -25px rgba(0,0,0,.8);
    backdrop-filter: blur(6px);
    overflow: hidden;
}

.menu-wrap::before {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255,174,58,.18), transparent 22%),
        radial-gradient(circle at 70% 58%, rgba(255,204,119,.12), transparent 25%),
        repeating-radial-gradient(circle at center, transparent 0 54px, rgba(255,185,78,.04) 55px 56px, transparent 57px 108px);
    animation: orkipa-menu-orbit 22s linear infinite;
    pointer-events: none;
}

.menu-wrap > * { position: relative; z-index: 1; }

.category-tile {
    box-shadow:
        inset 0 2px 0 rgba(255,241,215,.78),
        0 7px 0 #743000,
        0 22px 32px -16px rgba(0,0,0,.78);
}

.category-tile:hover,
.category-tile:focus-visible {
    filter: saturate(1.08) brightness(1.04);
}

.site-footer {
    position: relative;
    background:
        radial-gradient(circle at 50% 12%, rgba(255,210,137,.42), transparent 34%),
        radial-gradient(circle at 8% 85%, rgba(247,126,9,.25), transparent 34%),
        linear-gradient(120deg, #251006, #793003 34%, #d76506 58%, #3a1504);
    background-size: 150% 150%;
    animation: orkipa-footer-flow 15s ease-in-out infinite alternate;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    display: block;
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle, rgba(255,213,145,.52) 0 1px, transparent 2px),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 44px, rgba(255,198,105,.055) 45px 46px, transparent 47px 90px);
    background-size: 92px 92px, auto;
    opacity: .55;
    animation: orkipa-particles-drift 30s linear infinite reverse;
    pointer-events: none;
}

.site-footer .footer-inner { position: relative; z-index: 2; }

@keyframes orkipa-ambient-flow {
    0% { background-position: 0% 20%; }
    100% { background-position: 100% 80%; }
}

@keyframes orkipa-hero-flow {
    0% { background-position: 0% 35%; }
    100% { background-position: 100% 65%; }
}

@keyframes orkipa-footer-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes orkipa-particles-drift {
    from { transform: translate3d(0, 0, 0) rotate(0deg); }
    to { transform: translate3d(70px, -35px, 0) rotate(4deg); }
}

@keyframes orkipa-ring-breathe {
    0%, 100% { opacity: .58; transform: translate(-50%, -50%) scale(.96); }
    50% { opacity: .92; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes orkipa-menu-orbit {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1.06); }
}

@media (max-width: 900px) {
    .site-header,
    body.theme-light .site-header { min-height: 390px; }
    .menu-wrap { margin: 20px 14px; border-radius: 24px; }
}

@media (max-width: 599px) {
    .site-header,
    body.theme-light .site-header { min-height: 390px; padding: 74px 16px 36px; }
    .site-header::after { width: 92vw; height: 230px; top: 59%; }
    .menu-wrap { margin: 14px 10px 22px; padding: 26px 14px 48px; border-radius: 22px; }
    .site-footer { padding-left: 12px; padding-right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    html, body, body.theme-light,
    .site-header, body.theme-light .site-header,
    .site-header::before, .site-header::after,
    .menu-wrap::before,
    .site-footer, .site-footer::before {
        animation: none !important;
    }
}

/* Header ve footer video arka planı */
.site-header,
body.theme-light .site-header,
.site-footer,
body.theme-light .site-footer {
    background-color: #321205;
    background-image: none;
}

.site-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(.62) saturate(1.08);
    pointer-events: none;
}

.site-header::before,
body.theme-light .site-header::before {
    z-index: 1;
    opacity: .34;
}

.site-header::after { z-index: 2; }

.site-header .logo-badge,
.site-header .brand-name,
.site-header .tagline,
.site-header .header-controls,
.site-header .toast-flight {
    position: relative;
    z-index: 3;
}

.site-footer::before { z-index: 1; }

.site-footer .footer-inner,
.site-footer .toast-flight {
    position: relative;
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .site-video-bg { display: none; }
}

/* Header kontrolleri: logo ve hero içeriğinden bağımsız güvenli alan */
.site-header .header-controls,
body.theme-light .site-header .header-controls {
    position: absolute;
    top: 22px;
    right: 22px;
    left: auto;
    z-index: 10;
    width: max-content;
    max-width: calc(100% - 44px);
    margin: 0;
    padding: 7px;
    gap: 6px;
    flex-wrap: nowrap;
    transform: none;
    border: 1px solid rgba(255,177,61,.38);
    border-radius: 999px;
    background: rgba(22,12,7,.72);
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
}

.site-header .header-controls a,
.site-header .theme-toggle,
body.theme-light .site-header .header-controls a,
body.theme-light .site-header .theme-toggle {
    min-width: 38px;
    height: 34px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    box-sizing: border-box;
}

.site-header .theme-toggle,
body.theme-light .site-header .theme-toggle {
    width: 34px;
    min-width: 34px;
    padding: 0;
}

@media (max-width: 599px) {
    .site-header .header-controls,
    body.theme-light .site-header .header-controls {
        top: 12px;
        right: auto;
        left: 50%;
        max-width: calc(100% - 24px);
        padding: 5px;
        gap: 4px;
        transform: translateX(-50%);
    }

    .site-header .header-controls a,
    .site-header .theme-toggle,
    body.theme-light .site-header .header-controls a,
    body.theme-light .site-header .theme-toggle {
        min-width: 36px;
        height: 32px;
        padding: 0 9px;
        font-size: 11px;
    }

    .site-header .theme-toggle,
    body.theme-light .site-header .theme-toggle {
        width: 32px;
        min-width: 32px;
        padding: 0;
    }
}

/* Açık tema: admin giriş kartıyla uyumlu sıcak krem yüzeyler */
body.theme-light {
    background:
        radial-gradient(850px 520px at 12% 0%, rgba(200,155,75,.18), transparent 62%),
        radial-gradient(700px 460px at 100% 78%, rgba(126,57,12,.12), transparent 66%),
        linear-gradient(145deg, #f8dfbd 0%, #fef2e2 48%, #edc995 100%);
    color: #2a180b;
}

body.theme-light .menu-wrap {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.8), transparent 44%),
        linear-gradient(145deg, rgba(254,242,226,.96), rgba(244,217,180,.9));
    border-color: rgba(126,57,12,.24);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.9),
        0 8px 0 rgba(133,67,20,.18),
        0 28px 50px -26px rgba(73,31,5,.42);
}

body.theme-light .menu-wrap::before {
    opacity: .22;
}

body.theme-light .category-tile {
    background: linear-gradient(155deg, #fffaf3 0%, #fef2e2 58%, #f1d4ad 100%);
    border-color: rgba(166,83,22,.38);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,.92),
        0 6px 0 rgba(145,72,19,.28),
        0 18px 28px -18px rgba(70,28,4,.42);
}

body.theme-light .category-tile:hover,
body.theme-light .category-tile:focus-visible {
    border-color: rgba(225,121,24,.76);
    background: linear-gradient(155deg, #fffdf8 0%, #ffefd9 55%, #edc58f 100%);
}

body.theme-light .category-tile-name,
body.theme-light .category-view-title {
    color: #2a180b;
    background: none;
    -webkit-text-fill-color: currentColor;
}

body.theme-light .category-tile-count { color: rgba(62,31,11,.68); }

body.theme-light .product-list,
body.theme-light .product-modal,
body.theme-light .empty-note,
body.theme-light .order-name-field,
body.theme-light .order-success-view {
    background: linear-gradient(155deg, #fffaf3 0%, #fef2e2 72%, #f5dfc2 100%);
    border-color: rgba(126,57,12,.2);
    box-shadow: 0 14px 30px rgba(75,32,6,.16), inset 0 1px 0 rgba(255,255,255,.9);
}

body.theme-light .product {
    border-bottom-color: rgba(91,43,12,.13);
}

body.theme-light .product:hover,
body.theme-light .product:focus-visible {
    background: rgba(200,155,75,.12);
}

body.theme-light .price-option-btn,
body.theme-light .qty-stepper,
body.theme-light .order-name-field input {
    background: #fffaf3;
    border-color: rgba(126,57,12,.24);
    color: #2a180b;
}

body.theme-light .price-option-btn.selected {
    background: linear-gradient(145deg, #f6ad4b, #e88216);
    color: #211207;
    border-color: #9b4a0e;
}

body.theme-light .back-btn,
body.theme-light .cart-summary {
    background: linear-gradient(145deg, #4a2915, #24150c);
    color: #fff3df;
    border-color: rgba(200,155,75,.52);
}

/* Görselsiz premium hero ve footer — koyu tema */
.site-header,
.site-footer {
    position: relative;
    background:
        radial-gradient(900px 420px at 50% -12%, rgba(242,169,59,.28), transparent 62%),
        radial-gradient(520px 280px at 8% 100%, rgba(128,61,15,.18), transparent 70%),
        linear-gradient(180deg, #2b1a0c 0%, #181410 52%, #110e0b 100%);
    background-image:
        radial-gradient(900px 420px at 50% -12%, rgba(242,169,59,.28), transparent 62%),
        radial-gradient(520px 280px at 8% 100%, rgba(128,61,15,.18), transparent 70%),
        linear-gradient(180deg, #2b1a0c 0%, #181410 52%, #110e0b 100%);
    border-color: rgba(200,155,75,.42);
    box-shadow:
        inset 0 1px 0 rgba(255,190,92,.18),
        inset 0 -1px 0 rgba(0,0,0,.7),
        0 18px 42px -28px rgba(0,0,0,.9);
    animation: none;
}

.site-header::before,
.site-footer::before {
    content: "";
    display: block;
    position: absolute;
    inset: 12px;
    z-index: 1;
    border: 1px solid rgba(255,178,74,.11);
    border-radius: 22px;
    background: none;
    opacity: 1;
    filter: none;
    animation: none;
    pointer-events: none;
}

.site-header::after {
    content: "";
    display: block;
    position: absolute;
    inset: auto 12% 0;
    z-index: 1;
    width: auto;
    height: 1px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, transparent, rgba(200,155,75,.72), transparent);
    box-shadow: 0 0 18px rgba(200,155,75,.24);
    transform: none;
    animation: none;
}

.site-header .toast-flight,
.site-footer .toast-flight { display: none; }

.site-header .logo-badge,
.site-header .brand-name,
.site-header .tagline,
.site-header .header-controls,
.site-footer .footer-inner {
    position: relative;
    z-index: 3;
}

.site-header .brand-name {
    color: #fff7ec;
    text-shadow: 0 3px 16px rgba(0,0,0,.62);
}

.site-header .brand-name .dot,
.site-header .tagline,
.site-footer .footer-eyebrow,
.site-footer .footer-brand-tagline { color: #f6a33c; }

.site-footer .footer-brand-name { color: #fff7ec; }
.site-footer .footer-credit span { color: rgba(255,247,236,.68); }

/* Görselsiz premium hero ve footer — açık tema */
body.theme-light .site-header,
body.theme-light .site-footer {
    background:
        radial-gradient(850px 400px at 50% -10%, rgba(255,255,255,.92), transparent 60%),
        radial-gradient(520px 260px at 92% 100%, rgba(217,132,47,.14), transparent 68%),
        linear-gradient(180deg, #fffaf3 0%, #fef2e2 52%, #ead1ae 100%);
    background-image:
        radial-gradient(850px 400px at 50% -10%, rgba(255,255,255,.92), transparent 60%),
        radial-gradient(520px 260px at 92% 100%, rgba(217,132,47,.14), transparent 68%),
        linear-gradient(180deg, #fffaf3 0%, #fef2e2 52%, #ead1ae 100%);
    border-color: rgba(174,91,24,.34);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.96),
        inset 0 -1px 0 rgba(116,55,14,.18),
        0 18px 38px -28px rgba(81,35,8,.42);
}

body.theme-light .site-header::before,
body.theme-light .site-footer::before {
    border-color: rgba(137,65,16,.13);
    background: none;
    opacity: 1;
}

body.theme-light .site-header::after {
    background: linear-gradient(90deg, transparent, rgba(198,99,20,.56), transparent);
    box-shadow: 0 0 15px rgba(198,99,20,.14);
}

body.theme-light .site-header .brand-name,
body.theme-light .site-footer .footer-brand-name {
    color: #28170b;
    text-shadow: 0 1px 0 rgba(255,255,255,.8);
}

body.theme-light .site-header .brand-name .dot,
body.theme-light .site-header .tagline,
body.theme-light .site-footer .footer-eyebrow,
body.theme-light .site-footer .footer-brand-tagline { color: #b85d16; }

body.theme-light .site-footer .footer-credit span { color: rgba(48,25,10,.68); }

body.theme-light .site-header .header-controls {
    background: rgba(255,247,236,.84);
    border-color: rgba(169,82,18,.28);
    box-shadow: 0 8px 24px rgba(79,34,7,.16);
}

@media (max-width: 599px) {
    .site-header::before,
    .site-footer::before {
        inset: 8px;
        border-radius: 17px;
    }
}

/* Son yerleşim düzeltmesi: eski dekor katmanlarını ve konum çakışmalarını sıfırla */
.site-header::before,
.site-footer::before,
body.theme-light .site-header::before,
body.theme-light .site-footer::before {
    display: none;
}

.site-header .header-controls,
body.theme-light .site-header .header-controls {
    position: absolute;
    top: 22px;
    right: 22px;
    left: auto;
    bottom: auto;
    z-index: 20;
    width: max-content;
    max-width: calc(100% - 44px);
    margin: 0;
    transform: none;
}

@media (max-width: 599px) {
    .site-header .header-controls,
    body.theme-light .site-header .header-controls {
        top: 12px;
        right: auto;
        left: 50%;
        bottom: auto;
        max-width: calc(100% - 24px);
        transform: translateX(-50%);
    }

    .site-header,
    body.theme-light .site-header {
        padding-top: 78px;
    }
}

/* Hero orkipa logosu — neon vurgu */
.site-header .logo-badge::before {
    content: "";
    position: absolute;
    inset: -26px;
    z-index: -1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255,190,82,.58) 0%, rgba(200,155,75,.34) 30%, rgba(224,99,8,.13) 52%, transparent 72%);
    filter: blur(9px);
    opacity: .95;
    transform: scale(.96);
    animation: orkipa-logo-neon 3.2s ease-in-out infinite;
    pointer-events: none;
}

.site-header .logo-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    z-index: -1;
    width: 112px;
    height: 24px;
    border-radius: 50%;
    background: rgba(200,155,75,.52);
    box-shadow: 0 0 22px rgba(200,155,75,.72), 0 0 44px rgba(214,91,5,.36);
    filter: blur(8px);
    transform: translateX(-50%);
    pointer-events: none;
}

.site-header .logo-badge img {
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 0 5px rgba(255,193,87,.78))
        drop-shadow(0 0 14px rgba(200,155,75,.42))
        drop-shadow(0 14px 13px rgba(0,0,0,.56));
}

body.theme-light .site-header .logo-badge::before {
    background:
        radial-gradient(circle, rgba(255,174,61,.45) 0%, rgba(231,113,19,.2) 34%, transparent 70%);
    opacity: .72;
}

body.theme-light .site-header .logo-badge::after {
    background: rgba(207,95,13,.3);
    box-shadow: 0 0 20px rgba(224,111,20,.34);
}

body.theme-light .site-header .logo-badge img {
    filter:
        drop-shadow(0 0 4px rgba(255,171,53,.48))
        drop-shadow(0 10px 11px rgba(72,31,7,.28));
}

@keyframes orkipa-logo-neon {
    0%, 100% { opacity: .72; transform: scale(.93); }
    50% { opacity: 1; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .site-header .logo-badge::before { animation: none; }
}

/* Footer sosyal butonu ve marka logosu */
.site-footer .footer-social {
    gap: 8px;
    justify-content: center;
}

.site-footer .footer-social svg {
    flex: 0 0 auto;
}

.site-footer .footer-social span {
    display: inline-block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    letter-spacing: 0;
    word-spacing: 0;
    line-height: 1;
}

.footer-brand-mascot-link {
    display: block;
    width: fit-content;
    margin: 0 auto;
    transition: transform .18s ease;
}
.footer-brand-mascot-link:hover { transform: translateY(-3px) scale(1.04); }

.footer-brand-mascot {
    display: block;
    width: 68px;
    height: 68px;
    margin: 8px auto 5px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 6px rgba(255,177,60,.48))
        drop-shadow(0 10px 10px rgba(0,0,0,.38));
}

body.theme-light .footer-brand-mascot {
    filter:
        drop-shadow(0 0 4px rgba(224,111,20,.3))
        drop-shadow(0 8px 8px rgba(73,31,7,.2));
}

body.theme-light .site-footer .footer-inner {
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.9), transparent 48%),
        linear-gradient(155deg, #fffaf3 0%, #fef2e2 68%, #efd7b5 100%);
    border: 1px solid rgba(152,73,18,.24);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.94),
        0 8px 0 rgba(130,62,16,.16),
        0 24px 42px -24px rgba(73,31,7,.34);
}

body.theme-light .site-footer .footer-social {
    box-shadow: 0 7px 15px rgba(87,37,7,.2);
}

@media (max-width: 599px) {
    .footer-brand-mascot {
        width: 60px;
        height: 60px;
        margin-top: 7px;
    }
}

/* Footer marka başlığı: iki çizginin tam ortasında */
.site-footer .footer-orkipa-signature {
    display: flex;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
}

.site-footer .footer-orkipa-signature::before,
.site-footer .footer-orkipa-signature::after {
    display: none;
}

.footer-brand-title-row {
    display: grid;
    grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
    align-items: center;
    gap: 22px;
    width: 100%;
}

.footer-brand-title-row::before,
.footer-brand-title-row::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,155,75,.58));
}

.footer-brand-title-row::after {
    background: linear-gradient(90deg, rgba(200,155,75,.58), transparent);
}

.footer-brand-title-row .footer-brand-name {
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.footer-brand-title-row + .footer-brand-mascot,
.footer-brand-title-row + .footer-brand-mascot-link .footer-brand-mascot {
    margin-top: 9px;
}

body.theme-light .footer-brand-title-row::before {
    background: linear-gradient(90deg, transparent, rgba(153,72,17,.48));
}

body.theme-light .footer-brand-title-row::after {
    background: linear-gradient(90deg, rgba(153,72,17,.48), transparent);
}

@media (max-width: 599px) {
    .footer-brand-title-row {
        grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
        gap: 12px;
    }
}

/* Kaydırma performansı: marka görünümünü koruyup geniş repaint alanlarını durdur */
html,
body,
body.theme-light {
    animation: none !important;
    background-position: 50% 50%;
}

.menu-wrap {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    contain: paint;
}

.menu-wrap::before {
    animation: none !important;
    transform: none;
}

.site-footer .footer-inner {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

@media (hover: none), (pointer: coarse) {
    .category-tile::before { display: none; }
}

/* ── Alman Usülü (hesap ayırma) ── */

.btn-split-orkipa {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    border: 2px solid var(--color-orange);
    background: transparent;
    color: var(--color-orange);
    font-weight: 800;
    font-size: 14px;
    padding: 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.btn-split-orkipa:hover {
    background: var(--color-orange);
    color: var(--color-dark);
}

.split-view {
    display: none;
    padding: 0 16px 120px;
    max-width: 640px;
    margin: 0 auto;
}
.split-view.visible { display: block; }

.split-how-many {
    background: var(--color-cream);
    border-radius: var(--radius-card, 18px);
    padding: 16px;
    margin-bottom: 16px;
}
.split-how-many-title {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--color-dark);
}
.split-count-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.split-count-chip {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 2px solid rgba(0,0,0,.15);
    background: transparent;
    color: var(--color-dark);
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: all .12s ease;
}
.split-count-chip.selected {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
}
.split-hint {
    margin-top: 12px;
    font-size: 12px;
    opacity: .7;
    color: var(--color-dark);
    line-height: 1.5;
}

.split-person-card {
    background: var(--color-cream);
    border-radius: var(--radius-card, 18px);
    padding: 14px;
    margin-bottom: 14px;
}
.split-person-head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.split-person-no {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-dark);
    font-weight: 800;
    font-size: 13px;
}
.split-person-name {
    flex: 1;
    min-width: 0;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,.15);
    background: transparent;
    color: var(--color-dark);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 4px;
    outline: none;
}
.split-person-name:focus { border-bottom-color: var(--color-orange); }
.split-person-add {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    background: var(--color-orange);
    color: var(--color-dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(200,155,75,0.35);
}
.split-person-add:hover { background: var(--color-orange-deep, #d9740f); }
.split-person-items { margin-top: 12px; }
.split-person-empty {
    margin: 12px 0 0;
    font-size: 12px;
    opacity: .6;
    color: var(--color-dark);
}
.split-person-subtotal {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,.2);
    font-weight: 800;
    font-size: 14px;
    color: var(--color-dark);
}
.split-shared-title {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .5px;
    color: var(--color-dark);
    opacity: .8;
}

.cart-item-person {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    padding: 2px 8px;
    border-radius: 999px;
    margin-right: 6px;
    vertical-align: middle;
    text-transform: uppercase;
}

.split-assign-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: var(--color-orange);
    color: var(--color-dark);
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.split-assign-banner.visible { display: flex; }
.split-assign-banner strong { font-weight: 800; }
.split-assign-banner button {
    flex: 0 0 auto;
    border: none;
    background: var(--color-dark);
    color: var(--color-orange);
    font-weight: 800;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 999px;
    cursor: pointer;
}
body.split-assigning { padding-top: 56px; }

#split-error {
    margin-bottom: 10px;
}

/* ── Alman Usülü: Masa Adı alanı ── */
.split-table-name {
    margin: 18px 0 6px;
    padding: 16px;
    background: rgba(242, 137, 27, .08);
    border: 2px dashed rgba(242, 137, 27, .5);
    border-radius: 16px;
}
.split-table-name label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 8px;
}
.split-table-name input {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,.15);
    background: transparent;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 700;
    padding: 8px 4px;
    outline: none;
}
.split-table-name input::placeholder {
    color: rgba(0,0,0,.35);
    font-weight: 500;
}
.split-table-name input:focus { border-bottom-color: var(--color-orange); }
body.theme-light .split-table-name input { color: var(--color-dark); }

/* ── Adrese Teslim Sipariş ── */
.delivery-form .order-name-field select,
.delivery-form .order-name-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(24,20,16,0.2);
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: inherit;
}

.delivery-form .order-name-field textarea {
    resize: vertical;
    min-height: 76px;
}

.delivery-form .order-name-field label .req {
    color: #c0392b;
}

.delivery-form .delivery-district-fixed {
    background: rgba(24,20,16,0.06) !important;
    font-weight: 700;
    pointer-events: none;
}

.delivery-no-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-no-row .order-name-field {
    margin-top: 18px;
}

.btn-delivery-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .5px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-delivery-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
}

.btn-split-orkipa.is-disabled,
.btn-split-orkipa:disabled {
    opacity: .55;
    cursor: not-allowed;
    filter: grayscale(.35);
    box-shadow: none;
}

.scheduled-order-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 0;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1.5px dashed rgba(242, 137, 27, .5);
    background: rgba(242, 137, 27, .08);
    color: var(--color-dark);
    font-weight: 800;
    cursor: pointer;
}

.scheduled-order-toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-orange);
}

.scheduled-time-field {
    margin-top: 12px;
}

.delivery-status-view h2 {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-status-view p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
