/* ===== FONTS ===== */
@font-face { font-family: 'Vazir'; src: url('../fonts/Vazir-FD-WOL.woff'); font-weight: 400; }
@font-face { font-family: 'Vazir'; src: url('../fonts/Vazir-Bold-FD-WOL.woff'); font-weight: 500; }
@font-face { font-family: 'Vazir'; src: url('../fonts/Vazir-Medium-FD-WOL.woff'); font-weight: 700; }

:root {
    --navy: #061A33;
    --navy-light: #0a2444;
    --gold: #C5A059;
    --gold-light: #d4b06a;
    --white: #ffffff;
    --text-muted: rgba(255,255,255,0.7);
    --page-bg:        #f5f6f8;
        --shadow-soft: 0 10px 30px rgba(6, 26, 51, 0.08);
          --border-radius: 12px;
  --card-bg:        var(--white);
  --card-border:    rgba(0,0,0,0.07);
  --card-shadow:    0 2px 12px rgba(0,0,0,0.08);
  --card-shadow-hv: 0 8px 32px rgba(0,0,0,0.15);
  --sidebar-bg:     var(--navy);
  --sidebar-border: rgba(255,255,255,0.08);
  --hero-overlay:   rgba(6,26,51,0.72);
  --badge-oos:      #e74c3c;
  --badge-sale:     var(--gold);
  --badge-feat:     var(--navy-light);
  --input-bg:       rgba(255,255,255,0.08);
  --input-focus:    rgba(197,160,89,0.35);
  --transition-f:   0.2s ease;
  --transition-m:   0.3s ease;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;
  }
img{
  max-width: 100%;
}
  * { margin: 0; padding: 0; box-sizing: border-box; }
a{
  text-decoration: none;
}
  body {
    font-family: 'Vazir';
    background: #f5f5f5;
    color: var(--navy);
    direction: rtl;
  }
.top-bar {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2942 100%);
  border-bottom: 2px solid var(--gold);
  padding: 10px 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-right: 14px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 4px;
}

.top-bar-item svg {
  color: var(--gold);
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

.top-bar-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.top-bar-social-link:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .top-bar-contact {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: none !important;
  }
}

  /* ─── HEADER ─── */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy) !important;
    border-bottom: 1px solid rgba(197,160,89,0.2);
  }

  .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 32px;
  }
.header-inner .logo img{
  max-width: 180px;
}
.mobile-header .logo img{
  max-width: 160px;
}
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-icon svg { width: 26px; height: 26px; }
  .logo-text { text-align: right; }
  .logo-text .brand { color: var(--white); font-size: 16px; font-weight: 700; line-height: 1.2; }
  .logo-text .sub { color: var(--gold); font-size: 11px; }
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .mobile-overlay { display: block; }
  
  /* مخفی کردن منوی دسکتاپ */
  nav {
    display: none !important;
  }
  
  /* مخفی کردن mega menu */
  .mega-menu {
    display: none !important;
  }
}

  /* Nav */
  nav { flex: 1; display: flex; align-items: center; justify-content: center; }
  .nav-list { list-style: none; display: flex; gap: 4px; align-items: center;margin: 0; }
  .nav-list > li { position: relative; }
  .nav-list > li > a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    display: block;
    transition: color 0.2s;
    white-space: nowrap;
  }
  .nav-list > li > a:hover,
  .nav-list > li.active > a { color: var(--gold); }
  .nav-list > li.active > a {
    position: relative;
  }
  .nav-list > li.active > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 50%;
    transform: translateX(50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }

  /* Mega Menu */
  .has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: -200px;
    width: 780px;
    background: var(--navy);
    border: 1px solid rgba(197,160,89,0.25);
    border-radius: 16px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 200px;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .mega-col h4 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(197,160,89,0.2);
  }
  .mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px;padding: 0;}
  .mega-col ul li { display: flex; align-items: center; gap: 8px; }
  .mega-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  .mega-col ul li a:hover { color: var(--gold); }
  .mega-col ul li .icon { font-size: 14px; }

  .mega-see-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-size: 13px;
    text-decoration: none;
    margin-top: 12px;
  }

  .mega-card {
    background: linear-gradient(135deg, #0d2a50, #061A33);
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mega-card img { width: 100%; height: 100px; object-fit: cover; border-radius: 8px; }
  .mega-card h5 { color: var(--white); font-size: 13px; font-weight: 700; line-height: 1.6; }
  .mega-card p { color: rgba(255,255,255,0.6); font-size: 11px; line-height: 1.8; }

/* Header actions */
.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  flex-shrink: 0; 
}

/* ─────────────────────────────────────────────
   HG PREFIX - HEADER GENERAL (Email & Cart Icons)
   ───────────────────────────────────────────── */

/* Desktop Icon Buttons */
.hg-icon-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
}

.hg-icon-btn:hover { 
  color: var(--gold); 
  background: rgba(197,160,89,0.1);
}

.hg-cart-badge {
    position: absolute;
    top: 3px;
    left: 22px;
    background: var(--gold);
    color: var(--navy);
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
}

/* Mobile Actions Container */
.hg-mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Icon Buttons */
.hg-mobile-icon {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
}

.hg-mobile-icon:hover { 
  color: var(--gold); 
  background: rgba(197,160,89,0.1);
}

/* Mobile Cart - Badge positioning adjustment */
.hg-mobile-cart .hg-cart-badge {
  top: 4px;
  left: 4px;
}


/* CTA Button */
.btn-cta {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cta:hover { 
  background: var(--gold); 
  color: var(--navy); 
}


  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 580px;
    background: url('..//img/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,26,51,0.4) 40%, rgba(6,26,51,0.92) 100%);
  }

  /* Mega menu shown over hero */
  .hero-mega-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0 calc((100% - 1400px) / 2 + 24px);
    pointer-events: none;
    z-index: 10;
  }

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 24px 110px 24px;
    width: 100%;
}
  .hero-text { max-width: 520px; }
  .hero-text h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .hero-text h1 span { color: var(--gold); }
  .hero-text p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 36px;
    max-width: 420px;
  }
  .hero-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
  .hero-btns svg{
    width: 13px;
    height: 13px;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
  }
  .btn-secondary svg{
    fill: #ddd;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    max-width: 1100px;
    margin: -120px auto 0;
    position: relative;
    z-index: 20;
  }
  .stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 28px;
    border-left: 1px solid rgba(0,0,0,0.08);
  }
  .stat-item:last-child { border-left: none; }
  .stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(197,160,89,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .stat-icon svg { width: 26px; height: 26px; fill: var(--gold); }
  .stat-text { text-align: right; }
  .stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;direction: rtl;
  }
  .stat-number .plus { color: var(--gold); }
  .stat-label { color: #666; font-size: 13px; margin-top: 4px; }

  /* ─── SERVICES ─── */
  .services {
    max-width: 1400px;
    margin: 0 auto;
  }
  .section-label {
    text-align: center;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  .section-title {
    text-align: center;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 48px;
    color: var(--navy-light);
  }
  .services-grid {

  }
  .service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
  }
  .service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(197,160,89,0.15);
    transform: translateY(-4px);
  }
  .service-card .s-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(197,160,89,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;}
  .service-card .s-icon svg { width: 23px; height: 23px; fill: var(--gold); }
  .service-card h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .service-card p { font-size: 12px; color: #777; line-height: 1.7; }
  .service-card .s-arrow { color: var(--gold); font-size: 18px; margin-top: 12px; display: block; }

  /* ── Ticker Section ── */
.ticker-section {
  background: var(--navy);
  border-top: 1px solid rgba(197,160,89,0.15);
  border-bottom: 1px solid rgba(197,160,89,0.15);
  padding: 0;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  height: 52px;
  gap: 0;
  padding: 0 25px;
}

/* Label */
.ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.4px;
  white-space: nowrap;
  padding-left: 20px; /* LTR side */
}

.ticker-label-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Divider */
.ticker-divider {
  width: 1px;
  height: 28px;
  background: rgba(197,160,89,0.3);
  flex-shrink: 0;
  margin: 0 20px;
}

/* Scroll area */
.ticker-scroll {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to left, transparent, black 60px, black calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(to left, transparent, black 60px, black calc(100% - 60px), transparent);
}

/* Track */
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-rtl 28s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); } /* 50% چون آیتم‌ها duplicate شدن */
}

/* Each item */
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: color 0.25s;
  cursor: default;
}

.ticker-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

.ticker-item:hover { color: var(--gold); }

/* ── Mobile ── */
@media (max-width: 576px) {
  .ticker-label { font-size: 11px; padding-left: 12px; }
  .ticker-divider { margin: 0 12px; }
  .ticker-item { font-size: 12px; padding: 0 18px; }
}

  /* ── Hamburger Button ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1100;
}
.menu-toggle:hover { background: rgba(197,160,89,0.1); }
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), opacity 0.25s, width 0.3s;
  transform-origin: center;
}
/* Open state */
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle.open span:nth-child(2) { width: 70%; }

/* ── Overlay ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 999;
  transition: background 0.4s;
}
.mobile-overlay.active {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}

/* ── Drawer Panel ── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100dvh;
  background: var(--navy);
  z-index: 10500;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav.open { right: 0; display: flex !important; }

/* Header strip inside drawer */
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(197,160,89,0.15);
  flex-shrink: 0;
  width: 100%;
}
.mobile-nav-logo { display: flex; align-items: center; gap: 10px; }
.mobile-nav-logo .brand { color: var(--white); font-size: 15px; font-weight: 700; }
.mobile-nav-logo .sub  { color: var(--gold); font-size: 11px; }
.mobile-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(197,160,89,0.3);
  background: none;
  border-radius: 8px;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(197,160,89,0.1); }

/* Menu items */
.mobile-nav-body { flex: 1; padding: 12px 0;width: 100%; }

.m-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-right: 3px solid transparent;
  user-select: none;
}
.m-item:hover, .m-item.active {
  color: var(--gold);
  background: rgba(197,160,89,0.06);
  border-right-color: var(--gold);
}
.m-item .m-arrow {
  font-size: 11px;
  transition: transform 0.3s;
  color: var(--gold);
  opacity: 0.7;
}
.m-item.expanded .m-arrow { transform: rotate(-90deg); }

/* Submenu accordion */
.m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.23,1,.32,1);
  background: rgba(0,0,0,0.18);
}
.m-sub.open { max-height: 600px; }

.m-sub-group { padding: 10px 0 4px; }
.m-sub-group h6 {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 24px 6px 16px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.m-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px 10px 16px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}
.m-sub a:hover { color: var(--gold); }
.m-sub a .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;opacity: 0.5;
}

/* Divider */
.m-divider {
  height: 1px;
  background: rgba(197,160,89,0.12);
  margin: 8px 20px;
}

/* Footer of drawer */
.mobile-nav-foot {
  padding: 20px;
  border-top: 1px solid rgba(197,160,89,0.15);
  flex-shrink: 0;display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.m-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.m-btn-primary:hover { background: var(--gold-light); }
.m-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  background: none;
  font-family: inherit;
  transition: color 0.2s;
}
.m-lang:hover { color: var(--white); }

/* ── Show on mobile only ── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .mobile-overlay { display: block; }
}
/* ══════════════════════════════════GLOBAL PRESENCE SECTION
══════════════════════════════════ */
.global-section {
  position: relative;
  background-color: #061A33;
  overflow: hidden;
  padding: 80px 0 60px;direction: rtl;
}

/* ── Background Map ── */
.global-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.global-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.55;
}

/* ── Header ── */
.global-header {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #C5A059;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.eyebrow-diamond { font-size: 10px; opacity: 0.7; }

.global-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.global-title .text-gold { color: #C5A059; }

.global-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255,255,255,0.75);
  line-height: 2;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Map Spacer ── */
.global-map-spacer {
  height: clamp(320px, 42vw, 390px);
  position: relative;
  z-index: 1;
}

/* ── Region Cards Row ── */
.global-regions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

/* ── Single Card ── */
.region-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.region-card:hover {
  background: rgba(197,160,89,0.07);
  border-color: rgba(197,160,89,0.45);
  transform: translateY(-4px);
}

/* Icon */
.region-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.region-icon-wrap svg {
    width: 50px;
    height: 50px;
    fill: var(--gold);
}

/* Content */
.region-content { flex: 1; }

.region-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.4;
}

.region-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.region-diamond { color: #C5A059; font-size: 10px; }
.region-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #C5A059;
  line-height: 1;
}
.region-unit {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.region-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin: 0;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991px) {
  .global-regions { grid-template-columns: 1fr; gap: 16px; }
  .global-map-spacer { height: clamp(240px, 50vw, 380px); }
}

@media (max-width: 576px) {
  .global-section { padding: 60px 0 40px; }
  .global-map-spacer { height: 220px; }
  .region-card { padding: 20px 16px; gap: 14px; }
  .region-icon-wrap { width: 52px; height: 52px; }
  .global-desc br { display: none; }
}

/* ══ STATS SECTION ══ */
.stats-section {
  direction: rtl;
}

.stats-col {
  border-left: 1px solid #e8e8e8;
}
.stats-col--last {
  border-left: none;
}

/* On mobile, remove left borders and add bottom borders */
@media (max-width: 767px) {
  .stats-col {
    border-left: none;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 32px;
    margin-bottom: 8px;
  }
  .stats-col--last { border-bottom: none; }
}

.stats-item {
  padding: 20px 16px 8px;
}

.stats-number {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: #C5A059;
  line-height: 1.1;
  margin-bottom: 12px;
  /* Latin digits — no font override needed */
}

.stats-title {
  font-size: 15px;
  font-weight: 800;
  color: #1B2A6B;
  margin-bottom: 10px;
}

.stats-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.9;
  margin: 0;
}
.stats-section svg {
    width: 32px;
    height: 32px;
    margin-bottom: 2px;
    fill: var(--gold);
    color: var(--gold);
}
/* ══ PROJECTS SECTION ══ */
.projects-section {
  background: #061a33;
  direction: rtl;
  position: relative;
  overflow: hidden;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #C5A059;
  font-size: 14px;
  letter-spacing: 1px;
}
.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #C5A059;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin: 10px 0 18px;
}
.section-title .gold { color: #C5A059; }

.section-desc {
  color: #a0b0c8;
  font-size: 15px;
  line-height: 2;
}

/* Slider wrap — reserve space for arrows */
.projects-slider-wrap {
  position: relative;
  padding: 0 56px;
}

/* Card */
.proj-card {
  background: #0d2240;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(197,160,89,.15);
  transition: transform .3s, box-shadow .3s;
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
}

/* Image */
.proj-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.proj-img-wrap img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform .4s;
}
.proj-card:hover .proj-img-wrap img { transform: scale(1.06); }

/* Icon badge over image bottom */
.proj-icon-badge {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #0d2240;
  border: 2px solid #C5A059;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C5A059;
  font-size: 18px;
  z-index: 2;
  display: none;
}
.proj-icon-badge svg{
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
    }
/* Body */
.proj-body {
  padding: 38px 24px 24px;
  text-align: center;
}
.proj-body h4 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.proj-divider {
  border: none;
  border-top: 2px solid var(--gold);
  width: 40px;
  margin: 0 auto 16px !important;
  opacity: 1;
}
.proj-body p {
  color: #8fa5bf;
  font-size: 13.5px;
  line-height: 2;
  margin-bottom: 20px;
}

/* CTA Button */
.proj-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C5A059;
  color: #061a33;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.proj-btn svg{
  width: 7px;
}
.proj-btn:hover {
  background: #d4b06a;
  transform: translateX(-3px);
}

/* Navigation Arrows */
.proj-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,.5);
  background: rgba(13,34,64,.85);
  color: #C5A059;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-nav:hover { background: #C5A059; color: #061a33; border-color: #C5A059; }
.proj-nav--prev { right: 0; }
.proj-nav--next { left: 0; }

/* Pagination */
.proj-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.proj-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: #2a4060;
  opacity: 1;
  border-radius: 50%;
  transition: background .2s, transform .2s;
}
.proj-pagination .swiper-pagination-bullet-active {
  background: #C5A059;
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .projects-slider-wrap { padding: 0 44px; }
  .proj-img-wrap { height: 180px; }
}
/* ===== PRODUCTS SECTION ===== */
.products-section {
  background: #f8f7f4;
  direction: rtl;
}
.products-section .prod-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}
.products-section .section-divider svg{
width: 24px;
    height: 33px;
    fill: var(--gold);
    color: var(--gold);
    }
.products-section .prod-img-wrap {
  display: block;
  overflow: hidden;
}

.products-section .prod-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.products-section .prod-card:hover .prod-img-wrap img {
  transform: scale(1.04);
}

.products-section .prod-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.products-section .prod-body h3 a {
  color: inherit;
  text-decoration: none;
}

.products-section .prod-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.products-section .prod-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform-origin: right center;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.products-section .prod-btn svg{
    width: 11px;
    color: #fff;
    fill: #fff;
    }
    .products-section .prod-cart-btn .special-addtocart svg{
        width: 38px;
    height: 36px;
    margin-top: 16px;
    background: var(--navy);
    fill: #eee;
    color: #eee;
    padding: 8px;
    border-radius: 8px;
    }
.products-section .prod-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.products-section .prod-btn-text {
  display: inline-block;
  transition: all 0.3s ease;
}

.products-section .prod-cart-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px) scale(0.9);
  transition: all 0.3s ease;
}

.products-section .prod-cart-btn i,
.products-section .prod-cart-btn svg {
  font-size: 16px;
}
.product-section .divider-icon svg {
    width: 24px;
    height: 32px;
    fill: var(--gold);
    color: var(--gold);
}


.products-section .prod-card:hover .prod-cart-btn {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.products-section .prod-cart-btn.disabled {
  pointer-events: none;
  opacity: 0.5 !important;
}

.section-label {
  color: #C9A84C;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: #C9A84C;
}
.divider-icon {
  color: #C9A84C;
  font-size: 1.1rem;
}

.products-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #1a1a2e;
  font-weight: 800;
  margin-top: 0.5rem;
}
.products-subtitle {
  color: #666;
  font-size: 1rem;
  line-height: 1.9;
}

/* Cards */
.prod-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ede8d8;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.prod-card:hover {
  box-shadow: 0 12px 40px rgba(201,168,76,0.18);
  transform: translateY(-4px);
}

.prod-img-wrap {
  height: 220px;
  overflow: hidden;
}
.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}

.prod-body {
  padding: 1.4rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.prod-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}
.prod-body p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.8;
  flex: 1;
}

.prod-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.55rem 1.4rem;
  background: #1a1a2e;
  color: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s;
}
.prod-btn:hover {
  background: #C9A84C;
  color: #fff;
}

/* Navigation */
.prod-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.prod-nav:hover { background: #C9A84C; }
.prod-prev { right: 0; }
.prod-next { left: 0; }

/* Pagination */
.prod-pagination {
  text-align: center;
  position: static !important;
  margin-top: 1.5rem;
}
.prod-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: #ccc;
  opacity: 1;
}
.prod-pagination .swiper-pagination-bullet-active {
  background: #C9A84C;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: #1a1a2e;
  padding: 3rem 0;
  direction: rtl;
}

.feat-item { color: #fff; }

.feat-icon {
  font-size: 2rem;
  color: #C9A84C;
  margin-bottom: 0.8rem;
  display: block;
}

.feat-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.feat-item p {
  font-size: 0.82rem;
  color: #a0aec0;
  line-height: 1.7;
}

/* ===== Why Choose Us ===== */
.why-choose-us {
  background-color: #0a1628;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  position: relative;
}

.wcu-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #C9A84C;
  text-shadow: 0 0 40px rgba(201,168,76,0.3);
  letter-spacing: 1px;
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #C9A84C;
  font-size: 0.7rem;
}
.ornament-divider span {
    display: flex;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent);
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

/* Card */
.wcu-cards {
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
}

.wcu-card {
  border-left: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}
.wcu-card:last-child { border-left: none; }

[dir="rtl"] .wcu-card { border-left: none; border-right: 1px solid rgba(201,168,76,0.15); }
[dir="rtl"] .wcu-card:last-child { border-right: none; }

.wcu-card:hover {
  background: rgba(201,168,76,0.05);
}

/* Icon */
.wcu-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}
.wcu-icon-wrap > svg {
    font-size: 2rem;
    color: var(-gold);
    width: 34px;
    height: 30px;
    fill: var(--gold);
}
.wcu-icon-wrap  svg {
    font-size: 2rem;
    color: var(--gold);
    width: 34px;
    height: 30px;
    fill: var(--gold);
}
.why-choose-us .divider-icon svg{
  width:50px;
  height: 50px;
  fill: var(--gold);
  color: var(--gold);
}
/* Text */
.wcu-card-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.wcu-card-text {
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

@media (max-width: 575px) {
  .wcu-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
}

/* ============================================
   EXPORTED PROJECTS SECTION — World-Class UI
   ============================================ */

.exp-section {
  padding: 0 0;
  overflow: hidden;
  font-family: inherit;
}

/* ---- Header ---- */
.exp-header { margin-bottom: 0; }

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.35);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.exp-badge i { font-size: 0.85rem; }

