.tooka-restaurant,
.tooka-restaurant * {
    box-sizing: border-box;
}

.tooka-restaurant {
    --tooka-red: #a80301;
    --tooka-red-dark: #7f0201;
    --tooka-yellow: #ffde00;
    --tooka-yellow-soft: #fff9c9;
    --tooka-white: #ffffff;
    --tooka-text: #242424;
    --tooka-muted: #696969;
    --tooka-border: #e7e7e7;
    --tooka-font: "TookaIRANSansFaNum", Tahoma, Arial, sans-serif;

    direction: rtl;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 18px 58px;
    background: var(--tooka-white);
    color: var(--tooka-text);
    font-family: var(--tooka-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.tooka-restaurant button,
.tooka-restaurant input,
.tooka-restaurant a,
.tooka-restaurant select,
.tooka-restaurant textarea {
    font-family: var(--tooka-font);
}

/* =========================
   صفحه لودینگ
   ========================= */
.tooka-page-loader {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transition: opacity .28s ease, visibility .28s ease;
}

.tooka-page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tooka-page-loader-inner {
    position: relative;
    width: 190px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.tooka-page-loader-logo-wrap {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.tooka-page-loader-logo,
.tooka-page-loader-gif {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.tooka-page-loader-logo {
    animation: tooka-loader-pulse 1.2s ease-in-out infinite;
}

.tooka-page-loader-ring {
    position: absolute;
    top: 39px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 5px solid rgba(255, 222, 0, .48);
    border-top-color: var(--tooka-red);
    border-right-color: var(--tooka-yellow);
    animation: tooka-spin .85s linear infinite;
}

.tooka-page-loader-text {
    margin-top: 8px;
    color: #4f4f4f;
    font-size: 13px;
    font-weight: 700;
}

@keyframes tooka-loader-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(.93); }
}

@keyframes tooka-spin {
    to { transform: rotate(360deg); }
}

/* =========================
   سربرگ منو
   ========================= */
.tooka-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
}

.tooka-menu-title {
    margin: 0;
    color: var(--tooka-text);
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.6;
    font-weight: 900;
    letter-spacing: -.35px;
}

.tooka-cart-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 43px;
    padding: 8px 13px;
    border: 1px solid rgba(168, 3, 1, .16);
    border-radius: 13px;
    background: #fff;
    color: var(--tooka-red);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    box-shadow: 0 5px 16px rgba(0,0,0,.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tooka-cart-trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(168, 3, 1, .35);
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.tooka-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    height: 25px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--tooka-red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 0 0 3px rgba(255,222,0,.42);
}

/* =========================
   دسته‌بندی‌ها
   ========================= */
.tooka-categories {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 23px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 7px 8px 28px;
    margin: 0 auto 26px;
    scroll-behavior: smooth;

    /* حذف کامل خط/اسکرول‌بار زیر دسته‌ها */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tooka-categories::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.tooka-category {
    flex: 0 0 auto;
    width: 94px;
    min-width: 94px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent !important;
    color: #3a3a3a;
    cursor: pointer;
    font: inherit;
    text-align: center;
}

.tooka-category-icon {
    width: 82px;
    height: 76px;
    margin: 0 auto 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 4px 11px rgba(0,0,0,.13);
    transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}

.tooka-category-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 3px;
    background: #fff;
}

.tooka-category-name {
    display: block;
    min-height: 34px;
    color: #111;
    white-space: normal;
    font-size: 12.5px;
    line-height: 1.55;
    font-weight: 900;
}

.tooka-category:hover .tooka-category-icon {
    transform: translateY(-2px);
    border-color: rgba(255,222,0,.95);
    box-shadow:
        0 8px 18px rgba(0,0,0,.16),
        0 0 0 2px rgba(255,222,0,.48),
        0 0 20px rgba(255,222,0,.34);
}

/* انتخاب دسته فقط با سایه زرد؛ بدون زمینه یا خط قرمز */
.tooka-category.active,
.tooka-category.active .tooka-category-name {
    color: #222;
    background: transparent !important;
}

.tooka-category.active .tooka-category-icon {
    transform: translateY(-3px);
    border-color: var(--tooka-yellow);
    background: #fff;
    box-shadow:
        0 10px 22px rgba(0,0,0,.17),
        0 0 0 3px rgba(255,222,0,.72),
        0 0 25px rgba(255,222,0,.58);
}

.tooka-category.active .tooka-category-name {
    font-weight: 900;
}

/* =========================
   محصولات
   ========================= */
.tooka-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 255px));
    justify-content: center;
    gap: 28px;
}

.tooka-product-card {
    width: 100%;
    max-width: 255px;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #ececec;
    border-radius: 18px;
    background: #fff;
    box-shadow:
        0 7px 18px rgba(0,0,0,.18),
        0 2px 5px rgba(0,0,0,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tooka-product-card[hidden] {
    display: none !important;
}

.tooka-product-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 26px rgba(0,0,0,.20),
        0 0 0 1px rgba(255,222,0,.20);
}

.tooka-product-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f7f7;
}

.tooka-product-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}

.tooka-product-card:hover .tooka-product-image-wrap img {
    transform: scale(1.018);
}

.tooka-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--tooka-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,.16);
}

.tooka-product-body {
    display: flex;
    flex-direction: column;
    min-height: 174px;
    padding: 13px 14px 14px;
}

