/* ─── FONTS ────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Vazirmatn';
  src: url('/assets/fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@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-SemiBold.woff2') format('woff2');
  font-weight: 600;
  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:       #0A1628;
  --navy-mid:   #0f1f3d;
  --navy-card:  #1B2A4A;
  --navy-light: #243554;
  --gold:       #F5A623;
  --gold-dark:  #d48c10;
  --gold-glow:  rgba(245, 166, 35, 0.25);
  --white:      #FFFFFF;
  --muted:      #8FA3C0;
  --muted-dark: #5a7090;
  --text:       #E8EDF5;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-pill:9999px;

  --shadow:     0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold:0 8px 32px rgba(245,166,35,0.25);
  --shadow-card:0 2px 20px rgba(0,0,0,0.4);

  --transition: 0.25s ease;
  --font: 'Vazirmatn', Tahoma, sans-serif;

  --container: 1240px;
  --gap:       clamp(60px, 8vw, 100px);
}

/* ─── RESET ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ─── UTILITIES ────────────────────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}
.text-gold { color: var(--gold); }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.7rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px var(--gold-glow);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: var(--shadow-gold); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ─── HEADER ────────────────────────────────────────────────────────────────  */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom-color: rgba(245,166,35,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

/* Logo */
.logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--gold); }

/* Nav */
.main-nav { margin-inline: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.main-nav a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

/* Phone badge */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-pill);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.header-phone:hover { background: var(--gold); color: var(--navy); }
.header-phone .phone-icon { width: 16px; height: 16px; }
.header-phone .phone-icon svg { width: 100%; height: 100%; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--white);
  border-radius: var(--radius-sm);
  margin-inline-start: auto;
}
.mobile-menu-btn svg { width: 22px; height: 22px; }
.mobile-menu-btn .icon-close { display: none; }
body.nav-open .mobile-menu-btn .icon-menu { display: none; }
body.nav-open .mobile-menu-btn .icon-close { display: block; }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.60) 45%,
    rgba(10,22,40,0.30) 100%
  );
}
/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 1.5rem;
}
.hero-rule {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.hero-h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.hero-body {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  z-index: 1;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(245,166,35,0.6), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── SERVICES STRIP ────────────────────────────────────────────────────────── */
.services-strip {
  background: var(--navy-mid);
  padding: 80px 0;
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.1);
}
.services-strip .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--navy-card);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--gold-glow), var(--shadow-card);
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding: 12px;
  background: rgba(245,166,35,0.08);
  border-radius: var(--radius);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── ABOUT ─────────────────────────────────────────────────────────────────── */
.about-section {
  padding: var(--gap) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-content {
  order: 1;
}
.about-text {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}
.about-checks {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text);
}
.check-icon {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.check-icon svg { width: 100%; height: 100%; }
.about-image {
  order: 2;
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
}

/* ─── PROCESS TIMELINE ──────────────────────────────────────────────────────── */
.process-section {
  background: var(--navy-mid);
  padding: var(--gap) 0;
  border-top: 1px solid rgba(245,166,35,0.08);
}
.process-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.process-steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-card) transparent;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  right: calc(100% / 14);
  left: calc(100% / 14);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 8px,
    transparent 8px 18px
  );
  z-index: 0;
}
.process-step {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 0 6px var(--navy-mid);
  flex-shrink: 0;
}
.step-label {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
  font-weight: 500;
}

