/* ═══════════════════════════════════════════════════════
   RAYAN SHABAKE NO ANDISH — Premium Design System
   RTL / Vazirmatn / Navy palette
═══════════════════════════════════════════════════════ */

/* ── Fonts ────────────────────────────────────────────── */
@font-face { font-family:'Vazirmatn'; src:url('/assets/fonts/Vazirmatn-300.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('/assets/fonts/Vazirmatn-400.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('/assets/fonts/Vazirmatn-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('/assets/fonts/Vazirmatn-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('/assets/fonts/Vazirmatn-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('/assets/fonts/Vazirmatn-800.woff2') format('woff2'); font-weight:800; font-style:normal; font-display:swap; }
@font-face { font-family:'Vazirmatn'; src:url('/assets/fonts/Vazirmatn-900.woff2') format('woff2'); font-weight:900; font-style:normal; font-display:swap; }

/* ── Tokens ───────────────────────────────────────────── */
:root {
    --navy:       #0C1A2E;
    --navy-mid:   #142236;
    --navy-light: #1E3352;
    --slate:      #6B7F94;
    --slate-light:#8899AA;
    --ash:        #F2F4F7;
    --ash-dark:   #E4E8EE;
    --blue:       #2B5EAD;
    --blue-hover: #2251A0;
    --blue-light: #3A72C8;
    --charcoal:   #1A2333;
    --white:      #FFFFFF;
    --text:       #1A2B3C;
    --text-muted: #6B7F94;
    --border:     #DDE2EA;
    --shadow-sm:  0 2px 8px rgba(12,26,46,.08);
    --shadow-md:  0 4px 20px rgba(12,26,46,.12);
    --shadow-lg:  0 8px 40px rgba(12,26,46,.18);
    --shadow-xl:  0 16px 64px rgba(12,26,46,.24);
    --radius:     10px;
    --radius-lg:  16px;
    --transition: 220ms cubic-bezier(.4,0,.2,1);
    --max-w:      1200px;
    --header-h:   76px;
}

/* ── Reset ────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
    font-family:'Vazirmatn',system-ui,sans-serif;
    direction:rtl;
    background:var(--white);
    color:var(--text);
    line-height:1.85;
    -webkit-font-smoothing:antialiased;
}
body.page-home {
    --home-bg-shift: 0;
    position:relative;
    isolation:isolate;
    background:
        linear-gradient(140deg, rgba(12,26,46,.92), rgba(20,34,54,.84) 46%, rgba(43,94,173,.68)),
        var(--navy);
}
body.page-home::before {
    content:'';
    position:fixed;
    inset:-42px;
    z-index:0;
    pointer-events:none;
    background:
        linear-gradient(rgba(12,26,46,.62), rgba(12,26,46,.74)),
        url('/assets/img/hero.webp') center calc(50% + (var(--home-bg-shift) * 120px)) / cover no-repeat;
    filter:blur(18px) saturate(1.14) hue-rotate(calc(var(--home-bg-shift) * 16deg));
    transform:scale(1.08);
}
body.page-home::after {
    content:'';
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
    background:
        linear-gradient(180deg, rgba(12,26,46,.24), rgba(43,94,173,.18) 42%, rgba(12,26,46,.4)),
        radial-gradient(circle at calc(72% - (var(--home-bg-shift) * 28%)) 22%, rgba(58,114,200,.2), transparent 34%),
        radial-gradient(circle at calc(18% + (var(--home-bg-shift) * 30%)) 78%, rgba(255,255,255,.12), transparent 32%);
}
body.page-home > * {
    position:relative;
    z-index:1;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ── Container ────────────────────────────────────────── */
.container {
    max-width:var(--max-w);
    margin-inline:auto;
    padding-inline:clamp(1rem,4vw,2.5rem);
}

/* ── SVG Icons ────────────────────────────────────────── */
svg { display:inline-block; vertical-align:middle; }
.icon-xs { width:14px; height:14px; }
.icon-sm { width:18px; height:18px; }
.icon-md { width:24px; height:24px; }
.icon-lg { width:32px; height:32px; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.75rem 1.75rem;
    border-radius:50px;
    font-family:'Vazirmatn',sans-serif;
    font-weight:600;
    font-size:.95rem;
    transition:var(--transition);
    cursor:pointer;
    white-space:nowrap;
    line-height:1.2;
    border:2px solid transparent;
}
.btn-primary {
    background:var(--blue);
    color:var(--white);
    border-color:var(--blue);
    box-shadow:0 4px 16px rgba(43,94,173,.3);
}
.btn-primary:hover, .btn-primary:focus-visible {
    background:var(--blue-hover);
    border-color:var(--blue-hover);
    box-shadow:0 6px 24px rgba(43,94,173,.4);
    transform:translateY(-1px);
}
.btn-outline {
    background:transparent;
    color:var(--blue);
    border-color:var(--blue);
}
.btn-outline:hover, .btn-outline:focus-visible {
    background:var(--blue);
    color:var(--white);
    transform:translateY(-1px);
}
.btn-ghost {
    background:rgba(255,255,255,.12);
    color:var(--white);
    border-color:rgba(255,255,255,.3);
    backdrop-filter:blur(8px);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
    background:rgba(255,255,255,.2);
    border-color:rgba(255,255,255,.5);
}
.btn-sm { padding:.5rem 1.25rem; font-size:.875rem; }
.btn-lg { padding:.9rem 2.25rem; font-size:1.05rem; }
.btn-full { width:100%; justify-content:center; }
.btn:focus-visible { outline:3px solid var(--blue); outline-offset:3px; }

/* ── Section Helpers ──────────────────────────────────── */
.section-header {
    text-align:center;
    margin-bottom:3.5rem;
}
.section-tag {
    display:inline-block;
    background:rgba(43,94,173,.1);
    color:var(--blue);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.08em;
    padding:.35rem 1rem;
    border-radius:50px;
    margin-bottom:1rem;
    text-transform:uppercase;
}
.section-title {
    font-size:clamp(1.6rem,3vw,2.25rem);
    font-weight:800;
    color:var(--navy);
    line-height:1.35;
    margin-bottom:.75rem;
}
.section-sub {
    color:var(--slate);
    font-size:1.05rem;
    max-width:620px;
    margin-inline:auto;
    line-height:1.8;
    text-wrap:balance;
}
.section-cta {
    text-align:center;
    margin-top:3rem;
}

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
    position:fixed;
    top:0;
    inset-inline:0;
    z-index:1000;
    height:var(--header-h);
    background:rgba(12,26,46,.95);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.07);
    transition:box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
    box-shadow:var(--shadow-lg);
    background:rgba(12,26,46,.98);
}
.header-inner {
    height:100%;
    display:flex;
    align-items:center;
    gap:2rem;
}

/* Logo */
.logo {
    display:flex;
    align-items:center;
    gap:.75rem;
    flex-shrink:0;
    text-decoration:none;
}
.logo-mark {
    width:40px;
    height:40px;
    background:var(--blue);
    color:var(--white);
    border-radius:10px;
    display:grid;
    place-items:center;
    font-weight:900;
    font-size:1.25rem;
    flex-shrink:0;
}
.logo-text {
    display:flex;
    flex-direction:column;
    line-height:1.2;
}
.logo-brand {
    font-weight:800;
    font-size:1.15rem;
    color:var(--white);
}
.logo-sub {
    font-size:.7rem;
    color:var(--slate-light);
    letter-spacing:.04em;
}
.logo-light .logo-brand { color:var(--white); }

/* Home identity: keep the Rayan mark in the site's signature navy. */
.page-home .site-header .logo-mark {
    background:var(--navy);
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 6px 18px rgba(0,0,0,.2);
}

/* Nav */
.main-nav { margin-inline-start:auto; }
.nav-sticker { display:none; }
.nav-list {
    display:flex;
    align-items:center;
    gap:.25rem;
}
.nav-link {
    padding:.5rem .875rem;
    border-radius:8px;
    font-size:.9rem;
    font-weight:500;
    color:rgba(255,255,255,.75);
    transition:var(--transition);
}
.nav-link:hover, .nav-link.active {
    color:var(--white);
    background:rgba(255,255,255,.1);
}
.nav-link.active { color:var(--blue-light); }

/* Header actions */
.header-actions {
    display:flex;
    align-items:center;
    gap:1rem;
    flex-shrink:0;
}
.header-phone {
    display:flex;
    align-items:center;
    gap:.5rem;
    color:rgba(255,255,255,.65);
    font-size:.85rem;
    transition:var(--transition);
}
.header-phone:hover { color:var(--white); }
.header-phone svg { color:var(--blue-light); }

/* Hamburger */
.nav-toggle {
    display:none;
    width:40px;
    height:40px;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:var(--white);
    background:rgba(255,255,255,.08);
    flex-shrink:0;
    margin-inline-start:auto;
}
.icon-close { display:none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display:none; }
.nav-toggle[aria-expanded="true"] .icon-close { display:block; }

/* Overlay */
.nav-overlay {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:999;
    opacity:0;
    pointer-events:none;
    transition:opacity var(--transition);
}
.nav-overlay.open { opacity:1; pointer-events:auto; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:var(--navy);
    padding-top:var(--header-h);
}
.page-home .hero {
    background:transparent;
}
.hero-bg {
    position:absolute;
    inset:0;
}
.hero-img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    opacity:.35;
}
.page-home .hero-img {
    opacity:0;
}
.hero-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(105deg, rgba(12,26,46,.97) 45%, rgba(12,26,46,.55) 75%, rgba(12,26,46,.35) 100%);
}
.page-home .hero-overlay {
    background:linear-gradient(105deg, rgba(12,26,46,.86) 42%, rgba(12,26,46,.52) 76%, rgba(12,26,46,.28) 100%);
}
.hero-inner {
    position:relative;
    z-index:1;
    padding-block:6rem;
}
.hero-content {
    max-width:660px;
}
.page-home .hero-content {
    margin-inline:auto;
    text-align:center;
}
.hero-badge {
    display:flex;
    width:max-content;
    max-width:100%;
    align-items:center;
    gap:.5rem;
    background:rgba(43,94,173,.25);
    border:1px solid rgba(43,94,173,.4);
    color:var(--blue-light);
    padding:.4rem 1rem;
    border-radius:50px;
    font-size:.82rem;
    font-weight:600;
    margin:0 0 1.5rem;
}
.page-home .hero-badge {
    margin-inline:auto;
}
.hero-title {
    font-size:clamp(1.9rem,4.2vw,3.2rem);
    font-weight:900;
    color:var(--white);
    line-height:1.25;
    margin-bottom:1.25rem;
    letter-spacing:0;
    text-align:center;
    text-wrap:balance;
}
.hero-accent {
    color:var(--white);
}
.hero-sub {
    font-size:1.1rem;
    color:rgba(255,255,255,.65);
    max-width:640px;
    line-height:1.85;
    margin-bottom:2.5rem;
    text-wrap:balance;
}
.hero-actions {
    display:flex;
    gap:1rem;
    flex-wrap:wrap;
    margin-bottom:3rem;
}
.page-home .hero-actions {
    margin-bottom:0;
    justify-content:center;
}
.page-home p {
    text-wrap:pretty;
}
.page-home .hero-sub,
.page-home .section-sub {
    text-wrap:balance;
    text-align:justify;
    text-align-last:center;
}
.page-home .product-desc,
.page-home .why-card p,
.page-home .about-band-text,
.page-home .contact-cta-sub {
    text-align:right;
    text-align-last:right;
}
.hero-stats {
    display:flex;
    align-items:center;
    gap:2rem;
    padding-top:2rem;
    border-top:1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align:center; }