.tooka-product-title {
    margin: 0 0 8px;
    color: #262626;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 900;
    text-align: center;
}

.tooka-product-description {
    color: var(--tooka-muted);
    font-size: 11.5px;
    line-height: 1.9;
    text-align: center;
}

.tooka-product-description p {
    margin: 0;
}

.tooka-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 11px;
    margin-top: auto;
    padding-top: 13px;
}

.tooka-product-price {
    color: #292929;
    font-size: 13px;
    font-weight: 900;
}

.tooka-product-price del {
    opacity: .52;
    font-weight: 500;
    margin-left: 5px;
}

/* =========================
   دکمه افزودن + لودر لوگو
   ========================= */
.tooka-add-to-cart {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(168,3,1,.20);
    border-radius: 12px;
    background: #fff;
    color: var(--tooka-red);
    cursor: pointer;
    font: inherit;
    box-shadow:
        0 5px 12px rgba(168,3,1,.14),
        0 0 0 2px rgba(255,222,0,.16);
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.tooka-add-to-cart:hover {
    transform: translateY(-1px);
    background: var(--tooka-yellow-soft);
    box-shadow:
        0 7px 16px rgba(168,3,1,.16),
        0 0 0 3px rgba(255,222,0,.28);
}

.tooka-add-to-cart:disabled {
    cursor: not-allowed;
}

.tooka-add-to-cart:not(.is-loading):disabled {
    opacity: .45;
    box-shadow: none;
}

.tooka-add-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooka-add-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tooka-add-loader {
    display: none;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255,222,0,.55);
}

.tooka-add-loader-logo,
.tooka-add-loader-gif {
    width: 25px;
    height: 25px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

.tooka-add-loader-logo {
    animation: tooka-logo-spin .72s linear infinite;
}

@keyframes tooka-logo-spin {
    to { transform: rotate(360deg); }
}

.tooka-add-to-cart.is-loading {
    background: #fff;
    opacity: 1;
    box-shadow:
        0 7px 16px rgba(0,0,0,.12),
        0 0 0 3px rgba(255,222,0,.45);
}

.tooka-add-to-cart.is-loading .tooka-add-icon {
    display: none;
}

.tooka-add-to-cart.is-loading .tooka-add-loader {
    display: inline-flex;
}

/* =========================
   پیام‌ها
   ========================= */
.tooka-category-empty,
.tooka-no-products,
.tooka-system-message {
    grid-column: 1 / -1;
    padding: 25px;
    border: 1px dashed #ddd;
    border-radius: 16px;
    text-align: center;
    color: #707070;
    background: #fafafa;
}

.tooka-toast {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1000002;
    max-width: 360px;
    padding: 12px 16px;
    border-radius: 12px;
    background: var(--tooka-red);
    color: #fff;
    border-bottom: 3px solid var(--tooka-yellow);
    box-shadow: 0 12px 34px rgba(0,0,0,.22);
    font-size: 13px;
    font-weight: 700;
}

.tooka-toast.is-error {
    background: #75100f;
}

/* =========================
   سبد کشویی
   ========================= */
body.tooka-cart-open {
    overflow: hidden;
}

.tooka-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    background: rgba(0,0,0,.42);
}

.tooka-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000001;
    width: min(430px, 94vw);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0,0,0,.18);
    transform: translateX(105%);
    transition: transform .24s ease;
}

.tooka-cart-drawer.is-open {
    transform: translateX(0);
}

.tooka-cart-header {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-bottom: 3px solid var(--tooka-yellow);
}

.tooka-cart-header h3 {
    margin: 0;
    color: #222;
    font-size: 19px;
    font-weight: 900;
}

