/* ═══════════════════════════════════════════════════════════════════════
   Barsam Khodroo — Premium RTL Design System
   Palette: Navy #1a237e / #0d47a1 · Orange #ff6f00 · BG #f5f7fa · White #fff
   ═══════════════════════════════════════════════════════════════════════ */

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

/* ── CSS Variables ───────────────────────────────────────────────────── */
:root {
  --navy:        #1a237e;
  --navy-mid:    #283593;
  --navy-light:  #3949ab;
  --blue:        #0d47a1;
  --orange:      #ff6f00;
  --orange-h:    #e65100;
  --bg:          #f5f7fa;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-700:    #334155;
  --text:        #1e293b;
  --text-muted:  #64748b;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(26,35,126,.07);

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

  --header-h:    72px;
  --trans:       .18s ease;

  --fs-hero:     clamp(30px, 5vw, 52px);
  --fs-h2:       clamp(24px, 3.5vw, 34px);
  --fs-h3:       clamp(18px, 2vw, 22px);
  --fs-body:     16px;
  --fs-small:    14px;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Vazirmatn', sans-serif;
  font-size: var(--fs-body);
  font-weight: 400;
  direction: rtl;
  text-align: right;
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea, button { font-family: inherit; }

/* ── Container ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ──────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.45; color: var(--navy); letter-spacing: 0; }
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: 1.05rem; }
p  { color: var(--gray-700); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-h); border-color: var(--orange-h); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }
.btn-lg { padding: .8rem 2rem; font-size: 1.05rem; }

/* ── Section titles ──────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-bottom: .5rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 48px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,35,126,.1);
  height: var(--header-h);
  transition: box-shadow var(--trans), background-color var(--trans), transform var(--trans);
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(26,35,126,.16); }
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 1.5rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.logo-icon.logo-image {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(26,35,126,.12);
  padding: 2px;
}
.logo-icon.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.logo-text .brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text .brand-lat {
  font-size: .7rem;
  color: var(--gray-500);
  letter-spacing: .04em;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin: 0 auto;
}
.main-nav a {
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: var(--trans);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: rgba(26,35,126,.06);
}
.main-nav a.active { color: var(--navy); font-weight: 700; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-social {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.header-social a,
.header-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--trans);
}
.header-social a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.header-social span {
  color: var(--gray-400);
  cursor: help;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--gray-500);
  font-size: .85rem;
}
.header-phone a { color: var(--navy); font-weight: 700; transition: var(--trans); }
.header-phone a:hover { color: var(--orange); }
.header-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--gray-700);
  transition: var(--trans);
}
.header-icon-btn:hover { background: var(--gray-100); color: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--white);
  flex-direction: column;
  padding: 1.5rem;
  gap: .25rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--trans);
}
.mobile-nav a:hover { background: var(--gray-50); color: var(--navy); }
.mobile-nav .close-btn {
  align-self: flex-start;
  background: var(--gray-100);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
  cursor: pointer;
}
.mobile-nav .close-btn:hover { background: var(--gray-200); }
.mobile-nav .btn { margin-top: 1rem; justify-content: center; }
.mobile-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin: .35rem 0 .65rem;
}
.mobile-social a,
.mobile-social span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .75rem .8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
}
.mobile-social span { color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: contain; /*hero-logo-full t69*/
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, .58) 0%,
    rgba(0, 0, 0, .38) 50%,
    rgba(0, 0, 0, .20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0 0;
}
.hero-text {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.hero-text h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: .75rem;
}
.hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

/* Search panel */
.search-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: -2rem;
  position: relative;
  z-index: 10;
}
.search-panel h2 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.search-panel h2 svg { color: var(--orange); }
.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: .75rem;
  align-items: end;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.search-field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.search-field select,
.search-field input {
  height: 46px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0 .85rem;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left .75rem center;
}
.search-field select:focus,
.search-field input:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(57,73,171,.12);
}
.search-btn { height: 46px; padding: 0 1.8rem; border-radius: var(--radius-sm); }

/* ═══════════════════════════════════════════════════════════════════════
   CATEGORY CHIPS
   ═══════════════════════════════════════════════════════════════════════ */
.categories-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 1rem 0;
}
.categories-scroll {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: .87rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
}
.cat-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(26,35,126,.04);
}
.cat-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.cat-chip.active .chip-count { background: rgba(255,255,255,.25); color: var(--white); }
.chip-count {
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: var(--radius-pill);
  padding: .05rem .5rem;
  font-size: .78rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════
   ADS / LISTINGS GRID
   ═══════════════════════════════════════════════════════════════════════ */
.section { padding: 3.5rem 0; }
.section-bg { background: var(--white); }
.section-muted { background: var(--bg); }

.ads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ad-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
}
.ad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,35,126,.13);
}
.ad-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}
.ad-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.ad-card:hover .ad-card-img img { transform: scale(1.04); }

