/* ========================================================
   TOKYO — עמוד הבית הציבורי (תיק עבודות)
   הזדהות חזותית: נגרות פרימיום, עץ כהה + פליז, חיתוכי זווית
   ======================================================== */

:root {
    --tk-brass: #c8924a;
    --tk-brass-light: #e3b876;
    --tk-terracotta: #b3582f;
    --tk-teal: #2f5d56;
    --tk-burgundy: #6e2b3a;
    --tk-olive: #5c5a2e;
    --tk-radius: 4px;

    /* -------- الوضع الغامق (افتراضي) -------- */
    --tk-espresso: #1c1410;
    --tk-espresso-2: #2a2018;
    --tk-charcoal: #14110d;
    --tk-ivory: #ede4d3;
    --tk-ivory-soft: #c9bda6;
    --tk-shadow: 0 20px 50px rgba(0,0,0,0.45);
    --tk-border-soft: rgba(255,255,255,0.08);
    --tk-card-overlay: rgba(255,255,255,0.04);
    --tk-header-bg: rgba(20, 17, 13, 0.88);
}

/* -------- الوضع الفاتح -------- */
[data-theme="light"] {
    --tk-espresso: #fffaf2;
    --tk-espresso-2: #ffffff;
    --tk-charcoal: #f5ece0;
    --tk-ivory: #2c2014;
    --tk-ivory-soft: #6b5d4a;
    --tk-shadow: 0 20px 50px rgba(60,40,20,0.14);
    --tk-border-soft: rgba(44,32,20,0.1);
    --tk-card-overlay: rgba(44,32,20,0.035);
    --tk-header-bg: rgba(255, 250, 242, 0.85);
}

/* -------------------- إعادة تصفير + مؤشر وسكرول مخصصان -------------------- */
.tk-page * { box-sizing: border-box; }

.tk-page {
    background: var(--tk-charcoal);
    color: var(--tk-ivory);
    font-family: 'Noto Sans Hebrew', 'Cairo', sans-serif;
    direction: rtl;
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
}

.tk-page a, .tk-page button { cursor: none; }

/* -------------------- مؤشر الماوس المخصص -------------------- */
.tk-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--tk-brass);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
    mix-blend-mode: difference;
}
.tk-cursor.tk-cursor-hover {
    width: 42px;
    height: 42px;
    background: var(--tk-brass);
    border-color: transparent;
}
.tk-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--tk-brass-light);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px), (hover: none) {
    .tk-page, .tk-page a, .tk-page button { cursor: pointer; }
    .tk-cursor, .tk-cursor-dot { display: none; }
}

html::-webkit-scrollbar, .tk-page::-webkit-scrollbar { width: 14px; }
html::-webkit-scrollbar-track, .tk-page::-webkit-scrollbar-track { background: var(--tk-charcoal); }
html::-webkit-scrollbar-thumb, .tk-page::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--tk-brass), var(--tk-terracotta));
    border-radius: 8px;
    border: 3px solid var(--tk-charcoal);
}
html::-webkit-scrollbar-thumb:hover, .tk-page::-webkit-scrollbar-thumb:hover { background: var(--tk-brass-light); }

html { scrollbar-color: var(--tk-brass) var(--tk-charcoal); background: var(--tk-charcoal); }

/* -------------------- الرأس --------------------- */
.tk-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 6vw;
    background: var(--tk-header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 146, 74, 0.18);
}

.tk-logo {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--tk-ivory);
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.tk-logo span { color: var(--tk-brass); }

.tk-login-btn {
    background: transparent;
    border: 1.5px solid var(--tk-brass);
    color: var(--tk-brass-light);
    padding: 11px 28px;
    border-radius: var(--tk-radius);
    font-size: .95rem;
    font-weight: 600;
    font-family: inherit;
    transition: background .25s ease, color .25s ease, transform .2s ease;
}
.tk-login-btn:hover {
    background: var(--tk-brass);
    color: var(--tk-espresso);
    transform: translateY(-2px);
}

.tk-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* زر تبديل الوضع الفاتح/الغامق: دائرة بأيقونتين متراكبتين، تتبدل ظهورها حسب data-theme */
.tk-theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--tk-border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    position: relative;
    transition: border-color .25s ease, transform .2s ease;
}
.tk-theme-toggle:hover { border-color: var(--tk-brass); transform: translateY(-2px); }

.tk-theme-icon-dark, .tk-theme-icon-light {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .25s ease, transform .25s ease;
}
/* الوضع الغامق (افتراضي): يظهر القمر، تختفي الشمس */
.tk-theme-icon-dark { opacity: 1; transform: scale(1) rotate(0deg); }
.tk-theme-icon-light { opacity: 0; transform: scale(.5) rotate(-90deg); }
/* الوضع الفاتح: العكس */
[data-theme="light"] .tk-theme-icon-dark { opacity: 0; transform: scale(.5) rotate(90deg); }
[data-theme="light"] .tk-theme-icon-light { opacity: 1; transform: scale(1) rotate(0deg); }

