/* ─── Vazirmatn Font ─────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Vazirmatn';
    src: url('/assets/fonts/Vazirmatn-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn';
    src: url('/assets/fonts/Vazirmatn-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Vazirmatn';
    src: url('/assets/fonts/Vazirmatn-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
    --navy:          #1B3A6B;
    --navy-dark:     #12264a;
    --navy-light:    #2a4f8f;
    --orange:        #F47C1F;
    --orange-dark:   #d96a0a;
    --white:         #ffffff;
    --grey-bg:       #F5F5F5;
    --grey-border:   #e4e7ef;
    --text-dark:     #222222;
    --text-mid:      #555555;
    --text-light:    #888888;
    --radius-sm:     8px;
    --radius-md:     14px;
    --radius-lg:     22px;
    --shadow-card:   0 1px 3px rgba(27,58,107,.07), 0 6px 20px rgba(27,58,107,.09);
    --shadow-hover:  0 4px 16px rgba(27,58,107,.14), 0 16px 48px rgba(27,58,107,.13);
    --shadow-nav:    0 4px 24px rgba(27,58,107,.18);
    --transition:    all .22s cubic-bezier(.4,0,.2,1);
    --container:     1200px;

    /* Type scale — capped per standards */
    --fs-hero:   clamp(30px, 5vw, 52px);
    --fs-h2:     clamp(24px, 3.5vw, 34px);
    --fs-h3:     20px;
    --fs-body:   16px;
    --fs-small:  14px;
    --fs-xs:     13px;
    --fs-price:  22px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    font-size: var(--fs-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.9;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: var(--fs-body); }
::selection { background: rgba(244,124,31,.18); color: var(--text-dark); }
*:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}
.section { padding: clamp(56px, 8vw, 100px) 0; }

/* ─── Scroll Reveal ──────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 3px solid var(--orange);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-nav); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 72px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    flex-shrink: 0;
}
.header-logo svg { width: 38px; height: 38px; }

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
}
.header-nav a {
    color: rgba(255,255,255,.88);
    padding: 8px 14px;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    display: block;
}
.header-nav a:hover,
.header-nav a.active {
    background: rgba(255,255,255,.12);
    color: var(--orange);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-phone {
    color: rgba(255,255,255,.8);
    font-size: 13px;
    white-space: nowrap;
    direction: ltr;
}
.header-search-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.8);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.header-search-btn:hover { color: var(--orange); background: rgba(255,255,255,.08); }
.header-search-btn svg { width: 22px; height: 22px; }

.btn-order-fast {
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-order-fast:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(244,124,31,.4);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    flex-direction: column;
    gap: 5px;
    transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: var(--transition);
}

/* ─── Mobile Menu ────────────────────────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 75px;
    right: 0;
    width: 280px;
    height: calc(100vh - 75px);
    background: var(--navy-dark);
    z-index: 999;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    padding: 20px 0;
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
    display: block;
    color: rgba(255,255,255,.88);
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); background: rgba(255,255,255,.05); }
.mobile-menu .btn-order-fast {
    margin: 20px 24px 0;
    display: block;
    text-align: center;
    padding: 14px;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 998;
    display: none;
}
.mobile-overlay.open { display: block; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,124,31,.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.65);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--white);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-orange-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 50px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}
.btn-orange-outline:hover { background: var(--orange); color: var(--white); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(500px, 65vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg img { animation: none; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to left,
        rgba(18,38,74,.95) 0%,
        rgba(27,58,107,.80) 40%,
        rgba(27,58,107,.30) 75%,
        rgba(27,58,107,.05) 100%
    );
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 580px; padding: clamp(40px, 6vw, 80px) 0; }
.hero-eyebrow {
    color: var(--orange);
    font-size: var(--fs-small);
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-eyebrow svg { width: 18px; height: 18px; }
.hero h1 {
    color: var(--white);
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 18px;
}
.hero-subtitle {
    color: rgba(255,255,255,.82);
    font-size: 18px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── Brand Strip ────────────────────────────────────────────────────────── */
.brands-strip {
    background: var(--white);
    padding: 22px 0;
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
}
.brands-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.brands-strip-label {
    color: var(--text-light);
    font-size: var(--fs-small);
    margin-inline-end: 8px;
    white-space: nowrap;
}
.brand-chip {
    background: var(--grey-bg);
    color: var(--navy);
    border: 1.5px solid var(--grey-border);
    border-radius: 50px;
    padding: 9px 22px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    cursor: default;
}
.brand-chip:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-1px);
}