.ad-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.ad-card-title {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.ad-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gray-500);
  font-size: .82rem;
}
.ad-card-meta span {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.ad-card-category {
  display: inline-block;
  background: rgba(26,35,126,.07);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: .15rem .6rem;
  font-size: .75rem;
  font-weight: 600;
}
.ad-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  padding-top: .5rem;
}
.ad-card-footer {
  padding: .75rem 1.1rem;
  border-top: 1px solid var(--gray-100);
}
.ad-card-footer .btn {
  width: 100%;
  justify-content: center;
  font-size: .87rem;
  padding: .5rem;
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 2rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(26,35,126,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.trust-text span {
  font-size: .82rem;
  color: var(--gray-500);
}
.trust-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  margin-top: 1.5rem;
}
.trust-seal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.25rem;
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-size: .8rem;
}
.trust-seal-placeholder svg { color: var(--gray-300); }

/* ═══════════════════════════════════════════════════════════════════════
   BLOG SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,35,126,.12);
}
.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.1rem 1.25rem 1.3rem;
}
.blog-card-cat {
  display: inline-block;
  background: rgba(255,111,0,.1);
  color: var(--orange);
  border-radius: var(--radius-pill);
  padding: .15rem .65rem;
  font-size: .76rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: .6rem;
  transition: color var(--trans);
}
.blog-card:hover .blog-card-title { color: var(--orange); }
.blog-card-excerpt {
  font-size: .87rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-100);
  font-size: .82rem;
  color: var(--gray-400);
}
.blog-card-footer a {
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: color var(--trans);
}
.blog-card-footer a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT TEASER
   ═══════════════════════════════════════════════════════════════════════ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; font-size: .95rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-box {
  background: rgba(26,35,126,.04);
  border-radius: var(--radius-sm);
  padding: 1rem .75rem;
  text-align: center;
}
.stat-box .stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-box .stat-label {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: .3rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding-top: 3.5rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-brand .logo-icon {
  background: rgba(255,255,255,.1);
  color: var(--orange);
}
.footer-brand .logo-icon.logo-image { background: var(--white); }
.footer-brand .brand { color: var(--white); font-size: 1.05rem; }
.footer-brand .brand-lat { color: rgba(255,255,255,.5); }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-social a,
.footer-social span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 36px;
  padding: .35rem .75rem;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: var(--trans);
  font-size: .82rem;
  font-weight: 700;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-social span {
  color: rgba(255,255,255,.45);
  cursor: help;
}

.social-follow-section { padding-top: 3rem; padding-bottom: 3rem; }
.social-follow-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(26,35,126,.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26,35,126,.06), rgba(255,111,0,.08));
  box-shadow: 0 10px 34px rgba(26,35,126,.08);
}
.social-follow-box h2 {
  font-size: var(--fs-h2);
  margin-bottom: .35rem;
}
.social-follow-box p {
  max-width: 58ch;
  color: var(--gray-700);
}
.social-follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  flex-shrink: 0;
}
.social-follow-links a,
.social-follow-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .7rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  font-weight: 700;
  transition: var(--trans);
}
.social-follow-links a:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(26,35,126,.18);
}
.social-follow-links span {
  border-color: var(--gray-200);
  color: var(--gray-500);
  cursor: help;
}

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links li + li { margin-top: .5rem; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  transition: var(--trans);
}
.footer-links a:hover { color: var(--orange); }
.footer-links svg { flex-shrink: 0; }
.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .87rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: .1rem; color: var(--orange); }
.footer-contact-item strong { display: block; color: var(--white); font-size: .8rem; margin-bottom: .15rem; }
.footer-contact-item a { color: rgba(255,255,255,.8); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item span { color: rgba(255,255,255,.7); }
.contact-phone-stack {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.contact-phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}
.contact-phone-row > span:first-child {
  min-width: 4.8rem;
}
.about-contact-list {
  display: grid;
  gap: .75rem;
  margin: 1.25rem 0;
}
.about-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .85rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-50);
}
.about-contact-item svg {
  flex-shrink: 0;
  margin-top: .25rem;
  color: var(--orange);
}
.about-contact-item strong {
  display: block;
  color: var(--navy);
  font-size: .86rem;
  margin-bottom: .15rem;
}
.about-contact-item span,
.about-contact-item a {
  color: var(--gray-700);
  font-size: .92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.6); transition: var(--trans); }
.footer-bottom a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
}
.form-control {
  height: 46px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0 .9rem;
  font-family: 'Vazirmatn', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--trans);
}
textarea.form-control { height: auto; padding: .75rem .9rem; resize: vertical; min-height: 100px; }
.form-control:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(57,73,171,.1); }
.form-control::placeholder { color: var(--gray-400); }
.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left .85rem center;
}

/* Alert / flash */
.alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 500;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #93c5fd; }