.tooka-cart-close {
    width: 38px;
    height: 38px;
    border: 1px solid #e5e5e5;
    border-radius: 11px;
    background: #fafafa;
    color: var(--tooka-red);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.tooka-cart-content {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.tooka-cart-empty {
    margin: auto;
    padding: 30px;
    text-align: center;
    color: #777;
}

.tooka-cart-empty-title {
    margin-bottom: 8px;
    color: #222;
    font-size: 18px;
    font-weight: 900;
}

.tooka-cart-items {
    padding: 10px 18px 0;
}

.tooka-cart-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.tooka-cart-item-image {
    width: 78px;
    height: 70px;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f3f3;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.tooka-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tooka-cart-item-name {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 900;
}

.tooka-cart-item-price {
    color: #555;
    font-size: 12px;
}

.tooka-cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 11px;
}

.tooka-qty {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
}

.tooka-qty-btn {
    width: 31px;
    height: 31px;
    border: 0;
    background: #f7f7f7;
    color: var(--tooka-red);
    cursor: pointer;
    font-size: 19px;
    font-weight: 800;
}

.tooka-qty-number {
    min-width: 34px;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

.tooka-remove-item {
    padding: 5px 3px;
    border: 0;
    background: transparent;
    color: var(--tooka-red);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
}

.tooka-cart-summary {
    margin-top: auto;
    padding: 18px;
    border-top: 1px solid #eee;
    background: #fff;
}

.tooka-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 800;
}

.tooka-checkout-btn {
    width: 100%;
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--tooka-red);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(168,3,1,.22);
    border-bottom: 3px solid var(--tooka-yellow);
}

.tooka-checkout-btn:hover {
    background: var(--tooka-red-dark);
}

/* =========================
   ریسپانسیو
   ========================= */
@media (max-width: 1180px) {
    .tooka-categories {
        gap: 18px;
    }

    .tooka-products {
        grid-template-columns: repeat(3, minmax(0, 250px));
        gap: 24px;
    }

    .tooka-product-card {
        max-width: 250px;
    }
}

@media (max-width: 900px) {
    .tooka-restaurant {
        padding-inline: 14px;
    }

    .tooka-categories {
        justify-content: flex-start;
        gap: 13px;
        padding-inline: 4px;
    }

    .tooka-category {
        width: 80px;
        min-width: 80px;
    }

    .tooka-category-icon {
        width: 68px;
        height: 64px;
    }

    .tooka-products {
        grid-template-columns: repeat(2, minmax(0, 240px));
        gap: 18px;
    }

    .tooka-product-card {
        max-width: 240px;
    }
}

@media (max-width: 540px) {
    .tooka-restaurant {
        padding: 14px 10px 42px;
    }

    .tooka-menu-head {
        position: relative;
        align-items: center;
        padding: 4px 2px 8px;
        margin-bottom: 16px;
        background: #fff;
    }

    .tooka-menu-title {
        font-size: 22px;
        letter-spacing: -.2px;
    }

    .tooka-cart-trigger-label {
        display: none;
    }

    .tooka-cart-trigger {
        min-height: 38px;
        padding: 6px 8px;
    }

    .tooka-cart-count {
        min-width: 22px;
        height: 22px;
        font-size: 11px;
    }

    /* ابعاد دسته‌ها نزدیک به نمونه موبایل مرجع */
    .tooka-categories {
        width: calc(100% + 20px);
        margin-inline: -10px;
        margin-bottom: 18px;
        padding: 6px 10px 22px;
        gap: 8px;
        justify-content: flex-start;
    }

    .tooka-category {
        width: 60px;
        min-width: 60px;
    }

    .tooka-category-icon {
        width: 52px;
        height: 49px;
        margin-bottom: 6px;
        border-radius: 11px;
        box-shadow: 0 3px 8px rgba(0,0,0,.13);
    }

    .tooka-category-name {
        min-height: 30px;
        font-size: 10.5px;
        line-height: 1.45;
        font-weight: 700;
    }

    .tooka-category.active .tooka-category-icon {
        transform: translateY(-2px);
        box-shadow:
            0 7px 15px rgba(0,0,0,.15),
            0 0 0 2px rgba(255,222,0,.80),
            0 0 18px rgba(255,222,0,.62);
    }

    .tooka-products {
        grid-template-columns: minmax(0, 225px);
        justify-content: center;
        gap: 20px;
    }

    .tooka-product-card {
        max-width: 225px;
        border-radius: 16px;
        box-shadow:
            0 7px 18px rgba(0,0,0,.20),
            0 2px 5px rgba(0,0,0,.07);
    }

    .tooka-product-body {
        min-height: 158px;
        padding: 11px 12px 12px;
    }

    .tooka-product-title {
        font-size: 13.5px;
    }

    .tooka-product-description {
        font-size: 10.5px;
    }

    .tooka-product-price {
        font-size: 12px;
    }

    .tooka-add-to-cart {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .tooka-add-icon {
        width: 23px;
        height: 23px;
    }

    .tooka-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }

    .tooka-page-loader-inner {
        transform: scale(.92);
    }
}

/* ============================================================
   Tooka v1.3.0 - سربرگ اختصاصی، دسته‌بندی شناور و اصلاح لودر
   ============================================================ */

/* افزونه روی صفحه سفارش، هدر پیش‌فرض Hello Elementor را مخفی می‌کند. */
body.tooka-order-page #site-header.site-header,
body.tooka-order-page header#site-header {
    display: none !important;
}

body.tooka-order-page {
    --tooka-sticky-header-height: 68px;
}

/* سربرگ اختصاصی افزونه */
.tooka-app-header {
    position: sticky;
    top: 0;
    z-index: 10040;
    width: 100vw;
    min-height: var(--tooka-sticky-header-height);
    margin: -24px calc(50% - 50vw) 22px;
    padding: 9px max(18px, calc((100vw - 1280px) / 2 + 18px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.98);
    border-bottom: 2px solid var(--tooka-yellow);
    box-shadow: 0 8px 26px rgba(0,0,0,.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tooka-app-brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--tooka-red);
    text-decoration: none !important;
}

.tooka-app-brand-logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 150px;
    object-fit: contain;
}

.tooka-app-brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--tooka-red);
    font-size: 20px;
    font-weight: 900;
}

.tooka-app-header-title {
    justify-self: center;
    color: #242424;
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
}

/* سبد: کل دکمه قرمز، فقط حلقه عدد زرد */
.tooka-app-header .tooka-cart-trigger,
.tooka-cart-trigger {
    justify-self: end;
    background: var(--tooka-red) !important;
    color: #fff !important;
    border-color: var(--tooka-red) !important;
    box-shadow: 0 7px 18px rgba(168,3,1,.24);
}