/* -------------------- البطل / الهيرو -------------------- */
.tk-hero {
    position: relative;
    padding: 9vh 6vw 8vh;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,146,74,0.14), transparent 70%),
        repeating-linear-gradient(100deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 2px, transparent 2px, transparent 60px),
        linear-gradient(170deg, var(--tk-espresso-2), var(--tk-charcoal) 80%);
}

.tk-hero-eyebrow {
    font-size: .8rem;
    letter-spacing: .25em;
    color: var(--tk-brass);
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0;
    animation: tkFadeUp .8s ease forwards;
    animation-delay: .1s;
}

.tk-hero h1 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.45;
    font-weight: 700;
    margin: 0 auto 26px;
    max-width: 880px;
    color: var(--tk-ivory);
    opacity: 0;
    animation: tkFadeUp .9s ease forwards;
    animation-delay: .25s;
}
.tk-hero h1 em {
    font-style: normal;
    color: var(--tk-brass-light);
    position: relative;
}

/* الشريط المتحرك الاستعراضي */
.tk-ticker-wrap {
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    border-top: 1px solid rgba(200,146,74,0.25);
    border-bottom: 1px solid rgba(200,146,74,0.25);
    padding: 16px 0;
    opacity: 0;
    animation: tkFadeUp 1s ease forwards;
    animation-delay: .45s;
}
.tk-ticker {
    display: inline-flex;
    white-space: nowrap;
    animation: tkScroll 18s linear infinite;
    font-size: 1.05rem;
    color: var(--tk-ivory-soft);
    font-weight: 500;
}
.tk-ticker span { padding: 0 2.5rem; }
.tk-ticker span::after { content: '✦'; color: var(--tk-brass); margin-right: 2.5rem; }

@keyframes tkScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes tkFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------- معرض الأعمال: شبكة المدن -------------------- */
.tk-section {
    padding: 8vh 6vw;
    max-width: 1320px;
    margin: 0 auto;
}

.tk-section-head { text-align: center; margin-bottom: 60px; }
.tk-section-eyebrow {
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--tk-brass);
    margin-bottom: 12px;
}
.tk-section-head h2 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin: 0 0 12px;
    color: var(--tk-ivory);
}
.tk-section-head p { color: var(--tk-ivory-soft); font-size: 1.05rem; margin: 0; }

.tk-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
}

.tk-city-card {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 22px;
    border-radius: var(--tk-radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--tk-ivory);
    background: var(--tk-card-bg, var(--tk-espresso-2));
    border: 1px solid var(--tk-border-soft);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
    isolation: isolate;
}

/* حزّة الزاوية (motif نجارة: قطع زاوية كأنه فصلة خشبية) */
.tk-city-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 46px 46px 0 0;
    border-color: var(--tk-card-accent, var(--tk-brass)) transparent transparent transparent;
    opacity: .9;
    transition: transform .35s ease;
    z-index: 1;
}

.tk-city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 110%, var(--tk-card-accent, var(--tk-brass)) 0%, transparent 60%);
    opacity: .22;
    transition: opacity .35s ease;
    animation: tkGlowBreathe 3.6s ease-in-out infinite;
}

@keyframes tkGlowBreathe {
    0%, 100% { opacity: .16; transform: scale(1); }
    50% { opacity: .34; transform: scale(1.08); }
}

/* شعاع لمعان خفيف يعبر المربع بشكل دوري */
.tk-city-card .tk-shimmer {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.tk-city-card .tk-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70%;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgba(255,255,255,0.02) 20%,
        rgba(255,255,255,0.06) 40%,
        rgba(255,255,255,0.09) 50%,
        rgba(255,255,255,0.06) 60%,
        rgba(255,255,255,0.02) 80%,
        transparent 100%
    );
    filter: blur(6px);
    animation: tkShimmerMove 6.5s ease-in-out infinite;
}
@keyframes tkShimmerMove {
    0% { right: -75%; }
    60%, 100% { right: 110%; }
}

.tk-city-card:hover {
    transform: translateY(-8px) rotate(-0.6deg);
    box-shadow: var(--tk-shadow);
    border-color: var(--tk-card-accent, var(--tk-brass));
}
.tk-city-card:hover::before { transform: scale(1.15); }
.tk-city-card:hover::after { opacity: .5; animation-duration: 1.8s; }

@media (prefers-reduced-motion: reduce) {
    .tk-city-card::after { animation: none; }
    .tk-city-card .tk-shimmer::before { animation: none; display: none; }
}