/* ─── STATS ─────────────────────────────────────────────────────────────────── */
.stats-section {
  padding: var(--gap) 0;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  background: var(--navy-card);
  border-radius: var(--radius);
  border: 1px solid rgba(245,166,35,0.12);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.stat-item:hover {
  border-color: rgba(245,166,35,0.4);
  box-shadow: var(--shadow-gold);
}
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.counter-num { display: inline; }
.stat-suffix {
  font-size: 1.1rem;
  color: var(--gold);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ─── PARTNER AIRLINES ──────────────────────────────────────────────────────── */
.airlines-section {
  background: var(--navy-mid);
  padding: 60px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,166,35,0.08);
  border-bottom: 1px solid rgba(245,166,35,0.08);
}
.airlines-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.airline-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--navy-card);
  border-radius: var(--radius);
  border: 1px solid rgba(245,166,35,0.1);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
  min-width: 160px;
  transition: border-color var(--transition);
}
.airline-logo:hover { border-color: rgba(245,166,35,0.4); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── BLOG ──────────────────────────────────────────────────────────────────── */
.blog-section {
  padding: var(--gap) 0;
}
.blog-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--navy-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(245,166,35,0.25);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.4rem;
}
.blog-date {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.blog-link:hover { gap: 0.7rem; }
.blog-link svg { width: 16px; height: 16px; transform: scaleX(-1); }

/* ─── CTA BANNER ────────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.85) 100%);
}
.cta-hex-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.cta-content p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-inline: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(245,166,35,0.15);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}
.social-link svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(245,166,35,0.2);
}
.footer-links li + li { margin-top: 0.6rem; }
.footer-links a {
  font-size: 0.87rem;
  color: var(--muted);
  transition: color var(--transition), padding-right var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--gold);
  padding-right: 4px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--muted);
}
.contact-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-icon svg { width: 100%; height: 100%; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted-dark);
}

/* ─── PAGE SECTIONS (non-home stubs) ───────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(245,166,35,0.1);
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero p { color: var(--muted); }

.content-section { padding: var(--gap) 0; }

/* ─── SERVICES PAGE ─────────────────────────────────────────────────────────── */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-full-card {
  background: var(--navy-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(245,166,35,0.3);
}
.service-full-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-full-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-full-card-body { padding: 1.4rem; }
.service-full-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.service-cat {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}
.service-price {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.service-price strong { color: var(--gold); }

/* ─── CONTACT FORM ──────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}
.contact-info-item .ci-icon { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.contact-info-item .ci-icon svg { width: 100%; height: 100%; }

.form-card {
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(245,166,35,0.1);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.87rem; color: var(--muted); margin-bottom: 0.4rem; }
.form-control {
  width: 100%;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-success {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

/* ─── ADMIN ─────────────────────────────────────────────────────────────────── */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.admin-login-box {
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: min(400px, 100% - 2rem);
  border: 1px solid rgba(245,166,35,0.15);
  box-shadow: var(--shadow);
}
.admin-login-box h1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}
.admin-login-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}
.admin-login-logo svg { width: 28px; height: 28px; }

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--navy-mid);
  border-left: 1px solid rgba(245,166,35,0.1);
  padding: 1.5rem 0;
}
.admin-sidebar-logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 700;
}
.admin-sidebar-logo svg { width: 22px; height: 22px; }
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(245,166,35,0.08);
  color: var(--gold);
}
.admin-nav-link svg { width: 18px; height: 18px; }
.admin-main { padding: 2rem; overflow-x: auto; }
/* .admin-header defined in ADMIN UTILITY section below */

.admin-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.admin-table th {
  background: var(--navy-card);
  padding: 0.85rem 1rem;
  text-align: right;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.status-badge {
  display: inline-block;
  padding: 0.2em 0.7em;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-green { background: rgba(74,222,128,0.12); color: #4ade80; }
.badge-red   { background: rgba(248,113,113,0.12); color: #f87171; }
.badge-gold  { background: rgba(245,166,35,0.12); color: var(--gold); }

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; }
  .about-image   { order: -1; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(245,166,35,0.1);
    padding: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 800;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0.3rem; }
  .main-nav a { padding: 0.7rem 1rem; font-size: 1rem; }
  .header-phone { display: none; }
}

@media (max-width: 640px) {
  :root { --gap: 60px; }
  .services-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions   { flex-direction: column; align-items: center; }
  .cta-actions    { flex-direction: column; align-items: center; }
  .process-steps  { gap: 0; }
  .admin-layout   { grid-template-columns: 1fr; }
  .admin-sidebar  { display: none; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 1.5rem); }
  .hero-h1 { font-size: 1.5rem; }
  .blog-section .section-header { flex-direction: column; align-items: flex-start; }
}

/* ─── HEADER ACTIONS (cart + user) ─────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: auto;
}
.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.12);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.header-icon-btn svg { width: 18px; height: 18px; }
.header-icon-btn:hover { color: var(--gold); border-color: var(--gold); background: rgba(245,166,35,0.07); }
.cart-badge {
  position: absolute;
  top: -5px;
  left: -5px;
  min-width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ─── PAGE-HERO VARIANTS ────────────────────────────────────────────────────── */
.page-hero--center {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.error-code {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ─── BREADCRUMB ────────────────────────────────────────────────────────────── */
.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  transition: color var(--transition);
}
.breadcrumb-link:hover { color: var(--gold); }
.breadcrumb-link svg { width: 14px; height: 14px; }

/* ─── SHOP ──────────────────────────────────────────────────────────────────── */
.shop-filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.07);
}
.filter-chip.active { background: rgba(245,166,35,0.12); font-weight: 600; }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.shop-card {
  background: var(--navy-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.shop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); border-color: rgba(245,166,35,0.3); }