.hero-stat-num {
    display:block;
    font-size:1.9rem;
    font-weight:900;
    color:var(--white);
    line-height:1;
}
.hero-stat-lbl {
    display:block;
    font-size:.78rem;
    color:rgba(255,255,255,.5);
    margin-top:.25rem;
}
.hero-stat-divider {
    width:1px;
    height:40px;
    background:rgba(255,255,255,.15);
}
.hero-scroll {
    position:absolute;
    bottom:2rem;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    z-index:1;
    opacity:.5;
}
.hero-scroll-line {
    width:1px;
    height:40px;
    background:linear-gradient(to bottom,transparent,rgba(255,255,255,.6));
    animation:scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%,100%{opacity:.3;transform:scaleY(.8);}
    50%{opacity:1;transform:scaleY(1);}
}

/* ══════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════ */
.stats-strip {
    background:var(--ash);
    padding:2.5rem 0;
    border-bottom:1px solid var(--border);
}
.page-home .stats-strip,
.page-home .products-section,
.page-home .brands-strip,
.page-home .clients-section,
.page-home .why-section,
.page-home .ticketing-strip {
    background:rgba(255,255,255,.84);
    backdrop-filter:blur(14px);
}
.page-home .products-section,
.page-home .clients-section,
.page-home .why-section,
.page-home .ticketing-strip {
    border-top:1px solid rgba(255,255,255,.38);
}
.page-home .brands-strip,
.page-home .clients-section {
    background:rgba(242,244,247,.82);
}
.stats-grid {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
    flex-wrap:wrap;
}
.stat-card {
    display:flex;
    align-items:center;
    gap:1.25rem;
    padding:1.5rem 3rem;
    flex:1;
    min-width:200px;
    justify-content:center;
}
.stat-divider {
    width:1px;
    height:56px;
    background:var(--border);
    flex-shrink:0;
}
.stat-icon {
    width:36px;
    height:36px;
    color:var(--blue);
    flex-shrink:0;
}
.stat-body { display:flex; flex-direction:column; }
.stat-num {
    font-size:2.25rem;
    font-weight:900;
    color:var(--navy);
    line-height:1;
}
.stat-label {
    font-size:.82rem;
    color:var(--slate);
    margin-top:.25rem;
    font-weight:500;
}