/* ═══════════════════════════════════════════════════════════════════════
   PAGE COMMON
   ═══════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 3rem 0;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 1.7rem; }
.page-hero p  { color: rgba(255,255,255,.75); margin-top: .5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  justify-content: center;
  margin-top: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { opacity: .5; }

/* ═══════════════════════════════════════════════════════════════════════
   AD DETAIL
   ═══════════════════════════════════════════════════════════════════════ */
.ad-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}
.ad-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--gray-100);
}
.ad-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.ad-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.ad-specs-table tr + tr td { border-top: 1px solid var(--gray-100); }
.ad-specs-table td {
  padding: .65rem .75rem;
  vertical-align: middle;
}
.ad-specs-table td:first-child { color: var(--gray-500); font-weight: 500; width: 45%; }
.ad-specs-table td:last-child { font-weight: 600; color: var(--text); }
.ad-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.ad-contact-card .price { font-size: 1.6rem; font-weight: 700; color: var(--orange); margin-bottom: 1.25rem; }

/* ═══════════════════════════════════════════════════════════════════════
   FILTER SIDEBAR
   ═══════════════════════════════════════════════════════════════════════ */
.ads-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.75rem;
  align-items: start;
}
.filter-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.filter-card h3 { font-size: 1rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--gray-100); padding-bottom: .75rem; }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label { font-size: .82rem; font-weight: 600; color: var(--gray-500); display: block; margin-bottom: .5rem; }
.filter-group select { width: 100%; }
.ads-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════════════════════════════════════ */
.auth-wrap {
  min-height: calc(100vh - var(--header-h) - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}
.auth-card h1 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.75rem;
}
.auth-switch {
  text-align: center;
  margin-top: 1.25rem;
  font-size: .88rem;
  color: var(--gray-500);
}
.auth-switch a { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════════
   ADMIN
   ═══════════════════════════════════════════════════════════════════════ */
.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - var(--header-h));
}
.admin-sidebar {
  background: var(--navy);
  padding: 1.5rem 0;
}
.admin-sidebar h3 { color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 600; padding: .5rem 1.25rem; letter-spacing: .05em; text-transform: uppercase; }
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.25rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--trans);
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,.08); color: var(--white); }
.admin-sidebar a.active { border-right: 3px solid var(--orange); }
.admin-main { padding: 2rem; background: var(--bg); }
.admin-heading { font-size: 1.3rem; margin-bottom: 1.5rem; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}
.admin-card h2 { font-size: 1.05rem; margin-bottom: 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--gray-100); }

/* Admin login specifically capped heading */
.admin-auth-card h1 { font-size: 1.3rem; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.stat-card .stat-val { font-size: 1.75rem; font-weight: 700; color: var(--navy); }
.stat-card .stat-lbl { font-size: .82rem; color: var(--gray-500); margin-top: .25rem; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table th {
  text-align: right;
  padding: .65rem .85rem;
  background: var(--gray-50);
  color: var(--gray-500);
  font-weight: 600;
  border-bottom: 1px solid var(--gray-200);
  font-size: .8rem;
}
.data-table td {
  padding: .7rem .85rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }
.badge {
  display: inline-block;
  padding: .15rem .6rem;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 600;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-red   { background: #fee2e2; color: #991b1b; }
.badge-gray   { background: var(--gray-100); color: var(--gray-500); }
.badge-orange { background: #ffedd5; color: #9a3412; }

/* ── Standalone admin layout (no public header/footer) ───────────────── */
body.adm { background: var(--bg); }
body.adm .admin-layout { min-height: 100vh; grid-template-columns: 240px 1fr; }
body.adm .admin-sidebar { height: 100vh; position: sticky; top: 0; overflow-y: auto; }
.admin-sidebar .adm-brand {
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: .25rem;
  letter-spacing: .01em;
}
.admin-sidebar .adm-user {
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  padding: .3rem 1.25rem .75rem;
}
.adm-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.adm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: .25rem;
}
.adm-img-prev {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  display: block;
  margin-bottom: .4rem;
}
.adm-sep { border: none; border-top: 1px solid var(--gray-100); margin: 1.25rem 0; }
.btn-danger {
  background: #dc2626;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: .55rem 1.1rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
}
.btn-danger:hover { background: #b91c1c; color: var(--white); }
.btn-danger.btn-sm { padding: .3rem .75rem; font-size: .82rem; }
.adm-del-wrap { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--gray-100); }
@media (max-width: 1024px) {
  body.adm .admin-sidebar { display: block; height: auto; position: static; }
  body.adm .admin-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body.adm .admin-sidebar { display: none; }
  .adm-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 2.5rem;
}
.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--trans);
  text-decoration: none;
}
.page-btn:hover { border-color: var(--navy); color: var(--navy); }
.page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════════
   MISC UTILITIES
   ═══════════════════════════════════════════════════════════════════════ */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--gray-500); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.w-full { width: 100%; }
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-400);
}
.empty-state svg { margin: 0 auto 1rem; }
.empty-state h3 { color: var(--gray-500); margin-bottom: .5rem; }