.exp-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.exp-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 24px;
}
.exp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
}
.exp-divider span {
  display: block;
  width: 80px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.exp-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.exp-divider i { font-size: 0.7rem; }

/* ---- Swiper ---- */
.exp-swiper {
  padding: 16px 8px 0 !important;
  overflow: visible !important;
}

/* ---- Card ---- */
.exp-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(6,26,51,0.10);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(197,160,89,0.08);
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(6,26,51,0.18);
}

/* Image */
.exp-card__img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.exp-card__img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;transition: transform 0.6s ease;
  display: block;
}
.exp-card:hover .exp-card__img img { transform: scale(1.07); }

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6,26,51,0.65) 100%);
  pointer-events: none;
}

/* Country badge */
.exp-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 4px 12px 4px 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.exp-card__badge img {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  display: block;
}

/* Category tag */
.exp-card__category {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* Body */
.exp-card__body {
  padding: 22px 20px 20px;display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 10px;
}
.exp-card__desc {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.85;
  margin-bottom: 18px;
  flex: 1;
}

/* Stats */
.exp-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f7f2;
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  gap: 4px;
}
.exp-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.exp-stat__icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exp-stat__icon i { color: var(--white); font-size: 0.75rem; }

.exp-stat__info { display: flex; flex-direction: column; }
.exp-stat__val {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.exp-stat__lbl {
  font-size: 0.66rem;
  color: #6b7280;
  margin-top: 1px;
}
.exp-stat__sep {
  width: 1px;
  height: 32px;
  background: rgba(197,160,89,0.25);
  flex-shrink: 0;
}

/* CTA button */
.exp-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.35s cubic-bezier(0.4,0,0.2,1), gap 0.35s cubic-bezier(0.4,0,0.2,1);
}
.exp-card__btn:hover { background: var(--gold); color: var(--white); gap: 14px; }
.exp-card__btn i { font-size: 0.8rem; }

/* ---- Navigation ---- */
.exp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 64px;
}
.exp-nav__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(197,160,89,0.35);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 12px rgba(6,26,51,0.08);
}
.exp-nav__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}
.exp-nav__btn i { font-size: 0.9rem; }

.exp-pagi .swiper-pagination-bullet { background: #ccc; opacity: 1; width: 8px; height: 8px; transition: all 0.3s; }
.exp-pagi .swiper-pagination-bullet-active { background: var(--gold); width: 28px; border-radius: 4px; }

/* ---- CTA Strip ---- */
.exp-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 44px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 50px;
}
.exp-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.12);
  pointer-events: none;
}
.exp-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; right: 10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0.08);
  pointer-events: none;
}
.exp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.exp-cta__text {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.exp-cta__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(197,160,89,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(197,160,89,0.08);
}
.exp-cta__icon svg {
    font-size: 1.6rem;
    color: var(--gold);
    width: 32px;
    fill: var(--gold);
}
.exp-cta__btn svg{
    width: 17px;
    height: 17px;
    fill: #fff;
}
.exp-cta__text h3 {
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.4;
}
.exp-cta__text p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

.exp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(197,160,89,0.35);
  flex-shrink: 0;
}
.exp-cta__btn:hover { background: var(--white); color: var(--navy); box-shadow: 0 8px 30px rgba(197,160,89,0.25); }

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .exp-section { padding-top: 56px; }
  .exp-card__img { height: 200px; }
  .exp-card__stats { gap: 2px; padding: 10px; }
  .exp-stat__val { font-size: 0.75rem; }
  .exp-cta__inner { flex-direction: column; text-align: center; }
  .exp-cta__text { flex-direction: column; text-align: center; }
  .exp-cta__btn { width: 100%; justify-content: center; }
}

/* =============================================
   PRODUCT CATEGORIES SECTION
   ============================================= */
.pcat-section {
  background: var(--navy);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  direction: rtl;
  margin-top: 25px;
}
.pcat-section .pcat-card__price span{
  color: #dddddd;
}
.pcat-section .exp-divider svg{
  width: 34px;
    fill: var(--gold);
}
.pcat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.pcat-tab {
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 12px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s ease;
}

.pcat-tab.active {
  background: #0f766e;
  color: #fff;
}

.pcat-tab__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.pcat-tab-panel[hidden] {
  display: none !important;
}

.pcat-grid {
  display: grid;
  grid-template-columns: repeat(var(--pcat-columns, 4), minmax(0, 1fr));
  gap: 24px;
}

.pcat-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pcat-card__img-wrap {
  position: relative;
}

.pcat-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.pcat-card__category {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.pcat-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pcat-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.pcat-card__title a {
  color: inherit;
  text-decoration: none;
}

.pcat-card__desc {
  margin: 0;
  color: #6b7280;
  line-height: 1.9;
}

.pcat-card__price {
  font-weight: 700;
}

.pcat-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
}

.pcat-empty {
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: #f9fafb;
}

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

@media (max-width: 767px) {
  .pcat-grid {
    grid-template-columns: 1fr;
  }
}

/* World map watermark */
.pcat-bg-map {
  position: absolute;
  inset: 0;
  background: url('assets/img/world-map.svg') center center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

/* ---- Header ---- */
.pcat-header { margin-bottom: 48px; }

.pcat-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.pcat-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}

.pcat-diamond {
  color: var(--gold);
  font-size: 0.55rem;
  margin-bottom: 20px;opacity: 0.8;
}

.pcat-subtitle {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  line-height: 2;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Tabs ---- */
.pcat-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(197,160,89,0.28);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;flex-wrap: wrap;
}

.pcat-tab {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(197,160,89,0.18);
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}
.pcat-tab:first-child { border-right: none; }

.pcat-tab__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.3s ease;
}

.pcat-tab:hover {
  color: var(--white);
  background: rgba(197,160,89,0.08);
}
.pcat-tab:hover .pcat-tab__icon { filter: grayscale(0) brightness(1); }

.pcat-tab.active {
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
}
.pcat-tab.active .pcat-tab__icon { filter: brightness(0) invert(1); }

/* ---- Cards Grid ---- */
.pcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- Card ---- */
.pcat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
              border-color 0.35s ease;
  /* Octagonal feel via clip-path on hover */
  position: relative;
}

.pcat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(197,160,89,0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;transition: opacity 0.35s ease;
}

.pcat-card:hover,
.pcat-card--active {
  transform: translateY(-6px);
  border-color: rgba(197,160,89,0.55);
  box-shadow: 0 16px 50px rgba(6,26,51,0.45),
              0 0 0 1px rgba(197,160,89,0.18) inset;
}
.pcat-card:hover::before,
.pcat-card--active::before { opacity: 1; }

/* Card image */
.pcat-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(197,160,89,0.1) 0%, transparent 70%);
  min-height: 200px;
}
.pcat-card__img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover;
    filter: drop-shadow(0 8px 20px rgba(197,160,89,0.3));
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    padding: 0;
    display: flex;
}
.pcat-section .pcat-card__image-link{
  width:100%;
}
.pcat-card:hover .pcat-card__img { transform: scale(1.1) translateY(-4px); }

/* Card body */
.pcat-card__body {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(197,160,89,0.1);
}
.pcat-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
    margin-top: 6px;
}
.pcat-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  flex: 1;
}
.pcat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease, opacity 0.3s ease;border-top: 1px solid rgba(197,160,89,0.15);
  padding-top: 16px;
}
.pcat-card__link:hover { gap: 14px; color: var(--gold); opacity: 0.85; }
.pcat-card__link i { font-size: 0.8rem; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .pcat-grid { grid-template-columns: repeat(2, 1fr); }
  .pcat-tab { min-width: 120px; font-size: 0.82rem; padding: 13px 12px; }
}
@media (max-width: 575px) {
  .pcat-section { padding: 60px 0; }
  .pcat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pcat-tabs { border-radius: 10px; }
  .pcat-tab { min-width: 50%; font-size: 0.78rem; padding: 11px 8px; gap: 6px; }
  .pcat-tab__icon { width: 22px; height: 22px; }
  .pcat-card__img-wrap { min-height: 150px; }
  .pcat-card__img { width: 95px; height: 95px; }
  .pcat-card__title { font-size: 0.95rem; }
  .pcat-card__desc { font-size: 0.78rem; }
}

/* ===== Section ===== */
.art-section {
  padding: 10px 0 50px;
}

.art-header { margin-bottom: 40px; }

.art-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.art-subtitle {
  font-size: 15px;
  color: #777;
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

/* ===== Swiper ===== */
.art-swiper-wrap {
  position: relative;
  padding: 0 10px;
}

.art-swiper {
  padding-bottom: 20px;
  padding-right: 30px !important; /* space for pagination */
}

/* Slide width — crucial for responsive */
.art-swiper .swiper-slide {
  width: 300px !important; /* fallback */
}

/* ===== Article Card ===== */
.art-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.art-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6,26,51,0.13);
}

/* Image */
.art-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.art-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.art-card:hover .art-card__img {
  transform: scale(1.06);
}

.art-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(6,26,51,0.85);
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Body */
.art-card__body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.art-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 10px;
}

.art-card__date {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.art-card__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
  flex: 1;
}

.art-card__link {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.art-card__link:hover {
  gap: 10px;
}

/* ===== Nav Arrows ===== */
.art-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(6,26,51,0.1);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.art-nav--prev { right: -60px; }
.art-nav--next { left: -60px; }

/* ===== CTA ===== */
.art-cta { margin-top: 36px; }

.art-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.art-cta__btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Category Pills ===== */
.art-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.art-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(6,26,51,0.04);
  border: 1px solid rgba(6,26,51,0.08);
  border-radius: 30px;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s;
}
.art-cat svg{
  width: 18px;
    height: 18px;
}
.art-cat:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* ≥ 1400px — Desktop extra large */
@media (min-width: 1400px) {
  .art-title { font-size: 34px; }
  .art-subtitle { font-size: 16px; }
}

/* ≤ 1199px — Laptops */
@media (max-width: 1199px) {
  .art-nav--prev { right: -40px; }
  .art-nav--next { left: -40px; }

  .art-swiper .swiper-slide {
    width: 280px !important;
  }
}

/* ≤ 991px — Tablets */
@media (max-width: 991px) {
  .art-section { padding: 70px 0 50px; }
  .art-title { font-size: 26px; }

  /* Hide custom arrows on tablet (Swiper handles dots) */
  .art-nav { display: none; }

  .art-swiper .swiper-slide {
    width: 260px !important;
  }

  .art-cats { gap: 8px; }
  .art-cat { font-size: 12px; padding: 6px 14px; }
}

/* ≤ 767px — Mobile landscape */
@media (max-width: 767px) {
  .art-section { padding: 60px 0 40px; }
  .art-title { font-size: 22px; }
  .art-subtitle { font-size: 14px; }

  .art-swiper-wrap { padding: 0; }
  .art-swiper .swiper-slide {
    width: 280px !important; /* swipeable on mobile */
  }

  .art-card__img-wrap { height: 180px; }
  .art-card__body { padding: 20px 16px; }
  .art-card__title { font-size: 15px; }

  .art-cta__btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* ≤ 575px — Small phones */
@media (max-width: 575px) {
  .art-section { padding: 50px 0 30px; }
  .art-title { font-size: 20px; }
  .art-subtitle { font-size: 13px; }

  .art-swiper-wrap { padding: 0; }
  .art-swiper .swiper-slide {
    width: 260px !important;
  }

  .art-card__img-wrap { height: 160px; }
  .art-card__body { padding: 16px 14px; }
  .art-card__title { font-size: 14px; }
  .art-card__desc { font-size: 12px; }

  .art-cats {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .art-cat {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 11px;
  }

  .art-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.ft {
  background: var(--navy);
  color: #c8d4e8;
  direction: rtl;
  padding-bottom: 0;
}

/* ── Top logo divider ── */
.ft-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0 0;
}
.ft-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,140,60,0.4), rgba(180,140,60,0.4), transparent);
  max-width: 500px;
}
.ft-logo-icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}
.ft-logo-icon > .fa-earth-americas {
  font-size: 3.4rem;
  color: var(--gold);
}
.ft-ship {
  position: absolute;
  bottom: 4px;
  right: -2px;
  font-size: 1.1rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(180,140,60,0.7));
}

/* ── Main grid ── */
.ft-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr 1.2fr;
  gap: 48px;
  padding: 52px 0 60px;
}

/* Col headings */
.ft-col__title {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.ft-col__line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 22px;
  opacity: 0.7;
}
.ft-col__desc {
  font-size: 0.9rem;
  line-height: 2.1;
  color: #9aabca;
  margin-bottom: 24px;
}

/* Outline btn */
.ft-outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.ft-outline-btn:hover { background: var(--gold); color: #061a33; }

/* Quick links */
.ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ft-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9aabca;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.22s, padding-right 0.22s;
}
.ft-links li a i { color: var(--gold); font-size: 0.7rem; }
.ft-links li a:hover { color: var(--gold); padding-right: 6px; }

/* Contact list */
.ft-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ft-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: #9aabca;
}
.ft-contact__icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(180,140,60,0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;color: var(--gold);
  font-size: 0.95rem;
}
.ft-contact a {
  color: #9aabca;
  text-decoration: none;
  transition: color 0.22s;
}
.ft-contact a:hover { color: var(--gold); }

/* Newsletter form */
.ft-form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.ft-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.ft-form__input-wrap svg {
  position: absolute;
  right: 14px;
  color: #5a6e8a;
  font-size: 0.9rem;
}
.ft-form__input-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 13px 42px 13px 16px;
  color: #fff;
  font-size: 0.88rem;
  direction: rtl;
  outline: none;
  transition: border-color 0.25s;
}
.ft-form__input-wrap input::placeholder { color: #4a5a72; }
.ft-form__input-wrap input:focus { border-color: rgba(180,140,60,0.5); }
.ft-form__btn {
  width: 100%;
  background: linear-gradient(135deg, #c8a84b, #e4c76b);
  color: #061a33;
  font-weight: 800;
  font-size: 0.97rem;
  border: none;
  border-radius: 8px;
  padding: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.25s, transform 0.25s;
}
.ft-form__btn:hover { opacity: 0.9; transform: translateY(-1px); }
.ft-form__note {
  font-size: 0.8rem;
  color: #5a6e8a;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ft-form__note i { color: var(--gold); }

/* ── Bottom bar ── */
.ft-bottom {
  background: var(--navy);
  border-top: 1px solid rgba(180,140,60,0.15);
  padding: 20px 0;
}
.ft-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ft-bottom__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.97rem;
}
.ft-bottom__brand i { font-size: 1.3rem; }
.ft-bottom__copy {
  font-size: 0.82rem;
  color: #5a6e8a;
  margin: 0;
}

/* Social icons */
.ft-socials { display: flex; gap: 10px; }
.ft-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aabca;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.ft-socials a:hover { border-color: var(--gold); color: var(--gold); background: rgba(180,140,60,0.08); }

/* ── Responsive ── */
@media (max-width: 1199px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
}
@media (max-width: 575px) {
  .ft-grid { grid-template-columns: 1fr; gap: 36px; }
  .ft-bottom__inner { flex-direction: column; text-align: center; }
  .ft-bottom__brand { justify-content: center; }
  .ft-socials { justify-content: center; }
}

/* article-single.cssپیش‌فرض: متغیرهای :root و ریست در style.css اصلی موجود است */

/* ══════════════════════════════
   HERO (dark)
══════════════════════════════ */
.art-hero {
  background: linear-gradient(160deg, #040d1a 0%, var(--navy-light) 100%);
  padding: 56px 0 52px;
  border-bottom: 1px solid rgba(197,160,89,.12);
}

.art-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.art-breadcrumb a { color: rgba(255,255,255,.45); transition: color .2s; }
.art-breadcrumb a:hover { color: var(--gold); }
.art-breadcrumb i { font-size: .6rem; color: var(--gold); opacity: .6; }

.art-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(197,160,89,.12);
  border: 1px solid rgba(197,160,89,.3);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.art-hero h1 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 800px;
}

.art-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
}
.art-hero__meta span { display: flex; align-items: center; gap: 7px; }
.art-hero__meta i { color: var(--gold); }

/* ══════════════════════════════
   FEATURED IMAGE BRIDGE
══════════════════════════════ */
.art-img-bridge {
  background: linear-gradient(to bottom, var(--navy-light) 50%, #f4f6f9 50%);
}
.art-featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
}

/* ══════════════════════════════
   LIGHT BODY
══════════════════════════════ */
.art-light-body {
  background: #f4f6f9;
  padding: 0;
  margin: 0;
}

/* ── PROSE ── */
.art-prose { font-size: 1rem; line-height: 2.1; color: #374151; }

.art-prose h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-right: 14px;
  border-right: 3px solid var(--gold);
}
.art-prose h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.art-prose h4 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.art-prose p { margin-bottom: 20px; }
.art-prose a { color: var(--gold); border-bottom: 1px dashed rgba(197,160,89,.4); transition: border-color .2s; }
.art-prose a:hover { border-color: var(--gold); }
.art-prose ul { padding-right: 20px; margin-bottom: 20px; }
.art-prose li { margin-bottom: 9px; color: #4b5563; }
.art-prose ul li::marker { color: var(--gold); }

.art-prose blockquote {
  border-right: 4px solid var(--gold);
  background: #fff;
  border-radius: 0 12px 12px 0;
  padding: 22px 24px;
  margin: 30px 0;
  font-style: italic;
  color: #6b7280;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

/* Callout */
.art-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(197,160,89,.25);
  border-right: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 22px;
  margin: 28px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.art-callout__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.art-callout strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 5px; }
.art-callout p { margin: 0; font-size: .88rem; color: #6b7280; line-height: 1.85; }

/* Stats strip */
.art-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 14px;
  overflow: hidden;
  margin: 32px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
  border: 1px solid rgba(197,160,89,.15);
}
.art-stats-strip__item {
  background: var(--navy);
  padding: 28px 16px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.06);
}
.art-stats-strip__item:last-child { border-left: none; }
.art-stats-strip__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;margin-bottom: 7px;
}
.art-stats-strip__label { font-size: .78rem; color: rgba(255,255,255,.55); }

/* Tags */
.art-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.art-tags__label { font-size: .83rem; color: #9ca3af; }
.art-tag {
  font-size: .8rem;
  color: #6b7280;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 5px 14px;
  transition: all .22s;
  cursor: pointer;
}
.art-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(197,160,89,.06); }

/* Share */
.art-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.art-share__label { font-size: .83rem; color: #9ca3af; }
.art-share__btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #fff;
  color: #6b7280;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s;
}
.art-share__btn:hover { border-color: var(--gold); color: var(--gold); }

/* Author card */
.art-author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  padding: 28px;
  margin-top: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.art-author-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(197,160,89,.35);
  flex-shrink: 0;
}
.art-author-card__name { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.art-author-card__role { font-size: .83rem; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.art-author-card p { font-size: .87rem; color: #6b7280; line-height: 1.85; margin: 0; }

/* ── COMMENTS ── */
.art-comments { margin-top: 52px; }

.art-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e5e7eb;
}
.art-section-title i { color: var(--gold); }
.art-section-title small { font-size: .82rem; color: #9ca3af; font-weight: 400; }

.comment {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}
.comment--reply { padding-right: 52px; }
.comment__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e9f0f8;
  border: 2px solid #dde5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.comment__avatar--author {
  background: rgba(197,160,89,.12);
  border-color: rgba(197,160,89,.3);
  color: var(--gold);
  width: 40px;
  height: 40px;
  font-size: .9rem;
}
.comment__header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.comment__name { font-size: .92rem; font-weight: 700; color: var(--navy); }
.comment__author-tag {
  font-size: .72rem;
  background: rgba(197,160,89,.12);
  color: var(--gold);
  border-radius: 20px;
  padding: 2px 9px;
  font-weight: 600;
}
.comment__date { font-size: .78rem; color: #9ca3af; }
.comment__body p { font-size: .88rem; color: #4b5563; line-height: 1.85; margin: 0; }
.comment__reply-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: .8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 0;
  font-weight: 600;
}

/* Comment form */
.art-comment-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  margin-top: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.art-comment-form h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.art-comment-form h3 i { color: var(--gold); }
.art-comment-form label { font-size: .82rem; color: #6b7280; display: block; margin-bottom: 6px; }
.art-comment-form input,
.art-comment-form textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 14px;
  color: #111827;
  font-size: .88rem;
  outline: none;
  direction: rtl;
  font-family: inherit;
  transition: border-color .25s, box-shadow .25s;
}
.art-comment-form input:focus,
.art-comment-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,.12);
}
.art-comment-form textarea { resize: vertical; min-height: 120px; }

/* ── SIDEBAR ── */
.art-sidebar { position: sticky; top: 100px; }

.sidebar-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.sidebar-box__title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f4f6;
}
.sidebar-box__title svg { color: var(--gold); }