.shop-card-img {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.shop-card:hover .shop-card-img img { transform: scale(1.06); }
.shop-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}
.shop-card-overlay svg { width: 18px; height: 18px; }
.shop-card:hover .shop-card-overlay { opacity: 1; }
.shop-card-body { padding: 1.2rem; }
.shop-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin: 0.4rem 0 0.8rem; }
.shop-card-body h3 a { color: inherit; }
.shop-card-body h3 a:hover { color: var(--gold); }
.shop-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.shop-price { font-size: 0.87rem; color: var(--muted); }
.shop-price strong { color: var(--gold); }

/* ─── EMPTY STATE ───────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 1.2rem; color: var(--navy-light); }
.empty-state p { font-size: 1rem; }

/* ─── PRODUCT DETAIL ────────────────────────────────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.product-gallery {}
.product-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 0.8rem;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-thumbs {
  display: flex;
  gap: 0.6rem;
}
.product-thumbs .thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.65;
  flex-shrink: 0;
}
.product-thumbs .thumb:hover, .product-thumbs .thumb.active { border-color: var(--gold); opacity: 1; }

.product-info {}
.product-rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.rating-count { font-size: 0.82rem; color: var(--muted); }

.product-price-box { margin-bottom: 1.5rem; }
.product-price-label { font-size: 0.82rem; color: var(--muted); display: block; margin-bottom: 0.2rem; }
.product-price { font-size: 1.6rem; font-weight: 700; color: var(--gold); }

.form-label-bold { display: block; font-size: 0.87rem; font-weight: 600; color: var(--text); margin-bottom: 0.8rem; }

.size-options { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.size-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.size-option input[type="radio"] { display: none; }
.size-option:hover, .size-option.checked {
  border-color: var(--gold);
  background: rgba(245,166,35,0.06);
}
.size-label { font-size: 0.95rem; font-weight: 600; color: var(--white); min-width: 50px; }
.size-desc  { font-size: 0.8rem; color: var(--muted); flex: 1; }
.size-mult  { font-size: 0.82rem; color: var(--gold); font-weight: 600; }

.qty-control { display: flex; align-items: center; gap: 0; margin-bottom: 1.5rem; }
.qty-btn {
  width: 40px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-card);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.qty-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.qty-btn svg { width: 14px; height: 14px; }
.qty-input {
  width: 64px;
  text-align: center;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-left: none; border-right: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  height: 42px;
  outline: none;
  padding: 0;
}

.product-actions { display: flex; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--muted);
}
.product-feature svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.related-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,0.06); }
.related-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }

/* ─── CART ──────────────────────────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }

.cart-table { display: flex; flex-direction: column; gap: 1px; }
.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  align-items: center;
  gap: 1.2rem;
  background: var(--navy-card);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 0.6rem;
  transition: border-color var(--transition);
}
.cart-row:hover { border-color: rgba(245,166,35,0.15); }
.cart-item-img { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.cart-size { font-size: 0.78rem; color: var(--muted); display: block; margin-top: 0.2rem; }
.cart-qty-form { display: flex; align-items: center; gap: 0; }
.cart-remove-form { display: contents; }
.qty-display {
  width: 36px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: 30px;
  line-height: 30px;
  display: block;
  flex-shrink: 0;
}
.qty-btn-sm {
  width: 28px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.qty-btn-sm:hover { background: var(--gold); color: var(--navy); }
.qty-btn-sm svg { width: 11px; height: 11px; }
.qty-input-sm {
  width: 44px; height: 30px;
  text-align: center;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: none; border-right: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.87rem;
  outline: none;
}
.cart-item-price { font-size: 0.9rem; color: var(--gold); font-weight: 600; white-space: nowrap; }
.cart-remove-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-dark);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.cart-remove-btn:hover { color: #f87171; background: rgba(248,113,113,0.1); }
.cart-remove-btn svg { width: 16px; height: 16px; }

.cart-update-bar { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }

.cart-summary {
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(245,166,35,0.12);
  position: sticky;
  top: 88px;
}
.cart-summary h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.summary-row--total {
  font-size: 1rem;
  color: var(--white);
  border-bottom: none;
  font-weight: 600;
}
.summary-row--total strong { color: var(--gold); font-size: 1.15rem; }
.cart-note { font-size: 0.75rem; color: var(--muted-dark); text-align: center; margin-top: 0.8rem; }

/* ─── CHECKOUT ──────────────────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }
.checkout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1rem;
}
.checkout-item:last-of-type { border-bottom: none; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.order-success {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,166,35,0.15);
}
.order-success-icon {
  width: 64px; height: 64px;
  background: rgba(74,222,128,0.1);
  border: 2px solid #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: #4ade80;
}
.order-success-icon svg { width: 32px; height: 32px; }
.order-success h2 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
.order-success p { color: var(--muted); margin-bottom: 0.4rem; }

/* ─── AUTH (login / register) ───────────────────────────────────────────────── */
.auth-box {
  max-width: 440px;
  margin: 0 auto;
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(245,166,35,0.12);
  box-shadow: var(--shadow);
}
.auth-switch { text-align: center; margin-top: 1.2rem; font-size: 0.87rem; color: var(--muted); }
.auth-switch a { color: var(--gold); }
.auth-switch a:hover { text-decoration: underline; }