/* ══════════════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════════════ */
.products-section {
    padding:6rem 0;
    background:var(--white);
}
.products-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:1.75rem;
}
.product-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    overflow:hidden;
    transition:var(--transition);
    display:flex;
    flex-direction:column;
    position:relative;
}
.product-card::before {
    content:'';
    position:absolute;
    top:0;
    inset-inline:0;
    height:3px;
    background:var(--navy);
    transition:var(--transition);
}
.product-card:hover {
    transform:translateY(-6px);
    box-shadow:var(--shadow-lg);
    border-color:var(--blue);
}
.product-card:hover::before { background:var(--blue); }

.product-img-wrap {
    position:relative;
    aspect-ratio:16/9;
    overflow:hidden;
}
.product-img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 400ms ease;
}
.product-card:hover .product-img { transform:scale(1.04); }
.product-cat {
    position:absolute;
    bottom:.75rem;
    right:.75rem;
    background:rgba(12,26,46,.8);
    color:rgba(255,255,255,.85);
    font-size:.7rem;
    font-weight:600;
    padding:.25rem .7rem;
    border-radius:50px;
    backdrop-filter:blur(4px);
}
.product-body {
    padding:1.5rem;
    display:flex;
    flex-direction:column;
    gap:.75rem;
    flex:1;
}
.product-icon-wrap {
    width:44px;
    height:44px;
    background:rgba(43,94,173,.1);
    border-radius:10px;
    display:grid;
    place-items:center;
    flex-shrink:0;
}
.product-icon {
    width:22px;
    height:22px;
    color:var(--blue);
}
.product-title {
    font-size:1.1rem;
    font-weight:700;
    color:var(--navy);
}
.product-desc {
    font-size:.9rem;
    color:var(--slate);
    line-height:1.7;
    flex:1;
}
.product-link {
    display:inline-flex;
    align-items:center;
    gap:.4rem;
    color:var(--blue);
    font-size:.875rem;
    font-weight:600;
    transition:var(--transition);
    margin-top:.25rem;
}
.product-link:hover { gap:.7rem; }

/* Page variant */
.products-page-section { padding:5rem 0; }
.products-grid--page { grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); }
.product-card--large .product-img-wrap { aspect-ratio:4/3; }

/* ══════════════════════════════════════════════════════
   BRANDS MARQUEE
══════════════════════════════════════════════════════ */
.brands-strip {
    padding:2.5rem 0;
    background:var(--ash);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
    overflow:hidden;
}
.brands-label {
    text-align:center;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.1em;
    color:var(--slate);
    margin-bottom:1.5rem;
    text-transform:uppercase;
}
.brands-marquee-wrap { overflow:hidden; }
.brands-marquee {
    display:flex;
    gap:0;
    width:max-content;
    animation:marquee-rtl 30s linear infinite;
}
@keyframes marquee-rtl {
    from { transform:translateX(0); }
    to   { transform:translateX(-50%); }
}
.brand-item {
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 2.5rem;
    border-right:1px solid var(--border);
    height:56px;
    flex-shrink:0;
}
.brand-name {
    font-size:.95rem;
    font-weight:700;
    color:var(--slate);
    letter-spacing:.03em;
    opacity:.6;
    transition:opacity var(--transition);
    white-space:nowrap;
}
.brand-item:hover .brand-name { opacity:1; color:var(--navy); }
@media (prefers-reduced-motion: reduce) {
    .brands-marquee { animation:none; }
}

/* ══════════════════════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════════════════════ */
.clients-section {
    padding:6rem 0;
    background:var(--ash);
}
.clients-row {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
    gap:1.25rem;
}
.client-cell {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:.75rem;
    padding:2rem 1rem;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    transition:var(--transition);
}
.client-cell:hover {
    border-color:var(--blue);
    box-shadow:var(--shadow-md);
    transform:translateY(-3px);
}
.client-logo-placeholder {
    width:48px;
    height:48px;
    background:rgba(43,94,173,.1);
    border-radius:10px;
    display:grid;
    place-items:center;
}
.client-icon { width:24px; height:24px; color:var(--blue); }
.client-name {
    font-size:.85rem;
    font-weight:700;
    color:var(--navy);
    text-align:center;
    line-height:1.4;
}