/* TOC */
.art-toc { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.art-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .85rem;
  color: #6b7280;
  text-decoration: none;
  transition: all .22s;
}
.art-toc a i { font-size: .45rem; color: #d1d5db; flex-shrink: 0; transition: color .22s; }
.art-toc a:hover,
.art-toc a.active { background: rgba(197,160,89,.08); color: var(--navy); font-weight: 600; }
.art-toc a.active i,
.art-toc a:hover i { color: var(--gold); }

/* Related articles */
.rel-article {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  transition: background .22s;
}
.rel-article:last-child { border-bottom: none; padding-bottom: 0; }
.rel-article img {
  width: 68px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.rel-article__title {
  font-size: .84rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .22s;
}
.rel-article:hover .rel-article__title { color: var(--gold); }
.rel-article__date { font-size: .75rem; color: #9ca3af; display: flex; align-items: center; gap: 5px; }
.rel-article__date i { color: var(--gold); font-size: .7rem; }

/* Categories */
.cat-list { display: flex; flex-direction: column; }
.cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: .86rem;
  color: #4b5563;
  text-decoration: none;
  transition: all .22s;
}
.cat-item span { display: flex; align-items: center; gap: 9px; }
.cat-item i { font-size: .65rem; color: #d1d5db; transition: color .22s; }
.cat-item:hover { background: rgba(197,160,89,.08); color: var(--navy); }
.cat-item:hover i { color: var(--gold); }
.cat-item__count {
  font-size: .75rem;
  background: #f3f4f6;
  color: #6b7280;
  border-radius: 20px;
  padding: 2px 10px;
  font-weight: 700;
  transition: all .22s;
}
.cat-item:hover .cat-item__count { background: rgba(197,160,89,.12); color: var(--gold); }

/* Newsletter */
.sidebar-newsletter p { font-size: .84rem; color: #9ca3af; margin-bottom: 14px; line-height: 1.8; }
.sidebar-newsletter input {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  padding: 11px 13px;
  font-size: .85rem;
  color: #374151;
  outline: none;
  direction: ltr;
  margin-bottom: 10px;
  font-family: inherit;
  transition: border-color .25s;
}
.sidebar-newsletter input:focus { border-color: var(--gold); }

/* ══════════════════════════════
   SHARED BUTTON
══════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 800;
  font-size: .9rem;
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  cursor: pointer;
  transition: opacity .22s, transform .22s;
}
.btn-gold:hover { opacity: .9; transform: translateY(-1px); }
.btn-gold.w-100 { justify-content: center; }

/* ══════════════════════════════
   RELATED SECTION (bottom)
══════════════════════════════ */
.art-related-section {
  background: #eef1f6;
  padding: 64px 0 80px;
  border-top: 1px solid #e5e7eb;
}

.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-title-dark { font-size: 1.6rem; font-weight: 900; color: var(--navy); margin: 0; }
.view-all-gold {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;text-decoration: none;
  white-space: nowrap;
  transition: gap .22s;
}
.view-all-gold:hover { gap: 11px; color: var(--gold); }

/* Article card (light) */
.art-card-light {
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;height: 100%;
}
.art-card-light:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.art-card-light__img-wrap { position: relative; overflow: hidden; height: 200px; }
.art-card-light__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art-card-light:hover .art-card-light__img-wrap img { transform: scale(1.06); }
.art-card-light__cat {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #fff;
  font-size: .73rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
}
.art-card-light__body { padding: 22px; }
.art-card-light__body h3 {
  font-size: .97rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .22s;
}
.art-card-light:hover h3 { color: var(--gold); }
.art-card-light__body p {
  font-size: .84rem;
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-card-light__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .79rem;
  color: #9ca3af;
  padding-top: 14px;
  border-top: 1px solid #f3f4f6;
}
.art-card-light__footer i { color: var(--gold); margin-left: 4px; }
.art-card-light__read { color: var(--gold); font-weight: 700; display: flex; align-items: center; gap: 5px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
  .art-sidebar { position: static; margin-top: 48px; }
}
@media (max-width: 767px) {
  .art-hero { padding: 36px 0 32px; }
  .art-hero h1 { font-size: 1.35rem; }
  .art-stats-strip { grid-template-columns: 1fr; }
  .art-author-card { flex-direction: column; align-items: center; text-align: center; }
  .comment--reply { padding-right: 20px; }
  .art-comment-form { padding: 20px; }
  .art-img-bridge { background: var(--navy-light); }
  .art-img-bridge .container { padding-bottom: 20px; }
}
@media (max-width: 480px) {
  .art-hero__meta { gap: 12px; }
  .art-share { gap: 8px; }
}
/* project-single.css — فقط استایل‌های اضافه نسبت به article-single.css */

/* ═══ HERO ═══ */
.proj-hero {
  background: linear-gradient(160deg, #040d1a 0%, var(--navy-light) 100%);
  padding: 56px 0 52px;
  border-bottom: 1px solid rgba(197,160,89,.12);
}
.proj-hero h1{
  color:#ffffff;
}
.proj-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  margin-top: 20px;
}
.proj-hero__meta span { display: flex; align-items: center; gap: 7px; }
.proj-hero__meta i { color: var(--gold); }

.proj-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
}
.proj-status--done {
  background: rgba(34,197,94,.1);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,.25);
}
.proj-status--progress {
  background: rgba(251,191,36,.1);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,.25);
}

/* ═══ GALLERY ═══ */
.proj-hero-gallery { display: flex; flex-direction: column; gap: 12px; }

.proj-hero-gallery__main { position: relative; border-radius: 16px; overflow: hidden; }
.proj-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.proj-img-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .8rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.proj-img-overlay-badge i { color: var(--gold); }

.proj-hero-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.proj-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color .22s, transform .22s;
  aspect-ratio: 4/3;
}
.proj-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-thumb:hover { transform: translateY(-2px); border-color: rgba(197,160,89,.5); }
.proj-thumb.active { border-color: var(--gold); }

/* ═══ STATS STRIP (4 cols) ═══ */
.proj-stats-strip { grid-template-columns: repeat(4, 1fr); }

/* ═══ EQUIPMENT GRID ═══ */
.proj-equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 20px 0 30px;
}
.proj-equipment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 11px 14px;
}
.proj-equipment-item i { color: var(--gold); font-size: .85rem; flex-shrink: 0; }

/* ═══ TIMELINE ═══ */
.proj-timeline { margin-top: 52px; }

.timeline-track {
  position: relative;
  padding-right: 28px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(197,160,89,.15) 100%);
}

.timeline-item {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(197,160,89,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;margin-right: -39px;
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.timeline-item--done .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(197,160,89,.15);
}

.timeline-body {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  flex: 1;
  transition: box-shadow .22s;
}
.timeline-item--done .timeline-body { border-right: 3px solid var(--gold); }
.timeline-body:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }

.timeline-date {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-title {
  font-size: .97rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-body p { font-size: .85rem; color: #6b7280; margin: 0; line-height: 1.85; }

/* ═══ SIDEBAR: PROJECT INFO ═══ */
.proj-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;display: flex;
  flex-direction: column;
}
.proj-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  font-size: .86rem;
  border-bottom: 1px solid #f3f4f6;
  gap: 10px;
}
.proj-info-list li:last-child { border-bottom: none; }
.proj-info-list__label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  white-space: nowrap;
}
.proj-info-list__label i { color: var(--gold); width: 14px; text-align: center; }
.proj-info-list li > span:last-child { color: var(--navy); font-weight: 600; text-align: left; }

.proj-status-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
}
.proj-status-full.proj-status--done {
  background: rgba(34,197,94,.08);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,.2);
}

/* ═══ CERTS ═══ */
.cert-list { display: flex; flex-direction: column; gap: 12px; }
.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  transition: border-color .22s;
}
.cert-item:hover { border-color: rgba(197,160,89,.4); }
.cert-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(197,160,89,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cert-item__name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.cert-item__sub { font-size: .76rem; color: #9ca3af; }

/* ═══ SIDEBAR CTA ═══ */
.proj-cta-box {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(197,160,89,.2);
}
.proj-cta-box h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.proj-cta-box p { font-size: .84rem; color: rgba(255,255,255,.55); margin-bottom: 18px; line-height: 1.8; }
.proj-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(197,160,89,.3);
  border-radius: 10px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  text-decoration: none;
  transition: all .25s;
}
.proj-cta-secondary:hover { border-color: var(--gold); color: var(--gold); }
.proj-cta-secondary i { color: var(--gold); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
  .proj-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .proj-main-img { height: 320px; }
}
@media (max-width: 767px) {
  .proj-hero-gallery__thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .proj-main-img { height: 240px; }
  .proj-equipment-grid { grid-template-columns: 1fr; }
  .proj-stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .proj-stats-strip { grid-template-columns: 1fr 1fr; }
}
/* product-single.css */

/* ═══ HERO ═══ */
.prod-hero {
  background: linear-gradient(160deg, #040d1a 0%, var(--navy-light) 100%);
  padding: 56px 0 52px;
  border-bottom: 1px solid rgba(197,160,89,.12);
}
.prod-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  margin-top: 18px;
}
.prod-hero h1{
  color: #ffffff;
}

.prod-hero__meta span { display: flex; align-items: center; gap: 7px; }
.prod-hero__meta i { color: var(--gold); }

/* ═══ GALLERY ═══ */
.prod-gallery { display: flex; flex-direction: column; gap: 12px; }
.prod-gallery__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.prod-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.prod-zoom-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  border: none;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s;
}
.prod-zoom-btn:hover { background: rgba(0,0,0,.75); }

.prod-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.prod-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  aspect-ratio: 4/3;
  transition: border-color .22s, transform .22s;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-thumb:hover { transform: translateY(-2px); border-color: rgba(197,160,89,.5); }
.prod-thumb.active { border-color: var(--gold); }

/* Lightbox */
.prod-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.prod-lightbox.open { display: flex; }
.prod-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
}
.prod-lightbox__close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s;
}
.prod-lightbox__close:hover { background: rgba(255,255,255,.2); }

/* ═══ STATS (4 col) ═══ */
.prod-stats-strip { grid-template-columns: repeat(4, 1fr); }

/* ═══ TABS ═══ */
.prod-tabs { margin-top: 36px; }
.prod-tabs__nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 28px;
  overflow-x: auto;
}
.prod-tab-btn {
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 700;
  color: #9ca3af;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .22s, border-color .22s;
}
.prod-tab-btn:hover { color: var(--navy); }
.prod-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ═══ SPEC TABLE ═══ */
.prod-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.prod-spec-table tr { border-bottom: 1px solid #f3f4f6; }
.prod-spec-table tr:last-child { border-bottom: none; }
.prod-spec-table th {
  text-align: right;
  padding: 13px 16px 13px 0;
  color: #9ca3af;
  font-weight: 600;width: 42%;white-space: nowrap;
}
.prod-spec-table td {
  padding: 13px 0 13px 8px;
  color: var(--navy);
  font-weight: 600;
}

/* ═══ PACK GRID ═══ */
.prod-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.prod-pack-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  transition: border-color .22s, box-shadow .22s;
}
.prod-pack-card:hover { border-color: rgba(197,160,89,.4); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.prod-pack-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(197,160,89,.06) 0%, #fff 100%);
}
.prod-pack-card__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.prod-pack-card__size {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.prod-pack-card__label {
  font-size: .8rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 6px;
}
.prod-pack-card__note {
  font-size: .74rem;
  color: #9ca3af;
}
.prod-pack-card--featured .prod-pack-card__note {
  color: var(--gold);
  font-weight: 700;
}

/* ═══ SIDEBAR: ORDER BOX ═══ */
.prod-order-box {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(197,160,89,.2);
}
.prod-order-box__price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}
.prod-order-box__label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.prod-order-box__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.prod-order-box__currency {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 700;
}
.prod-order-box__amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.prod-order-box__min {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.prod-order-box__min i { color: var(--gold); }
.prod-stock {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.prod-stock--in { background: rgba(34,197,94,.1); color: #22c55e; }
.prod-stock--out { background: rgba(239,68,68,.1); color: #ef4444; }

.prod-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 11px;
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 10px;
  color: #22c55e;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
}
.prod-whatsapp-btn:hover { background: rgba(34,197,94,.08); border-color: #22c55e; color: #22c55e; }
.prod-whatsapp-btn i { font-size: 1rem; }

/* ═══ TRUST BADGES ═══ */
.prod-trust-list { display: flex; flex-direction: column; gap: 12px; }
.prod-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: #374151;
}
.prod-trust-item i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(197,160,89,.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══ PRICE BADGE (cards bottom) ═══ */
.prod-price-badge {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
  .prod-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .prod-main-img { height: 340px; }
}
@media (max-width: 767px) {
  .prod-main-img { height: 260px; }
  .prod-pack-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .prod-stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .prod-pack-grid { grid-template-columns: 1fr; }
}
/* articles-archive.css */

/* ═══ HERO ═══ */
.arch-hero {
  background: linear-gradient(160deg, #040d1a 0%, var(--navy-light) 100%);
  padding: 72px 0 80px;
  text-align: center;
  border-bottom: 1px solid rgba(197,160,89,.1);
}
.arch-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin: 8px 0 14px;
}
.arch-hero__sub {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* Search */
.arch-search {
  display: flex;
  align-items: center;
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 6px 6px 6px 16px;
  gap: 10px;
}
.arch-search i { color: rgba(255,255,255,.35); font-size: .95rem; }
.arch-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: .93rem;
  font-family: inherit;
}
.arch-search input::placeholder { color: rgba(255,255,255,.3); }
.arch-search button {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .22s;
}
.arch-search button:hover { background: var(--gold-light); }

/* Bridge */
.arch-bridge {
  background: linear-gradient(180deg, var(--navy-light) 0%, #f4f6f9 100%);
  line-height: 0;
}
.arch-bridge svg { width: 100%; height: 56px; display: block; }

/* Body */
.arch-body { background: #f4f6f9; padding: 48px 0 80px; }

/* ═══ FILTER BAR ═══ */
.arch-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}
.arch-filter-bar__cats { display: flex; flex-wrap: wrap; gap: 8px; }
.arch-cat-btn {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .22s;
}
.arch-cat-btn:hover { border-color: var(--gold); color: var(--gold); }
.arch-cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);color: #fff;
}
.arch-filter-bar__sort select {
  padding: 8px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: .83rem;
  color: #374151;
  cursor: pointer;
  outline: none;
}

/* ═══ FEATURED CARD ═══ */
.arch-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  text-decoration: none;
  color: inherit;
  margin-bottom: 32px;
  transition: box-shadow .25s, transform .25s;
}
.arch-featured-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.12); transform: translateY(-3px); }
.arch-featured-card__img { position: relative; min-height: 280px; }
.arch-featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.arch-featured-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: .74rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
}
.arch-featured-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.arch-featured-card__body h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.6;
  margin: 0;
}
.arch-featured-card__body p {
  font-size: .87rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
.arch-featured-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .79rem;
  color: #9ca3af;
}
.arch-featured-card__meta span { display: flex; align-items: center; gap: 5px; }
.arch-featured-card__meta i { color: var(--gold); }

/* ═══ PAGINATION ═══ */
.arch-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.arch-page-btn {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: .88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .22s;
}
.arch-page-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.arch-page-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.arch-page-btn:disabled { opacity: .35; cursor: not-allowed; }
.arch-page-dots { color: #9ca3af; font-size: .9rem; padding: 0 4px; }

/* ═══ SIDEBAR: NEWSLETTER ═══ */
.arch-newsletter {
  text-align: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(197,160,89,.15);
}
.arch-newsletter__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.arch-newsletter h4 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.arch-newsletter p { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 16px; }
.arch-newsletter__form { display: flex; flex-direction: column; gap: 10px; }
.arch-newsletter__form input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: inherit;
  font-size: .85rem;
  outline: none;
}
.arch-newsletter__form input::placeholder { color: rgba(255,255,255,.3); }

/* ═══ POPULAR LIST ═══ */
.arch-popular-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: none;
}
.arch-popular-list li a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: #374151;
  font-size: .86rem;
  line-height: 1.6;
  transition: color .2s;
}
.arch-popular-list li a:hover { color: var(--gold); }
.arch-popular-list__num {
  min-width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(197,160,89,.1);
  color: var(--gold);
  font-weight: 800;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══ CATEGORIES ═══ */
.arch-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.arch-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: #374151;
  font-size: .87rem;
  font-weight: 600;
  transition: color .2s;
  gap: 8px;
}
.arch-cat-list li:last-child a { border-bottom: none; }
.arch-cat-list li a:hover { color: var(--gold); }
.arch-cat-list li a i { color: var(--gold); font-size: .7rem; }
.arch-cat-list li a span {
  margin-right: auto;
  background: #f3f4f6;
  color: #9ca3af;
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* ═══ TAGS ═══ */
.arch-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.arch-tag {
  padding: 5px 13px;
  border-radius: 50px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #6b7280;
  font-size: .79rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .22s;
}
.arch-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(197,160,89,.05); }

/* ═══ CTA BOX ═══ */
.arch-cta-box {
  text-align: center;
  background: linear-gradient(145deg, var(--navy) 0%, #0d2d5a 100%);
  border: 1px solid rgba(197,160,89,.15);
}
.arch-cta-box__icon {
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.arch-cta-box h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.arch-cta-box p { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 18px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
  .arch-featured-card { grid-template-columns: 1fr; }
  .arch-featured-card__img { min-height: 220px; }
}
@media (max-width: 575px) {
  .arch-filter-bar { flex-direction: column; align-items: flex-start; }
  .arch-hero { padding: 48px 0 60px; }
}
/* projects-archive.css */
/* ============================================================
   ARCHIVE PROJECT — Scoped CSS (prefix: proj-)
   هیچ selector‌ای بیرون از کلاس‌های proj- چیزی override نمی‌کند
   ============================================================ */

/* ---------- Hero ---------- */
.proj-arch-hero {
    position: relative;
    background: var(--navy);
    padding: 100px 0 60px;
    overflow: hidden;
}

.proj-arch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 60%, var(--navy-light) 100%);
    opacity: .95;
    z-index: 0;
}

.proj-arch-hero .container {
    position: relative;
    z-index: 1;
}

.proj-arch-hero .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197,160,89,.15);
    border: 1px solid rgba(197,160,89,.35);
    border-radius: 50px;
    padding: 6px 18px;
    color: var(--gold);
    font-size: .8rem;
    letter-spacing: .05em;
    margin-bottom: 18px;
}

.proj-arch-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.proj-arch-hero p.lead {
    color: var(--text-muted);
    font-size: 1rem;
}

/* stats */
.proj-arch-hero .proj-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.proj-arch-hero .proj-stat-item {
    text-align: center;
}

.proj-arch-hero .proj-stat-item .proj-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}

.proj-arch-hero .proj-stat-item .proj-stat-label {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---------- Bridge Decorative ---------- */
.proj-bridge-deco {
    background: var(--navy);
    line-height: 0;
}

.proj-bridge-deco svg {
    display: block;
    width: 100%;
}

/* ---------- Main Body ---------- */
.proj-arch-body {
    background: #f4f6f9;
    padding: 56px 0 80px;
}

/* ---------- Filter Bar ---------- */
.proj-filter-bar {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    box-shadow: 0 2px 16px rgba(6,26,51,.08);
    margin-bottom: 36px;
}

.proj-filter-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.proj-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid #dde2ea;
    background: transparent;
    color: var(--navy);
    font-size: .82rem;
    font-family: 'Vazir', sans-serif;
    cursor: pointer;
    transition: all .22s ease;
}

.proj-cat-btn:hover,
.proj-cat-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.proj-cat-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.proj-cat-btn .proj-cat-count {
    background: rgba(0,0,0,.1);
    border-radius: 50px;
    padding: 1px 8px;
    font-size: .72rem;
}

.proj-cat-btn.active .proj-cat-count {
    background: rgba(255,255,255,.25);
}

/* view toggle */
.proj-view-btns {
    display: flex;
    gap: 4px;
}

.proj-view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #dde2ea;
    background: transparent;
    color: #8a95a3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    font-size: .9rem;
}

.proj-view-btn:hover,
.proj-view-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* ---------- Grid ---------- */
.proj-arch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proj-arch-grid.list-view {
    grid-template-columns: 1fr;
}

/* ---------- Card ---------- */
.proj-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(6,26,51,.07);
    transition: transform .28s ease, box-shadow .28s ease;
    display: flex;
    flex-direction: column;
}

.proj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(6,26,51,.14);
}

/* تصویر */
.proj-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.proj-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.proj-card:hover .proj-card-img-wrap img {
    transform: scale(1.07);
}

/* overlay on hover */
.proj-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,26,51,.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.proj-card:hover .proj-card-overlay {
    opacity: 1;
}

.proj-card-overlay-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: .85rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50px;
    padding: 6px 16px;
    transition: background .2s ease;
}

.proj-card-overlay-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* badges */
.proj-card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.proj-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.4;
}

.proj-badge-status-done    { background: #1a7a4a; color: #fff; }
.proj-badge-status-ongoing { background: var(--gold); color: var(--navy); }
.proj-badge-status-planned { background: #4a6fa5; color: #fff; }
.proj-badge-featured       { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }

/* region label */
.proj-card-region {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(6,26,51,.7);
    backdrop-filter: blur(4px);
    color: var(--white);
    font-size: .75rem;
    border-radius: 50px;
    padding: 4px 12px;
}

/* body */
.proj-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proj-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.45;
}

.proj-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.proj-card-title a:hover { color: var(--gold); }

.proj-card-desc {
    font-size: .82rem;
    color: #6b7a8d;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* meta row */
.proj-card-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px solid #eef0f3;
}

.proj-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: #8a95a3;
}

.proj-card-meta-item i {
    color: var(--gold);
    font-size: .78rem;
}