/* ─── ACCOUNT ───────────────────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem; align-items: start; }
.account-sidebar {
  background: var(--navy-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 88px;
  text-align: center;
}
.account-avatar {
  width: 64px; height: 64px;
  background: rgba(245,166,35,0.1);
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.account-avatar svg { width: 28px; height: 28px; }
.account-name  { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.account-email { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.account-nav { display: flex; flex-direction: column; gap: 0.3rem; text-align: right; }
.account-nav-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  color: var(--muted);
  transition: background var(--transition), color var(--transition);
}
.account-nav-link svg { width: 16px; height: 16px; }
.account-nav-link:hover, .account-nav-link.active { background: rgba(245,166,35,0.08); color: var(--gold); }
.account-nav-logout { color: #f87171; margin-top: 0.5rem; }
.account-nav-logout:hover { background: rgba(248,113,113,0.08); color: #f87171; }

.account-main {}
.account-section-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1.2rem; }

/* ─── RESPONSIVE – new pages ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-layout   { grid-template-columns: 1fr; gap: 2.5rem; }
  .cart-layout      { grid-template-columns: 1fr; }
  .checkout-layout  { grid-template-columns: 1fr; }
  .account-layout   { grid-template-columns: 1fr; }
  .account-sidebar  { position: static; }
}
@media (max-width: 768px) {
  .cart-row         { grid-template-columns: 60px 1fr auto; grid-template-rows: auto auto; }
  .cart-item-price  { grid-column: 2; }
  .cart-remove-btn  { grid-column: 3; grid-row: 1; }
  .cart-item-qty    { grid-column: 2 / 4; }
  .form-row-2       { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shop-grid        { grid-template-columns: 1fr 1fr; }
  .header-phone     { display: none; }
}
@media (max-width: 480px) {
  .shop-grid        { grid-template-columns: 1fr; }
  .auth-box         { padding: 1.5rem; }
}

/* ─── ADMIN UTILITY ──────────────────────────────────────────────────────────── */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-header h1 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 0; }

.btn-sm { padding: .3rem .8rem !important; font-size: .82rem !important; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  padding: .55rem 1.2rem;
  font-size: .9rem;
  font-family: inherit;
  text-decoration: none;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

.btn-danger {
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.3);
  color: #f87171;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  padding: .55rem 1.2rem;
  font-size: .9rem;
  font-family: inherit;
  text-decoration: none;
}
.btn-danger:hover { background: rgba(248,113,113,0.22); }

.admin-actions-cell { white-space: nowrap; display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }

.admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.5rem;
  color: var(--text);
  font-size: .92rem;
}
.detail-full { grid-column: 1 / -1; }
.detail-label { color: var(--muted); font-size: .82rem; margin-left: .35rem; }

.form-success {
  background: rgba(74,222,128,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-size: .9rem;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238FA3C0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left .75rem center;
  padding-left: 2.2rem;
}

/* Buttons: the icon_*() SVGs have no intrinsic size, so without an explicit rule
   they stretch to fill the inline-flex button (CR#891). */
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn.btn-sm svg { width: 15px; height: 15px; }
.btn.btn-lg svg { width: 20px; height: 20px; }