/* ══════════════════════════════════════════════════════
   ABOUT BAND
══════════════════════════════════════════════════════ */
.about-band {
    background:var(--navy);
    padding:5rem 0;
    position:relative;
    overflow:hidden;
}
.page-home .about-band {
    background:
        linear-gradient(90deg, rgba(12,26,46,.92) 0%, rgba(12,26,46,.78) 48%, rgba(12,26,46,.36) 100%),
        url('/assets/img/about.webp') center / cover no-repeat;
    backdrop-filter:blur(14px);
}
.about-band::before {
    content:'';
    position:absolute;
    inset-inline-start:-10%;
    top:-30%;
    width:60%;
    height:160%;
    background:radial-gradient(ellipse,rgba(43,94,173,.15) 0%,transparent 70%);
    pointer-events:none;
}
.about-band-inner {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
    position:relative;
    z-index:1;
}
.about-band-tag {
    display:inline-block;
    background:rgba(43,94,173,.25);
    color:var(--blue-light);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.08em;
    padding:.3rem .9rem;
    border-radius:50px;
    margin-bottom:1rem;
    text-transform:uppercase;
}
.about-band-title {
    font-size:clamp(1.8rem,3.5vw,2.75rem);
    font-weight:900;
    color:var(--white);
    line-height:1.3;
    margin-bottom:1.25rem;
}
.about-band-text {
    color:rgba(255,255,255,.65);
    font-size:1rem;
    line-height:1.85;
    margin-bottom:1.75rem;
}
.about-band-list {
    display:flex;
    flex-direction:column;
    gap:.6rem;
    margin-bottom:2rem;
}
.about-band-list li {
    display:flex;
    align-items:center;
    gap:.6rem;
    color:rgba(255,255,255,.8);
    font-size:.9rem;
}
.check-icon { color:var(--blue-light); flex-shrink:0; }
.about-band-img-wrap {
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-xl);
    aspect-ratio:4/3;
}
.about-band-img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.page-home .about-band-img-wrap {
    display:none;
}
.page-home .about-band-inner {
    display:block;
    max-width:820px;
    text-align:center;
}
.page-home .about-band-content {
    display:flex;
    flex-direction:column;
    align-items:center;
}
.page-home .about-band-title {
    white-space:nowrap;
}
.page-home .about-band-text {
    max-width:760px;
    text-align:center;
    text-wrap:pretty;
    color:rgba(255,255,255,.82);
}
.page-home .about-band-list {
    width:min(100%, 620px);
    align-items:stretch;
}
.page-home .about-band-list li {
    justify-content:center;
    text-align:center;
}

/* ══════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════ */
.why-section {
    padding:6rem 0;
    background:var(--white);
}
.why-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:1.5rem;
    margin-top:3.5rem;
}
.why-card {
    padding:2rem 1.5rem;
    background:var(--ash);
    border-radius:var(--radius-lg);
    border:1px solid var(--border);
    transition:var(--transition);
}
.why-card:hover {
    background:var(--white);
    border-color:var(--blue);
    box-shadow:var(--shadow-md);
    transform:translateY(-4px);
}
.why-icon {
    width:36px;
    height:36px;
    color:var(--blue);
    margin-bottom:1rem;
}
.why-card h3 {
    font-size:1rem;
    font-weight:700;
    color:var(--navy);
    margin-bottom:.5rem;
}
.why-card p {
    font-size:.875rem;
    color:var(--slate);
    line-height:1.7;
}

/* ══════════════════════════════════════════════════════
   CONTACT CTA
══════════════════════════════════════════════════════ */
.contact-cta {
    padding:5rem 0;
    background:var(--blue);
    position:relative;
    overflow:hidden;
}
.page-home .contact-cta {
    background:rgba(43,94,173,.84);
    backdrop-filter:blur(12px);
}
.contact-cta::before {
    content:'';
    position:absolute;
    inset-inline-end:-10%;
    top:-50%;
    width:50%;
    height:200%;
    background:radial-gradient(ellipse,rgba(255,255,255,.08) 0%,transparent 60%);
    pointer-events:none;
}
.contact-cta-inner { position:relative; text-align:center; }
.contact-cta-title {
    font-size:clamp(1.5rem,3vw,2.25rem);
    font-weight:800;
    color:var(--white);
    margin-bottom:.75rem;
}
.contact-cta-sub {
    color:rgba(255,255,255,.75);
    font-size:1.05rem;
    margin-bottom:2rem;
}
.contact-cta-actions {
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}
.contact-cta .btn-primary {
    background:var(--white);
    color:var(--blue);
    border-color:var(--white);
    box-shadow:0 4px 20px rgba(0,0,0,.2);
}
.contact-cta .btn-primary:hover {
    background:var(--ash);
    border-color:var(--ash);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer { background:var(--charcoal); color:rgba(255,255,255,.7); }
.footer-top { padding:4rem 0 3rem; }
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:3rem;
}
.footer-brand .logo { margin-bottom:1rem; }
.footer-desc {
    font-size:.875rem;
    line-height:1.85;
    color:rgba(255,255,255,.5);
    margin-bottom:1.5rem;
    max-width:320px;
}
.footer-contact-list {
    display:flex;
    flex-direction:column;
    gap:.6rem;
}
.footer-contact-item {
    display:flex;
    align-items:center;
    gap:.6rem;
    font-size:.875rem;
    color:rgba(255,255,255,.55);
    transition:var(--transition);
}
a.footer-contact-item:hover { color:var(--blue-light); }
.footer-contact-item svg { color:var(--blue-light); flex-shrink:0; }

.footer-col-title {
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,.35);
    margin-bottom:1.25rem;
}
.footer-links {
    display:flex;
    flex-direction:column;
    gap:.5rem;
}
.footer-links a {
    font-size:.875rem;
    color:rgba(255,255,255,.55);
    transition:var(--transition);
}
.footer-links a:hover { color:var(--white); padding-right:.25rem; }