/* KPI chips */
.proj-card-kpis {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.proj-kpi-chip {
    background: #f0f3f7;
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    font-size: .72rem;
}

.proj-kpi-chip strong {
    display: block;
    color: var(--navy);
    font-size: .88rem;
    font-weight: 700;
}

.proj-kpi-chip span {
    color: #8a95a3;
}

/* footer */
.proj-card-footer {
    padding: 14px 20px;
    border-top: 1px solid #eef0f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proj-card-cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
}

.proj-card-cat-tag:hover { color: var(--navy); }

.proj-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}

.proj-card-link:hover { color: var(--gold); }

/* ---------- List View ---------- */
.proj-arch-grid.list-view .proj-card {
    flex-direction: row;
    max-height: 200px;
}

.proj-arch-grid.list-view .proj-card-img-wrap {
    width: 260px;
    flex-shrink: 0;
    aspect-ratio: unset;
}

.proj-arch-grid.list-view .proj-card-body {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* ---------- Load More ---------- */
.proj-load-more-wrap {
    text-align: center;
    margin-top: 48px;
}

.proj-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: transparent;
    border: 2px solid var(--navy);
    border-radius: 50px;
    color: var(--navy);
    font-family: 'Vazir', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

.proj-load-more-btn:hover {
    background: var(--navy);
    color: var(--white);
}

.proj-load-count {
    display: block;
    margin-top: 16px;
    font-size: .8rem;
    color: #8a95a3;
}

/* ---------- Map CTA ---------- */
.proj-map-cta {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.proj-map-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/world-map-dots.svg') center/cover no-repeat;
    opacity: .07;
}

.proj-map-cta .container { position: relative; z-index: 1; }

.proj-map-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197,160,89,.15);
    border: 1px solid rgba(197,160,89,.35);
    border-radius: 50px;
    padding: 6px 18px;
    color: var(--gold);
    font-size: .8rem;
    margin-bottom: 18px;
}

.proj-map-cta h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.proj-map-cta p {
    color: var(--text-muted);
    max-width: 500px;
    font-size: .95rem;
    margin-bottom: 32px;
}

.proj-map-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.proj-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: var(--gold);
    border-radius: 50px;
    color: var(--navy);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: background .22s ease;
}

.proj-cta-btn-primary:hover { background: var(--gold-light); color: var(--navy); }

.proj-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: all .22s ease;
}

.proj-cta-btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}

/* ---------- Empty State ---------- */
.proj-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #8a95a3;
}

.proj-empty i {
    font-size: 3rem;
    color: #d0d6de;
    margin-bottom: 16px;
    display: block;
}

.proj-empty p { font-size: .95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .proj-arch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .proj-arch-grid.list-view .proj-card {
        flex-direction: column;
        max-height: unset;
    }
    .proj-arch-grid.list-view .proj-card-img-wrap {
        width: 100%;
        aspect-ratio: 16/9;
    }
    .proj-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .proj-arch-grid {
        grid-template-columns: 1fr;
    }
    .proj-arch-hero .proj-stats-row {
        gap: 20px;
    }
    .proj-map-cta-btns {
        flex-direction: column;
    }
}
.proj-arch-hero__sub{
  color: #ffffff;
}
/* 404.css */

.err404-wrap {
  background: linear-gradient(160deg, #040d1a 0%, var(--navy-light) 60%, #f4f6f9 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  text-align: center;
}

.err404-inner {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Visual number + icon */
.err404-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.err404-num {
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 3px var(--gold);
  opacity: .85;
}
.err404-icon {
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  color: var(--gold);
  opacity: .9;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Text */
.err404-title {
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  margin: 0;
}
.err404-desc {
  color: rgba(255,255,255,.5);
  font-size: .95rem;
  line-height: 1.8;
  margin: 0;
}

/* Links */
.err404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.err404-link {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .22s;
}
.err404-link:hover { border-color: var(--gold); color: var(--gold); }

/* Search */
.err404-search {
  display: flex;
  width: 100%;
  max-width: 400px;
  border-radius: 50px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.err404-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  color: #fff;
  font-family: inherit;
  font-size: .88rem;
  direction: rtl;
}
.err404-search input::placeholder { color: rgba(255,255,255,.35); }
.err404-search button {
  padding: 0 20px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: .95rem;
  cursor: pointer;
  transition: opacity .2s;
}
.err404-search button:hover { opacity: .85; }

@media (max-width: 480px) {
  .err404-num { -webkit-text-stroke-width: 2px; }
  .err404-links { gap: 8px; }
}

/* ==========================================
   SIDEBAR & WIDGETS
   ========================================== */

/* Default Widget Styling */
.widget {
	margin-bottom: 32px;
}

.widget:last-child {
	margin-bottom: 0;
}

.widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget ul li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(175, 145, 79, 0.1);
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li a {
	color: #2c2c2c;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: color 0.3s ease;
}

.widget ul li a:hover {
	color: #af914f;
}

/* Widget Title */
.widget .sidebar-box__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	color: #2c2c2c;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #af914f;
}

/* Search Widget */
.widget_search .search-form {
	display: flex;
	gap: 8px;
}

.widget_search .search-field {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.widget_search .search-field:focus {
	outline: none;
	border-color: #af914f;
}

.widget_search .search-submit {
	padding: 12px 24px;
	background: #af914f;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.widget_search .search-submit:hover {
	background: #8f7440;
}

/* Recent Posts Widget */
.widget_recent_entries ul li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.widget_recent_entries .post-date {
	display: block;
	font-size: 13px;
	color: #999;
	margin-top: 4px;
}

/* Categories Widget */
.widget_categories ul li {
	position: relative;
}

.widget_categories ul li a {
	padding-right: 20px;
}

.widget_categories ul li a::before {
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	right: 0;
	color: #af914f;
}

.widget_categories ul li .count {
	background: #f5f5f5;
	color: #666;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

/* Archives Widget */
.widget_archive ul li a {
	position: relative;
	padding-right: 20px;
}

.widget_archive ul li a::before {
	content: '\f073';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	position: absolute;
	right: 0;
	color: #af914f;
}

/* Tag Cloud Widget */
.widget_tag_cloud .tagcloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.widget_tag_cloud .tagcloud a {
	display: inline-block;
	padding: 6px 16px;
	background: #f5f5f5;
	color: #2c2c2c;
	border-radius: 20px;
	font-size: 13px !important;
	text-decoration: none;
	transition: all 0.3s ease;
}

.widget_tag_cloud .tagcloud a:hover {
	background: #af914f;
	color: white;
}

/* Calendar Widget */
.widget_calendar table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
}

.widget_calendar caption {
	font-weight: 700;
	margin-bottom: 12px;
	color: #2c2c2c;
}

.widget_calendar th,
.widget_calendar td {
	padding: 8px;
	border: 1px solid #e0e0e0;
}

.widget_calendar th {
	background: #f5f5f5;
	font-weight: 600;
	font-size: 13px;
}

.widget_calendar td a {
	color: #af914f;
	font-weight: 600;
}

.widget_calendar td#today {
	background: #af914f;
	color: white;
	font-weight: 600;
}

/* RSS Widget */
.widget_rss ul li {
	padding: 16px 0;
}

.widget_rss .rss-date {
	display: block;
	font-size: 13px;
	color: #999;
	margin-top: 4px;
}

.widget_rss cite {
	display: block;
	font-style: normal;
	color: #666;
	margin-top: 8px;
	font-size: 14px;
}

/* Meta Widget */
.widget_meta ul li a::before {
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	margin-left: 8px;
	color: #af914f;
}

/* Pages Widget */
.widget_pages ul li a {
	padding-right: 20px;
	position: relative;
}

.widget_pages ul li a::before {
	content: '\f15c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	position: absolute;
	right: 0;
	color: #af914f;
}

/* Text Widget */
.widget_text p {
	line-height: 1.8;
	color: #666;
	margin-bottom: 16px;
}

.widget_text p:last-child {
	margin-bottom: 0;
}

/* Recent Comments Widget */
.widget_recent_comments ul li {
	padding-right: 20px;
	position: relative;
}

.widget_recent_comments ul li::before {
	content: '\f075';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	position: absolute;
	right: 0;
	color: #af914f;
}

.widget_recent_comments .comment-author-link {
	font-weight: 600;
	color: #2c2c2c;
}

/* Custom Widgets - Compatibility */
.widget select {
	width: 100%;
	padding: 12px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	background: white;
}

.widget input[type="text"],
.widget input[type="email"],
.widget input[type="url"],
.widget textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.3s ease;
}

.widget input[type="text"]:focus,
.widget input[type="email"]:focus,
.widget input[type="url"]:focus,
.widget textarea:focus {
	outline: none;
	border-color: #af914f;
}

.widget input[type="submit"],
.widget button[type="submit"] {
	padding: 12px 24px;
	background: #af914f;
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.widget input[type="submit"]:hover,
.widget button[type="submit"]:hover {
	background: #8f7440;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
	.widget {
		margin-bottom: 24px;
	}
	
	.widget .sidebar-box__title {
		font-size: 16px;
	}
}

/* =============================================
   SADERAT SINGLE PRODUCT - COMPLETE STYLES
   ============================================= */

.saderat-single-product {
    font-family: 'Vazir', sans-serif;
    direction: rtl;
    background: var(--navy);
    color: var(--white);
    min-height: 100vh;
}

/* ===== BREADCRUMB ===== */
.saderat-single-product .product-breadcrumb {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.saderat-single-product .breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.saderat-single-product .gallery-thumbs .swiper-slide{
  width: max-content !important;
  margin-left: 5px;
}

.saderat-single-product .breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
}

.saderat-single-product .breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-right: 8px;
    opacity: 0.4;
}

.saderat-single-product .breadcrumb-list li.active {
    color: var(--gold);
}

.saderat-single-product .breadcrumb-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.saderat-single-product .breadcrumb-list a:hover {
    color: var(--gold);
}

/* ===== HERO SECTION ===== */
.saderat-single-product .product-hero {
    margin-bottom: 60px;
}

.saderat-single-product .product-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== GALLERY SECTION ===== */
.saderat-single-product .product-gallery-wrapper {
    position: sticky;
    top: 100px;
}

/* Main Gallery Container */
.saderat-single-product .gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.saderat-single-product .main-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.saderat-single-product .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.saderat-single-product .gallery-main:hover .main-image {
    transform: scale(1.05);
}

/* Gallery Badges */
.saderat-single-product .product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.saderat-single-product .product-sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    background: #e74c3c;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Zoom Button */
.saderat-single-product .zoom-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
    z-index: 5;
}

.saderat-single-product .gallery-main:hover .zoom-btn {
    opacity: 1;
}

.saderat-single-product .zoom-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

/* Thumbnails */
.saderat-single-product .gallery-thumbs {
    position: relative;
}

.saderat-single-product .thumbs-wrapper {
    overflow: hidden;
}

.saderat-single-product .swiper-wrapper {
    display: flex;
    gap: 0;
}

.saderat-single-product .thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    background: none;
    padding: 0;
    opacity: 0.5;
    flex-shrink: 0;
}

.saderat-single-product .thumb-item:hover {
    opacity: 0.8;
    border-color: rgba(197, 160, 89, 0.5);
}

.saderat-single-product .thumb-item.active {
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.3);
}

.saderat-single-product .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Navigation */
.saderat-single-product .thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saderat-single-product .thumb-prev {
    right: -15px;
}

.saderat-single-product .thumb-next {
    left: -15px;
}

.saderat-single-product .thumb-nav:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.1);
}

.saderat-single-product .thumb-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Video Section */
.saderat-single-product .product-video-section {
    margin-top: 20px;
}

.saderat-single-product .video-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.saderat-single-product .video-link:hover {
    background: rgba(197, 160, 89, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

/* ===== PRODUCT INFO SECTION ===== */

/* Categories */
.saderat-single-product .product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.saderat-single-product .category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 20px;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.saderat-single-product .category-badge:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: var(--gold);
}

/* Title */
.saderat-single-product .product-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

/* Brand */
.saderat-single-product .product-brand {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.saderat-single-product .product-brand .brand-value {
    color: var(--gold);
    font-weight: 500;
}

/* Short Description */
.saderat-single-product .product-short-description {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Meta Bar */
.saderat-single-product .product-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    margin-bottom: 25px;
}

.saderat-single-product .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.saderat-single-product .meta-item i {
    color: var(--gold);
    font-size: 16px;
}

.saderat-single-product .meta-item strong {
    color: var(--white);
    font-weight: 500;
}

/* Stock Status */
.saderat-single-product .stock-status.in-stock {
    color: #2ecc71;
}

.saderat-single-product .stock-status.in-stock i {
    color: #2ecc71;
}

.saderat-single-product .stock-status.out-of-stock {
    color: #e74c3c;
}

.saderat-single-product .stock-status.out-of-stock i {
    color: #e74c3c;
}

/* Advantages Box */
.saderat-single-product .product-advantages {
    background: rgba(197, 160, 89, 0.06);
    border-right: 4px solid var(--gold);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.saderat-single-product .advantages-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.saderat-single-product .advantages-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.saderat-single-product .advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.saderat-single-product .advantages-list i {
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== ORDER BOX ===== */
.saderat-single-product .product-order-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

/* Price Section */
.saderat-single-product .price-section {
    margin-bottom: 25px;
}

.saderat-single-product .price-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    display: block;
}

.saderat-single-product .price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.saderat-single-product .regular-price,
.saderat-single-product .sale-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.saderat-single-product .old-price {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.saderat-single-product .price-label-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
}

/* Action Buttons */
.saderat-single-product .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.saderat-single-product .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Vazir', sans-serif;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.saderat-single-product .sp-short-description{
          font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    display: block;
}

.saderat-single-product .btn-add-to-cart {
    background: var(--gold);
    color: var(--navy);
}

.saderat-single-product .btn-add-to-cart:hover {
    background: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.saderat-single-product .btn-call {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.saderat-single-product .btn-call:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: #d4a574;
}

.saderat-single-product .btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.saderat-single-product .btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Trust Signals */
.saderat-single-product .trust-signals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.saderat-single-product .trust-item {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.saderat-single-product .trust-item i {
    display: block;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
}

/* ===== SHARE & ACTIONS BAR ===== */
.saderat-single-product .product-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Share Section */
.saderat-single-product .share-section {
    position: relative;
}

.saderat-single-product .share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    color: var(--gold);
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.saderat-single-product .share-btn:hover {
    background: rgba(197, 160, 89, 0.2);
}

.saderat-single-product .share-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--navy-light, #0a2540);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 10px;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.saderat-single-product .share-dropdown.active {
    display: flex;
}

.saderat-single-product .share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Vazir', sans-serif;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
    text-align: right;
}

.saderat-single-product .share-option:hover {
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold);
}

.saderat-single-product .share-option i {
    font-size: 16px;
}

/* PDF Download */
.saderat-single-product .pdf-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    color: var(--gold);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.saderat-single-product .pdf-download-btn:hover {
    background: rgba(197, 160, 89, 0.2);
}

/* ===== TABS SECTION ===== */
.saderat-single-product .product-tabs-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 40px;
}

.saderat-single-product .tabs-nav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
    margin-bottom: 40px;
}

.saderat-single-product .tabs-nav::-webkit-scrollbar {
    height: 3px;
}

.saderat-single-product .tabs-nav::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.saderat-single-product .tab-btn {
    padding: 14px 28px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    font-weight: 500;
    font-family: 'Vazir', sans-serif;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.saderat-single-product .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.saderat-single-product .tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.saderat-single-product .tab-btn.active {
    color: var(--gold);
}

.saderat-single-product .tab-btn.active::after {
    transform: scaleX(1);
}

/* Tab Panels */
.saderat-single-product .tab-panel {
    display: none;
}

.saderat-single-product .tab-panel.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.saderat-single-product .tab-content-wrapper {
    font-size: 15px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

.saderat-single-product .tab-content-wrapper h3,
.saderat-single-product .tab-content-wrapper h4 {
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 15px;
}

.saderat-single-product .tab-content-wrapper p {
    margin-bottom: 15px;
}

.saderat-single-product .tab-content-wrapper ul,
.saderat-single-product .tab-content-wrapper ol {
    padding-right: 25px;
    margin-bottom: 20px;
}

.saderat-single-product .tab-content-wrapper li {
    margin-bottom: 10px;
}

/* Specs Table */
.saderat-single-product .specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
}

.saderat-single-product .specs-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.saderat-single-product .specs-table td,
.saderat-single-product .specs-table th {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
    font-size: 15px;
}

.saderat-single-product .specs-table th {
    font-weight: 600;
    color: var(--gold);
    width: 220px;
    text-align: right;
}

.saderat-single-product .specs-table td {
    color: rgba(255, 255, 255, 0.8);
}

/* Export Info Grid */
.saderat-single-product .export-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.saderat-single-product .export-info-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.saderat-single-product .export-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.15);
}

.saderat-single-product .export-info-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(197, 160, 89, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
}

.saderat-single-product .export-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px 0;
}

.saderat-single-product .export-info-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

/* Export Notes */
.saderat-single-product .export-notes {
    background: rgba(197, 160, 89, 0.06);
    border-right: 4px solid var(--gold);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.saderat-single-product .export-notes h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--gold);
    margin: 0 0 15px 0;
}

.saderat-single-product .export-notes p,
.saderat-single-product .export-notes ul {
    color: rgba(255, 255, 255, 0.8);
}

/* Export CTA */
.saderat-single-product .export-cta {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
}

.saderat-single-product .export-cta p {
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Full Advantages List */
.saderat-single-product .full-advantages-list {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.saderat-single-product .full-advantages-list h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 25px;
}

.saderat-single-product .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.saderat-single-product .advantage-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.saderat-single-product .advantage-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
}

.saderat-single-product .advantage-card i {
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.saderat-single-product .advantage-card span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== RELATED PRODUCTS ===== */
.saderat-single-product .related-products-section {
    padding: 80px 0 40px;
}

.saderat-single-product .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.saderat-single-product .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.saderat-single-product .section-title i {
    color: var(--gold);
}

.saderat-single-product .view-all-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.saderat-single-product .view-all-link:hover {
    gap: 12px;
}

/* ===== LIGHTBOX/MODAL ===== */
.saderat-single-product .image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.saderat-single-product .image-lightbox.active {
    display: flex;
}

.saderat-single-product .lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.saderat-single-product .lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.saderat-single-product .lightbox-close {
    position: absolute;
    top: -50px;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--navy);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saderat-single-product .lightbox-close:hover {
    transform: rotate(90deg);
    background: #d4a574;
}

.saderat-single-product .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 89, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saderat-single-product .lightbox-prev {
    right: -70px;
}

.saderat-single-product .lightbox-next {
    left: -70px;
}

.saderat-single-product .lightbox-nav:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.1);
}

