﻿:root {
    --bg: #120d0b;
    --shell: #1a1311;
    --surface: #211816;
    --surface-strong: #271d1a;
    --line: rgba(255, 235, 217, 0.08);
    --accent: #ef9850;
    --accent-strong: #d67c35;
    --accent-soft: #f6d4b4;
    --peach: #f7dbc3;
    --text: #fff8f1;
    --text-dark: #1b1411;
    --muted: #b9a89b;
    --muted-dark: #7f6756;
    --success: #6fd29a;
    --danger: #ff907f;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #231613 0%, #160f0d 100%);
    color: var(--text);
    font-family: 'Tajawal', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
    position: relative;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .order-topbar {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-panel,
html[dir="rtl"] .nav-links,
html[dir="rtl"] .order-topbar-links,
html[dir="rtl"] .dashboard-topbar-links {
    direction: rtl;
}

html[dir="rtl"] .dashboard-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
}

html[dir="rtl"] .dashboard-sidebar {
    order: 2;
}

html[dir="rtl"] .dashboard-main {
    order: 1;
}

html[dir="rtl"] .dashboard-nav a {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

html[dir="rtl"] .dashboard-topbar,
html[dir="rtl"] .dashboard-table th,
html[dir="rtl"] .dashboard-table td,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .form-panel {
    text-align: right;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    max-width: none;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.order-site-shell {
    padding: 0 0 26px;
}

.order-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px 10px;
}

.order-topbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.order-topbar-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(239, 152, 80, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.order-topbar-title {
    display: block;
    margin-top: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
}

.order-topbar-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.order-topbar-links a {
    color: rgba(252, 241, 230, 0.78);
    font-weight: 700;
}

.order-page-content {
    padding-top: 6px;
}

.page-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 0 24px 28px;
}

.site-nav {
    align-items: center;
    backdrop-filter: blur(16px);
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 22px 28px 18px;
    position: sticky;
    top: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    z-index: 30;
}

.is-scrolled .site-nav {
    background: rgba(26, 19, 17, 0.92);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.brand-mark,
.footer-logo {
    align-items: center;
    display: inline-flex;
    font-family: 'Cairo', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    gap: 0.05rem;
    letter-spacing: 0.03em;
    text-transform: lowercase;
}

.brand-accent {
    color: var(--accent);
}

.nav-panel {
    align-items: center;
    display: flex;
    gap: 22px;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
    padding: 10px 16px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

.nav-cta.is-active {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 11px 10px;
}

.nav-toggle span {
    background: var(--text);
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 20px;
}

.btn {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    letter-spacing: 0.04em;
    padding: 13px 24px;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-accent {
    background: linear-gradient(180deg, #f2a35f 0%, var(--accent-strong) 100%);
    box-shadow: 0 14px 30px rgba(214, 124, 53, 0.25);
    color: var(--text-dark);
}

.btn-dark {
    background: var(--text-dark);
    color: var(--text);
}

.btn-outline-dark {
    background: rgba(27, 20, 17, 0.08);
    box-shadow: inset 0 0 0 1px rgba(27, 20, 17, 0.16);
    color: var(--text-dark);
}

.hero-section {
    overflow: visible;
    padding: 10px 4px 92px;
    position: relative;
}

.hero-card {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.45), transparent 32%),
        linear-gradient(135deg, #f7dbc3 0%, #f2caa6 100%);
    border: 1px solid rgba(255, 241, 226, 0.18);
    border-radius: 38px;
    color: var(--text-dark);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    min-height: 560px;
    overflow: visible;
    padding: 28px;
    position: relative;
}

.hero-card::after {
    background: radial-gradient(circle, rgba(113, 62, 34, 0.28) 0%, rgba(113, 62, 34, 0) 72%);
    bottom: 28px;
    content: '';
    height: 170px;
    position: absolute;
    right: 52px;
    width: 320px;
}

.hero-copy {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 500px;
    padding: 30px 18px 40px 24px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--muted-dark);
}

.hero-copy h1,
.subpage-copy h1,
.section-copy h2,
.section-heading h2,
.download-card h2,
.contact-card h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.hero-copy h1 {
    font-size: clamp(3.4rem, 5vw, 5.35rem);
    max-width: 9ch;
}

.hero-copy p,
.subpage-copy p,
.section-copy p,
.section-heading p,
.download-card p,
.contact-card p {
    color: rgba(27, 20, 17, 0.72);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 10px;
}

.hero-metrics {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
}

.metric-card {
    background: rgba(255, 247, 241, 0.46);
    border: 1px solid rgba(27, 20, 17, 0.08);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 104px;
    padding: 20px 18px;
}

.metric-card strong {
    font-family: 'Cairo', sans-serif;
    font-size: 1.6rem;
}

.metric-card span {
    color: rgba(27, 20, 17, 0.64);
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-visual {
    min-height: 500px;
    overflow: visible;
    position: relative;
    z-index: 3;
}

.hero-blob,
.hero-ring,
.hero-splash-shadow {
    pointer-events: none;
    position: absolute;
}

.hero-blob {
    background: rgba(153, 84, 36, 0.18);
    filter: blur(1px);
}

.hero-blob-one {
    border-radius: 48% 52% 57% 43% / 42% 43% 57% 58%;
    height: 340px;
    right: 84px;
    top: 36px;
    width: 260px;
}

.hero-blob-two {
    background: rgba(239, 152, 80, 0.3);
    border-radius: 50%;
    bottom: 26px;
    height: 108px;
    left: 24px;
    width: 108px;
}

.hero-ring {
    border: 18px solid rgba(239, 152, 80, 0.34);
    border-radius: 50%;
    height: 116px;
    left: 34px;
    top: 120px;
    width: 116px;
}

.hero-splash-shadow {
    background: radial-gradient(circle, rgba(57, 27, 13, 0.32) 0%, rgba(57, 27, 13, 0) 72%);
    bottom: -84px;
    height: 170px;
    left: 64px;
    width: 360px;
}

.hero-shot {
    bottom: -154px;
    filter: drop-shadow(0 36px 36px rgba(86, 45, 20, 0.38));
    height: auto;
    max-width: none;
    object-fit: contain;
    object-position: center;
    position: absolute;
    right: -116px;
    width: min(58vw, 860px);
}

.section-block {
    padding: 18px 8px 0;
}

.section-grid {
    align-items: center;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.section-copy,
.section-heading,
.subpage-copy,
.contact-card,
.form-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section-copy {
    padding: 36px;
}

.about-section .section-grid {
    align-items: end;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
}

.about-copy-card {
    background: rgba(31, 20, 17, 0.82);
    border-color: rgba(255, 235, 217, 0.09);
    justify-self: end;
    max-width: 500px;
}

.section-copy h2,
.section-heading h2,
.download-card h2,
.subpage-copy h1,
.contact-card h2 {
    font-size: clamp(2.3rem, 3vw, 3.3rem);
    margin-top: 8px;
}

.section-copy p,
.section-heading p,
.download-card p,
.subpage-copy p,
.contact-card p,
.footer-brand p,
.footer-column li,
.form-panel,
.contact-meta span {
    color: var(--muted);
}

.section-copy p + p {
    margin-top: 14px;
}

.feature-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 28px 0 32px;
}

.feature-list li {
    align-items: center;
    color: var(--text);
    display: flex;
    font-weight: 700;
    gap: 12px;
}

.feature-list i {
    align-items: center;
    background: rgba(239, 152, 80, 0.14);
    border-radius: 50%;
    color: var(--accent);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.visual-stack {
    min-height: 500px;
    position: relative;
}

.about-section .visual-stack {
    min-height: 560px;
}

.shape-cluster {
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.shape {
    background: var(--accent);
    position: absolute;
}

.shape-pill {
    border-radius: 999px;
    height: 86px;
    left: 26px;
    top: 176px;
    width: 168px;
}

.shape-dot {
    border-radius: 50%;
    height: 26px;
    left: 178px;
    top: 158px;
    width: 26px;
}

.shape-cloud {
    border-radius: 47% 53% 54% 46% / 44% 48% 52% 56%;
    height: 88px;
    left: 44px;
    top: 238px;
    width: 122px;
}

.stack-image {
    border-radius: 26px;
    box-shadow: var(--shadow);
    object-fit: cover;
    position: absolute;
}

.stack-image-top {
    height: 232px;
    left: 18px;
    top: 122px;
    width: 150px;
}

.stack-image-bottom {
    height: 220px;
    left: 88px;
    top: 212px;
    width: 206px;
}

.section-heading {
    margin: 0 auto;
    max-width: 690px;
    padding: 34px 40px;
    text-align: center;
}

.section-heading p {
    margin-top: 14px;
}

.services-layout {
    align-items: center;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px) minmax(0, 1fr);
    margin-top: 30px;
}

.service-column {
    display: grid;
    gap: 22px;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    min-height: 190px;
    padding: 28px 24px;
}

.service-card i {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.75;
}

.service-spotlight {
    align-self: stretch;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0.008) 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    min-height: 470px;
    overflow: visible;
    position: relative;
    padding: 18px;
}

.spotlight-orb {
    background: linear-gradient(180deg, rgba(239, 152, 80, 0.95) 0%, rgba(239, 152, 80, 0.45) 100%);
    border-radius: 50%;
    position: absolute;
}

.spotlight-orb-large {
    height: 126px;
    left: -18px;
    position: absolute;
    top: 248px;
    width: 126px;
}

.spotlight-orb-small {
    background: rgba(239, 152, 80, 0.8);
    bottom: 32px;
    height: 32px;
    left: 52px;
    width: 32px;
}

.service-stage {
    align-items: flex-end;
    background:
        radial-gradient(circle at top left, rgba(239, 152, 80, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(31, 19, 16, 0.72) 0%, rgba(22, 14, 12, 0.9) 100%);
    border-radius: 24px;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-stage img {
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.32));
    max-width: none;
    transform: translateY(20px);
    width: min(100%, 340px);
}

.download-card {
    background:
        radial-gradient(circle at top left, rgba(239, 152, 80, 0.16), transparent 32%),
        linear-gradient(180deg, #f7dbc3 0%, #f1cfb1 100%);
    border-radius: 30px;
    color: var(--text-dark);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1120px;
    padding: 52px 24px;
    position: relative;
    text-align: center;
}

.download-card h2 {
    margin-top: 10px;
}

.download-card p {
    margin: 14px auto 26px;
    max-width: 580px;
}

.download-decor {
    background: rgba(239, 152, 80, 0.28);
    border-radius: 999px;
    height: 84px;
    position: absolute;
    width: 84px;
}

.download-decor-left {
    left: 44px;
    top: -16px;
}

.download-decor-right {
    bottom: -18px;
    right: 56px;
}

.subpage-hero {
    align-items: stretch;
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    padding: 8px 4px 0;
}

.subpage-copy {
    padding: 42px;
}

.subpage-copy p {
    margin-top: 18px;
    max-width: 58ch;
}

.subpage-card {
    background: linear-gradient(180deg, rgba(239, 152, 80, 0.18) 0%, rgba(239, 152, 80, 0.08) 100%);
    border: 1px solid rgba(239, 152, 80, 0.16);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding: 36px;
}

.mini-label {
    color: var(--accent-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.subpage-card strong {
    font-family: 'Cairo', sans-serif;
    font-size: 1.8rem;
    line-height: 1.2;
}

.subpage-card p {
    color: var(--muted);
    line-height: 1.7;
}

.contact-hero .subpage-copy {
    min-height: 100%;
}

.contact-points {
    display: grid;
    gap: 18px;
}

.info-pill {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    display: flex;
    gap: 14px;
    padding: 22px;
}

.info-pill i {
    align-items: center;
    background: rgba(239, 152, 80, 0.14);
    border-radius: 50%;
    color: var(--accent);
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.info-pill strong,
.contact-meta strong {
    color: var(--text);
    display: block;
    font-size: 1rem;
}

.info-pill span {
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-section {
    padding: 18px 8px 0;
}

.contact-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.contact-card,
.form-panel {
    padding: 34px;
}

.contact-meta {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.contact-meta span {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form-help {
    color: rgba(252, 241, 230, 0.66);
    font-size: 0.95rem;
    line-height: 1.75;
}

.form-row {
    display: grid;
    gap: 10px;
}

.form-row label {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: var(--text);
    padding: 16px 18px;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-row textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(239, 152, 80, 0.48);
    box-shadow: 0 0 0 4px rgba(239, 152, 80, 0.08);
    outline: 0;
}

.alert-box {
    align-items: flex-start;
    border-radius: 20px;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding: 16px 18px;
}

.alert-success {
    background: rgba(111, 210, 154, 0.1);
    border: 1px solid rgba(111, 210, 154, 0.25);
    color: var(--success);
}

.alert-error {
    background: rgba(255, 144, 127, 0.1);
    border: 1px solid rgba(255, 144, 127, 0.22);
    color: #ffd3cb;
}

.alert-list {
    margin: 8px 0 0 18px;
}

.alert-list li + li {
    margin-top: 6px;
}

.subpage-section {
    display: grid;
    gap: 24px;
    padding: 18px 8px 0;
}

.subpage-section-head {
    margin: 0 auto;
    max-width: 760px;
    text-align: center;
}

.subpage-section-head h2,
.workflow-panel h2 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
}

.subpage-section-head p,
.workflow-panel p,
.workflow-stage-card p,
.subtle-note-card p,
.service-feature-card p,
.onboarding-step p,
.portal-role-card p,
.faq-card p {
    color: var(--muted);
    line-height: 1.75;
}

.subpage-section-head p {
    margin-top: 14px;
}

.workflow-track,
.service-feature-grid,
.contact-faq-grid {
    display: grid;
    gap: 18px;
}

.workflow-track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.workflow-stage-card,
.service-feature-card,
.portal-role-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 24px;
}

.workflow-stage-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(239, 152, 80, 0.14);
    color: var(--accent);
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
}

.workflow-stage-card h3,
.service-feature-card h3,
.portal-role-card strong,
.onboarding-step strong,
.subtle-note-card strong {
    color: var(--text);
    display: block;
    font-family: 'Cairo', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.workflow-split {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.workflow-panel,
.subtle-note-card,
.service-feature-card,
.portal-role-card,
.onboarding-step {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
}

.workflow-panel {
    padding: 34px;
}

.workflow-chip-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.workflow-chip {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(239, 152, 80, 0.1);
    color: var(--accent-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.subpage-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.subtle-note-stack,
.portal-role-list,
.onboarding-list {
    display: grid;
    gap: 14px;
}

.subtle-note-card,
.portal-role-card,
.onboarding-step {
    padding: 22px;
}

.service-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-feature-card i {
    color: var(--accent);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.contact-faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
    margin-top: 34px;
    padding: 10px 32px 24px;
}

.footer-grid {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    padding-top: 34px;
}

.footer-brand p {
    line-height: 1.75;
    margin-top: 16px;
    max-width: 320px;
}

.footer-column h3 {
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-column ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.footer-column li {
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--text);
}

.footer-column strong {
    color: var(--text);
    display: block;
    font-size: 0.95rem;
    margin-top: 4px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icons a {
    align-items: center;
    background: rgba(239, 152, 80, 0.1);
    border-radius: 50%;
    color: var(--accent);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    width: 42px;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    font-size: 0.9rem;
    gap: 16px;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
}

.plan-stack {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.plan-blade,
.plan-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.plan-blade {
    display: grid;
    gap: 6px;
    padding: 18px;
}

.plan-blade strong,
.plan-option-body strong,
.menu-kpi strong,
.product-body h3,
.checkout-order-row strong,
.status-step strong {
    color: var(--text);
}

.plan-blade span,
.plan-option-body span {
    color: var(--accent-soft);
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
}

.plan-blade p,
.plan-option-body small {
    color: var(--muted);
    line-height: 1.6;
}

.plan-selector {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-option-card {
    cursor: pointer;
    overflow: hidden;
}

.plan-option-card input {
    display: none;
}

.plan-option-body {
    display: grid;
    gap: 6px;
    min-height: 100%;
    padding: 18px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.plan-option-card input:checked + .plan-option-body {
    background: rgba(239, 152, 80, 0.12);
    box-shadow: inset 0 0 0 1px rgba(239, 152, 80, 0.3);
}

.menu-hero {
    align-items: end;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: 28px;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.55fr);
    padding: 36px;
}

.menu-hero-brand,
.checkout-brand-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.menu-brand-logo {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(239, 152, 80, 0.14);
}

.menu-brand-name {
    display: block;
    margin-top: 4px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
}

.menu-hero-copy h1 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    letter-spacing: -0.04em;
    margin-top: 8px;
}

.menu-hero-copy p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 54ch;
}

.menu-hero-note {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.menu-hero-note span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(239, 152, 80, 0.08);
    border: 1px solid rgba(239, 152, 80, 0.14);
    color: var(--accent-soft);
    font-weight: 700;
}

.menu-hero-meta {
    display: grid;
    gap: 14px;
}

.menu-kpi {
    background: rgba(239, 152, 80, 0.08);
    border: 1px solid rgba(239, 152, 80, 0.16);
    border-radius: 22px;
    display: grid;
    gap: 4px;
    padding: 18px;
}

.menu-kpi span {
    color: var(--muted);
}

.menu-hero-visual {
    min-height: 260px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(239, 152, 80, 0.14);
}

.menu-hero-shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-share-strip {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    margin-top: 22px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: 26px;
}

.menu-share-copy h2 {
    margin-top: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.menu-share-copy p {
    margin: 14px 0 18px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 52ch;
}

.menu-share-url {
    margin-bottom: 14px;
    word-break: break-word;
    color: var(--accent-soft);
    font-weight: 700;
}

.menu-share-card {
    display: grid;
    gap: 16px;
    justify-items: center;
    padding: 18px;
    border-radius: 24px;
    background: rgba(43, 24, 18, 0.58);
    border: 1px solid rgba(239, 152, 80, 0.14);
}

.menu-share-qr {
    width: 100%;
    max-width: 220px;
    border-radius: 22px;
    background: #f8f1e9;
    padding: 14px;
}

.menu-unavailable-card {
    align-content: center;
    min-height: 220px;
}

.menu-shell {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 340px;
    padding: 18px 8px 0;
}

.menu-main {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
}

.menu-categories,
.cart-panel,
.empty-state-card,
.menu-category-section,
.checkout-order-list,
.checkout-total-bar,
.status-step {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.menu-categories,
.cart-panel {
    padding: 22px;
}

.menu-categories h2,
.cart-panel h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.menu-category-list {
    display: grid;
    gap: 10px;
}

.menu-category-link {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    color: var(--text);
    font-weight: 700;
    padding: 12px 14px;
}

.menu-sections {
    display: grid;
    gap: 24px;
}

.menu-category-section {
    padding: 24px;
}

.menu-category-header p {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 12px;
}

.product-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
}

.product-media {
    background: rgba(255, 255, 255, 0.03);
    height: 190px;
    overflow: hidden;
}

.product-media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-placeholder {
    align-items: center;
    color: var(--accent);
    display: flex;
    font-size: 2.2rem;
    height: 100%;
    justify-content: center;
}

.product-body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.product-body p {
    color: var(--muted);
    line-height: 1.7;
    min-height: 72px;
}

.product-meta-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.product-meta-row strong {
    color: var(--accent-soft);
    font-family: 'Cairo', sans-serif;
    font-size: 1.15rem;
}

.product-meta-row span,
.cart-counter,
.cart-empty-state {
    color: var(--muted);
}

.cart-panel {
    display: grid;
    gap: 18px;
    height: fit-content;
    position: sticky;
    top: 94px;
}

.cart-panel-header,
.cart-panel-total,
.checkout-total-bar {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.cart-panel-body,
.checkout-order-list {
    display: grid;
    gap: 12px;
}

.cart-row,
.checkout-order-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
}

.cart-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
}

.cart-row-meta,
.checkout-order-row div {
    display: grid;
    gap: 4px;
}

.cart-row-meta strong,
.checkout-total-bar strong {
    color: var(--text);
}

.cart-row-meta span,
.checkout-order-row span {
    color: var(--muted);
    font-size: 0.92rem;
}

.cart-row-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.cart-row-actions button {
    align-items: center;
    background: rgba(239, 152, 80, 0.12);
    border: 0;
    border-radius: 50%;
    color: var(--accent-soft);
    display: inline-flex;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.cart-row-price {
    color: var(--accent-soft);
    font-family: 'Cairo', sans-serif;
}

.empty-state-card {
    padding: 30px;
    text-align: center;
}

.empty-state-card h2 {
    font-family: 'Cairo', sans-serif;
    margin-bottom: 12px;
}

.empty-state-card p {
    color: var(--muted);
    line-height: 1.7;
}

.checkout-order-list,
.checkout-total-bar {
    margin-top: 18px;
}

.checkout-total-bar {
    padding: 18px 20px;
}

.is-hidden {
    display: none;
}

.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.status-timeline-stack {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.status-step {
    display: grid;
    gap: 6px;
    padding: 18px;
}

.status-step span {
    color: var(--muted);
    line-height: 1.7;
}

.status-step.is-active {
    background: rgba(239, 152, 80, 0.1);
    border-color: rgba(239, 152, 80, 0.28);
}

.status-step.is-cancelled {
    background: rgba(255, 144, 127, 0.08);
    border-color: rgba(255, 144, 127, 0.16);
}

@media (max-width: 1100px) {
    .hero-card,
    .section-grid,
    .subpage-hero,
    .contact-layout,
    .workflow-split {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 0;
    }

    .hero-copy,
    .subpage-copy {
        max-width: none;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-shot {
        bottom: -96px;
        right: -36px;
        width: min(100%, 660px);
    }

    .services-layout,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .workflow-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-feature-grid,
    .contact-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-hero,
    .menu-share-strip,
    .menu-shell,
    .menu-main {
        grid-template-columns: 1fr;
    }

    .service-spotlight {
        grid-column: 1 / -1;
        min-height: 380px;
        order: -1;
    }

    .cart-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    body {
        padding: 0;
    }

    .site-shell {
        border-radius: 0;
    }

    .site-nav {
        padding: 18px 18px 14px;
    }

    .order-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 18px 8px;
    }

    .order-topbar-links {
        justify-content: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-panel {
        background: rgba(22, 15, 13, 0.98);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
        flex-direction: column;
        left: 18px;
        opacity: 0;
        padding: 18px;
        pointer-events: none;
        position: absolute;
        right: 18px;
        top: calc(100% + 10px);
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-open .nav-panel {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links,
    .nav-panel {
        width: 100%;
    }

    .nav-links {
        flex-direction: column;
    }

    .nav-links a,
    .nav-cta {
        width: 100%;
    }

    .page-content {
        gap: 26px;
        padding: 0 14px 18px;
    }

    .hero-card,
    .section-copy,
    .section-heading,
    .download-card,
    .subpage-copy,
    .subpage-card,
    .contact-card,
    .form-panel {
        border-radius: 24px;
    }

    .hero-card {
        gap: 8px;
        padding: 18px;
    }

    .hero-section {
        padding-bottom: 86px;
    }

    .hero-copy,
    .section-copy,
    .section-heading,
    .subpage-copy,
    .subpage-card,
    .contact-card,
    .form-panel {
        padding: 26px 22px;
    }

    .hero-copy h1 {
        max-width: 10ch;
    }

    .hero-copy {
        max-width: none;
        padding-bottom: 22px;
    }

    .hero-visual {
        min-height: 210px;
    }

    .hero-ring {
        border-width: 18px;
        height: 96px;
        left: 8px;
        top: 18px;
        width: 96px;
    }

    .hero-blob-one {
        height: 190px;
        right: 26px;
        top: 0;
        width: 170px;
    }

    .hero-blob-two {
        bottom: 18px;
        height: 72px;
        left: 6px;
        width: 72px;
    }

    .hero-splash-shadow {
        bottom: -72px;
        height: 92px;
        left: 26px;
        width: 250px;
    }

    .hero-metrics,
    .services-layout,
    .footer-grid,
    .workflow-track,
    .plan-selector,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .service-feature-grid,
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .menu-hero-brand,
    .checkout-brand-card {
        align-items: flex-start;
    }

    .visual-stack {
        min-height: 420px;
    }

    .about-section .section-grid {
        grid-template-columns: 1fr;
    }

    .about-copy-card {
        justify-self: stretch;
        max-width: none;
    }

    .stack-image-top {
        height: 220px;
        width: 160px;
    }

    .stack-image-bottom {
        height: 210px;
        left: 104px;
        top: 194px;
        width: 210px;
    }

    .service-spotlight {
        min-height: 320px;
    }

    .service-stage img {
        width: min(100%, 280px);
    }

    .site-footer {
        padding: 8px 18px 24px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .menu-hero,
    .menu-category-section,
    .menu-categories,
    .cart-panel {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .hero-copy h1,
    .section-copy h2,
    .section-heading h2,
    .download-card h2,
    .subpage-copy h1,
    .contact-card h2 {
        line-height: 1.02;
    }

    .hero-visual {
        min-height: 150px;
    }

    .hero-ring {
        height: 92px;
        width: 92px;
    }

    .hero-blob-one {
        height: 250px;
        width: 210px;
    }

    .hero-shot {
        bottom: -98px;
        right: -24px;
        width: 126%;
    }

    .hero-section {
        padding-bottom: 74px;
    }

    .hero-blob-one {
        height: 150px;
        right: 24px;
        width: 134px;
    }

    .hero-blob-two {
        bottom: 10px;
        height: 58px;
        width: 58px;
    }

    .hero-ring {
        height: 82px;
        top: 8px;
        width: 82px;
    }

    .hero-splash-shadow {
        bottom: -64px;
        left: 16px;
        width: 220px;
    }

    .shape-pill {
        width: 170px;
    }

    .shape-cloud {
        width: 126px;
    }

    .stack-image-bottom {
        left: 84px;
        width: 180px;
    }

    .download-card {
        padding: 40px 20px;
    }
}

.platform-note-card,
.dashboard-profile-card,
.dashboard-stat-card,
.dashboard-panel,
.dashboard-category-card,
.dashboard-order-card {
    background: rgba(43, 24, 18, 0.72);
    border: 1px solid rgba(239, 152, 80, 0.14);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(10, 5, 4, 0.18);
}

.platform-note-card {
    margin-top: 24px;
    padding: 20px;
}

.platform-note-card p {
    margin: 10px 0 0;
}

.dashboard-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 24px;
    grid-template-columns: 320px minmax(0, 1fr);
    padding: 28px;
    min-height: 100vh;
}

.dashboard-sidebar {
    position: sticky;
    top: 22px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 26px;
    background: rgba(35, 20, 16, 0.94);
    border: 1px solid rgba(239, 152, 80, 0.14);
    border-radius: 30px;
    min-height: calc(100vh - 56px);
}

.dashboard-brand {
    width: fit-content;
}

.dashboard-profile-card {
    padding: 18px 18px 20px;
}

.dashboard-profile-card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
}

.dashboard-profile-card p {
    margin: 8px 0 0;
    color: rgba(252, 241, 230, 0.7);
}

.dashboard-nav {
    display: grid;
    gap: 10px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: rgba(252, 241, 230, 0.78);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.dashboard-nav a:hover,
.dashboard-nav a.is-active {
    color: #ffffff;
    border-color: rgba(239, 152, 80, 0.34);
    transform: translateX(4px);
}

.dashboard-nav i {
    color: var(--accent);
    width: 18px;
    text-align: center;
}

.dashboard-sidebar-actions {
    margin-top: auto;
    display: grid;
    gap: 12px;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.dashboard-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    padding: 8px 4px 0;
}

.dashboard-topbar h1 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 0.96;
}

.dashboard-topbar-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 10px;
}

.dashboard-topbar-links a {
    color: rgba(252, 241, 230, 0.74);
    font-weight: 700;
}

.dashboard-alert {
    margin: 0;
}

.dashboard-banner {
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(239, 152, 80, 0.16);
}

.dashboard-banner strong {
    display: block;
    margin-bottom: 6px;
}

.dashboard-banner p {
    margin: 0;
}

.dashboard-banner.warning {
    background: linear-gradient(135deg, rgba(239, 152, 80, 0.18), rgba(69, 35, 21, 0.52));
}

.dashboard-banner.info {
    background: linear-gradient(135deg, rgba(100, 177, 255, 0.16), rgba(28, 42, 71, 0.48));
}

.dashboard-stats-grid,
.dashboard-panel-grid {
    display: grid;
    gap: 18px;
}

.dashboard-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-panel-grid-tight {
    align-items: start;
}

.dashboard-stat-card {
    padding: 22px;
}

.dashboard-stat-card span {
    display: block;
    color: rgba(252, 241, 230, 0.64);
    font-size: 0.95rem;
}

.dashboard-stat-card strong {
    display: block;
    margin: 14px 0 10px;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 0.94;
}

.dashboard-stat-card p {
    margin: 0;
    color: rgba(252, 241, 230, 0.66);
}

.dashboard-panel {
    padding: 24px;
}

.dashboard-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dashboard-panel-head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.dashboard-panel-head a {
    color: var(--accent);
    font-weight: 700;
}

.dashboard-action-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-action-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(239, 152, 80, 0.12);
}

.dashboard-action-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(239, 152, 80, 0.24), rgba(239, 152, 80, 0.12));
    color: var(--accent);
}

.dashboard-action-card strong,
.dashboard-summary-row strong {
    display: block;
}

.dashboard-action-card p,
.dashboard-category-head p,
.dashboard-mini-row p,
.dashboard-order-head p,
.dashboard-empty-cell,
.dashboard-empty-state {
    color: rgba(252, 241, 230, 0.68);
}

.dashboard-action-card p,
.dashboard-category-head p,
.dashboard-mini-row p,
.dashboard-order-head p {
    margin: 8px 0 0;
}

.dashboard-summary-stack {
    display: grid;
    gap: 14px;
}

.dashboard-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(239, 152, 80, 0.1);
}

.dashboard-summary-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.dashboard-summary-row span {
    color: rgba(252, 241, 230, 0.62);
}

.dashboard-table-wrap {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 14px 10px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(239, 152, 80, 0.09);
}

.dashboard-table th {
    color: rgba(252, 241, 230, 0.58);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-empty-cell,
.dashboard-empty-state {
    padding: 18px 0;
}

.dashboard-table-subtext {
    margin-top: 4px;
    color: rgba(252, 241, 230, 0.54);
    font-size: 0.88rem;
}

.dashboard-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-badge.status-pending,
.dashboard-badge.status-pending_payment {
    background: rgba(239, 152, 80, 0.18);
    color: #ffd0aa;
}

.dashboard-badge.status-preparing,
.dashboard-badge.status-approved,
.dashboard-badge.status-active {
    background: rgba(67, 160, 71, 0.18);
    color: #c8f6cc;
}

.dashboard-badge.status-completed {
    background: rgba(95, 170, 255, 0.18);
    color: #d7ebff;
}

.dashboard-badge.status-cancelled,
.dashboard-badge.status-rejected,
.dashboard-badge.status-expired {
    background: rgba(255, 93, 93, 0.18);
    color: #ffd0d0;
}

.dashboard-badge.neutral {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(252, 241, 230, 0.82);
}

.dashboard-toolbar,
.dashboard-filter-bar,
.dashboard-inline-fields,
.dashboard-inline-actions,
.dashboard-inline-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dashboard-toolbar {
    align-items: center;
}

.dashboard-filter-bar {
    margin-bottom: 20px;
}

.dashboard-filter-bar input,
.dashboard-filter-bar select,
.dashboard-select,
.dashboard-inline-form select {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(239, 152, 80, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.dashboard-filter-bar input,
.dashboard-form input,
.dashboard-form textarea,
.dashboard-form select {
    width: 100%;
}

.dashboard-form {
    display: grid;
    gap: 16px;
}

.dashboard-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.dashboard-form input,
.dashboard-form textarea,
.dashboard-form select {
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(239, 152, 80, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.dashboard-form textarea {
    min-height: 120px;
    resize: vertical;
}

.dashboard-inline-fields > * {
    flex: 1 1 220px;
}

.dashboard-form-wide {
    max-width: 920px;
}

.dashboard-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.dashboard-check input {
    width: auto;
    min-height: auto;
}

.dashboard-plan-option {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(239, 152, 80, 0.12);
}

.dashboard-plan-option input {
    width: auto;
    min-height: auto;
}

.dashboard-category-stack,
.dashboard-mini-table,
.dashboard-order-items {
    display: grid;
    gap: 12px;
}

.dashboard-category-card {
    padding: 18px;
}

.dashboard-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(239, 152, 80, 0.1);
}

.dashboard-details summary {
    cursor: pointer;
    color: var(--accent-soft);
    font-weight: 800;
    list-style: none;
}

.dashboard-details summary::-webkit-details-marker {
    display: none;
}

.dashboard-details[open] summary {
    margin-bottom: 14px;
}

.dashboard-category-head,
.dashboard-mini-row,
.dashboard-order-head,
.dashboard-order-meta,
.dashboard-order-footer {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.dashboard-category-head,
.dashboard-order-head {
    align-items: flex-start;
}

.dashboard-mini-row,
.dashboard-order-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.dashboard-product-item {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.dashboard-product-item-head {
    display: grid;
    gap: 14px;
    grid-template-columns: 86px minmax(0, 1fr);
    align-items: start;
}

.dashboard-product-media {
    width: 86px;
    height: 86px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-product-media img,
.dashboard-product-media .product-placeholder {
    width: 100%;
    height: 100%;
}

.dashboard-product-media img {
    object-fit: cover;
}

.dashboard-product-media .product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-product-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.dashboard-product-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(252, 241, 230, 0.64);
}

.dashboard-mini-meta {
    display: grid;
    gap: 4px;
    text-align: right;
}

.dashboard-order-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-order-card {
    padding: 18px;
}

.dashboard-order-meta {
    margin: 14px 0;
    color: rgba(252, 241, 230, 0.62);
    font-size: 0.92rem;
}

.dashboard-order-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.dashboard-inline-form {
    align-items: center;
}

.btn-small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 0.86rem;
}

@media (max-width: 1180px) {
    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: static;
        min-height: auto;
    }

    .dashboard-stats-grid,
    .dashboard-panel-grid,
    .dashboard-order-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .dashboard-shell {
        padding: 18px;
    }

    .dashboard-topbar,
    .dashboard-panel-head,
    .dashboard-category-head,
    .dashboard-order-head,
    .dashboard-order-footer {
        flex-direction: column;
    }

    .dashboard-stats-grid,
    .dashboard-panel-grid,
    .dashboard-order-grid,
    .dashboard-action-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-table {
        min-width: 640px;
    }

    .dashboard-mini-row {
        flex-direction: column;
    }
}

.dashboard-manual-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
}

.dashboard-manual-catalog,
.dashboard-manual-section {
    display: grid;
    gap: 18px;
}

.dashboard-cart-card {
    display: grid;
    gap: 18px;
    align-self: start;
    padding: 24px;
    position: sticky;
    top: 22px;
    background: rgba(43, 24, 18, 0.72);
    border: 1px solid rgba(239, 152, 80, 0.14);
    border-radius: 28px;
}

.dashboard-cart-summary,
.dashboard-cart-list {
    display: grid;
    gap: 12px;
}

.dashboard-cart-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.dashboard-cart-row span {
    display: block;
    margin-top: 4px;
    color: rgba(252, 241, 230, 0.62);
}

.dashboard-cart-qty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    font-weight: 800;
}

.dashboard-product-card .product-body {
    display: grid;
    gap: 14px;
}

.dashboard-kitchen-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-kitchen-card {
    padding: 20px;
    background: rgba(52, 29, 22, 0.8);
    border: 1px solid rgba(239, 152, 80, 0.16);
    border-radius: 24px;
}

.dashboard-kitchen-time {
    margin: 14px 0 18px;
    color: rgba(252, 241, 230, 0.62);
}

.dashboard-kitchen-items {
    display: grid;
    gap: 12px;
}

.dashboard-kitchen-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.dashboard-kitchen-item p {
    margin: 4px 0 0;
    color: rgba(252, 241, 230, 0.64);
}

.dashboard-kitchen-media {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-kitchen-media img,
.dashboard-kitchen-media .product-placeholder {
    width: 100%;
    height: 100%;
}

.dashboard-kitchen-media img {
    object-fit: cover;
}

.dashboard-kitchen-media .product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-filter-note {
    color: rgba(252, 241, 230, 0.66);
    font-size: 0.95rem;
}

.dashboard-report-list,
.dashboard-user-grid {
    display: grid;
    gap: 14px;
}

.dashboard-user-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(43, 24, 18, 0.72);
    border: 1px solid rgba(239, 152, 80, 0.14);
}

.dashboard-asset-preview {
    width: 100%;
    max-width: 160px;
    border-radius: 20px;
    margin-top: 14px;
    object-fit: cover;
}

.dashboard-asset-preview-wide {
    max-width: none;
    aspect-ratio: 16 / 10;
}

.dashboard-qr-card {
    align-content: start;
}

.dashboard-qr-copy {
    margin-top: 10px;
    color: rgba(252, 241, 230, 0.72);
    line-height: 1.7;
}

.dashboard-qr-preview {
    width: min(100%, 240px);
    margin-top: 16px;
    border-radius: 22px;
    background: #f8f1e9;
    padding: 14px;
}

.dashboard-action-stack {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

@media (max-width: 1240px) {
    .dashboard-manual-grid,
    .dashboard-kitchen-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-cart-card {
        position: static;
    }
}

@media (max-width: 900px) {
    .dashboard-kitchen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .dashboard-kitchen-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-cart-row,
    .dashboard-kitchen-item {
        grid-template-columns: 1fr;
    }

    .dashboard-product-item-head {
        grid-template-columns: 1fr;
    }
}