/* ─── Section Header ─────────────────────────────────────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.eyebrow {
    color: var(--orange);
    font-size: var(--fs-xs);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}
.eyebrow-bar {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title {
    font-size: var(--fs-h2);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 10px;
}
.section-desc {
    color: var(--text-mid);
    font-size: var(--fs-body);
    max-width: 560px;
    line-height: 1.8;
}

/* ─── Product Cards ──────────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(27,58,107,.05);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.product-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--grey-bg);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}
.product-card-body { padding: 16px 18px 18px; }
.product-brand {
    color: var(--text-light);
    font-size: var(--fs-xs);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.45;
}
.product-price {
    font-size: var(--fs-price);
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 14px;
    display: block;
}
.btn-order-card {
    display: block;
    width: 100%;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-family: inherit;
}
.btn-order-card:hover { background: var(--orange-dark); }

/* ─── Model Filter ───────────────────────────────────────────────────────── */
.model-filter {
    background: var(--white);
    padding: 18px 0;
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
}
.model-filter-inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    align-items: center;
    scrollbar-width: none;
}
.model-filter-inner::-webkit-scrollbar { display: none; }
.model-chip {
    background: transparent;
    border: 1.5px solid var(--grey-border);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: var(--fs-small);
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    color: var(--text-mid);
    font-family: inherit;
}
.model-chip:hover,
.model-chip.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ─── Services Section ───────────────────────────────────────────────────── */
.services-section {
    background: var(--navy);
    padding: clamp(56px, 8vw, 100px) 0;
}
.services-section .section-title { color: var(--white); }
.services-section .eyebrow { color: var(--orange); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.service-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}
.service-card:hover {
    background: rgba(255,255,255,.11);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.18);
}
.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244,124,31,.12);
    border-radius: var(--radius-md);
}
.service-icon svg { width: 36px; height: 36px; }
.service-title {
    color: var(--white);
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}
.service-desc {
    color: rgba(255,255,255,.62);
    font-size: 15px;
    line-height: 1.9;
}

/* ─── Stats Section ──────────────────────────────────────────────────────── */
.stats-section {
    background: var(--navy-dark);
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,.07);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
    display: block;
    margin-bottom: 6px;
    line-height: 1.2;
}
.stat-label {
    color: rgba(255,255,255,.68);
    font-size: var(--fs-small);
}

/* ─── Articles Section ───────────────────────────────────────────────────── */
.articles-section { background: var(--grey-bg); }
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.article-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(27,58,107,.05);
}
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.article-card-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--grey-bg);
}
.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 20px 22px 22px; }
.article-date {
    color: var(--text-light);
    font-size: var(--fs-xs);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-date svg { width: 14px; height: 14px; }
.article-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.5;
}
.article-excerpt {
    color: var(--text-mid);
    font-size: var(--fs-small);
    line-height: 1.85;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-link {
    color: var(--navy);
    font-size: var(--fs-small);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.article-link:hover { color: var(--orange); }
.article-link svg { width: 16px; height: 16px; }

/* ─── CTA Band ───────────────────────────────────────────────────────────── */
.cta-band {
    background: var(--orange);
    padding: 56px 0;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-band h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}
.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: inherit;
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: clamp(48px, 7vw, 80px) 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}
.footer-logo svg { width: 36px; height: 36px; }
.footer-tagline {
    color: rgba(255,255,255,.62);
    font-size: var(--fs-small);
    line-height: 1.85;
    max-width: 290px;
}
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.68);
    transition: var(--transition);
    cursor: pointer;
}
.social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}
.social-icon svg { width: 18px; height: 18px; }
.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,.62);
    font-size: var(--fs-small);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { color: var(--orange); }
.footer-links a svg { width: 14px; height: 14px; opacity: .6; }
.footer-contact li {
    color: rgba(255,255,255,.62);
    font-size: var(--fs-small);
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
}
.footer-contact .contact-icon {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact a { color: rgba(255,255,255,.78); transition: var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.42); font-size: var(--fs-xs); }

/* ─── Interior Pages ─────────────────────────────────────────────────────── */
.page-hero {
    background: var(--navy);
    padding: 56px 0;
    margin-bottom: 0;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.72); font-size: 16px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.55);
    margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.72); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { opacity: .4; }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-weight: 700;
    font-size: var(--fs-small);
    color: var(--text-dark);
    margin-bottom: 7px;
}
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--grey-border);
    border-radius: var(--radius-sm);
    font-size: var(--fs-body);
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    direction: rtl;
}
.form-control:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,58,107,.08);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-hint { font-size: var(--fs-xs); color: var(--text-light); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert-success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); color: #1a7a42; }
.alert-error   { background: rgba(231,76,60,.1);  border: 1px solid rgba(231,76,60,.25); color: #c0392b; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ─── Tables ─────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); border: 1px solid var(--grey-border); }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-small);
}
.data-table th {
    background: var(--navy);
    color: var(--white);
    padding: 13px 16px;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}