.saderat-single-product .lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet & Below */
@media (max-width: 1024px) {
    .saderat-single-product .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .saderat-single-product .product-gallery-wrapper {
        position: relative;
        top: 0;
    }

    .saderat-single-product .product-title {
        font-size: 28px;
    }

    .saderat-single-product .trust-signals {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .saderat-single-product .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: right;
    }

    .saderat-single-product .trust-item i {
        margin-bottom: 0;
    }

    .saderat-single-product .specs-table th {
        width: 180px;
    }

    .saderat-single-product .export-info-grid {
        grid-template-columns: 1fr;
    }

    .saderat-single-product .advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .saderat-single-product {
        padding: 20px 0;
    }

    .saderat-single-product .product-hero {
        margin-bottom: 40px;
    }

    .saderat-single-product .product-grid {
        gap: 30px;
    }

    /* Gallery Mobile */
    .saderat-single-product .gallery-main {
        aspect-ratio: 4 / 3;
    }

    .saderat-single-product .product-badge,
    .saderat-single-product .product-sale-badge {
        top: 15px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .saderat-single-product .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .saderat-single-product .thumb-item {
        width: 70px;
        height: 70px;
    }

    /* Product Info Mobile */
    .saderat-single-product .product-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .saderat-single-product .product-short-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .saderat-single-product .product-meta-bar {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .saderat-single-product .meta-item {
        justify-content: flex-start;
        width: 100%;
    }

    /* Advantages Mobile */
    .saderat-single-product .product-advantages {
        padding: 20px;
        margin-bottom: 20px;
    }

    .saderat-single-product .advantages-title {
        font-size: 16px;
    }

    .saderat-single-product .advantages-list li {
        font-size: 13px;
    }

    /* Order Box Mobile */
    .saderat-single-product .product-order-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .saderat-single-product .regular-price,
    .saderat-single-product .sale-price {
        font-size: 26px;
    }

    .saderat-single-product .old-price {
        font-size: 18px;
    }

    .saderat-single-product .btn {
        padding: 13px 20px;
        font-size: 14px;
    }

    .saderat-single-product .trust-signals {
        gap: 8px;
        padding-top: 15px;
    }

    .saderat-single-product .trust-item {
        font-size: 11px;
    }

    .saderat-single-product .trust-item i {
        font-size: 20px;
    }

    /* Actions Bar Mobile */
    .saderat-single-product .product-actions-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .saderat-single-product .share-btn,
    .saderat-single-product .pdf-download-btn {
        width: 100%;
        justify-content: center;
    }

    .saderat-single-product .share-dropdown {
        left: 0;
        right: auto;
        width: 100%;
    }

    /* Tabs Mobile */
    .saderat-single-product .product-tabs-section {
        padding: 40px 0;
        margin-top: 30px;
    }

    .saderat-single-product .tabs-nav {
        margin-bottom: 30px;
        padding-bottom: 5px;
    }

    .saderat-single-product .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .saderat-single-product .tab-content-wrapper {
        font-size: 14px;
        line-height: 1.9;
    }

    .saderat-single-product .tab-content-wrapper h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .saderat-single-product .tab-content-wrapper h4 {
        font-size: 16px;
    }

    /* Specs Table Mobile */
    .saderat-single-product .specs-table {
        font-size: 14px;
    }

    .saderat-single-product .specs-table td,
    .saderat-single-product .specs-table th {
        padding: 12px 15px;
        display: block;
        border: none;
    }

    .saderat-single-product .specs-table tr {
        display: block;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(197, 160, 89, 0.1);
    }

    .saderat-single-product .specs-table th {
        width: 100%;
        background: rgba(197, 160, 89, 0.08);
        border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    }

    .saderat-single-product .specs-table td {
        padding-top: 10px;
    }

    /* Export Info Mobile */
    .saderat-single-product .export-info-card {
        padding: 20px;
    }

    .saderat-single-product .export-info-card .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .saderat-single-product .export-info-card h4 {
        font-size: 15px;
    }

    .saderat-single-product .export-info-card p {
        font-size: 13px;
    }

    .saderat-single-product .export-notes {
        padding: 20px;
    }

    .saderat-single-product .export-cta {
        padding: 25px 20px;
    }

    /* Advantage Card Mobile */
    .saderat-single-product .advantage-card {
        padding: 15px;
    }

    .saderat-single-product .advantage-card i {
        font-size: 20px;
    }

    .saderat-single-product .advantage-card span {
        font-size: 13px;
    }

    /* Related Products Mobile */
    .saderat-single-product .related-products-section {
        padding: 50px 0 30px;
    }

    .saderat-single-product .section-header {
        margin-bottom: 30px;
    }

    .saderat-single-product .section-title {
        font-size: 22px;
    }

    /* Lightbox Mobile */
    .saderat-single-product .lightbox-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .saderat-single-product .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .saderat-single-product .lightbox-prev {
        right: 10px;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .saderat-single-product .lightbox-next {
        left: 10px;
        bottom: 20px;
        top: auto;
        transform: none;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .saderat-single-product .product-title {
        font-size: 20px;
    }

    .saderat-single-product .regular-price,
    .saderat-single-product .sale-price {
        font-size: 22px;
    }

    .saderat-single-product .old-price {
        font-size: 16px;
    }

    .saderat-single-product .thumb-item {
        width: 60px;
        height: 60px;
    }

    .saderat-single-product .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .saderat-single-product .section-title {
        font-size: 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.saderat-single-product .text-center {
    text-align: center;
}

.saderat-single-product .text-gold {
    color: var(--gold);
}

.saderat-single-product .text-white {
    color: var(--white);
}

.saderat-single-product .mb-20 {
    margin-bottom: 20px;
}

.saderat-single-product .mb-30 {
    margin-bottom: 30px;
}

.saderat-single-product .mt-40 {
    margin-top: 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.saderat-single-product .loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ===== PRINT STYLES ===== */
@media print {
    .saderat-single-product .product-actions-bar,
    .saderat-single-product .action-buttons,
    .saderat-single-product .share-section,
    .saderat-single-product .tabs-nav {
        display: none;
    }

    .saderat-single-product .tab-panel {
        display: block !important;
    }
}
/* ===== RELATED PRODUCTS SECTION ===== */
.related-products-section {
  padding: 80px 0 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.related-products-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,160,89,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Section Header */
.related-products-section .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.related-products-section .section-title {
  font-family: 'Vazir', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding-right: 16px;
}

.related-products-section .section-title::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 26px;
  background: var(--gold);
  border-radius: 2px;
}

.related-products-section .view-all-link {
  font-family: 'Vazir', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  border: 1px solid rgba(197,160,89,0.4);
  padding: 6px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.related-products-section .view-all-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ===== PRODUCT CARD ===== */
.sp-product-card {
  background: var(--navy-light);
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sp-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border-color: rgba(197,160,89,0.45);
}

/* Thumbnail */
.sp-product-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.sp-product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sp-product-card:hover .sp-product-card__thumb img {
  transform: scale(1.06);
}

/* Badge */
.sp-product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Vazir', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* Body */
.sp-product-card__body {
  padding: 18px 18px 10px;
  flex: 1;
}

.sp-product-card__cat {
  font-family: 'Vazir', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.sp-product-card__title {
  font-family: 'Vazir', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sp-product-card__title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.sp-product-card__title a:hover {
  color: var(--gold);
}

.sp-product-card__excerpt {
  font-family: 'Vazir', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Footer */
.sp-product-card__footer {
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(197,160,89,0.1);
}

.sp-product-card__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-family: 'Vazir', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.2s;
  gap: 8px;
}

.sp-product-card__btn:hover {
  color: var(--gold-light);
}

.sp-product-card__btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.sp-product-card__btn:hover i {
  transform: translateX(-4px);
}

/* ===== SWIPER OVERRIDES ===== */
.related-products-slider {
  padding-bottom: 40px !important;
}

.related-products-slider .swiper-pagination-bullet {
  background: rgba(197,160,89,0.4);
  opacity: 1;
}

.related-products-slider .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

.related-products-slider .swiper-button-next, .related-products-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--navy-light);
    border: 1px solid rgba(197,160,89,0.3);
    border-radius: 50%;
    top: 45%;
    bottom: 0;
    color: var(--gold);
    padding: 12px;
}

.related-products-slider .swiper-button-next::after,
.related-products-slider .swiper-button-prev::after {
  font-size: 0.3rem;
}

.related-products-slider .swiper-button-next:hover,
.related-products-slider .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.related-products-slider .swiper-slide{
  width: max-content;
}
/* Responsive */
@media (max-width: 576px) {
  .related-products-section {
    padding: 50px 0 40px;
  }
  .related-products-section .section-title {
    font-size: 1.2rem;
  }
  .sp-product-card__body {
    padding: 14px 14px 8px;
  }
  .sp-product-card__footer {
    padding: 10px 14px 14px;
  }
}
/* ---------- 2. WRAPPER ---------- */
.sdrt-ap-wrapper {
  background: var(--page-bg);
  min-height: 60vh;
  font-family: 'Vazir', 'Vazirmatn', sans-serif;
  direction: rtl;
}

/* ---------- 3. HERO ---------- */
.sdrt-ap-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: var(--navy) center/cover no-repeat;
  overflow: hidden;
}

.sdrt-ap-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.sdrt-ap-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2.5rem;
}

.sdrt-ap-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-align: center;
}

.sdrt-ap-hero__desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 100%;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    text-align: center;
}

/* Breadcrumb */
.sdrt-ap-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sdrt-ap-breadcrumb__item a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-f);
}

.sdrt-ap-breadcrumb__item a:hover {
  color: var(--gold);
}

.sdrt-ap-breadcrumb__item--sep {
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0 0.4rem;
  opacity: 0.5;
}

.sdrt-ap-breadcrumb__item--active {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Hero decorative line */
.sdrt-ap-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to left, var(--gold), transparent);
  z-index: 3;
}

/* ---------- 4. MAIN LAYOUT ---------- */
.sdrt-ap-layout {
  padding: 2.5rem 0 4rem;
}

/* ---------- 5. SIDEBAR ---------- */
.sdrt-ap-sidebar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

/* Widget */
.sdrt-ap-widget {
  padding: 1.5rem;
  border-bottom: 1px solid var(--sidebar-border);
}

.sdrt-ap-widget:last-child {
  border-bottom: none;
}

.sdrt-ap-widget__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sdrt-ap-widget__title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Search widget */
.sdrt-ap-search__group {
  position: relative;
}

.sdrt-ap-search__input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--sidebar-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.6rem 2.8rem 0.6rem 1rem;
  transition: border-color var(--transition-f), box-shadow var(--transition-f);
  outline: none;
}

.sdrt-ap-search__input::placeholder {
  color: var(--text-muted);
}

.sdrt-ap-search__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--input-focus);
}

.sdrt-ap-search__btn {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-f);
  line-height: 1;
}

.sdrt-ap-search__btn:hover {
  color: var(--gold);
}

/* Category list */
.sdrt-ap-catlist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sdrt-ap-catlist__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sdrt-ap-catlist__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition-f), color var(--transition-f);
}

.sdrt-ap-catlist__link:hover,
.sdrt-ap-catlist__item--active > .sdrt-ap-catlist__link {
  background: rgba(197,160,89,0.12);
  color: var(--gold);
}

.sdrt-ap-catlist__name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sdrt-ap-catlist__name::before {
  content: '\f07b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  opacity: 0.6;
}

.sdrt-ap-catlist__item--active > .sdrt-ap-catlist__link .sdrt-ap-catlist__name::before {
  content: '\f07c';
  opacity: 1;
}

.sdrt-ap-catlist__count {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
  transition: background var(--transition-f), color var(--transition-f);
}

.sdrt-ap-catlist__item--active > .sdrt-ap-catlist__link .sdrt-ap-catlist__count {
  background: rgba(197,160,89,0.2);
  color: var(--gold);
}

/* Subcategory list */
.sdrt-ap-subcatlist {
  list-style: none;
  padding: 0.2rem 0 0.2rem 0;
  margin: 0.1rem 1.5rem 0.2rem 0;
  border-right: 2px solid rgba(197,160,89,0.25);
}

.sdrt-ap-subcatlist__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.83rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-f), background var(--transition-f);
}

.sdrt-ap-subcatlist__item a:hover,
.sdrt-ap-subcatlist__item--active a {
  color: var(--gold-light);
  background: rgba(197,160,89,0.08);
}

/* Quick filters */
.sdrt-ap-quickfilters {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sdrt-ap-qf-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--sidebar-border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.88rem;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-f);
  text-align: right;
  width: 100%;
}

.sdrt-ap-qf-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,160,89,0.08);
}

.sdrt-ap-qf-btn--active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,160,89,0.12);
}

.sdrt-ap-qf-btn--reset {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.sdrt-ap-qf-btn--reset:hover {
  border-color: rgba(231,76,60,0.5);
  color: #e74c3c;
  background: rgba(231,76,60,0.06);
}
.sdrt-ap-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  margin-bottom: 1.75rem;
}

.sdrt-ap-toolbar__count {
  font-size: 0.88rem;
  color: #666;
}

.sdrt-ap-toolbar__count strong {
  color: var(--navy);
  font-weight: 700;
}

.sdrt-ap-toolbar__sort select,
.sdrt-ap-toolbar__sort .woocommerce-ordering select {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-f);
  appearance: none;
  -webkit-appearance: none;
  padding-left: 2rem;
  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='%23061A33' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 0.6rem center;
}

.sdrt-ap-toolbar__sort select:focus,
.sdrt-ap-toolbar__sort .woocommerce-ordering select:focus {
  border-color: var(--gold);
}



/* ---------- 8. PRODUCT CARD ---------- */
.sdrt-ap-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: transform var(--transition-m), box-shadow var(--transition-m), border-color var(--transition-m);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sdrt-ap-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hv);
  border-color: rgba(197,160,89,0.3);
}

/* Card image */
.sdrt-ap-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
}

.sdrt-ap-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.sdrt-ap-card:hover .sdrt-ap-card__img {
  transform: scale(1.06);
}

/* Card overlay (hover) */
.sdrt-ap-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,26,51,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-m);
}

.sdrt-ap-card:hover .sdrt-ap-card__overlay {
  opacity: 1;
}

.sdrt-ap-card__quick-view {
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  transition: background var(--transition-f), color var(--transition-f), border-color var(--transition-f);
  transform: translateY(8px);
  transition: all var(--transition-m);
}

.sdrt-ap-card:hover .sdrt-ap-card__quick-view {
  transform: translateY(0);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Badges */
.sdrt-ap-card__badges {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}

.sdrt-ap-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.sdrt-ap-badge--oos {
  background: var(--badge-oos);
  color: #fff;
}

.sdrt-ap-badge--sale {
  background: var(--badge-sale);
  color: var(--navy);
}

.sdrt-ap-badge--featured {
  background: var(--navy-light);
  color: var(--gold);
  border: 1px solid rgba(197,160,89,0.3);
}

/* Card body */
.sdrt-ap-card__body {
  padding: 1.1rem 1.25rem 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sdrt-ap-card__cat {
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.sdrt-ap-card__cat::before {
  content: '\f07b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  opacity: 0.8;
}

.sdrt-ap-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.sdrt-ap-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-f);
}

.sdrt-ap-card__title a:hover {
  color: var(--gold);
}

.sdrt-ap-card__desc {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.sdrt-ap-card__min-order {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #888;
  background: #f0f2f5;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.sdrt-ap-card__min-order i {
  color: var(--gold);
  font-size: 0.72rem;
}

/* Card footer */
.sdrt-ap-card__footer {
  padding: 0.75rem 1.25rem 1rem;
  border-top: 1px solid var(--card-border);
  background: #fafbfc;
}

.sdrt-ap-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.sdrt-ap-card__price .woocommerce-Price-amount {
  color: var(--navy);
}

.sdrt-ap-card__price ins {
  text-decoration: none;
}

.sdrt-ap-card__price del {
  opacity: 0.5;
  font-size: 0.85rem;
  font-weight: 400;
  margin-left: 0.4rem;
}

.sdrt-ap-card__inquiry {
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
  margin-bottom: 0.65rem;
}

.sdrt-ap-card__actions {
  display: flex;
  gap: 0.5rem;
}

.sdrt-ap-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-f);
  flex: 1;
  white-space: nowrap;
}

.sdrt-ap-card__btn--view {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.sdrt-ap-card__btn--view:hover {
  background: var(--navy);
  color: var(--white);
}

.sdrt-ap-card__btn--cart {
  background: var(--gold);
  color: var(--navy);
}

.sdrt-ap-card__btn--cart:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.sdrt-ap-card__btn--cart.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ---------- 9. PAGINATION ---------- */
.sdrt-ap-pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.sdrt-ap-pagination__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.sdrt-ap-pagination__item a,
.sdrt-ap-pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--navy);
  background: var(--white);
  transition: all var(--transition-f);
}

.sdrt-ap-pagination__item a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,160,89,0.06);
}

.sdrt-ap-pagination__item.active span,
.sdrt-ap-pagination__item span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.sdrt-ap-pagination__item span.dots {
  border: none;
  background: transparent;
  color: #aaa;
  width: auto;
}

/* ---------- 10. EMPTY STATE ---------- */
.sdrt-ap-empty {
  text-align: center;
  padding: 5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.sdrt-ap-empty__icon {
  font-size: 3.5rem;
  color: rgba(197,160,89,0.35);
  margin-bottom: 1.25rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.sdrt-ap-empty__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.sdrt-ap-empty__desc {
  font-size: 0.92rem;
  color: #888;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.sdrt-ap-empty__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.75rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition-f);
}

.sdrt-ap-empty__btn:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ---------- 11. WOOCOMMERCE OVERRIDES ---------- */
/* فقط داخل wrapper ما، بقیه قالب دست نخورده می‌مونه */
.sdrt-ap-wrapper .woocommerce-ordering {
  margin: 0;
  float: none;
}

.sdrt-ap-wrapper .woocommerce-ordering form {
  margin: 0;
}

/* ---------- 12. RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .sdrt-ap-sidebar {
    position: static;
    margin-bottom: 1.75rem;
  }

  .sdrt-ap-hero {
    min-height: 200px;
  }

  .sdrt-ap-hero__content {
    padding: 2rem 0 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .sdrt-ap-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sdrt-ap-card__actions {
    flex-direction: column;
  }

  .sdrt-ap-card__btn {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .sdrt-ap-hero__title {
    font-size: 1.4rem;
  }

  .sdrt-ap-pagination__item a,
  .sdrt-ap-pagination__item span {
    width: 32px;
    height: 32px;
    font-size: 0.82rem;
  }
}
/* Container */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    background-color: #f7f9fc;
    padding: 40px 20px;
    font-family: inherit;
}

.auth-container {
    display: flex;
    width: 1000px;
    max-width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    min-height: 600px;
}

/* Sidebar styling */
.auth-sidebar {
    flex: 1;
    background: var(--navy);
    color: #ffffff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-sidebar__logo img {
    max-width: 150px;
    height: auto;
}

.auth-sidebar__title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.auth-sidebar__text {
    font-size: 15px;
    line-height: 1.8;
    color: #94a3b8;
}

.auth-sidebar__footer {
    font-size: 12px;
    color: #64748b;
    margin-top: 40px;
}

/* Forms Content styling */
.auth-content {
    flex: 1.2;
    padding: 48px;
    display: flex;
    align-items: center;
}

.auth-form-wrapper {
    width: 100%;
}

.auth-tabs {
    display: flex;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 32px;
}

.auth-tab {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.auth-tab.active {
    color: #0f172a;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3b82f6; /* Accent color */
}

/* Panels */
.auth-panel {
    display: none;
}
.auth-panel .input-icon-wrapper > svg{
    position: absolute;
    top: 34%;
    margin-right: 10px;
}
.auth-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

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

.forgot-link {
    font-size: 12px;
    color: #3b82f6;
    text-decoration: none;
}

/* Inputs with Icons */
.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 12px 48px 12px 16px; /* فضای متناسب برای آیکون راست */
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s;
}

.input-icon-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Toggle Password Visibility Button */
.toggle-password {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 6px;
}

/* Checkbox design */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    margin-left: 10px;
    display: inline-block;
    position: relative;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #e2e8f0;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.label-text {
    font-size: 13px;
    color: #475569;
}

.auth-form-options {
    margin-bottom: 24px;
}

/* Submit Buttons */
.auth-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s;
}

.auth-btn .btn-primary {
    background-color: #0f172a;
    color: #ffffff;
}

.auth-btn .btn-primary:hover:not(:disabled) {
    background-color: #1e293b;
}

.auth-btn .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Spinners & Loading */
.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

.auth-btn.loading .btn-spinner {
    display: block;
}

/* Alerts */
.auth-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.6;
}

.alert-danger {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #86efac;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 900px) {
    .auth-container {
        flex-direction: column;
        width: 500px;
    }
    
    .auth-sidebar {
        padding: 32px;
        min-height: auto;
    }

    .auth-content {
        padding: 32px;
    }
}

/* =========================================================
   Saderat WooCommerce My Account - Premium Theme-Level
   Scope: .saderat-my-account
   Using Theme Variables & Premium Brand Identity
========================================================= */

.saderat-my-account {
    background: var(--page-bg);
    border-radius: var(--radius-lg);
    color: var(--navy);
    position: relative;
}

.saderat-my-account *,
.saderat-my-account *::before,
.saderat-my-account *::after {
    box-sizing: border-box;
}

/* Links & Typography */
.saderat-my-account a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-f);
}

.saderat-my-account a:hover {
    color: var(--gold-light);
}

.saderat-my-account h2,
.saderat-my-account h3,
.saderat-my-account legend {
    color: var(--navy);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
}

.saderat-my-account h2 {
    font-size: 26px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 12px;
    display: inline-block;
}

.saderat-my-account h3,
.saderat-my-account legend {
    font-size: 18px;
    position: relative;
    padding-right: 12px;
}

.saderat-my-account h3::before,
.saderat-my-account legend::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--gold);
    border-radius: var(--radius-sm);
}

/* WooCommerce Main Layout Grid */
.saderat-my-account .woocommerce {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

/* =========================================================
   Premium Sidebar Navigation (Navy & Gold Theme)
========================================================= */
.saderat-my-account .woocommerce-MyAccount-navigation {
    background: var(--sidebar-bg);
    border: 1px solid var(--sidebar-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow-hv);
    padding: 24px 16px;
    position: sticky;
    top: 30px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
}

/* Header branding inside navigation */
.saderat-my-account .woocommerce-MyAccount-navigation::before {
    content: "پنل کاربری";
    display: block;
    text-align: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--sidebar-border);
    letter-spacing: 0.5px;
    width: 100%;
}

.saderat-my-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width:100%;
}

.saderat-my-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 8px;
}

.saderat-my-account .woocommerce-MyAccount-navigation ul li:last-child {
    margin-bottom: 0;
}

.saderat-my-account .woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--sidebar-border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-m);
}

/* Hover & Active States */
.saderat-my-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--navy-light);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateX(-4px); /* RTL slide-in effect */
}

.saderat-my-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Logout link special style */
.saderat-my-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a {
    background: rgba(231, 76, 60, 0.08);
    border-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.saderat-my-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: #e74c3c;
    color: var(--white);
    border-color: #e74c3c;
}

/* =========================================================
   Content Workspace
========================================================= */
.saderat-my-account .woocommerce-MyAccount-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    padding: 36px;
    min-height: 400px;
}

.saderat-my-account .woocommerce-MyAccount-content p {
    line-height: 1.85;
    color: var(--navy-light);
    margin-bottom: 20px;
}

/* Welcome Dashboard Message */
.saderat-my-account .woocommerce-MyAccount-content > p:first-of-type {
    background: rgba(6, 26, 51, 0.02);
    border-right: 4px solid var(--gold);
    border-left: 1px solid var(--card-border);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 20px;
    border-radius: var(--radius-md);
    color: var(--navy);
    font-size: 15px;
}