.footer-cta-text {
    font-size:.875rem;
    color:rgba(255,255,255,.5);
    line-height:1.7;
    margin-bottom:1.25rem;
}

.footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    padding:1.5rem 0;
}
.footer-bottom-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    flex-wrap:wrap;
}
.footer-copy, .footer-reg {
    font-size:.78rem;
    color:rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════ */
.page-hero--inner {
    background:var(--navy);
    padding:calc(var(--header-h) + 3rem) 0 4rem;
    position:relative;
    overflow:hidden;
}
.page-hero--inner::before {
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse at 30% 50%,rgba(43,94,173,.2) 0%,transparent 60%);
    pointer-events:none;
}
.page-hero--inner .container { position:relative; }
.breadcrumb {
    display:flex;
    align-items:center;
    gap:.5rem;
    font-size:.82rem;
    color:rgba(255,255,255,.4);
    margin-bottom:1.5rem;
}
.breadcrumb a { color:rgba(255,255,255,.55); transition:var(--transition); }
.breadcrumb a:hover { color:var(--white); }
.bc-sep { opacity:.4; }
.page-hero-title {
    font-size:clamp(1.8rem,4vw,3rem);
    font-weight:900;
    color:var(--white);
    margin-bottom:.75rem;
    line-height:1.3;
}
.page-hero-sub {
    font-size:1.05rem;
    color:rgba(255,255,255,.6);
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-main { padding:5rem 0; }
.about-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    align-items:center;
}
.about-text h2 {
    font-size:clamp(1.5rem,2.5vw,2.25rem);
    font-weight:800;
    color:var(--navy);
    margin:1rem 0;
}
.about-text p {
    color:var(--slate);
    line-height:1.85;
    margin-bottom:1rem;
    text-align:justify;
    text-align-last:right;
}
.about-highlights {
    display:flex;
    flex-direction:column;
    gap:1rem;
    margin-top:1.5rem;
}
.highlight-item {
    display:flex;
    align-items:center;
    gap:1rem;
    padding:1rem;
    background:var(--ash);
    border-radius:var(--radius);
    border:1px solid var(--border);
}
.highlight-icon { width:28px; height:28px; color:var(--blue); flex-shrink:0; }
.highlight-item strong { display:block; color:var(--navy); font-weight:700; }
.highlight-item span { display:block; font-size:.875rem; color:var(--slate); line-height:1.7; }

.about-img-wrap { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.about-img { width:100%; height:100%; object-fit:cover; }

.mission-section { padding:5rem 0; background:var(--ash); }
.mission-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.mission-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2.5rem 2rem;
    text-align:center;
    transition:var(--transition);
}
.mission-card:hover { border-color:var(--blue); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.mission-icon-wrap { width:60px; height:60px; background:rgba(43,94,173,.1); border-radius:14px; display:grid; place-items:center; margin:0 auto 1.25rem; }
.mission-icon { width:28px; height:28px; color:var(--blue); }
.mission-card h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:.6rem; }
.mission-card p { font-size:.9rem; color:var(--slate); line-height:1.9; }
.mission-card p + p { margin-top:.75rem; }
.mission-note { color:var(--navy); font-weight:700; }
.mission-card--team { text-align:right; }
.mission-card--team .mission-icon-wrap { margin-inline:auto; }
.mission-card--team h3 { text-align:center; }
.mission-card--team p {
    text-align:justify;
    text-align-last:right;
    text-justify:inter-word;
}

.clients-strip { padding:4rem 0; }
.clients-full-img { border-radius:var(--radius-lg); box-shadow:var(--shadow-md); width:100%; }
.ticketing-strip { padding:4rem 0; }
.ticketing-grid {
    display:grid;
    grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
    gap:2rem;
    align-items:start;
}
.ticketing-copy .section-sub { margin-inline:0; text-align:right; }
.ticketing-copy {
    display:flex;
    flex-direction:column;
    gap:1.25rem;
}
.ticketing-img-wrap { border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); }
.ticketing-img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.ticketing-form-wrap {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2rem;
    box-shadow:var(--shadow-md);
}
.ticketing-form .btn-full { margin-top:.5rem; }
.ticketing-options {
    display:grid;
    grid-template-columns:1fr;
    gap:1rem;
    margin-bottom:1rem;
}
.ticketing-fieldset {
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:1rem;
    display:grid;
    gap:.75rem;
}
.ticketing-fieldset legend {
    padding:0 .4rem;
    font-size:.82rem;
    font-weight:700;
    color:var(--navy);
}
.ticket-option {
    min-height:48px;
    display:flex;
    align-items:center;
    gap:.65rem;
    padding:.75rem .9rem;
    background:var(--ash);
    border:1px solid transparent;
    border-radius:var(--radius);
    cursor:pointer;
    transition:var(--transition);
}
.ticket-option:hover,
.ticket-option:focus-within {
    border-color:rgba(43,94,173,.35);
    background:rgba(43,94,173,.06);
}
.ticket-option input {
    width:18px;
    height:18px;
    flex-shrink:0;
    accent-color:var(--blue);
}
.ticket-option span {
    color:var(--navy);
    font-size:.9rem;
    line-height:1.8;
    font-weight:600;
}