.tk-city-num {
    position: relative;
    z-index: 2;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--tk-card-accent, var(--tk-brass-light));
    line-height: 1;
    margin-bottom: 10px;
}
.tk-city-name {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}
.tk-city-count {
    position: relative;
    z-index: 2;
    font-size: .82rem;
    color: var(--tk-ivory-soft);
    margin-top: 6px;
}

.tk-empty-showcase {
    text-align: center;
    padding: 60px 20px;
    color: var(--tk-ivory-soft);
    font-size: 1.1rem;
    border: 1px dashed rgba(200,146,74,0.3);
    border-radius: var(--tk-radius);
}

/* -------------------- صفحة المدينة الفرعية (طلبيات منجزة) -------------------- */
.tk-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tk-brass-light);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: gap .2s ease;
}
.tk-back-link:hover { gap: 14px; }

.tk-order-card {
    background: var(--tk-espresso-2);
    border: 1px solid var(--tk-border-soft);
    border-radius: var(--tk-radius);
    padding: 30px;
    margin-bottom: 36px;
}
.tk-order-card h3 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.4rem;
    margin: 0 0 22px;
    color: var(--tk-brass-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.tk-order-card h3::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--tk-brass);
    display: inline-block;
}

/* شبكة قسمي "داخل المصنع" و"بعد التركيب": جنبًا لجنب على الشاشات الكبيرة، عمودي على الموبايل */
.tk-sections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.tk-section-col { min-width: 0; }

@media (max-width: 768px) {
    .tk-sections-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.tk-subsection-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    color: var(--tk-ivory);
    margin: 30px 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tk-subsection-title:first-child { margin-top: 0; }

.tk-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}
.tk-photo-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--tk-radius);
    border: 1px solid var(--tk-border-soft);
    transition: transform .3s ease, box-shadow .3s ease;
}
.tk-photo-grid img:hover {
    transform: scale(1.04);
    box-shadow: var(--tk-shadow);
}
.tk-photo-empty {
    color: var(--tk-ivory-soft);
    font-size: .9rem;
    opacity: .7;
}

/* -------------------- سلايدر صور كل قسم (مصنع / تركيب) -------------------- */
.tk-slider {
    position: relative;
    border-radius: var(--tk-radius);
    overflow: hidden;
    background: rgba(0,0,0,0.2);
}

.tk-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* إخفاء شريط التمرير الافتراضي بهذا العنصر بالتحديد (التنقل يكون بالأسهم/النقاط/السحب، لا بشريط مرئي) */
    scrollbar-width: none;
}
.tk-slider-track::-webkit-scrollbar { display: none; }

.tk-slider-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 16/10;
}
.tk-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform .4s ease;
}
.tk-slider-slide img:hover { transform: scale(1.03); }

.tk-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(20,17,13,0.65);
    border: 1px solid rgba(200,146,74,0.4);
    color: var(--tk-ivory);
    font-size: 1.15rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
    z-index: 2;
}
.tk-slider-arrow:hover { background: var(--tk-brass); color: var(--tk-espresso); border-color: var(--tk-brass); }
.tk-slider-prev { right: 14px; }
.tk-slider-next { left: 14px; }

.tk-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
    z-index: 2;
}
.tk-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.tk-slider-dot.active { background: var(--tk-brass); transform: scale(1.25); }

@media (max-width: 768px) {
    .tk-slider-arrow { width: 38px; height: 38px; font-size: 1.25rem; }
}

/* -------------------- نافذة تكبير الصور (Lightbox) -------------------- */
.tk-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.92);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.tk-lightbox.open { display: flex; animation: tkModalIn .2s ease; }

.tk-lightbox img {
    max-width: min(90vw, 1100px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--tk-radius);
    box-shadow: var(--tk-shadow);
}

.tk-lightbox-close {
    position: absolute;
    top: 22px; left: 26px;
    background: none;
    border: none;
    color: var(--tk-ivory);
    font-size: 2.2rem;
    line-height: 1;
    z-index: 1001;
}
.tk-lightbox-close:hover { color: var(--tk-brass-light); }

.tk-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(200,146,74,0.4);
    color: var(--tk-ivory);
    font-size: 1.8rem;
    line-height: 1;
    z-index: 1001;
}
.tk-lightbox-nav:hover { background: var(--tk-brass); color: var(--tk-espresso); }
.tk-lightbox-prev { right: 24px; }
.tk-lightbox-next { left: 24px; }

@media (max-width: 640px) {
    .tk-lightbox-nav { width: 42px; height: 42px; font-size: 1.4rem; }
    .tk-lightbox-prev { right: 10px; }
    .tk-lightbox-next { left: 10px; }
    .tk-lightbox-close { top: 14px; left: 14px; font-size: 1.8rem; }
}