/* =========================================================
   Forms & Inputs
========================================================= */
.saderat-my-account .woocommerce-form-row label,
.saderat-my-account .woocommerce form .form-row label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.saderat-my-account .woocommerce input.input-text,
.saderat-my-account .woocommerce select,
.saderat-my-account .woocommerce textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    background: var(--page-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    color: var(--navy);
    font-size: 14px;
    transition: var(--transition-f);
}

.saderat-my-account .woocommerce input.input-text:focus,
.saderat-my-account .woocommerce select:focus,
.saderat-my-account .woocommerce textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--input-focus);
}

/* Fieldset Styling for edit account */
.saderat-my-account fieldset {
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 24px;
    background: rgba(6, 26, 51, 0.01);
}

.saderat-my-account fieldset legend {
    padding: 0 12px;
    background: var(--white);
    font-weight: 700;
}

/* =========================================================
   Premium Buttons
========================================================= */
.saderat-my-account .button,
.saderat-my-account .woocommerce-button,
.saderat-my-account button[type="submit"],
.saderat-my-account input[type="submit"],
.saderat-my-account .woocommerce a.button,
.saderat-my-account .woocommerce button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-m);
    box-shadow: var(--card-shadow);
}

.saderat-my-account .button:hover,
.saderat-my-account .woocommerce-button:hover,
.saderat-my-account button[type="submit"]:hover,
.saderat-my-account input[type="submit"]:hover,
.saderat-my-account .woocommerce a.button:hover,
.saderat-my-account .woocommerce button.button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hv);
}

/* Secondary Button / Action link */
.saderat-my-account .button.alt,
.saderat-my-account .woocommerce a.button.alt {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.saderat-my-account .button.alt:hover,
.saderat-my-account .woocommerce a.button.alt:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* =========================================================
   Modern Tables (Orders & Subscriptions)
========================================================= */
.saderat-my-account table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 24px 0;
}

.saderat-my-account table.shop_table thead th {
    background: var(--navy);
    color: var(--white);
    padding: 16px;
    font-weight: 700;
    font-size: 13.5px;
    border-bottom: 0;
}

.saderat-my-account table.shop_table tbody td {
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--card-border);
    color: var(--navy-light);
    font-size: 14px;
    vertical-align: middle;
}

.saderat-my-account table.shop_table tr:last-child td {
    border-bottom: 0;
}

/* Dynamic Order Status Tags */
.saderat-my-account .woocommerce-orders-table__cell-order-status .woocommerce-Order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(6, 26, 51, 0.05);
    color: var(--navy);
}

/* =========================================================
   Address Cards
========================================================= */
.saderat-my-account .woocommerce-Addresses {
    display: flex;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.saderat-my-account .woocommerce-Address-title h2{
  display: none;
}
.saderat-my-account .woocommerce-Address {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--card-shadow);
}

.saderat-my-account .woocommerce-Address-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-radius: 12px;
    padding-top: 10px;
}

.saderat-my-account .woocommerce-Address-title h3 {
    margin-bottom: 0;
}

.saderat-my-account .woocommerce-Address address {
    font-style: normal;
    font-size: 14px;
    line-height: 2;
    color: var(--navy-light);
}

/* =========================================================
   Alerts & Notifications
========================================================= */
.saderat-my-account .woocommerce-message,
.saderat-my-account .woocommerce-info,
.saderat-my-account .woocommerce-error {
    border: 0;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.saderat-my-account .woocommerce-message {
    background: rgba(197, 160, 89, 0.1);
    color: var(--navy);
    border-right: 4px solid var(--gold);
}

.saderat-my-account .woocommerce-info {
    background: rgba(6, 26, 51, 0.05);
    color: var(--navy);
    border-right: 4px solid var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.saderat-my-account .woocommerce-info::after{
  display: none;
}
.saderat-my-account .woocommerce-info .woocommerce-Button{
  display: flex;
}

.saderat-my-account .woocommerce-error {
    background: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
    border-right: 4px solid #e74c3c;
    flex-direction: column;
    align-items: flex-start;
}

/* =========================================================
   Responsive Breakpoints
========================================================= */
@media (max-width: 991px) {
    .saderat-my-account {
        padding: 24px;
    }

    .saderat-my-account .woocommerce {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .saderat-my-account .woocommerce-MyAccount-navigation {
        position: static;
        top: auto;
    }
}

@media (max-width: 767px) {
    .saderat-my-account {
        padding: 16px;
    }

    .saderat-my-account .woocommerce-MyAccount-content {
        padding: 24px;
    }

    .saderat-my-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    .saderat-my-account table.shop_table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


/* --------------------------------------------------------------------------
   2. HERO & MAIN HEADINGS (H1-H3)
   -------------------------------------------------------------------------- */
/* Main page title (e.g. "سبد خرید" or "تسویه حساب") */
.saderat-cart-custom .entry-title,
.saderat-cart-custom .page-title,
.saderat-cart-custom .woocommerce-products-header__title,
.saderat-cart-custom h1 {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin: 0 0 32px 0 !important;
    padding: 18px 24px 18px 20px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.96) 100%) !important;
    color: var(--navy) !important;
    font-size: clamp(1.4rem, 2.2vw, 1.95rem) !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    box-shadow: var(--shadow-premium) !important;
    border: 1px solid rgba(6, 26, 51, 0.06) !important;
    overflow: hidden !important;
}

/* Gold decorative line next to the Title */
.saderat-cart-custom .entry-title::before,
.saderat-cart-custom .page-title::before,
.saderat-cart-custom .woocommerce-products-header__title::before,
.saderat-cart-custom h1::before {
    content: "" !important;
    width: 8px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%) !important;
    box-shadow: 0 6px 14px rgba(197, 160, 89, 0.3) !important;
    flex: 0 0 auto !important;
}

/* Decorative backdrop glow */
.saderat-cart-custom .entry-title::after,
.saderat-cart-custom .page-title::after,
.saderat-cart-custom .woocommerce-products-header__title::after,
.saderat-cart-custom h1::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.12), transparent 36%) !important;
    pointer-events: none !important;
}

/* Section titles inside page (H2, H3) */
.saderat-cart-custom h2,
.saderat-cart-custom h3,
.saderat-cart-custom #order_review_heading {
    position: relative !important;
    margin: 0 0 24px 0 !important;
    padding-bottom: 16px !important;
    color: var(--navy) !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

/* Gold Underline for section headers */
.saderat-cart-custom h2::before,
.saderat-cart-custom h3::before,
.saderat-cart-custom #order_review_heading::before {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 64px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--gold), var(--gold-light)) !important;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.25) !important;
}

/* Extra gold dot under header */
.saderat-cart-custom h2::after,
.saderat-cart-custom h3::after,
.saderat-cart-custom #order_review_heading::after {
    content: "" !important;
    position: absolute !important;
    right: 72px !important;
    bottom: 0px !important;
    width: 10px !important;
    height: 4px !important;
    border-radius: 999px !important;
    background: rgba(197, 160, 89, 0.35) !important;
}

/* --------------------------------------------------------------------------
   3. LAYOUT CARDS & CONTAINERS
   -------------------------------------------------------------------------- */
.saderat-cart-custom .woocommerce,
.saderat-cart-custom .cart-collaterals .cart_totals,
.saderat-cart-custom #customer_details,
.saderat-cart-custom #order_review,
.saderat-cart-custom .woocommerce-checkout-review-order,
.saderat-cart-custom form.checkout_coupon,
.saderat-cart-custom .woocommerce-NoticeGroup,
.saderat-cart-custom .cart-empty {
    background: var(--white) !important;
    border: 1px solid rgba(6, 26, 51, 0.06) !important;
    border-radius: 24px !important;
    box-shadow: var(--shadow-medium) !important;
}
.saderat-cart-custom .cart-collaterals{
  padding: 20px;
}
.saderat-cart-custom .woocommerce-cart-form,
.saderat-cart-custom #customer_details,
.saderat-cart-custom #order_review,
.saderat-cart-custom .cart-collaterals .cart_totals {
    padding: 32px !important;
    width:100%;
}

/* --------------------------------------------------------------------------
   4. FORM FIELDS & LABELS
   -------------------------------------------------------------------------- */
.saderat-cart-custom input[type="text"],
.saderat-cart-custom input[type="email"],
.saderat-cart-custom input[type="tel"],
.saderat-cart-custom input[type="password"],
.saderat-cart-custom input[type="number"],
.saderat-cart-custom select,
.saderat-cart-custom textarea,
.saderat-cart-custom .coupon input.input-text,
.saderat-cart-custom .select2-container--default .select2-selection--single,
.saderat-cart-custom .select2-container--default .select2-selection--multiple {
    width: 100% !important;
    min-height: 54px !important;
    background: linear-gradient(180deg, rgba(245, 246, 248, 0.7), rgba(255, 255, 255, 0.98)) !important;
    border: 1.5px solid rgba(6, 26, 51, 0.1) !important;
    border-radius: 16px !important;
    color: var(--navy) !important;
    padding: 12px 18px !important;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
    transition: var(--transition-smooth) !important;
}

.saderat-cart-custom textarea {
    min-height: 120px !important;
    padding-top: 16px !important;
    resize: vertical !important;
}

/* Input Placeholders */
.saderat-cart-custom input::placeholder,
.saderat-cart-custom textarea::placeholder {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
}

/* Input Focus States */
.saderat-cart-custom input:focus,
.saderat-cart-custom select:focus,
.saderat-cart-custom textarea:focus,
.saderat-cart-custom .coupon input.input-text:focus,
.saderat-cart-custom .select2-container--default.select2-container--focus .select2-selection--single,
.saderat-cart-custom .select2-container--default.select2-container--focus .select2-selection--multiple {
    outline: none !important;
    background: var(--white) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15), var(--shadow-soft) !important;
    transform: translateY(-1px) !important;
}

/* Fields labels */
.saderat-cart-custom .woocommerce form .form-row label,
.saderat-cart-custom .form-row label {
    display: block !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    margin: 0 0 8px 0 !important;
    transition: var(--transition-smooth) !important;
}

.saderat-cart-custom .form-row:focus-within label {
    color: var(--gold) !important;
}

/* Select2 special library overrides */
.saderat-cart-custom .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 30px !important;
    color: var(--navy) !important;
    padding: 0 !important;
    font-weight: 600 !important;
}

.saderat-cart-custom .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
}

/* --------------------------------------------------------------------------
   5. QUANTITY SELECTOR
   -------------------------------------------------------------------------- */
.saderat-cart-custom .quantity .qty {
    min-height: 48px !important;
    width: 76px !important;
    border-radius: 12px !important;
    border: 1.5px solid rgba(6, 26, 51, 0.12) !important;
    background: linear-gradient(180deg, rgba(245, 246, 248, 0.7), rgba(255, 255, 255, 0.96)) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: var(--transition-smooth) !important;
}

.saderat-cart-custom .quantity .qty:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12) !important;
}

/* --------------------------------------------------------------------------
   6. PREMIUM SHOP TABLE (CART ITEMS)
   -------------------------------------------------------------------------- */
.saderat-cart-custom table.shop_table {
    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 16px !important;
    background: transparent !important;
    margin: 0 !important;
    width: 100% !important;
}

.saderat-cart-custom table.shop_table thead th {
    background: transparent !important;
    border: none !important;
    color: #040d1a !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    padding-bottom: 4px !important;
}

/* Rows & Hover Effects */
.saderat-cart-custom table.shop_table tbody tr,
.saderat-cart-custom table.shop_table tfoot tr {
    background: var(--white) !important;
    box-shadow: var(--shadow-soft) !important;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth) !important;
}

.saderat-cart-custom table.shop_table tbody tr:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 36px rgba(6, 26, 51, 0.08) !important;
}

.saderat-cart-custom table.shop_table td,
.saderat-cart-custom table.shop_table th {
    border: none !important;
    padding: 18px 16px !important;
    vertical-align: middle !important;
}

/* Row Rounded Corners */
.saderat-cart-custom table.shop_table tbody tr td:first-child {
    border-top-right-radius: 18px !important;
    border-bottom-right-radius: 18px !important;
}

.saderat-cart-custom table.shop_table tbody tr td:last-child {
    border-top-left-radius: 18px !important;
    border-bottom-left-radius: 18px !important;
}

/* Product Image Frame */
.saderat-cart-custom table.shop_table img {
    width: 84px !important;
    height: auto !important;
    border-radius: 14px !important;
    border: 1px solid rgba(6, 26, 51, 0.06) !important;
    box-shadow: 0 8px 20px rgba(6, 26, 51, 0.06) !important;
    transition: var(--transition-smooth) !important;
}

.saderat-cart-custom table.shop_table tr:hover img {
    transform: scale(1.05) !important;
    box-shadow: 0 12px 24px rgba(6, 26, 51, 0.1) !important;
}

/* Links & Text */
.saderat-cart-custom .product-name a,
.saderat-cart-custom .woocommerce-checkout-review-order-table .product-name {
    color: var(--navy) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.saderat-cart-custom .product-name a:hover {
    color: var(--gold) !important;
}

/* Trash Remove Button */
.saderat-cart-custom .woocommerce a.remove {
    display: inline-block !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 29px !important;
    border-radius: 50% !important;
    background: rgba(6, 26, 51, 0.05) !important;
    color: var(--navy) !important;
    font-size: 18px !important;
    text-align: center !important;
    transition: var(--transition-smooth) !important;
}

.saderat-cart-custom .woocommerce a.remove:hover {
    background: #e74c3c !important; /* Soft Red on Delete Hover */
    color: var(--white) !important;
    transform: rotate(90deg) scale(1.06) !important;
}

/* Table Prices styling */
.saderat-cart-custom .product-price,
.saderat-cart-custom .product-subtotal,
.saderat-cart-custom .cart-subtotal td,
.saderat-cart-custom .order-total td,
.saderat-cart-custom .woocommerce-checkout-review-order-table .product-total,
.saderat-cart-custom .woocommerce-checkout-review-order-table .order-total td {
    color: var(--navy) !important;
    font-weight: 800 !important;
}

/* --------------------------------------------------------------------------
   7. PREMIUM CTA & INTERACTIVE BUTTONS
   -------------------------------------------------------------------------- */
/* Common Rules for Premium Buttons */
.saderat-cart-custom .woocommerce a.button,
.saderat-cart-custom .woocommerce button.button,
.saderat-cart-custom .woocommerce input.button,
.saderat-cart-custom .woocommerce #respond input#submit,
.saderat-cart-custom .woocommerce button.button.alt,
.saderat-cart-custom .woocommerce input.button.alt,
.saderat-cart-custom .wc-proceed-to-checkout a.checkout-button,
.saderat-cart-custom #place_order {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-height: 54px !important;
    padding: 14px 28px !important;
    border: none !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
    color: var(--white) !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 12px 24px rgba(6, 26, 51, 0.15), inset 0 1px 0 rgba(255,255,255,0.08) !important;
    transition: transform 0.2s ease, box-shadow var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth) !important;
    overflow: hidden !important;
    isolation: isolate !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

/* Button shiny effect */
.saderat-cart-custom .woocommerce a.button::before,
.saderat-cart-custom .woocommerce button.button::before,
.saderat-cart-custom .woocommerce input.button::before,
.saderat-cart-custom .woocommerce #respond input#submit::before,
.saderat-cart-custom .woocommerce button.button.alt::before,
.saderat-cart-custom .woocommerce input.button.alt::before,
.saderat-cart-custom .wc-proceed-to-checkout a.checkout-button::before,
.saderat-cart-custom #place_order::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 25%, transparent 50%) !important;
    transform: translateX(-120%) !important;
    transition: transform 0.6s ease-in-out !important;
    z-index: -1 !important;
}

/* Arrow indicator icon */
.saderat-cart-custom .woocommerce a.button::after,
.saderat-cart-custom .woocommerce button.button::after,
.saderat-cart-custom .woocommerce input.button::after,
.saderat-cart-custom .woocommerce #respond input#submit::after,
.saderat-cart-custom .woocommerce button.button.alt::after,
.saderat-cart-custom .woocommerce input.button.alt::after,
.saderat-cart-custom .wc-proceed-to-checkout a.checkout-button::after,
.saderat-cart-custom #place_order::after {
    content: "←" !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    transition: transform var(--transition-smooth) !important;
}

/* Primary Button Hover State */
.saderat-cart-custom .woocommerce a.button:hover,
.saderat-cart-custom .woocommerce button.button:hover,
.saderat-cart-custom .woocommerce input.button:hover,
.saderat-cart-custom .woocommerce #respond input#submit:hover,
.saderat-cart-custom .woocommerce button.button.alt:hover,
.saderat-cart-custom .woocommerce input.button.alt:hover,
.saderat-cart-custom .wc-proceed-to-checkout a.checkout-button:hover,
.saderat-cart-custom #place_order:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    color: var(--navy) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px rgba(197, 160, 89, 0.22), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

.saderat-cart-custom .woocommerce a.button:hover::before,
.saderat-cart-custom .woocommerce button.button:hover::before,
.saderat-cart-custom .woocommerce input.button:hover::before,
.saderat-cart-custom .woocommerce #respond input#submit:hover::before,
.saderat-cart-custom .woocommerce button.button.alt:hover::before,
.saderat-cart-custom .woocommerce input.button.alt:hover::before,
.saderat-cart-custom .wc-proceed-to-checkout a.checkout-button:hover::before,
.saderat-cart-custom #place_order:hover::before {
    transform: translateX(120%) !important;
}

.saderat-cart-custom .woocommerce a.button:hover::after,
.saderat-cart-custom .woocommerce button.button:hover::after,
.saderat-cart-custom .woocommerce input.button:hover::after,
.saderat-cart-custom .woocommerce #respond input#submit:hover::after,
.saderat-cart-custom .woocommerce button.button.alt:hover::after,
.saderat-cart-custom .woocommerce input.button.alt:hover::after,
.saderat-cart-custom .wc-proceed-to-checkout a.checkout-button:hover::after,
.saderat-cart-custom #place_order:hover::after {
    transform: translateX(-3px) !important;
}

/* Secondary Actions (Update Cart, Apply Coupon, etc.) */
.saderat-cart-custom .button[name="update_cart"],
.saderat-cart-custom .coupon .button,
.saderat-cart-custom form.checkout_coupon .button {
    background: transparent !important;
    color: var(--navy) !important;
    border: 1.5px solid rgba(6, 26, 51, 0.12) !important;
    box-shadow: none !important;
}

.saderat-cart-custom .button[name="update_cart"]::after,
.saderat-cart-custom .coupon .button::after,
.saderat-cart-custom form.checkout_coupon .button::after {
    content: "" !important; /* Hide arrows on secondary buttons */
}

.saderat-cart-custom .button[name="update_cart"]:hover,
.saderat-cart-custom .coupon .button:hover,
.saderat-cart-custom form.checkout_coupon .button:hover {
    background: var(--navy) !important;
    color: var(--white) !important;
    border-color: var(--navy) !important;
    box-shadow: 0 10px 22px rgba(6, 26, 51, 0.12) !important;
}

/* --------------------------------------------------------------------------
   8. ORDER SUMMARY & PAYMENT METHOD BOX
   -------------------------------------------------------------------------- */
/* Subtotals / Totals Rows */
.saderat-cart-custom .cart_totals table.shop_table,
.saderat-cart-custom .woocommerce-checkout-review-order-table {
    border: none !important;
    margin: 0 !important;
}

.saderat-cart-custom .cart_totals table.shop_table th,
.saderat-cart-custom .cart_totals table.shop_table td,
.saderat-cart-custom .woocommerce-checkout-review-order-table th,
.saderat-cart-custom .woocommerce-checkout-review-order-table td {
    border: none !important;
    padding: 12px 0 !important;
    color: var(--navy) !important;
}

.saderat-cart-custom .cart_totals .order-total td,
.saderat-cart-custom .woocommerce-checkout-review-order-table .order-total td {
    color: var(--gold) !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
}

/* Coupon Area Box */
.saderat-cart-custom .coupon,
.saderat-cart-custom form.checkout_coupon {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    padding: 16px !important;
    margin-top: 16px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(245, 246, 248, 0.6), rgba(255, 255, 255, 0.95)) !important;
    border: 1px dashed rgba(197, 160, 89, 0.4) !important;
}

.saderat-cart-custom .coupon label,
.saderat-cart-custom form.checkout_coupon label {
    width: 100% !important;
    margin: 0 0 4px 0 !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
}

/* Payment Methods Area */
.saderat-cart-custom #payment {
    background: linear-gradient(180deg, rgba(245,246,248,0.7), rgba(255,255,255,0.98)) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(6, 26, 51, 0.05) !important;
    overflow: hidden !important;
    padding: 16px !important;
}

.saderat-cart-custom #payment div.payment_box {
    background: rgba(255,255,255,0.98) !important;
    color: var(--navy) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(6, 26, 51, 0.04) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
    padding: 14px 16px !important;
    margin: 8px 0 !important;
}

/* Sticky Right Column on Desktop */
@media (min-width: 992px) {
    .saderat-cart-custom #order_review {
        position: sticky !important;
        top: 24px !important;
        z-index: 99 !important;
    }
}