/* ══════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════ */
.services-page { padding:5rem 0; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.5rem; }
.service-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2rem;
    transition:var(--transition);
}
.service-card:hover { border-color:var(--blue); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.service-icon-wrap { width:52px; height:52px; background:rgba(43,94,173,.1); border-radius:12px; display:grid; place-items:center; margin-bottom:1.25rem; }
.service-icon { width:26px; height:26px; color:var(--blue); }
.service-title { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:.6rem; }
.service-desc { font-size:.9rem; color:var(--slate); line-height:1.75; margin-bottom:1rem; }
.service-link { display:inline-flex; align-items:center; gap:.4rem; color:var(--blue); font-size:.875rem; font-weight:600; transition:var(--transition); }
.service-link:hover { gap:.7rem; }

.process-section { padding:5rem 0; background:var(--ash); }
.process-steps {
    display:flex;
    align-items:center;
    gap:1rem;
    margin-top:3rem;
    flex-wrap:wrap;
    justify-content:center;
}
.process-step {
    text-align:center;
    flex:1;
    min-width:120px;
}
.step-num {
    width:52px;
    height:52px;
    background:var(--blue);
    color:var(--white);
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:1.2rem;
    font-weight:800;
    margin:0 auto .75rem;
}
.process-step h4 { font-size:.95rem; font-weight:700; color:var(--navy); margin-bottom:.4rem; }
.process-step p { font-size:.82rem; color:var(--slate); }
.process-arrow { color:var(--slate-light); }

/* ══════════════════════════════════════════════════════
   BRANDS PAGE
══════════════════════════════════════════════════════ */
.brands-page { padding:5rem 0; }
.brands-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1.5rem; }
.brand-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2.5rem 1.5rem;
    text-align:center;
    transition:var(--transition);
}
.brand-card:hover { border-color:var(--blue); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.brand-card-logo { margin-bottom:.75rem; }
.brand-card-name { font-size:1.3rem; font-weight:800; color:var(--navy); }
.brand-card-desc { font-size:.82rem; color:var(--slate); line-height:1.6; }

/* ══════════════════════════════════════════════════════
   CLIENTS PAGE
══════════════════════════════════════════════════════ */
.clients-page { padding:5rem 0; }
.clients-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:1.5rem; margin-bottom:3rem; }
.client-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2.5rem 1.5rem;
    text-align:center;
    transition:var(--transition);
}
.client-card:hover { border-color:var(--blue); box-shadow:var(--shadow-md); transform:translateY(-4px); }
.client-card-icon { width:56px; height:56px; background:rgba(43,94,173,.1); border-radius:12px; display:grid; place-items:center; margin:0 auto 1rem; }
.client-card-svg { width:28px; height:28px; color:var(--blue); }
.client-card-name { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:.4rem; }
.client-card-sector { font-size:.78rem; color:var(--slate); background:var(--ash); padding:.2rem .6rem; border-radius:50px; }
.clients-photo-wrap { border-radius:var(--radius-lg); overflow:hidden; }
.clients-photo { width:100%; object-fit:cover; }