.tooka-app-header .tooka-cart-trigger:hover,
.tooka-cart-trigger:hover {
    background: var(--tooka-red-dark) !important;
    border-color: var(--tooka-red-dark) !important;
    box-shadow: 0 9px 22px rgba(168,3,1,.30);
}

.tooka-cart-trigger-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.tooka-cart-trigger-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tooka-cart-count {
    background: var(--tooka-red) !important;
    color: #fff !important;
    border: 2px solid var(--tooka-yellow);
    box-shadow: none !important;
}

/* پنل دسته‌بندی شناور در تمام دستگاه‌ها */
.tooka-categories-sticky {
    position: sticky;
    top: var(--tooka-sticky-header-height);
    z-index: 10030;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 30px;
    padding: 8px max(10px, calc((100vw - 1280px) / 2 + 18px)) 5px;
    background: rgba(255,255,255,.975);
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 12px 28px rgba(0,0,0,.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tooka-categories-sticky .tooka-categories {
    margin-bottom: 0;
    padding-bottom: 13px;
}

/* لودر: همیشه نسبت به viewport واقعی و خارج از محدودیت Elementor */
.tooka-page-loader {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    place-items: center !important;
    background: #fff !important;
    z-index: 2147483640 !important;
    transform: none !important;
    isolation: isolate;
}

.tooka-page-loader.is-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.tooka-page-loader-inner {
    position: relative;
    width: 170px;
    min-height: 170px;
    margin: 0 !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.tooka-page-loader-logo-wrap {
    width: 92px;
    height: 92px;
    padding: 7px;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.tooka-page-loader-logo {
    animation: none !important;
}

.tooka-page-loader-ring {
    top: 23px;
    left: 50%;
    width: 116px;
    height: 116px;
    margin-left: -58px;
    border-width: 4px;
}

.tooka-page-loader-text {
    margin-top: 7px;
    color: #414141;
    font-size: 12.5px;
}

body.tooka-loader-open {
    overflow: hidden !important;
}

/* جبران نوار مدیریت وردپرس */
body.admin-bar .tooka-app-header {
    top: 32px;
}

body.admin-bar .tooka-categories-sticky {
    top: calc(var(--tooka-sticky-header-height) + 32px);
}

@media (max-width: 782px) {
    body.admin-bar .tooka-app-header {
        top: 46px;
    }

    body.admin-bar .tooka-categories-sticky {
        top: calc(var(--tooka-sticky-header-height) + 46px);
    }
}

@media (max-width: 540px) {
    body.tooka-order-page {
        --tooka-sticky-header-height: 60px;
    }

    .tooka-app-header {
        min-height: var(--tooka-sticky-header-height);
        margin-top: -14px;
        margin-bottom: 14px;
        padding: 7px 10px;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 7px;
    }

    .tooka-app-brand-logo {
        height: 39px;
        max-width: 85px;
    }

    .tooka-app-brand-name {
        font-size: 14px;
    }

    .tooka-app-header-title {
        font-size: 13px;
    }

    .tooka-app-header .tooka-cart-trigger {
        min-height: 38px;
        padding: 5px 7px;
        gap: 5px;
        border-radius: 11px;
    }

    .tooka-cart-trigger-icon {
        width: 20px;
        height: 20px;
    }

    .tooka-categories-sticky {
        margin-bottom: 22px;
        padding: 5px 0 2px;
        box-shadow: 0 10px 22px rgba(0,0,0,.13);
    }

    .tooka-categories-sticky .tooka-categories {
        width: 100%;
        margin-inline: 0;
        padding: 5px 10px 12px;
    }

    .tooka-page-loader-inner {
        width: 150px;
        min-height: 150px;
    }

    .tooka-page-loader-logo-wrap {
        width: 82px;
        height: 82px;
    }

    .tooka-page-loader-ring {
        top: 19px;
        width: 104px;
        height: 104px;
        margin-left: -52px;
    }
}

/* متغیرهای مستقل لودر؛ چون JS آن را از داخل .tooka-restaurant به body منتقل می‌کند. */
.tooka-page-loader {
    --tooka-red: #a80301;
    --tooka-yellow: #ffde00;
    --tooka-font: "TookaIRANSansFaNum", Tahoma, Arial, sans-serif;
    font-family: var(--tooka-font);
}

/* ============================================================
   Tooka v1.4.0 - لوگوی ثابت، عنوان مرکزی، فوتر و Sticky مقاوم
   ============================================================ */

/* حذف عنوان استاندارد برگه فقط در صفحه منوی Tooka. */
body.tooka-order-page h1.entry-title,
body.tooka-order-page .entry-title,
body.tooka-order-page .page-title,
body.tooka-order-page .elementor-page-title,
body.tooka-order-page .page-header .entry-title {
    display: none !important;
}

/* لوگوی اختصاصی ارائه‌شده توسط PizzaTooka. */
.tooka-app-header {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
}

.tooka-app-brand {
    justify-self: start;
}

.tooka-app-brand-logo {
    width: auto !important;
    height: 58px !important;
    max-width: 178px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

.tooka-app-header-space {
    min-width: 0;
}

/* متن «سفارش آنلاین» دیگر در سربرگ وجود ندارد. */
.tooka-app-header-title {
    display: none !important;
}

/* عنوان منوی سفارش بدون وابستگی به اجزای دیگر دقیقاً وسط قرار می‌گیرد. */
.tooka-menu-head {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

.tooka-menu-title {
    width: 100% !important;
    text-align: center !important;
}

/* Sticky قبلی خاموش می‌شود؛ نسخه JS مقاوم در برابر overflow/transform المنتور آن را مدیریت می‌کند. */
.tooka-categories-sticky {
    --tooka-red: #a80301;
    --tooka-red-dark: #7f0201;
    --tooka-yellow: #ffde00;
    --tooka-font: "TookaIRANSansFaNum", Tahoma, Arial, sans-serif;

    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 10030;
    direction: rtl;
    font-family: var(--tooka-font);
}

.tooka-categories-sticky.tooka-categories-is-fixed {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    z-index: 2147482000 !important;
    background: rgba(255,255,255,.985) !important;
    border-bottom: 1px solid rgba(0,0,0,.06) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.16) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tooka-categories-placeholder {
    display: block;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

/* فوتر حقوق سایت */
.tooka-site-rights {
    width: 100%;
    margin: 44px auto 0;
    padding: 18px 14px 6px;
    border-top: 2px solid var(--tooka-yellow);
    color: #555;
    background: #fff;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.9;
    font-weight: 600;
}

@media (max-width: 540px) {
    .tooka-app-brand-logo {
        height: 48px !important;
        max-width: 126px !important;
    }

    .tooka-app-header {
        grid-template-columns: auto minmax(0, 1fr) auto !important;
    }

    .tooka-site-rights {
        margin-top: 34px;
        padding-inline: 8px;
        font-size: 11.5px;
    }
}


/* ============================================================
   Tooka v1.5.0 - sticky shell one-piece header/categories
   ============================================================ */
body.tooka-order-page {
    --tooka-sticky-header-height: auto;
}

.tooka-menu-head {
    margin: 0 0 18px !important;
}

.tooka-sticky-shell {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 26px;
    background: rgba(255,255,255,.985);
    border-bottom: 2px solid var(--tooka-yellow);
}

.tooka-sticky-shell-is-fixed {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    margin: 0 !important;
    z-index: 2147482000 !important;
    background: rgba(255,255,255,.985) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.14) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tooka-sticky-placeholder {
    display: block;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.tooka-app-header {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    min-height: 56px;
    margin: 0 !important;
    padding: 9px max(14px, calc((100vw - 1280px) / 2 + 18px)) 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.tooka-app-header-space,
.tooka-app-header-title {
    display: none !important;
}

.tooka-categories-sticky {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 max(6px, calc((100vw - 1280px) / 2 + 10px)) 6px !important;
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.tooka-categories-sticky .tooka-categories {
    margin: 0 auto !important;
    padding: 4px 6px 10px !important;
}

.tooka-app-brand-logo {
    height: 42px !important;
    max-width: 130px !important;
}

.tooka-page-loader-logo,
.tooka-add-loader-logo {
    object-fit: contain;
}

.tooka-site-rights {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tooka-site-rights-meta {
    color: #444;
    font-size: 12.25px;
    font-weight: 700;
}

@media (max-width: 540px) {
    .tooka-sticky-shell {
        margin-bottom: 18px;
    }

    .tooka-app-header {
        min-height: 50px;
        padding: 8px 10px 6px !important;
    }

    .tooka-app-brand-logo {
        height: 34px !important;
        max-width: 102px !important;
    }

    .tooka-categories-sticky {
        padding: 0 0 5px !important;
    }

    .tooka-categories-sticky .tooka-categories {
        padding: 4px 8px 9px !important;
    }

    .tooka-site-rights-meta {
        font-size: 11.5px;
        line-height: 1.9;
    }
}


/* ============================================================
   Tooka v1.6.0 - stable sticky shell + custom loader assets
   ============================================================ */
.tooka-restaurant {
    padding-top: 0 !important;
}

.tooka-sticky-placeholder,
.tooka-sticky-shell-is-fixed {
    all: unset;
}

.tooka-sticky-placeholder {
    display: none !important;
}

.tooka-sticky-shell {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10050 !important;
    width: 100vw !important;
    margin: 0 calc(50% - 50vw) 20px !important;
    background: rgba(255,255,255,.985) !important;
    border-bottom: 2px solid var(--tooka-yellow) !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.12) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.admin-bar .tooka-sticky-shell {
    top: 32px !important;
}

@media (max-width: 782px) {
    body.admin-bar .tooka-sticky-shell {
        top: 46px !important;
    }
}

.tooka-app-header {
    position: relative !important;
    top: auto !important;
    min-height: 58px !important;
    margin: 0 !important;
    padding: 8px max(14px, calc((100vw - 1280px) / 2 + 18px)) 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.tooka-app-brand-logo {
    height: 54px !important;
    max-width: 160px !important;
    width: auto !important;
    object-fit: contain !important;
}

.tooka-categories-sticky {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    padding: 0 max(6px, calc((100vw - 1280px) / 2 + 10px)) 6px !important;
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.tooka-categories-sticky .tooka-categories {
    margin: 0 auto !important;
    padding: 2px 8px 8px !important;
}

.tooka-menu-head {
    margin: 10px 0 14px !important;
}

.tooka-site-rights {
    border-top: 2px solid var(--tooka-yellow) !important;
    margin-top: 34px !important;
    padding: 14px 10px 4px !important;
}

.tooka-site-rights-copy {
    display: none !important;
}

.tooka-site-rights-meta {
    color: #444 !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
}

.tooka-page-loader-logo-wrap {
    width: 112px !important;
    height: 112px !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.tooka-page-loader-logo,
.tooka-page-loader-gif {
    width: 112px !important;
    height: 112px !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

.tooka-page-loader-ring {
    display: none !important;
}

.tooka-add-loader-logo {
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    animation: tooka-logo-spin .8s linear infinite !important;
}

@media (max-width: 540px) {
    .tooka-sticky-shell {
        margin-bottom: 16px !important;
    }

    .tooka-app-header {
        min-height: 54px !important;
        padding: 6px 10px 3px !important;
        gap: 10px !important;
    }

    .tooka-app-brand-logo {
        height: 42px !important;
        max-width: 124px !important;
    }

    .tooka-categories-sticky {
        padding: 0 0 5px !important;
    }

    .tooka-categories-sticky .tooka-categories {
        padding: 2px 8px 8px !important;
    }

    .tooka-site-rights-meta {
        font-size: 11.5px !important;
        line-height: 1.9 !important;
    }
}


/* ============================================================
   Tooka v1.6.2 - Loader hard fail-safe
   حتی اگر JavaScript افزونه به هر علت اجرا نشود، لودر حداکثر 3.5 ثانیه دیده می‌شود.
   ============================================================ */
.tooka-page-loader {
    animation: tooka-loader-hard-failsafe .28s ease 3.5s forwards !important;
}

.tooka-page-loader.is-hidden {
    animation: none !important;
}

@keyframes tooka-loader-hard-failsafe {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* در ادیتور Elementor لودر نباید روی محیط طراحی بماند. */
body.elementor-editor-active .tooka-page-loader,
body.elementor-editor-preview .tooka-page-loader {
    display: none !important;
}


/* ============================================================
   Tooka v1.6.3 - mobile header flush to viewport top
   ============================================================ */
/* هدر/دسته‌ها اولین بلوک صفحه هستند و هیچ فاصله‌ای از بالای viewport ندارند. */
.tooka-restaurant {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.tooka-sticky-shell {
    top: 0 !important;
    margin-top: 0 !important;
    inset-block-start: 0 !important;
}

/* در Canvas ممکن است کلاس admin-bar روی body بماند ولی خود نوار مدیریت نمایش داده نشود؛
   رزرو 32/46px باعث همان فضای خالی موبایل می‌شد. */
body.admin-bar .tooka-sticky-shell,
body.tooka-order-page.admin-bar .tooka-sticky-shell {
    top: 0 !important;
    inset-block-start: 0 !important;
}

@media (max-width: 782px) {
    body.admin-bar .tooka-sticky-shell,
    body.tooka-order-page.admin-bar .tooka-sticky-shell {
        top: 0 !important;
        inset-block-start: 0 !important;
    }
}

/* حذف margin/padding احتمالی ویجت Shortcode المنتور در همین صفحه. */
body.tooka-order-page .elementor-widget-shortcode:has(#tooka-restaurant-menu),
body.tooka-order-page .elementor-widget-shortcode:has(#tooka-restaurant-menu) > .elementor-widget-container,
body.tooka-order-page .elementor-shortcode:has(#tooka-restaurant-menu) {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 540px) {
    .tooka-sticky-shell {
        top: 0 !important;
        margin-top: 0 !important;
    }

    .tooka-app-header {
        padding-top: 4px !important;
    }

    .tooka-menu-head {
        margin-top: 14px !important;
    }
}


/* ============================================================
   Tooka v1.7.0 - category UX + inline product quantity control
   ============================================================ */
.tooka-product-cart-actions {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 42px;
}

.tooka-product-qty-control {
    height: 42px;
    min-width: 104px;
    padding: 3px;
    display: inline-grid;
    grid-template-columns: 32px minmax(30px, 1fr) 32px;
    align-items: center;
    gap: 2px;
    border: 1px solid rgba(168,3,1,.18);
    border-radius: 13px;
    background: #fff;
    box-shadow:
        0 5px 12px rgba(168,3,1,.10),
        0 0 0 2px rgba(255,222,0,.14);
}

.tooka-product-qty-control[hidden],
.tooka-add-to-cart[hidden] {
    display: none !important;
}

.tooka-product-qty-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font: inherit;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    transition: transform .12s ease, opacity .12s ease, background-color .12s ease;
}

.tooka-product-qty-plus {
    background: var(--tooka-red);
    color: #fff;
}

.tooka-product-qty-minus {
    background: var(--tooka-yellow);
    color: #5c130f;
}

.tooka-product-qty-btn:hover {
    transform: translateY(-1px);
}

.tooka-product-qty-btn:disabled {
    cursor: wait;
    opacity: .45;
}

.tooka-product-qty-number {
    min-width: 30px;
    text-align: center;
    color: #222;
    font-size: 14px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.tooka-product-qty-control.is-loading {
    opacity: .72;
}

/* فوتر اختصاصی قدیمی افزونه دیگر خروجی ندارد؛ این قانون برای نسخه‌های کش‌شده هم آن را مخفی می‌کند. */
.tooka-site-rights {
    display: none !important;
}

@media (max-width: 540px) {
    /* حدود چهار دسته کامل + بخشی از دسته پنجم در عرض موبایل دیده می‌شود. */
    .tooka-categories-sticky .tooka-categories {
        gap: 8px !important;
        padding-inline: 8px !important;
    }

    .tooka-category {
        width: clamp(61px, calc((100vw - 50px) / 5.15), 68px) !important;
        min-width: clamp(61px, calc((100vw - 50px) / 5.15), 68px) !important;
    }

    .tooka-category-icon {
        width: calc(100% - 8px) !important;
        height: clamp(49px, calc((100vw - 88px) / 5.15), 56px) !important;
        margin-bottom: 7px !important;
    }

    .tooka-category-name {
        font-size: 10.4px !important;
        line-height: 1.45 !important;
    }

    .tooka-product-cart-actions {
        min-width: 38px;
    }

    .tooka-product-qty-control {
        height: 38px;
        min-width: 96px;
        grid-template-columns: 29px minmax(28px, 1fr) 29px;
        border-radius: 11px;
    }

    .tooka-product-qty-btn {
        width: 29px;
        height: 29px;
        border-radius: 8px;
        font-size: 18px;
    }

    .tooka-product-qty-number {
        min-width: 28px;
        font-size: 13px;
    }
}

/* ============================================================
   Tooka v1.8.0 — fast local "سفارش من"
   ============================================================ */

/* لودر تمام‌صفحه از v1.8.0 حذف شده؛ برای کش قدیمی هم هرگز نمایش داده نشود. */


.tooka-order-note {
    margin: 14px 18px 4px;
    padding: 13px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255,222,0,.7);
    border-radius: 13px;
    background: #fffdf0;
}

.tooka-order-note strong {
    color: var(--tooka-red);
    font-size: 13px;
    font-weight: 900;
}

.tooka-order-note span {
    color: #555;
    font-size: 11px;
    line-height: 1.9;
}

.tooka-counter-qty {
    display: none;
    color: var(--tooka-red);
    font-size: 17px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.tooka-counter-back,
.tooka-clear-order {
    width: 100%;
    min-height: 42px;
    margin-top: 8px;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
}

.tooka-counter-back {
    display: none;
    border: 1px solid var(--tooka-yellow);
    background: #fff;
    color: var(--tooka-red);
}

.tooka-clear-order {
    border: 0;
    background: transparent;
    color: #777;
}

/* حالت مخصوص نشان دادن سفارش به صندوقدار. */
.tooka-cart-drawer.is-counter-view {
    width: min(680px, 100vw);
}

.tooka-cart-drawer.is-counter-view .tooka-order-note {
    background: #fff;
    border-width: 2px;
    text-align: center;
}

.tooka-cart-drawer.is-counter-view .tooka-order-note strong {
    font-size: 18px;
}

.tooka-cart-drawer.is-counter-view .tooka-order-note span {
    font-size: 13px;
}

.tooka-cart-drawer.is-counter-view .tooka-cart-item {
    grid-template-columns: 1fr;
    padding: 17px 0;
}

.tooka-cart-drawer.is-counter-view .tooka-cart-item-image,
.tooka-cart-drawer.is-counter-view .tooka-qty,
.tooka-cart-drawer.is-counter-view .tooka-remove-item,
.tooka-cart-drawer.is-counter-view .tooka-show-counter,
.tooka-cart-drawer.is-counter-view .tooka-clear-order {
    display: none !important;
}

.tooka-cart-drawer.is-counter-view .tooka-counter-qty,
.tooka-cart-drawer.is-counter-view .tooka-counter-back {
    display: inline-flex;
}

.tooka-cart-drawer.is-counter-view .tooka-counter-qty {
    min-width: 58px;
    justify-content: center;
}

.tooka-cart-drawer.is-counter-view .tooka-cart-item-main {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: center;
    gap: 8px 14px;
}

.tooka-cart-drawer.is-counter-view .tooka-cart-item-name {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
}

.tooka-cart-drawer.is-counter-view .tooka-cart-item-price {
    grid-column: 1;
    font-size: 13px;
}

.tooka-cart-drawer.is-counter-view .tooka-cart-item-actions {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
}

.tooka-cart-drawer.is-counter-view .tooka-cart-total-row {
    font-size: 17px;
}

/* هیچ حالت loading برای + و - وجود ندارد؛ انتخاب کاملاً محلی و فوری است. */
.tooka-product-qty-control.is-loading,
.tooka-add-to-cart.is-loading {
    opacity: 1 !important;
    pointer-events: auto !important;
}

@media (max-width: 540px) {
    .tooka-cart-drawer {
        width: min(410px, 96vw);
    }

    .tooka-cart-drawer.is-counter-view {
        width: 100vw;
    }

    .tooka-order-note {
        margin-inline: 12px;
    }

    .tooka-cart-drawer.is-counter-view .tooka-cart-items {
        padding-inline: 16px;
    }

    .tooka-cart-drawer.is-counter-view .tooka-cart-item-name {
        font-size: 17px;
    }
}


/* v1.8.3 — تایپوگرافی فارسی و اعداد یکدست */
.tooka-restaurant,
.tooka-restaurant button,
.tooka-restaurant input,
.tooka-restaurant select,
.tooka-restaurant textarea {
    font-variant-numeric: normal;
    font-feature-settings: "ss01" 1;
}

.tooka-product-price,
.tooka-cart-item-price,
.tooka-cart-total-row strong,
.tooka-product-qty-number,
.tooka-qty-number,
.tooka-cart-count {
    font-family: var(--tooka-font);
    letter-spacing: 0;
}


/* ============================================================
   Tooka v1.8.4 — دسته‌بندی موبایل کمی بزرگ‌تر
   فقط اندازه کارت‌های دسته‌بندی موبایل تغییر کرده است.
   حدود ۴ دسته کامل + بخشی از دسته پنجم دیده می‌شود.
   ============================================================ */
@media (max-width: 540px) {
    .tooka-categories-sticky .tooka-categories {
        gap: 8px !important;
        padding-inline: 8px !important;
    }

    .tooka-category {
        width: clamp(68px, calc((100vw - 46px) / 4.65), 76px) !important;
        min-width: clamp(68px, calc((100vw - 46px) / 4.65), 76px) !important;
    }

    .tooka-category-icon {
        width: calc(100% - 7px) !important;
        height: clamp(56px, calc((100vw - 82px) / 4.65), 64px) !important;
        margin-bottom: 7px !important;
    }

    .tooka-category-name {
        font-size: 10.8px !important;
        line-height: 1.45 !important;
    }
}


/* ============================================================
   Tooka v1.8.7 — IRANSansWeb FaNum واقعی از uploads/tooka-fonts
   فایل مورد انتظار: IRANSansWeb(FaNum).woff
   ============================================================ */
html .tooka-standalone-menu-page,
html .tooka-standalone-menu-page *,
.tooka-restaurant,
.tooka-restaurant *,
#tooka-elementor-footer,
#tooka-elementor-footer * {
    font-family: "TookaIRANSansFaNum", Tahoma, Arial, sans-serif !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tooka-category-name {
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.tooka-product-title,
.tooka-cart-item-name,
.tooka-cart-header h3,
.tooka-order-note strong,
.tooka-menu-title {
    font-weight: 700 !important;
    letter-spacing: -0.12px !important;
}

.tooka-product-description,
.tooka-order-note span,
.tooka-cart-empty-text {
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.tooka-product-price,
.tooka-cart-item-price,
.tooka-cart-total-row strong,
.tooka-product-qty-number,
.tooka-qty-number,
.tooka-counter-qty,
.tooka-cart-count {
    font-family: "TookaIRANSansFaNum", Tahoma, Arial, sans-serif !important;
    font-weight: 700 !important;
    font-variant-numeric: normal !important;
    font-feature-settings: normal !important;
    direction: rtl;
    unicode-bidi: plaintext;
}


/* ============================================================
   Tooka v1.8.8 — قیمت تمیز + واحد کوچک + دسته‌بندی مشکی بولد
   ============================================================ */
.tooka-product-price,
.tooka-cart-item-price,
.tooka-cart-total-row strong {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    direction: rtl;
    unicode-bidi: isolate;
}

.tooka-price-current {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.tooka-price-number {
    font-size: 1em;
    font-weight: 700 !important;
    line-height: 1;
    white-space: nowrap;
}

.tooka-price-unit {
    font-size: .68em !important;
    font-weight: 400 !important;
    line-height: 1;
    opacity: .78;
    white-space: nowrap;
}

.tooka-price-old {
    display: inline-flex;
    align-items: baseline;
    margin-left: 5px;
    opacity: .58;
    text-decoration-thickness: 1px;
}

.tooka-category-name,
.tooka-category.active .tooka-category-name {
    color: #111111 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.tooka-category.active .tooka-category-name {
    font-weight: 900 !important;
}


/* =========================
   راهنمای متحرک دسته‌بندی‌ها
   ========================= */
.tooka-categories-sticky{position:relative;}
.tooka-category-swipe-hint{
    position:absolute;
    left:12px;
    right:12px;
    bottom:-10px;
    z-index:6;
    display:none;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.97);
    color:#3a3a3a;
    box-shadow:0 10px 22px rgba(0,0,0,.12);
    border:1px solid rgba(255,222,0,.75);
    pointer-events:none;
}
.tooka-category-swipe-hint.is-visible{display:inline-flex;animation:tookaHintFade .24s ease;}
.tooka-swipe-hand{font-size:19px;line-height:1;display:inline-block;animation:tookaHandMove 1.15s ease-in-out infinite;}
.tooka-swipe-track{display:inline-flex;align-items:center;justify-content:center;min-width:38px;color:var(--tooka-red);font-weight:900;font-size:18px;overflow:hidden}
.tooka-swipe-arrow{display:inline-block;animation:tookaArrowGlide 1.15s ease-in-out infinite;}
.tooka-swipe-text{font-size:11px;font-weight:700;white-space:nowrap;color:#444}
@keyframes tookaHintFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
@keyframes tookaHandMove{0%,100%{transform:translateX(0)}50%{transform:translateX(-10px)}}
@keyframes tookaArrowGlide{0%,100%{transform:translateX(10px);opacity:.45}50%{transform:translateX(-12px);opacity:1}}

@media (min-width: 901px){.tooka-category-swipe-hint{display:none!important}}
@media (max-width: 767px){.tooka-category-swipe-hint{left:8px;right:8px;bottom:-6px}.tooka-swipe-text{font-size:10px}}