/* --------------------------------------------------------------------------
   9. ALERTS & SYSTEM NOTICES
   -------------------------------------------------------------------------- */
.saderat-cart-custom .woocommerce-error,
.saderat-cart-custom .woocommerce-info,
.saderat-cart-custom .woocommerce-message {
    border: none !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,246,248,0.96)) !important;
    color: var(--navy) !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-soft) !important;
    padding: 16px 20px !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 24px !important;
}

/* Gold Accent strip on alerts */
.saderat-cart-custom .woocommerce-error::after,
.saderat-cart-custom .woocommerce-info::after,
.saderat-cart-custom .woocommerce-message::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 6px !important;
    height: 100% !important;
    background: linear-gradient(180deg, var(--gold-light), var(--gold)) !important;
}

/* --------------------------------------------------------------------------
   10. MOBILE RESPONSIVENESS
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .saderat-cart-custom {
        padding: 16px !important;
        border-radius: 20px !important;
    }

    .saderat-cart-custom .woocommerce-cart-form,
    .saderat-cart-custom #customer_details,
    .saderat-cart-custom #order_review,
    .saderat-cart-custom .cart-collaterals .cart_totals {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    /* Titles shrink for mobile screens */
    .saderat-cart-custom .entry-title,
    .saderat-cart-custom .page-title,
    .saderat-cart-custom .woocommerce-products-header__title,
    .saderat-cart-custom h1 {
        width: 100% !important;
        font-size: 1.3rem !important;
        padding: 14px 16px !important;
    }

    /* Convert tables to cards */
    .saderat-cart-custom table.shop_table,
    .saderat-cart-custom table.shop_table tbody,
    .saderat-cart-custom table.shop_table tr,
    .saderat-cart-custom table.shop_table td {
        display: block !important;
        width: 100% !important;
    }

    .saderat-cart-custom table.shop_table thead {
        display: none !important; /* Hide headers on mobile */
    }

    .saderat-cart-custom table.shop_table tr {
        border-radius: 16px !important;
        padding: 12px 0 !important;
        margin-bottom: 16px !important;
        border: 1px solid rgba(6, 26, 51, 0.05) !important;
    }

    .saderat-cart-custom table.shop_table td {
        text-align: right !important;
        padding: 8px 16px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Helper label indicator on mobile for tables */
    .saderat-cart-custom table.shop_table td::before {
        content: attr(data-title) ": " !important;
        font-weight: 700 !important;
        color: var(--text-muted) !important;
        font-size: 0.85rem !important;
    }
    
    /* Avoid duplication for specific TDs */
    .saderat-cart-custom table.shop_table td.product-remove::before,
    .saderat-cart-custom table.shop_table td.product-thumbnail::before {
        content: "" !important;
    }

    .saderat-cart-custom .coupon,
    .saderat-cart-custom form.checkout_coupon {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .saderat-cart-custom .woocommerce a.button,
    .saderat-cart-custom .woocommerce button.button,
    .saderat-cart-custom .woocommerce input.button,
    .saderat-cart-custom .wc-proceed-to-checkout a.checkout-button,
    .saderat-cart-custom #place_order {
        width: 100% !important;
    }
}
.exp-header {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.exp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
}

.exp-title,
.exp-subtitle {
    width: 100%;
}

.exp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    width: 150px;
    max-width: 100%;
}

.exp-divider span {
    flex-grow: 1;
    height: 2px;
    background-color: #ccc;
}

.exp-divider i,
.exp-divider svg {
    font-size: 14px;
    flex-shrink: 0;
}

.exp-catalog-banner{
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 36px;
    padding: 28px 32px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 210px;
}

.exp-catalog-banner::before{
    content: "";
    position: absolute;
    inset: auto -60px -70px auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(30,115,190,0.08) 0%, rgba(30,115,190,0) 70%);
    pointer-events: none;
}

.exp-catalog-banner__media{
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    position: relative;
    z-index: 2;
}

.exp-catalog-banner__media img{
    width: 100%;
    max-width: 230px;
    height: auto;
    display: block;
    transform-origin: center;
    filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.18));
    transition: transform .3s ease, filter .3s ease;
}

.exp-catalog-banner__content{
    flex: 1;
    text-align: center;
    padding: 0 10px;
    z-index: 2;
}

.exp-catalog-banner__badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(30, 115, 190, 0.10);
    color: #1E73BE;
    margin-bottom: 14px;
}

.exp-catalog-banner__title{
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 900;
    color: #1F2A37;
}

.exp-catalog-banner__desc{
    font-size: 15px;
    line-height: 2;
    color: #6B7280;
    max-width: 560px;
    margin: 0 auto;
}

.exp-catalog-banner__actions{
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.exp-catalog-banner__btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 14px;
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    box-shadow: 0 10px 18px rgba(0,0,0,.10);
}

.exp-catalog-banner__btn:hover{
    transform: translateY(-2px);
    opacity: .96;
}

.exp-catalog-banner__btn--primary{
    background: linear-gradient(135deg, #1E73BE, #145EA1);
}

.exp-catalog-banner__btn--secondary{
    background: linear-gradient(135deg, #F4B400, #D89B00);
}

.exp-catalog-banner__btn-icon{
    font-size: 15px;
    line-height: 1;
    opacity: .95;
}

/* Responsive */
@media (max-width: 1024px){
    .exp-catalog-banner{
        padding: 24px;
        gap: 20px;
    }

    .exp-catalog-banner__media,
    .exp-catalog-banner__actions{
        flex-basis: 200px;
    }

    .exp-catalog-banner__title{
        font-size: 24px;
    }
}

@media (max-width: 767px){
    .exp-catalog-banner{
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 22px 18px;
        border-radius: 28px;
        gap: 18px;
    }

    .exp-catalog-banner__media,
    .exp-catalog-banner__content,
    .exp-catalog-banner__actions{
        width: 100%;
        flex: 1 1 auto;
    }

    .exp-catalog-banner__media{
        order: 1;
    }

    .exp-catalog-banner__content{
        order: 2;
        padding: 0;
    }

    .exp-catalog-banner__actions{
        order: 3;
        flex-direction: row;
        gap: 10px;
    }

    .exp-catalog-banner__btn{
        flex: 1 1 50%;
        font-size: 13px;
        min-height: 46px;
        padding: 11px 12px;
    }

    .exp-catalog-banner__title{
        font-size: 22px;
    }

    .exp-catalog-banner__desc{
        font-size: 14px;
        line-height: 1.9;
    }

    .exp-catalog-banner__media img{
        max-width: 180px;
    }
}

@media (max-width: 480px){
    .exp-catalog-banner__actions{
        flex-direction: column;
    }

    .exp-catalog-banner__btn{
        width: 100%;
    }
}

.exp-testimonials {
    --exp-text: #223247;
    --exp-muted: #6f7b88;
    --exp-white: #ffffff;
    --exp-border: rgba(6, 26, 51, 0.08);
    --exp-shadow: 0 24px 60px rgba(6, 26, 51, 0.10);
    --exp-shadow-hover: 0 15px 40px rgba(6, 26, 51, 0.14);
    --exp-gold-soft: rgba(197, 160, 89, 0.16);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0 0 0;
}

.exp-testimonials *,
.exp-testimonials *::before,
.exp-testimonials *::after {
    box-sizing: border-box;
}

.exp-testimonials__viewport {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 32px 25px !important;
}

.exp-testimonials .swiper-wrapper {
    align-items: stretch;
}

.exp-testimonials__slide {
    min-width: 0;
    height: auto;
}

.exp-testi-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    height: 100%;
    padding: 32px 28px 26px;
    border: 1px solid var(--exp-border);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.exp-testi-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(197, 160, 89, 0.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(6, 26, 51, 0.07), transparent 36%);
    z-index: -1;
}

.exp-testi-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.42);
    box-shadow: var(--exp-shadow-hover);
}

.exp-testi-card__quote {
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 110px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(197, 160, 89, 0.10);
    pointer-events: none;
}

.exp-testi-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.exp-testi-star {
    color: rgba(197, 160, 89, 0.28);
    font-size: 14px;
    line-height: 1;
}

.exp-testi-star.is-active {
    color: var(--gold);
}

.exp-testi-card__text {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.exp-testi-card__text p {
    margin: 0;
    color: var(--exp-text);
    font-size: 15px;
    line-height: 2;
    text-align: right;
}

.exp-testi-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(6, 26, 51, 0.08);
    position: relative;
    z-index: 1;
}

.exp-testi-card__avatar {
    width: 58px;
    min-width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    border: 2px solid rgba(197, 160, 89, 0.55);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--exp-white);
    font-size: 20px;
    font-weight: 700;
}

.exp-testi-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.exp-testi-card__meta {
    min-width: 0;
    flex: 1 1 auto;
}

.exp-testi-card__name {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.5;
}

.exp-testi-card__job {
    color: var(--exp-muted);
    font-size: 13px;
    line-height: 1.8;
}

.exp-testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.exp-testimonials__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(6, 26, 51, 0.12);
    border-radius: 50%;
    background: var(--exp-white);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(6, 26, 51, 0.08);
}

.exp-testimonials__arrow:hover {
    background: var(--navy);
    color: var(--exp-white);
    border-color: var(--navy);
    transform: translateY(-2px);
}

.exp-testimonials__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.exp-testimonials__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(6, 26, 51, 0.18);
    opacity: 1;
    transition: all 0.3s ease;
}

.exp-testimonials__pagination .swiper-pagination-bullet-active {
    width: 30px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

@media (max-width: 1024px) {
    .exp-testimonials {
        padding-bottom: 52px;
    }

    .exp-testi-card {
        min-height: 320px;
        padding: 28px 24px 22px;
    }

    .exp-testimonials .swiper-slide {
        width: calc((100% - 20px) / 2) !important;
    }
}

@media (min-width: 1025px) {
    .exp-testimonials .swiper-slide {
        width: calc((100% - 48px) / 3) !important;
    }
}

@media (max-width: 767px) {
    .exp-testimonials {
        padding: 12px 0 48px;
    }

    .exp-testi-card {
        min-height: unset;
        padding: 24px 18px 20px;
        border-radius: 20px;
    }

    .exp-testi-card__quote {
        top: 6px;
        left: 14px;
        font-size: 82px;
    }

    .exp-testi-card__text p {
        font-size: 14px;
        line-height: 1.9;
    }

    .exp-testi-card__name {
        font-size: 15px;
    }

    .exp-testi-card__job {
        font-size: 12px;
    }

    .exp-testimonials__arrow {
        width: 40px;
        height: 40px;
    }

    .exp-testimonials .swiper-slide {
        width: 100% !important;
    }
}

:root{
  --exp-navy:#0f2742;
  --exp-navy-2:#16385f;
  --exp-gold:#c6a45b;
  --exp-gold-dark:#9b7a34;
  --exp-cream:#f7f2e8;
  --exp-border:#eadfca;
  --exp-text:#223142;
  --exp-muted:#7a8694;
  --exp-white:#ffffff;
}

.exp-premium-products-wrap{
  position:relative;
  width:100%;
}

.exp-premium-products-swiper{
  overflow:visible;
}

.exp-premium-products-swiper .swiper-slide{
  height:auto;
}

.exp-premium-card{
  position:relative;
  display:flex;
  flex-direction:column;
  height:100%;
  background:linear-gradient(180deg,#ffffff 0%, #fcfaf6 100%);
  border:1px solid rgba(198,164,91,.18);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(15,39,66,.08);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.exp-premium-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 55px rgba(15,39,66,.14);
  border-color:rgba(198,164,91,.35);
}

.exp-premium-card__media{
  position:relative;
  padding:18px 18px 0;
}

.exp-premium-card__image-link{
  display:block;
  position:relative;
  background:linear-gradient(180deg,#faf8f3 0%,#f4efe5 100%);
  border-radius:22px;
  overflow:hidden;
}

.exp-premium-card__img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  transition:transform .55s ease;
}

.exp-premium-card:hover .exp-premium-card__img{
  transform:scale(1.045);
}

.exp-premium-card__badges{
  position:absolute;
  top:30px;
  right:30px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  z-index:3;
}

.exp-premium-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  line-height:1;
  backdrop-filter: blur(8px);
}

.exp-premium-badge--special{
  background:rgba(15,39,66,.88);
  color:#fff;
  box-shadow:0 10px 24px rgba(15,39,66,.16);
}

.exp-premium-badge--category{
  background:rgba(255,255,255,.92);
  color:var(--exp-navy);
  border:1px solid rgba(15,39,66,.08);
}

.exp-premium-badge--discount{
  background:linear-gradient(135deg,var(--exp-gold) 0%, var(--exp-gold-dark) 100%);
  color:#fff;
  box-shadow:0 10px 24px rgba(155,122,52,.2);
}

.exp-premium-badge__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.exp-premium-card__actions{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:4;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translateY(14px);
  transition:opacity .35s ease, transform .35s ease;
  pointer-events:none;
}

.exp-premium-card:hover .exp-premium-card__actions{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.exp-premium-card__icon-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none !important;
  color:#fff !important;
  background:linear-gradient(135deg,var(--exp-navy) 0%, var(--exp-navy-2) 100%);
  box-shadow:0 12px 24px rgba(12,35,64,.18);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    background .28s ease,
    opacity .28s ease;
  opacity:0;
  transform:translateX(-10px) scale(.92);
}

.exp-premium-card:hover .exp-premium-card__icon-btn{
  opacity:1;
  transform:translateX(0) scale(1);
}

.exp-premium-card:hover .exp-premium-card__icon-btn:nth-child(1){
  transition-delay:.03s;
}

.exp-premium-card:hover .exp-premium-card__icon-btn:nth-child(2){
  transition-delay:.1s;
}

.exp-premium-card__icon-btn:hover{
  transform:translateY(-2px) scale(1.06) !important;
  background:linear-gradient(135deg,var(--exp-gold) 0%, var(--exp-gold-dark) 100%);
  box-shadow:0 16px 34px rgba(159,118,39,.24);
}

.exp-premium-card__content{
  padding:18px 20px 22px;
}

.exp-premium-card__meta-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:16px;
}

.exp-premium-meta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 30px;
    padding: 0 18px;
    min-width: 80px;
    border-radius: 999px;
    background: #f7f2e8;
    border: 1px solid #d8bf7a;
    color: #b88f2f;
    box-shadow: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    direction: rtl;
}

.exp-premium-meta-pill__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#c5a24b;
  flex:0 0 auto;
}

.exp-premium-meta-pill__text{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  color:#b88f2f;
}

.exp-premium-meta-pill.is-outofstock{
  background:#f4f1eb;
  border-color:#d5c7a2;
  color:#979797;
}

.exp-premium-meta-pill.is-outofstock .exp-premium-meta-pill__icon,
.exp-premium-meta-pill.is-outofstock .exp-premium-meta-pill__text{
  color:#979797;
}

.exp-premium-card__title{
  margin:0 0 14px;
  font-size:18px;
  line-height:1.9;
  font-weight:800;
  color:var(--exp-text);
}

.exp-premium-card__title a{
  color:inherit;
  text-decoration:none;
  transition:color .25s ease;
}

.exp-premium-card__title a:hover{
  color:var(--exp-gold-dark);
}

.exp-premium-card__price{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 12px;
  font-size:16px;
  color:var(--exp-text);
  font-weight:700;
}

.exp-premium-card__price del{
  color:#97a0aa;
  font-size:14px;
  font-weight:500;
}

.exp-premium-card__price ins{
  text-decoration:none;
  color:var(--exp-gold-dark);
  font-size:18px;
  font-weight:800;
}

.exp-premium-card__price .amount{
  white-space:nowrap;
}

@media (max-width: 1024px){
  .exp-premium-card{
    border-radius:24px;
  }

  .exp-premium-card__media{
    padding:16px 16px 0;
  }

  .exp-premium-card__content{
    padding:16px 16px 20px;
  }
}

@media (max-width: 767px){
  .exp-premium-card__badges{
    top:24px;
    right:24px;
  }

  .exp-premium-meta-pill{
    min-width:auto;
    padding:0 14px;
    font-size:12px;
  }

  .exp-premium-card__title{
    font-size:16px;
  }

  .exp-premium-card__icon-btn{
    width:42px;
    height:42px;
  }
}

.main-navigation {
    position: relative;
    background: var(--navy);
    z-index: 999;
}

.main-navigation .nav-list {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation .nav-list > li {
    position: relative;
}

.main-navigation .nav-list > li > a {
    display: block;
    padding: 20px 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 3px solid transparent;
}

.main-navigation .nav-list > li:hover > a {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: var(--navy-light);
}

/* پایه طراحی منوهای بازشونده (سرمه‌ای با سایه درخشان طلایی) */
.main-navigation .nav-list li ul.sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
    /* سایه طلایی شیک و لوکس */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 160, 89, 0.15); 
    border-top: 3px solid var(--gold);
    border-left: 1px solid rgba(197, 160, 89, 0.1);
    border-right: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 9999;
}

.main-navigation .nav-list li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================
   ۱. منوی آبشاری ساده (Dropdown) لوکس
   ========================================== */
.main-navigation .nav-list > li:not(.has-megamenu) > ul.sub-menu {
    min-width: 240px;
    width: 240px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
}

.main-navigation .nav-list > li:not(.has-megamenu) > ul.sub-menu > li {
    position: relative;
}

.main-navigation .nav-list > li:not(.has-megamenu) > ul.sub-menu > li > a {
    display: block;
    padding: 12px 20px;
    color: #e2e8f0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-right: 3px solid transparent;
}

.main-navigation .nav-list > li:not(.has-megamenu) > ul.sub-menu > li:hover > a {
    background: rgba(197, 160, 89, 0.08); /* هاور طلایی ملایم در پس‌زمینه تیره */
    color: var(--gold-light);
    border-right-color: var(--gold);
}

/* زیرمنوی سطح سوم */
.main-navigation .nav-list > li:not(.has-megamenu) > ul.sub-menu > li > ul.sub-menu {
    top: -3px;
    right: 100%;
    transform: translateX(15px);
    border-radius: 8px;
}

.main-navigation .nav-list > li:not(.has-megamenu) > ul.sub-menu > li:hover > ul.sub-menu {
    transform: translateX(0);
}

/* ==========================================
   ۲. مگامنو شیک و تمام‌عرض (Megamenu)
   ========================================== */
.main-navigation .nav-list > li.has-megamenu {
    position: static;
}

.main-navigation .nav-list > li.has-megamenu > ul.sub-menu {
    left: 0;
    right: 0;
    width: 100%;
    padding: 35px 45px;
    border-radius: 0 0 12px 12px;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    box-sizing: border-box;
    transition: all 200ms ease-in-out;
}
.main-navigation .nav-list > li.has-megamenu:hover > ul.sub-menu{
  display: grid;
}
/* ستون‌های مگامنو */
.main-navigation .nav-list > li.has-megamenu > ul.sub-menu > li {
    min-width: 0;
}

/* عنوان ستون در مگامنو */
.main-navigation .nav-list > li.has-megamenu > ul.sub-menu > li > a {
    display: inline-block;
    margin-bottom: 15px;
    padding: 0 0 8px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
    transition: all 0.25s ease;
}

.main-navigation .nav-list > li.has-megamenu > ul.sub-menu > li:hover > a {
    color: var(--gold-light);
}

/* لیست لینک‌های عمودی داخل هر ستون */
.main-navigation .nav-list > li.has-megamenu > ul.sub-menu > li ul.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    display: block;
}

.main-navigation .nav-list > li.has-megamenu > ul.sub-menu > li ul.sub-menu > li {
    margin: 0 0 10px 0;
}

.main-navigation .nav-list > li.has-megamenu > ul.sub-menu > li ul.sub-menu > li > a {
    display: block;
    color: #a0aec0; /* رنگ طوسی ملایم خوانا روی بک‌گراند تیره */
    font-size: 14px;
    text-decoration: none;
    padding: 2px 0;
    transition: all 0.25s ease;
}

.main-navigation .nav-list > li.has-megamenu > ul.sub-menu > li ul.sub-menu > li > a:hover {
    color: var(--gold-light);
    transform: translateX(-5px); /* افکت لغزش ملایم به سمت چپ به دلیل RTL */
}

/* بهینه‌سازی رسپانسیو */
@media (max-width: 992px) {
    .main-navigation .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .main-navigation .nav-list > li {
        width: 100%;
    }

    .main-navigation .nav-list > li > a {
        padding: 14px 16px;
    }

    .main-navigation .nav-list li ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        display: none;
        background: var(--navy-light);
    }

    .main-navigation .nav-list > li:hover > ul.sub-menu {
        display: block;
    }

    .main-navigation .nav-list > li.has-megamenu > ul.sub-menu {
        display: none;
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .main-navigation .nav-list > li.has-megamenu:hover > ul.sub-menu {
        display: block;
    }
}

.main-navigation .nav-list > li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 25px;
}

.main-navigation .nav-list > li.menu-item-has-children > a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-left: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: translateY(-2px) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: inline-block;
}

.main-navigation .nav-list > li.menu-item-has-children:hover > a::after {
    border-color: var(--gold);
    transform: translateY(2px) rotate(135deg); 
    animation: arrow-bounce 0.4s ease-in-out forwards;
}