/* -------------------- لماذا TOKYO -------------------- */
.tk-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}
.tk-feature-card {
    background: var(--tk-espresso-2);
    border: 1px solid var(--tk-border-soft);
    border-radius: var(--tk-radius);
    padding: 32px 26px;
    transition: transform .3s ease, border-color .3s ease;
}
.tk-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--tk-brass);
}
.tk-feature-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--tk-brass-light);
}
.tk-feature-card h4 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--tk-ivory);
}
.tk-feature-card p {
    font-size: .92rem;
    color: var(--tk-ivory-soft);
    line-height: 1.6;
    margin: 0;
}

/* -------------------- التواصل -------------------- */
.tk-contact {
    background: linear-gradient(160deg, var(--tk-espresso-2), var(--tk-charcoal));
    border-radius: var(--tk-radius);
    padding: 60px 6vw;
    text-align: center;
}
.tk-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}
.tk-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--tk-card-overlay);
    border: 1px solid rgba(200,146,74,0.3);
    color: var(--tk-ivory);
    padding: 14px 26px;
    border-radius: var(--tk-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
}
.tk-contact-link:hover {
    background: var(--tk-brass);
    color: var(--tk-espresso);
    transform: translateY(-3px);
}

/* -------------------- التذييل -------------------- */
.tk-footer {
    text-align: center;
    padding: 30px 6vw;
    color: var(--tk-ivory-soft);
    font-size: .85rem;
    border-top: 1px solid var(--tk-border-soft);
}

/* -------------------- نافذة تسجيل الدخول المنبثقة -------------------- */
.tk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.78);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.tk-modal-overlay.open { display: flex; animation: tkModalIn .25s ease; }
@keyframes tkModalIn { from { opacity: 0; } to { opacity: 1; } }

.tk-modal-box {
    background: var(--tk-espresso-2);
    border: 1px solid rgba(200,146,74,0.3);
    border-radius: var(--tk-radius);
    padding: 40px 36px;
    max-width: 380px;
    width: 100%;
    position: relative;
    box-shadow: var(--tk-shadow);
}
.tk-modal-close {
    position: absolute;
    top: 16px; left: 16px;
    background: none;
    border: none;
    color: var(--tk-ivory-soft);
    font-size: 1.4rem;
    line-height: 1;
    padding: 4px;
}
.tk-modal-close:hover { color: var(--tk-brass-light); }

.tk-modal-box .logo { text-align: center; margin-bottom: 26px; }
.tk-modal-box h3 {
    font-family: 'Frank Ruhl Libre', serif;
    text-align: center;
    color: var(--tk-ivory);
    margin: 0 0 24px;
    font-size: 1.2rem;
}
.tk-modal-box .form-group { margin-bottom: 16px; }
.tk-modal-box label {
    color: var(--tk-ivory-soft);
    font-size: .85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.tk-modal-box input[type=text], .tk-modal-box input[type=password] {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--tk-radius);
    color: var(--tk-ivory);
    font-size: .95rem;
}
.tk-modal-box input:focus { outline: 2px solid var(--tk-brass); border-color: var(--tk-brass); }
.tk-modal-box .alert-error {
    background: rgba(179, 66, 47, 0.18);
    border: 1px solid var(--tk-terracotta);
    color: #f0b3a3;
    padding: 10px 14px;
    border-radius: var(--tk-radius);
    font-size: .85rem;
    margin-bottom: 16px;
}
.tk-modal-submit {
    width: 100%;
    background: var(--tk-brass);
    color: var(--tk-espresso);
    border: none;
    padding: 13px;
    border-radius: var(--tk-radius);
    font-weight: 700;
    font-size: .98rem;
    font-family: inherit;
    transition: background .2s ease;
}
.tk-modal-submit:hover { background: var(--tk-brass-light); }

/* -------------------- إمكانية الوصول وحركة منخفضة -------------------- */
@media (prefers-reduced-motion: reduce) {
    .tk-page *, .tk-page *::before, .tk-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.tk-page a:focus-visible, .tk-page button:focus-visible, .tk-page input:focus-visible {
    outline: 2px solid var(--tk-brass-light);
    outline-offset: 2px;
}

/* -------------------- استجابة للهواتف -------------------- */
@media (max-width: 768px) {
    .tk-header { padding: 16px 5vw; }
    .tk-logo { font-size: 1.4rem; }
    .tk-header-actions { gap: 8px; }
    .tk-theme-toggle { width: 36px; height: 36px; font-size: .95rem; }
    .tk-login-btn { padding: 9px 18px; font-size: .85rem; }
    .tk-section { padding: 7vh 5vw; }
    .tk-city-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .tk-city-card { padding: 18px 16px; }
    .tk-city-num { font-size: 2rem; }
    .tk-city-name { font-size: 1.1rem; }
    .tk-order-card { padding: 20px; }
}