/* ══════════════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════════════ */
.gallery-page { padding:5rem 0; }
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
}
.gallery-item { position:relative; border-radius:var(--radius); overflow:hidden; }
.gallery-img { width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform 400ms ease; }
.gallery-item:hover .gallery-img { transform:scale(1.04); }
.gallery-caption {
    position:absolute;
    bottom:0;
    inset-inline:0;
    background:linear-gradient(to top,rgba(12,26,46,.8),transparent);
    color:var(--white);
    font-size:.82rem;
    padding:.75rem 1rem .5rem;
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-page { padding:5rem 0; }
.contact-layout {
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:4rem;
    align-items:start;
}
.contact-info-title { font-size:1.5rem; font-weight:800; color:var(--navy); margin-bottom:.75rem; }
.contact-info-text { color:var(--slate); line-height:1.8; margin-bottom:2rem; font-size:.95rem; }
.contact-item { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.25rem; }
.contact-icon { width:22px; height:22px; color:var(--blue); margin-top:.2rem; flex-shrink:0; }
.contact-item-label { display:block; font-size:.75rem; color:var(--slate); font-weight:600; letter-spacing:.04em; text-transform:uppercase; }
.contact-item-val { display:block; font-size:.9rem; color:var(--navy); font-weight:600; margin-top:.15rem; }
a.contact-item-val:hover { color:var(--blue); }

/* Form */
.contact-form-wrap { background:var(--ash); border:1px solid var(--border); border-radius:var(--radius-lg); padding:2.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1rem; }
.form-label { font-size:.82rem; font-weight:600; color:var(--navy); }
.form-input, .form-textarea {
    width:100%;
    padding:.75rem 1rem;
    border:1.5px solid var(--border);
    border-radius:var(--radius);
    font-family:'Vazirmatn',sans-serif;
    font-size:.9rem;
    color:var(--text);
    background:var(--white);
    transition:var(--transition);
    outline:none;
}
.form-input:focus, .form-textarea:focus {
    border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(43,94,173,.15);
}
.form-textarea { resize:vertical; }

/* Alerts */
.alert {
    display:flex;
    align-items:flex-start;
    gap:.75rem;
    padding:1rem 1.25rem;
    border-radius:var(--radius);
    margin-bottom:1.5rem;
    font-size:.9rem;
}
.alert-success { background:rgba(34,197,94,.1); color:#166534; border:1px solid rgba(34,197,94,.3); }
.alert-error   { background:rgba(239,68,68,.08); color:#991B1B; border:1px solid rgba(239,68,68,.2); }
.alert-icon { width:20px; height:20px; flex-shrink:0; margin-top:.1rem; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
    .footer-brand { grid-column:1/-1; }
    .about-band-inner { grid-template-columns:1fr; gap:2.5rem; }
    .about-band-img-wrap { order:-1; max-height:300px; }
}

@media (max-width: 768px) {
    :root { --header-h:64px; }

    /* Nav mobile */
    .nav-toggle { display:flex; }
    .header-phone { display:none; }
    .header-actions .btn { display:none; }

    .main-nav {
        position:fixed;
        top:var(--header-h);
        inset-inline-start:0;
        width:min(320px,85vw);
        height:calc(100svh - var(--header-h));
        background:#0C1A2E;
        color:var(--white);
        z-index:1000;
        transform:translateX(100%);
        visibility:hidden;
        pointer-events:none;
        transition:transform 300ms cubic-bezier(.4,0,.2,1);
        overflow-y:auto;
        padding:1.5rem 1rem;
        border-right:1px solid rgba(255,255,255,.08);
        box-shadow:0 24px 64px rgba(0,0,0,.32);
        backdrop-filter:none;
    }
    .nav-sticker {
        display:grid;
        place-items:center;
        width:108px;
        height:108px;
        margin:0 auto 1.5rem;
        border-radius:22px;
        background:rgba(255,255,255,.06);
        border:1px solid rgba(255,255,255,.1);
    }
    .nav-sticker svg {
        width:86px;
        height:86px;
        filter:drop-shadow(0 14px 28px rgba(0,0,0,.25));
    }
    [dir="rtl"] .main-nav { transform:translateX(100%); }
    .main-nav.open {
        transform:translateX(0);
        visibility:visible;
        pointer-events:auto;
    }

    .nav-list { flex-direction:column; align-items:stretch; gap:0; }
    .nav-link {
        padding:.875rem 1rem;
        font-size:1rem;
        font-weight:700;
        border-radius:8px;
        display:block;
        color:var(--white);
    }
    .nav-link:hover,
    .nav-link.active {
        color:var(--white);
        background:rgba(58,114,200,.28);
    }

    /* Hero */
    .hero-title { font-size:clamp(1.7rem,5vw,2.5rem); }
    .hero-inner { padding-block:4rem 3rem; }
    .hero-stats { gap:1.25rem; }
    .hero-stat-num { font-size:1.5rem; }
    .hero-actions { flex-direction:column; }
    .hero-actions .btn { text-align:center; justify-content:center; }

    /* Stats */
    .stats-grid { flex-direction:column; gap:0; }
    .stat-card { padding:1.25rem 1.5rem; border-bottom:1px solid var(--border); }
    .stat-divider { display:none; }

    /* Products */
    .products-grid { grid-template-columns:1fr; }
    .products-grid--page { grid-template-columns:1fr; }

    /* About band */
    .about-band { padding:3.5rem 0; }
    .about-band-title { font-size:1.8rem; }
    .page-home .about-band-title { white-space:normal; }

    /* Why */
    .why-grid { grid-template-columns:1fr 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns:1fr; gap:2rem; }
    .footer-brand .footer-desc { max-width:none; }
    .footer-bottom-inner { flex-direction:column; text-align:center; }

    /* About page */
    .about-grid { grid-template-columns:1fr; gap:2rem; }
    .mission-grid { grid-template-columns:1fr; }
    .ticketing-grid { grid-template-columns:1fr; }

    /* Contact */
    .contact-layout { grid-template-columns:1fr; }
    .form-row { grid-template-columns:1fr; }

    /* Gallery */
    .gallery-grid { grid-template-columns:1fr 1fr; }

    /* Process */
    .process-steps { flex-direction:column; align-items:stretch; }
    .process-arrow { transform:rotate(90deg); align-self:center; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction:column; gap:1rem; }
    .hero-stat-divider { display:none; }
    .clients-row { grid-template-columns:1fr 1fr; }
    .why-grid { grid-template-columns:1fr; }
    .gallery-grid { grid-template-columns:1fr; }
    .brands-grid { grid-template-columns:1fr 1fr; }
    .clients-grid { grid-template-columns:1fr 1fr; }
}

/* ══════════════════════════════════════════════════════
   HEADER CART + ACCOUNT ICONS
══════════════════════════════════════════════════════ */
.header-cart, .header-account {
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:8px;
    color:rgba(255,255,255,.7);
    transition:var(--transition);
    flex-shrink:0;
}
.header-cart:hover, .header-account:hover {
    color:var(--white);
    background:rgba(255,255,255,.1);
}
.cart-badge {
    position:absolute;
    top:-4px;
    left:-4px;
    min-width:18px;
    height:18px;
    background:var(--blue);
    color:var(--white);
    border-radius:50px;
    font-size:.65rem;
    font-weight:800;
    display:grid;
    place-items:center;
    padding:0 4px;
    line-height:1;
}

/* ══════════════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════════════ */
.cart-empty {
    background:var(--ash);
    padding:6rem 0;
}
.cart-empty-inner {
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:1rem;
}
.icon-cart-lg {
    width:72px;
    height:72px;
    color:var(--slate-light);
    opacity:.4;
}
.cart-empty-title {
    font-size:1.5rem;
    font-weight:800;
    color:var(--navy);
}
.cart-empty-text {
    color:var(--slate);
    font-size:1rem;
    margin-bottom:.5rem;
}

.cart-page { padding:4rem 0; background:var(--ash); }
.cart-layout {
    display:grid;
    grid-template-columns:1fr 340px;
    gap:2rem;
    align-items:start;
}

/* Cart table */
.cart-items-section {}
.cart-update-form {}
.cart-table {
    background:var(--white);
    border-radius:var(--radius-lg);
    border:1px solid var(--border);
    overflow:hidden;
    margin-bottom:1rem;
}
.cart-row {
    display:grid;
    grid-template-columns:auto 1fr 100px 120px 40px;
    gap:1rem;
    align-items:center;
    padding:1.25rem 1.5rem;
    border-bottom:1px solid var(--border);
}
.cart-row:last-child { border-bottom:none; }
.cart-row-thumb {}
.cart-thumb {
    width:80px;
    height:80px;
    border-radius:var(--radius);
    object-fit:cover;
    display:block;
    flex-shrink:0;
}
.cart-thumb-placeholder {
    background:var(--ash);
    display:grid;
    place-items:center;
    color:var(--slate-light);
}
.cart-row-info {
    display:flex;
    flex-direction:column;
    gap:.3rem;
}
.cart-item-name {
    font-weight:700;
    color:var(--navy);
    font-size:.95rem;
    line-height:1.4;
}
.cart-item-variant {
    font-size:.82rem;
    color:var(--slate);
    background:var(--ash);
    padding:.15rem .6rem;
    border-radius:50px;
    display:inline-block;
    width:fit-content;
}
.cart-row-qty {}
.cart-qty-input {
    width:70px;
    padding:.5rem .6rem;
    border:1.5px solid var(--border);
    border-radius:var(--radius);
    font-family:'Vazirmatn',sans-serif;
    font-size:.9rem;
    text-align:center;
    color:var(--text);
    outline:none;
    transition:var(--transition);
    -moz-appearance:textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button { -webkit-appearance:none; }
.cart-qty-input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(43,94,173,.1); }
.cart-row-price {}
.cart-line-price { font-weight:700; color:var(--blue); font-size:.95rem; }
.cart-row-remove {}
.btn-icon {
    width:36px;
    height:36px;
    display:grid;
    place-items:center;
    border-radius:var(--radius);
    border:none;
    cursor:pointer;
    transition:var(--transition);
    background:none;
    font-family:inherit;
}
.btn-remove { color:var(--slate); }
.btn-remove:hover { background:rgba(239,68,68,.1); color:#dc2626; }

.cart-actions {
    display:flex;
    gap:1rem;
    align-items:center;
}
.btn-danger-ghost {
    background:transparent;
    color:#dc2626;
    border:2px solid rgba(220,38,38,.3);
    border-radius:50px;
    padding:.5rem 1.25rem;
    font-size:.875rem;
    font-weight:600;
    cursor:pointer;
    font-family:'Vazirmatn',sans-serif;
    transition:var(--transition);
}
.btn-danger-ghost:hover { background:rgba(220,38,38,.07); border-color:#dc2626; }

/* Cart summary */
.cart-summary { position:sticky; top:calc(var(--header-h) + 1.5rem); }
.cart-summary-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:1.75rem;
}
.cart-summary-title {
    font-size:1.1rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:1.25rem;
    padding-bottom:1rem;
    border-bottom:1px solid var(--border);
}
.cart-summary-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    padding:.6rem 0;
}
.cart-summary-row--total {
    border-top:1px solid var(--border);
    margin-top:.5rem;
    padding-top:1rem;
}
.cart-summary-label { font-size:.9rem; color:var(--slate); }
.cart-summary-val { font-weight:700; color:var(--navy); font-size:.95rem; }
.cart-summary-total { color:var(--blue); font-size:1.1rem; }
.cart-checkout-btn { margin-top:1.25rem; }
.cart-continue-link {
    display:block;
    text-align:center;
    margin-top:.75rem;
    color:var(--blue);
    font-size:.875rem;
    font-weight:600;
    transition:var(--transition);
}
.cart-continue-link:hover { opacity:.75; }
.cart-note {
    display:flex;
    align-items:center;
    gap:.4rem;
    margin-top:1rem;
    padding-top:1rem;
    border-top:1px solid var(--border);
    font-size:.78rem;
    color:var(--slate);
    line-height:1.5;
}
.visually-hidden {
    position:absolute;
    width:1px;
    height:1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
}

/* ══════════════════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════════════════ */
.checkout-page { padding:4rem 0; background:var(--ash); }
.checkout-layout {
    display:grid;
    grid-template-columns:1fr 380px;
    gap:2.5rem;
    align-items:start;
}
.checkout-form-wrap {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:2.5rem;
}
.checkout-form-title {
    font-size:1.2rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:1.5rem;
    padding-bottom:1rem;
    border-bottom:1px solid var(--border);
}
.input-error { border-color:#dc2626 !important; }

/* Order success */
.order-success-section {
    padding:5rem 0;
    background:var(--ash);
}
.order-success-card {
    max-width:520px;
    margin-inline:auto;
    background:var(--white);
    border-radius:var(--radius-lg);
    padding:3rem 2.5rem;
    text-align:center;
    box-shadow:var(--shadow-lg);
}
.order-success-icon {
    margin:0 auto 1.5rem;
}
.icon-check-lg {
    width:72px;
    height:72px;
    color:#16a34a;
}
.order-success-title {
    font-size:1.4rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:.75rem;
}
.order-success-number {
    font-size:1rem;
    color:var(--blue);
    font-weight:700;
    margin-bottom:.5rem;
}
.order-success-msg {
    color:var(--slate);
    line-height:1.8;
    margin-bottom:2rem;
}
.order-success-actions {
    display:flex;
    gap:1rem;
    justify-content:center;
    flex-wrap:wrap;
}

/* Order summary panel */
.order-summary { position:sticky; top:calc(var(--header-h) + 1.5rem); }
.order-summary-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:1.75rem;
}
.order-summary-title {
    font-size:1.1rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:1.25rem;
    padding-bottom:1rem;
    border-bottom:1px solid var(--border);
}
.order-summary-items {
    display:flex;
    flex-direction:column;
    gap:.75rem;
    margin-bottom:1.25rem;
    padding-bottom:1.25rem;
    border-bottom:1px solid var(--border);
}
.order-summary-item {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:.75rem;
}
.order-item-info {
    display:flex;
    flex-direction:column;
    gap:.2rem;
}
.order-item-name { font-size:.9rem; font-weight:600; color:var(--navy); }
.order-item-variant { font-size:.78rem; color:var(--slate); }
.order-item-qty { font-size:.78rem; color:var(--slate); }
.order-item-price { font-size:.88rem; font-weight:700; color:var(--blue); white-space:nowrap; }
.order-summary-total {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:.75rem;
    margin-bottom:1rem;
}
.order-summary-total-label { font-weight:700; color:var(--navy); }
.order-summary-total-val { font-weight:800; font-size:1.05rem; color:var(--blue); }
.order-summary-note {
    display:flex;
    align-items:flex-start;
    gap:.4rem;
    font-size:.78rem;
    color:var(--slate);
    line-height:1.5;
    margin-top:.75rem;
    padding-top:.75rem;
    border-top:1px solid var(--border);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — CART / CHECKOUT
══════════════════════════════════════════════════════ */
@media (max-width:900px) {
    .cart-layout { grid-template-columns:1fr; }
    .checkout-layout { grid-template-columns:1fr; }
    .cart-summary, .order-summary { position:static; }
}
@media (max-width:768px) {
    .cart-row {
        grid-template-columns:auto 1fr;
        grid-template-rows:auto auto;
        gap:.75rem;
    }
    .cart-row-qty, .cart-row-price, .cart-row-remove {
        grid-column:2;
    }
    .cart-row-thumb { grid-row:1/3; }
    .checkout-form-wrap { padding:1.5rem; }
    .order-success-card { padding:2rem 1.5rem; }
}

/* #357 hdr357-stacking: mobile menu drawer must paint above hero (header stacking-context fix) */
@media (max-width:768px){
  .site-header#site-header{ z-index:1000 !important; }
}