@keyframes arrow-bounce {
    0% {
        transform: translateY(-2px) rotate(-45deg);
    }
    50% {
        transform: translateY(4px) rotate(45deg);
    }
    100% {
        transform: translateY(2px) rotate(135deg);
    }
}

.main-navigation .nav-list > li:not(.has-megamenu) .sub-menu li.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation .nav-list > li:not(.has-megamenu) .sub-menu li.menu-item-has-children > a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-left: 1.5px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.main-navigation .nav-list > li:not(.has-megamenu) .sub-menu li.menu-item-has-children:hover > a::after {
    border-color: var(--gold);
    transform: translateX(-4px) rotate(45deg);
}
/* ==========================================================================
   استایل لوکس و پرمیوم بخش درباره ما (صادرات) - کاملاً RTL
   ========================================================================== */
.premium-about {
    margin: 60px auto;
    width: 100%;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    border: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(197, 160, 89, 0.05);
    overflow: hidden;
    box-sizing: border-box;
}

.premium-about__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
    min-height: 580px;
}


.premium-about__content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.premium-about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.premium-about__eyebrow-line {
    width: 35px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}


.premium-about__title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
    margin: 0 0 22px 0;
}


.premium-about__description p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 30px 0;
}


.premium-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    padding-top: 30px;
}

.premium-about__feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.premium-about__feature-icon {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.premium-about__feature-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.premium-about__feature-text {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


.premium-about__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding-bottom: 30px;
}

.premium-about__stat {
    display: flex;
    flex-direction: column;
}

.premium-about__stat-value {
    color: var(--gold-light);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.premium-about__stat-label {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
}


.premium-about__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.premium-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-about__btn--primary {
    background: var(--gold);
    color: var(--navy);
}

.premium-about__btn--primary:hover {
    background: var(--gold-light);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

.premium-about__btn--secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-about__btn--secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-2px);
}


.premium-about__media {
    padding: 30px;
    display: flex;
}

.premium-about__video {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-about__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.premium-about__video:hover .premium-about__poster {
    transform: scale(1.05);
}

.premium-about__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 1;
}

.premium-about__play-btn {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.premium-about__play-icon-box {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.premium-about__play-pulse {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: play-pulse-anim 2s infinite;
    pointer-events: none;
}

.premium-about__play-btn:hover .premium-about__play-icon-box {
    background: #ffffff;
    color: var(--navy);
    transform: scale(1.1);
}

.premium-about__play-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.premium-about__play-btn:hover .premium-about__play-text {
    color: var(--gold-light);
}


.premium-about__badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 2;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.premium-about__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

.premium-about__badge-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}


@keyframes play-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


@media (max-width: 991px) {
    .premium-about__inner {
        grid-template-columns: 1fr;
    }
    .premium-about__media {
        order: -1;
        padding: 20px;
    }
    .premium-about__content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .premium-about__features {
        grid-template-columns: 1fr;
    }
    .premium-about__stats {
        flex-direction: column;
        gap: 20px;
    }
}
/* ==========================================================================
   Minimal Luxury About Section - Export Theme
   ========================================================================== */
.min-about {
    padding: 120px 0;
    background-color: #ffffff; /* پس‌زمینه سفید خالص */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.min-about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 20px;
}

/* بخش مدیا و ویدئو (شناور) */
.min-about__media-wrapper {
    flex: 1;
    position: relative;
    z-index: 2;
}

.min-about__video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: #f8fafc;
    border-radius: 40px; /* لبه‌های خیلی گرد مدرن */
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.12); /* سایه بسیار نرم و کشیده */
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.min-about__poster {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.min-about__video-card:hover .min-about__poster {
    transform: scale(1.08);
}

.min-about__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.4));
}

/* دکمه پخش متفاوت و لوکس */
.min-about__play-trigger {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    z-index: 3;
}

.min-about__play-circle {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.min-about__play-circle svg {
    width: 24px;
    height: 24px;
    margin-right: -3px; /* اصلاح بصری مرکزیت مثلث پخش */
}

.min-about__play-label {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.min-about__play-trigger:hover .min-about__play-circle {
    background: var(--gold);
    color: #ffffff;
    transform: scale(1.1);
}

/* المان تزئینی پشت ویدئو (کادر طلایی) */
.min-about__decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--gold-light);
    border-right: 4px solid var(--gold-light);
    border-radius: 0 40px 0 0;
    z-index: -1;
    opacity: 0.5;
}

/* بخش محتوای متنی */
.min-about__content {
    flex: 0.8;
}

.min-about__eyebrow {
    font-size: 14px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    padding-right: 50px;
}

.min-about__eyebrow::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.min-about__title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 30px;
}

.min-about__body p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

/* دکمه CTA لوکس */
.min-about__cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--navy);
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.min-about__cta:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.25);
}

.min-about__cta svg {
    transition: transform 0.3s ease;
}

.min-about__cta:hover svg {
    transform: translateX(-5px); /* جابجایی فلش به سمت چپ در حالت RTL */
}

/* Responsive */
@media (max-width: 991px) {
    .min-about__container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .min-about__eyebrow { padding-right: 0; }
    .min-about__eyebrow::before { display: none; }
    .min-about__title { font-size: 32px; }
    .min-about__play-trigger { right: 50%; transform: translateX(50%); bottom: 30px; }
}
/* ==========================================================================
   Creative Contact Hub - Luxury Style
   ========================================================================== */
.creative-hub {
    position: relative;
    padding: 60px 20px;
    background-color: #ffffff;
    overflow: hidden;
    font-family: inherit;
    border-radius: 20px;
}

/* افکت درخشش پس‌زمینه */
.creative-hub__bg-glow {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-light) 0%, rgba(255,255,255,0) 70%);
    filter: blur(120px);
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.creative-hub__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

/* ستون اطلاعات */
.creative-hub__info-pane {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creative-hub__eyebrow {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: inline-block;
    position: relative;
    padding-right: 45px;
}

.creative-hub__eyebrow::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 1.5px;
    background: var(--gold);
}

.creative-hub__title {
    font-size: 40px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.creative-hub__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 35px;
    max-width: 600px;
}

/* سوییچر شعب کپسولی */
.creative-hub__switcher {
    display: inline-flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 30px;
    align-self: flex-start;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.creative-hub__switch-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.creative-hub__switch-btn .dot {
    width: 6px;
    height: 6px;
    background: #94a3b8;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.creative-hub__switch-btn.active {
    background: var(--navy);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.creative-hub__switch-btn.active .dot {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

/* مدیریت نمایش شعب */
.creative-hub__branch-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.creative-hub__branch-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* کارت های لوکس اطلاعات تماس */
.creative-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.creative-hub__card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.creative-hub__card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.creative-hub__card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-light);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.creative-hub__card:hover .creative-hub__card-accent {
    transform: scaleY(1);
}

.creative-hub__card-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.creative-hub__card-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    padding-left: 25px;
    line-height: 1.6;
    text-align: left;
}

.creative-hub__card-icon {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.creative-hub__card:hover .creative-hub__card-icon {
    color: var(--gold);
    transform: scale(1.15) rotate(-10deg);
}

.creative-hub__card.span-2 {
    grid-column: span 2;
}

/* استایل بخش ابزارک‌ها (پاسخگویی زنده و QR Code) */
.creative-hub__widgets {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.creative-hub__status-widget,
.creative-hub__qr-widget {
    flex: 1;
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px dashed rgba(15, 23, 42, 0.08);
}

/* وضعیت لایو */
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 15px;
    position: relative;
}

.status-indicator.is-online { background-color: #10b981; }
.status-indicator.is-offline { background-color: #f59e0b; }

.status-indicator.is-online::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: pulse 1.8s infinite;
}

.status-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.status-sub, .qr-sub {
    font-size: 11px;
    color: #64748b;
}

/* ابزارک QR */
.creative-hub__qr-widget {
    justify-content: space-between;
}

.qr-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.qr-code-box {
    width: 50px;
    height: 50px;
    background: #ffffff;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.qr-code-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* نوار اقدام سریع (واتساپ) */
.creative-hub__action-bar {
    margin-top: 30px;
}

.creative-hub__whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--navy);
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.creative-hub__whatsapp-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.25);
}

/* ستون نقشه لوکس */
.creative-hub__map-pane {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.15);
    background: #f8fafc;
    min-height: 550px;
}

.creative-hub__map-wrapper {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.creative-hub__map-wrapper.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.creative-hub__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(10%) contrast(102%) brightness(98%);
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
}

/* انیمیشن پالس برای دایره لایو استاتوس */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
    .creative-hub__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .creative-hub__map-pane {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .creative-hub { padding: 80px 15px; }
    .creative-hub__title { font-size: 30px; }
    .creative-hub__grid { grid-template-columns: 1fr; }
    .creative-hub__card.span-2 { grid-column: span 1; }
    .creative-hub__widgets { flex-direction: column; }
}
.art-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.art-sidebar .widget,
.art-sidebar .sidebar-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}

.art-sidebar .widget:hover,
.art-sidebar .sidebar-box:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.art-sidebar .widget-title,
.art-sidebar .sidebar-box__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.7;
}

.art-sidebar .widget-title i,
.art-sidebar .sidebar-box__title i {
    color: #c89b3c;
    font-size: 16px;
}

.art-sidebar .widget ul,
.art-sidebar .widget ol,
.art-sidebar .art-toc,
.art-sidebar .cat-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.art-sidebar .widget ul li,
.art-sidebar .widget ol li {
    position: relative;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.art-sidebar .widget ul li:last-child,
.art-sidebar .widget ol li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.art-sidebar .widget a,
.art-sidebar .art-toc a,
.art-sidebar .cat-item,
.art-sidebar .rel-article {
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.art-sidebar .widget a:hover,
.art-sidebar .art-toc a:hover,
.art-sidebar .cat-item:hover,
.art-sidebar .rel-article:hover {
    color: #c89b3c;
}

.art-sidebar .art-toc li {
    padding: 8px 0;
}

.art-sidebar .art-toc__sub {
    padding-right: 14px;
    opacity: 0.9;
}

.art-sidebar .rel-article {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.art-sidebar .rel-article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.art-sidebar .rel-article__img {
    width: 78px;
    min-width: 78px;
    height: 78px;
    overflow: hidden;
    border-radius: 14px;
    background: #f8fafc;
}

.art-sidebar .rel-article__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-sidebar .rel-article__info {
    flex: 1;
    min-width: 0;
}

.art-sidebar .rel-article__title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.9;
    color: #0f172a;
}

.art-sidebar .rel-article__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
}

.art-sidebar .cat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.art-sidebar .cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid transparent;
}

.art-sidebar .cat-item:hover,
.art-sidebar .cat-item--active {
    background: rgba(200, 155, 60, 0.08);
    border-color: rgba(200, 155, 60, 0.2);
    color: #0f172a;
}

.art-sidebar .cat-item__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: #ffffff;
    color: #c89b3c;
    font-size: 12px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(200, 155, 60, 0.15);
}

.art-sidebar .sidebar-newsletter p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.9;
}

.art-sidebar .sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.art-sidebar input[type="text"],
.art-sidebar input[type="email"],
.art-sidebar input[type="search"],
.art-sidebar select {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background: #fff;
    padding: 0 16px;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
}

.art-sidebar input[type="text"]:focus,
.art-sidebar input[type="email"]:focus,
.art-sidebar input[type="search"]:focus,
.art-sidebar select:focus {
    border-color: rgba(200, 155, 60, 0.5);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
}

.art-sidebar .newsletter-message {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.8;
}

.art-sidebar .widget_search .search-form,
.art-sidebar .woocommerce-product-search {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.art-sidebar .widget_search .search-field,
.art-sidebar .woocommerce-product-search .search-field {
    width: 100%;
}

.art-sidebar .widget_search .search-submit,
.art-sidebar .woocommerce-product-search button,
.art-sidebar .widget button {
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #d4a63f, #b8860b);
    color: #fff;
    font-weight: 700;
    padding: 0 18px;
    transition: all 0.25s ease;
}

.art-sidebar .widget_search .search-submit:hover,
.art-sidebar .woocommerce-product-search button:hover,
.art-sidebar .widget button:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.art-sidebar .widget_recent_entries ul li a,
.art-sidebar .widget_recent_comments ul li a,
.art-sidebar .widget_archive ul li a,
.art-sidebar .widget_categories ul li a,
.art-sidebar .widget_meta ul li a,
.art-sidebar .widget_pages ul li a,
.art-sidebar .widget_nav_menu ul li a {
    display: inline-block;
    line-height: 1.9;
}

.art-sidebar .widget_tag_cloud .tagcloud,
.art-sidebar .woocommerce.widget_product_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.art-sidebar .widget_tag_cloud .tagcloud a,
.art-sidebar .woocommerce.widget_product_tag_cloud .tagcloud a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #334155;
    font-size: 13px !important;
    line-height: 1.4;
}

.art-sidebar .widget_tag_cloud .tagcloud a:hover,
.art-sidebar .woocommerce.widget_product_tag_cloud .tagcloud a:hover {
    background: #c89b3c;
    border-color: #c89b3c;
    color: #fff;
}
.art-sidebar .woocommerce ul.product_list_widget li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.art-sidebar .woocommerce ul.product_list_widget li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.art-sidebar .woocommerce ul.product_list_widget li img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    margin: 0;
    float: none;
}

.art-sidebar .woocommerce ul.product_list_widget li a {
    display: block;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.8;
}

.art-sidebar .woocommerce .amount,
.art-sidebar .woocommerce-Price-amount {
    color: #c89b3c;
    font-weight: 700;
}

.art-sidebar .woocommerce .star-rating {
    margin-top: 6px;
    font-size: 12px;
}

.art-sidebar .widget_price_filter .price_slider_wrapper {
    padding-top: 10px;
}

.art-sidebar .widget_price_filter .ui-slider {
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
}

.art-sidebar .widget_price_filter .ui-slider .ui-slider-range {
    background: #c89b3c;
}

.art-sidebar .widget_price_filter .ui-slider .ui-slider-handle {
    width: 16px;
    height: 16px;
    top: -5px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.2);
}

.art-sidebar .widget_price_filter .price_slider_amount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
}

.art-sidebar .widget_price_filter .button {
    min-height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4a63f, #b8860b);
    color: #fff;
    border: 0;
    padding: 0 16px;
}

.art-sidebar .widget_product_categories ul.children {
    margin-top: 10px;
    padding-right: 14px;
}

.art-sidebar .widget_layered_nav ul li,
.art-sidebar .widget_product_categories ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.art-sidebar .widget_shopping_cart .woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.art-sidebar .widget_shopping_cart .button {
    width: 100%;
    text-align: center;
    border-radius: 12px;
}
@media (max-width: 991px) {
    .art-sidebar {
        margin-top: 32px;
    }

    .art-sidebar .widget,
    .art-sidebar .sidebar-box {
        padding: 18px;
        border-radius: 18px;
    }

    .art-sidebar .rel-article__img {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }
}
.art-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #1f2937;
}

.art-sidebar .widget,
.art-sidebar .sidebar-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.art-sidebar .widget:hover,
.art-sidebar .sidebar-box:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
    border-color: rgba(200, 155, 60, 0.18);
}

.art-sidebar .widget-title,
.art-sidebar .sidebar-box__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.6;
}

.art-sidebar .widget-title::before,
.art-sidebar .sidebar-box__title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4a63f, #b8860b);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
    flex: 0 0 auto;
}
.art-sidebar .wp-block-latest-posts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.art-sidebar .wp-block-latest-posts > li {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-areas:
        "thumb title"
        "thumb author"
        "thumb date";
    gap: 4px 14px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.art-sidebar .wp-block-latest-posts > li:hover {
    transform: translateY(-1px);
    border-color: rgba(200, 155, 60, 0.18);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.art-sidebar .wp-block-latest-posts__featured-image {
    grid-area: thumb;
    width: 82px;
    height: 82px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    flex: 0 0 auto;
}

.art-sidebar .wp-block-latest-posts__featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.art-sidebar .wp-block-latest-posts__post-title {
    grid-area: title;
    display: block;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.9;
    margin: 0;
}

.art-sidebar .wp-block-latest-posts__post-title:hover {
    color: #c89b3c;
}

.art-sidebar .wp-block-latest-posts__post-author {
    grid-area: author;
    color: #64748b;
    font-size: 12px;
    line-height: 1.8;
}

.art-sidebar .wp-block-latest-posts__post-author::before {
    content: "•";
    color: #c89b3c;
    margin-left: 6px;
    font-weight: 700;
}

.art-sidebar .wp-block-latest-posts__post-date {
    grid-area: date;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.art-sidebar .wp-block-latest-posts__post-date::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #c89b3c;
    opacity: 0.8;
    flex: 0 0 auto;
}


.art-sidebar .wp-block-latest-posts:not(.has-author) .wp-block-latest-posts__post-author {
    display: none;
}

.art-sidebar .wp-block-latest-posts:not(.has-dates) .wp-block-latest-posts__post-date {
    display: none;
}

.art-sidebar .wp-block-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.art-sidebar .wp-block-categories-list > li {
    margin: 0;
}

.art-sidebar .wp-block-categories-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid transparent;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
}

.art-sidebar .wp-block-categories-list > li > a:hover {
    background: rgba(200, 155, 60, 0.08);
    border-color: rgba(200, 155, 60, 0.2);
    color: #0f172a;
}


.art-sidebar .wp-block-categories-list .children {
    list-style: none;
    margin: 10px 0 0;
    padding: 0 14px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.art-sidebar .wp-block-categories-list .children a {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}


.art-sidebar .current-cat > a,
.art-sidebar .wp-block-categories-list .current-cat > a {
    background: rgba(200, 155, 60, 0.12);
    border-color: rgba(200, 155, 60, 0.24);
    color: #0f172a;
}

.art-sidebar .widget ul,
.art-sidebar .widget ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.art-sidebar .widget ul li,
.art-sidebar .widget ol li {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.art-sidebar .widget ul li:last-child,
.art-sidebar .widget ol li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.art-sidebar .widget a {
    color: #334155;
    text-decoration: none;
    transition: color 0.2s ease;
}

.art-sidebar .widget a:hover {
    color: #c89b3c;
}

.art-sidebar input[type="text"],
.art-sidebar input[type="email"],
.art-sidebar input[type="search"],
.art-sidebar select {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background: #fff;
    padding: 0 16px;
    color: #0f172a;
    outline: none;
    transition: all 0.2s ease;
}

.art-sidebar input[type="text"]:focus,
.art-sidebar input[type="email"]:focus,
.art-sidebar input[type="search"]:focus,
.art-sidebar select:focus {
    border-color: rgba(200, 155, 60, 0.5);
    box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
}

@media (max-width: 991px) {
    .art-sidebar {
        margin-top: 32px;
    }

    .art-sidebar .widget,
    .art-sidebar .sidebar-box {
        padding: 18px;
        border-radius: 18px;
    }

    .art-sidebar .wp-block-latest-posts > li {
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 12px;
    }

    .art-sidebar .wp-block-latest-posts__featured-image {
        width: 72px;
        height: 72px;
    }
}
.error-404-page {
            background-color: var(--page-bg, #f5f6f8);
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            font-family: inherit;
        }

        .error-404-container {
            max-width: 600px;
            width: 100%;
            text-align: center;
            background: var(--white, #ffffff);
            padding: 50px 40px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(6, 26, 51, 0.05);
            border: 1px solid rgba(6, 26, 51, 0.05);
        }

        .error-404-badge {
            display: inline-block;
            background-color: rgba(197, 160, 89, 0.1);
            color: var(--gold, #C5A059);
            font-weight: 700;
            font-size: 13px;
            padding: 6px 16px;
            border-radius: 100px;
            letter-spacing: 0.5px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }

        .error-404-code {
            font-size: 110px;
            font-weight: 900;
            line-height: 1;
            margin: 0 0 16px 0;
            background: linear-gradient(135deg, var(--navy, #061A33) 30%, var(--gold, #C5A059) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2px;
            position: relative;
            display: inline-block;
        }

        .error-404-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--navy, #061A33);
            margin: 0 0 14px 0;
            line-height: 1.6;
        }

        .error-404-desc {
            font-size: 15px;
            color: #64748b;
            line-height: 1.8;
            margin: 0 0 35px 0;
        }

        .error-404-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-404 {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-404-primary {
            background-color: var(--navy, #061A33);
            color: var(--white, #ffffff);
            border: 2px solid var(--navy, #061A33);
        }

        .btn-404-primary:hover {
            background-color: var(--navy-light, #0a2444);
            border-color: var(--navy-light, #0a2444);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(6, 26, 51, 0.15);
        }

        .btn-404-secondary {
            background-color: transparent;
            color: var(--navy, #061A33);
            border: 2px solid rgba(6, 26, 51, 0.15);
        }

        .btn-404-secondary:hover {
            background-color: rgba(6, 26, 51, 0.02);
            border-color: var(--navy, #061A33);
            transform: translateY(-2px);
        }

        @media (max-width: 576px) {
            .error-404-container {
                padding: 40px 20px;
                border-radius: 18px;
            }
            .error-404-code {
                font-size: 85px;
            }
            .error-404-title {
                font-size: 20px;
            }
            .error-404-desc {
                font-size: 14px;
            }
            .btn-404 {
                width: 100%;
            }
            .error-404-actions {
                flex-direction: column;
                gap: 10px;
            }
        }