.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--grey-border);
    color: var(--text-dark);
    vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(27,58,107,.03); }
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.badge-orange { background: rgba(244,124,31,.12); color: var(--orange-dark); }
.badge-navy   { background: rgba(27,58,107,.1);   color: var(--navy); }
.badge-green  { background: rgba(39,174,96,.1);   color: #1a7a42; }
.badge-red    { background: rgba(231,76,60,.1);   color: #c0392b; }

/* ─── Admin Layout ───────────────────────────────────────────────────────── */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--grey-bg);
}
.admin-sidebar {
    width: 240px;
    background: var(--navy-dark);
    padding: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}
.admin-sidebar-brand {
    padding: 20px 20px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.admin-sidebar-nav { padding: 16px 12px; flex: 1; }
.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.65);
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 3px;
}
.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    background: rgba(255,255,255,.1);
    color: var(--white);
}
.admin-sidebar-nav a svg { width: 18px; height: 18px; opacity: .8; }
.admin-main { flex: 1; padding: 28px; overflow-x: hidden; }
.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
}
.admin-topbar h1 { font-size: 22px; font-weight: 700; color: var(--text-dark); }
.admin-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 24px;
    margin-bottom: 24px;
}
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.admin-stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.admin-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.admin-stat-icon.navy  { background: rgba(27,58,107,.1);  color: var(--navy); }
.admin-stat-icon.orange { background: rgba(244,124,31,.1); color: var(--orange); }
.admin-stat-icon svg { width: 24px; height: 24px; }
.admin-stat-num { font-size: 24px; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.admin-stat-label { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* Admin login */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-bg);
}
.admin-login-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 32px rgba(27,58,107,.12);
    padding: 40px 36px;
    width: 100%;
    max-width: 400px;
}
.admin-login-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}
.admin-login-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    font-weight: 700;
    border: 1.5px solid var(--grey-border);
    color: var(--text-mid);
    transition: var(--transition);
    text-decoration: none;
}
.pagination a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination span.current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── 404 Page ───────────────────────────────────────────────────────────── */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}
.page-404 .num-404 {
    font-size: clamp(80px, 15vw, 140px);
    font-weight: 700;
    color: var(--grey-border);
    line-height: 1;
    margin-bottom: 24px;
}
.page-404 h2 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.page-404 p { color: var(--text-mid); margin-bottom: 28px; }

/* ─── Gallery Grid ───────────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--grey-bg);
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─── Price Table ────────────────────────────────────────────────────────── */
.price-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── About Page ─────────────────────────────────────────────────────────── */
.about-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/7;
    margin-bottom: 48px;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-features { display: grid; gap: 20px; margin-top: 28px; }
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feature-icon {
    width: 44px; height: 44px;
    background: rgba(244,124,31,.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange); flex-shrink: 0;
}
.about-feature-icon svg { width: 22px; height: 22px; }
.about-feature-title { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.about-feature-desc  { font-size: var(--fs-small); color: var(--text-mid); line-height: 1.8; }

/* ─── Contact Page ───────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-info-list { display: grid; gap: 20px; }
.contact-info-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px; background: var(--grey-bg);
    border-radius: var(--radius-md);
}
.contact-info-icon {
    width: 42px; height: 42px;
    background: rgba(27,58,107,.1); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: var(--fs-xs); color: var(--text-light); margin-bottom: 4px; font-weight: 700; }
.contact-info-val { font-size: var(--fs-small); color: var(--text-dark); font-weight: 500; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .header-phone { display: none; }
    .about-grid   { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .footer-grid .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .hamburger  { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-outline { width: 100%; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .admin-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; }
}

@media (max-width: 560px) {
    .products-grid  { grid-template-columns: 1fr; }
    .articles-grid  { grid-template-columns: 1fr; }
    .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer-grid    { grid-template-columns: 1fr; }
    .brands-strip-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
    .brand-chip { flex-shrink: 0; }
}

@media (max-width: 390px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .admin-stats-grid { grid-template-columns: 1fr; }
}

/* ─── Utility ─────────────────────────────────────────────────────────────── */
.text-orange  { color: var(--orange) !important; }
.text-navy    { color: var(--navy)   !important; }
.fw-700       { font-weight: 700; }
.mb-0         { margin-bottom: 0; }
.mt-24        { margin-top: 24px; }
.text-center  { text-align: center; }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