/* ── Scroll reveal ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Cart badge ──────────────────────────────────────────────────────── */
.cart-badge {
  position: absolute;
  top: -5px;
  left: -3px;
  min-width: 17px;
  height: 17px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  pointer-events: none;
  border: 1.5px solid var(--white);
}

/* ── Product gallery ─────────────────────────────────────────────────── */
.product-gallery { margin-bottom: 1.5rem; }
.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
  aspect-ratio: 16/10;
  margin-bottom: .75rem;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--trans);
}
.product-gallery-thumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.product-gallery-thumb {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: var(--trans);
  flex-shrink: 0;
}
.product-gallery-thumb img { width: 80px; height: 56px; object-fit: cover; display: block; }
.product-gallery-thumb:hover { border-color: var(--navy); }
.product-gallery-thumb.active { border-color: var(--orange); }

/* ── Quantity row ────────────────────────────────────────────────────── */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: .25rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ads-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .ads-layout { grid-template-columns: 1fr; }
  .filter-card { position: static; }
  .ads-list-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { gap: 2rem; }
  .ad-detail-grid { grid-template-columns: 1fr; }
  .ad-contact-card { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .main-nav { display: none; }
  .header-phone { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .about-teaser { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-btn { grid-column: 1 / -1; }
  .search-panel { padding: 1.25rem; border-radius: var(--radius); }
  .social-follow-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — 390px (mobile)
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .ads-grid { grid-template-columns: 1fr !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .search-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 2.5rem 0; }
  .hero { min-height: 420px; }
  .hero-text h1 { font-size: 30px; }
  .auth-card { padding: 1.5rem; }
  .ads-list-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 2rem 0; }
  .page-hero h1 { font-size: 1.35rem; }
  .mobile-social { grid-template-columns: 1fr; }
  .social-follow-links { width: 100%; }
  .social-follow-links a,
  .social-follow-links span { width: 100%; }
}

/* hero-mobile-stack: show the COMPLETE brand logo on mobile (own block above the text+search, black bg) */
@media (max-width: 768px) {
  .hero { display: block; min-height: 0; background: #000; }
  .hero-bg { position: relative; inset: auto; width: 100%; height: 76vw; max-height: 360px; }
  .hero-bg img { object-fit: contain; object-position: center; }
  .hero-overlay { display: none; }
  .hero-content { padding: 1.1rem 0 0; }
}

/* ===================================================================== */
/* == CR#578 BLACK-GOLD trial theme — revert: delete from this marker == */
/* ===================================================================== */
:root {
  --navy:        #c9a84c;   /* primary → gold */
  --navy-mid:    #b8973f;
  --navy-light:  #d9bd6a;
  --blue:        #c9a84c;
  --orange:      #e6c15a;   /* accent → bright gold */
  --orange-h:    #f2cf6a;
  --bg:          #0e0e11;   /* page bg → near-black */
  --white:       #17171c;   /* "white" card surfaces → dark */
  --gray-50:     #151519;
  --gray-100:    #1b1b21;
  --gray-200:    #2a2a31;
  --gray-400:    #8b8b93;
  --gray-500:    #a9a9b1;
  --gray-700:    #d6d6da;
  --text:        #f4f1e6;   /* body text → warm off-white */
  --text-muted:  #b9b4a4;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.5);
  --shadow-md:   0 2px 12px rgba(0,0,0,.55);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.6);
  --shadow-card: 0 2px 14px rgba(201,168,76,.14);
}
body { background: var(--bg); color: var(--text); }
/* common hardcoded light surfaces → dark */
.header, header, .site-header, .navbar { background: #121216 !important; }
.footer, footer, .site-footer { background: #0b0b0e !important; }
/* cards / white blocks that hardcode #fff */
[style*="background:#fff"], [style*="background: #fff"], [style*="background:#ffffff"], [style*="background: #ffffff"] { background: var(--white) !important; }
/* selects/inputs readable on dark */
select option { color:#1a1a1a; background:#fff; }
input, textarea, select { background: var(--white); color: var(--text); border-color: var(--gray-200); }
::selection { background: var(--navy); color: #111; }
