/* ========== ROOT & RESET ========== */
:root {
  --color-bg: #f5f5f5;
  --color-bg-alt: #ffffff;
  --color-text: #1a1a2e;
  --color-muted: #777;
  --color-border: #e0e0e0;

  --color-gold: #ffcc00;
  --color-gold-hover: #ffd633;
  --color-accent: #4c5cff; /* purple-blue industrial */
  --color-danger: #e74c3c;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 20px 45px rgba(0, 0, 0, 0.16);

  --header-height: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* LINKS & TEXT */
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== GLOBAL LAYOUT ========== */
.section {
  padding: 48px 16px;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.section-header h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0a0a0a, #232323);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #151515, #333333);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-gold);
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.btn-small {
  padding: 6px 14px;
  font-size: 0.8rem;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
}

.header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

/* LOGO */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-typography {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-en {
  font-family: "Bebas Neue", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  color: var(--color-gold);
}

.logo-fa {
  font-size: 0.85rem;
  font-weight: 500;
  color: #f2f2f2;
}

/* SEARCH BOX */
.header-search {
  display: flex;
  justify-content: center;
}

.search-box {
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: center;
  background-color: rgba(15, 15, 15, 0.92);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px 10px 0;
  color: #f5f5f5;
  font-size: 0.85rem;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.search-btn {
  width: 46px;
  height: 38px;
  margin: 4px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ffdd66, #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.55);
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}

.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 204, 0, 0.75);
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #222, #050505);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s ease, box-shadow 0.15s ease,
    border-color 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 204, 0, 0.9);
  background: radial-gradient(circle at 30% 0, #2a2a2a, #101010);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.8);
}

/* SVG ICONS */
.icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: stroke 0.18s ease, stroke-width 0.18s ease, transform 0.18s ease;
}

.icon-btn:hover .icon {
  stroke-width: 2;
  transform: translateY(-0.5px);
}

/* CART COUNT */
.cart-count {
  position: absolute;
  top: -3px;
  left: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background-color: #fff;
  color: var(--color-danger);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  box-shadow: 0 0 0 2px #0a0a0a;
}

/* NAV */
.main-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  background: linear-gradient(to left, #141414, #0a0a0a);
}

.nav-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  overflow-x: auto;
}

.nav-list li {
  flex: 0 0 auto;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid transparent;
  transition: color 0.12s ease, border-color 0.14s ease;
}

.nav-list a:hover {
  color: #fff;
}

.nav-list a.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* MOBILE MENU ICON VISIBILITY */
.mobile-menu-icon {
  display: none;
}

/* ========== HERO SLIDER ========== */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.hero-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: min(70vh, 520px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 0,
      rgba(255, 204, 0, 0.2),
      transparent
    ),
    linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent 65%);
}

.hero-content {
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  padding-inline: 24px;
  padding-block: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 480px;
  color: #fdfdfd;
}

.hero-content h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero-content p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: #f0f0f0;
}

/* HERO DOTS */
.hero-dots {
  max-width: 1200px;
  margin: 8px auto 24px;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  padding: 0;
  transition: background-color 0.18s ease, width 0.18s ease,
    border-color 0.18s ease, transform 0.1s ease;
}

.hero-dots .dot.is-active {
  width: 18px;
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

/* ========== CATEGORIES ========== */
.categories {
  background-color: var(--color-bg-alt);
}

.categories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.category-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.category-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.category-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

/* ========== PRODUCTS ========== */
.products {
  background: linear-gradient(to bottom, #fafafa, #f1f1f1);
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.13);
  border-color: rgba(0, 0, 0, 0.06);
}

.product-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #111;
}

.product-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  margin: 6px 0 4px;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-weight: 800;
  font-size: 0.85rem;
  color: #333;
}

/* ========== BRANDS ========== */
.brands {
  background-color: #fff;
}

.brands-row {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 16px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.brands-row img {
  width: 100%;
  max-height: 32px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
  opacity: 0.8;
  transition: filter 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

.brands-row img:hover {
  filter: grayscale(0) contrast(1.1);
  opacity: 1;
  transform: translateY(-1px);
}

/* ========== BLOG ========== */
.blog {
  background: linear-gradient(135deg, #f7f7f7, #ededed);
}

.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.06);
}

.blog-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-body {
  padding: 12px 12px 16px;
}

.blog-body h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
}

.blog-body p {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.blog-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
}

/* ========== TRUST ========== */
.trust {
  background-color: #fff;
  padding-bottom: 56px;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  background-color: #fafafa;
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.8rem;
  color: #333;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0a0a0a;
  color: #eee;
  padding: 32px 16px 16px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 24px;
}

.footer-top h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.newsletter p {
  margin: 0 0 12px;
  color: #bbb;
  font-size: 0.85rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 12px;
  background-color: #151515;
  color: #eee;
  font-size: 0.85rem;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 0.85rem;
  color: #ccc;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social .whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background-color: #25d366;
  border-radius: 999px;
  color: #0a0a0a;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-social .whatsapp-link img {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
  text-align: center;
  font-size: 0.78rem;
  color: #aaa;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .header-top {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "logo actions"
      "search search";
  }

  .header-logo {
    grid-area: logo;
  }

  .header-search {
    grid-area: search;
    width: 100%;
  }

  .header-actions {
    grid-area: actions;
  }

  .mobile-menu-icon {
    display: inline-flex;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 16px 12px;
  }

  .nav-list a {
    padding: 8px 0;
  }

  .hero-slider {
    height: 340px;
    border-radius: 0;
  }

  .hero-content {
    padding-inline: 16px;
    padding-block: 18px 24px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brands-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .header-top {
    gap: 8px;
  }

  .search-box {
    max-width: 100%;
  }

  .hero-slider {
    height: 290px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .brands-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.brands-section a img,
.brand-section a img,
.brands-container a img,
.brand-logos img,
.brand-logo img {
    height: 140px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .brands-section a img,
    .brand-section a img,
    .brands-container a img,
    .brand-logos img,
    .brand-logo img {
        height: 90px !important;
    }
}
/* TRUST SECTION â€“ GOLD INDUSTRIAL ICONS */
.trust-section {
    background: #050505;
    padding: 40px 15px;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-card {
    background: #000;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.28);
    box-shadow: 0 0 22px rgba(0,0,0,0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-card img {
    max-width: 70px;
    margin-bottom: 10px;
}

.trust-card h4 {
    color: #f9f9f9;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.trust-card p {
    color: #bbbbbb;
    font-size: 0.8rem;
    line-height: 1.7;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(255, 215, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.7);
}

/* Ø±ÛŒØ³Ù¾Ø§Ù†Ø³ÛŒÙˆ */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 30px 0 35px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .trust-item {
    padding: 14px 10px 16px;
    border-radius: 12px;
  }
  .trust-item img {
    height: 58px;
    margin-bottom: 8px;
  }
  .trust-item h3 {
    font-size: 0.85rem;
  }
  .trust-item p {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    max-width: 320px;
    margin: 0 auto;
  }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.7);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover img {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
}
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.footer-social a:hover img {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.8));
}
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    text-decoration: none;
}

.wa-container {
    display: flex;
    align-items: center;
    gap: 8px;               /* Ú©Ù…ØªØ± */
    background: #000000dd;
    padding: 8px 14px;      /* Ú©Ù…ØªØ± */
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 0, 0.35);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-container img {
    width: 55px;     /* Ú©ÙˆÚ†Ú©ØªØ± */
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.35);
}

.wa-text {
    color: #e6ffe6;
    font-size: 0.95rem;     /* Ú©ÙˆÚ†Ú©ØªØ± */
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.45);
}

.wa-container:hover {
    transform: scale(1.08);
    box-shadow: 0 0 26px rgba(0, 255, 0, 0.65);
}

/* Ù…ÙˆØ¨Ø§ÛŒÙ„ */
@media (max-width: 480px) {
    .wa-container img {
        width: 50px;
        height: 50px;
    }
    .wa-text {
        font-size: 0.85rem;
    }
}
/* cleaned_contact_form */ Responsive */
@media (max-width: 768px) {
    .contact-form-modern {
        padding: 25px;
    }
}

/* =========================
   ABOUT HERO (لوکس صنعتی)
========================= */
.about-hero {
    background: 
      linear-gradient(to top, rgba(211,168,63,0.12) 0%, #0a0a0a 70%),
      url('assets/images/about-banner-gold.jpg') center/cover no-repeat;
    height: 260px; /* ارتفاع دسکتاپ */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero img.about-hero-banner {
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

/* نسخه موبایل */
@media (max-width: 576px) {
    .about-hero {
        height: 180px;
        background: linear-gradient(to top, rgba(211,168,63,0.15) 0%, #0a0a0a 70%);
    }
}

.about-hero-banner {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 800;
}

.about-hero p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.85;
}


/* =========================
   ABOUT CONTENT
========================= */
.about-main {
    padding: 70px 20px;
    display: grid;
    gap: 40px;
}

.about-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    border-right: 4px solid #d4a017;
}

.about-box h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.about-list i {
    color: #d4a017;
    margin-left: 10px;
    font-size: 18px;
}


/* =========================
   GALLERY
========================= */
.about-gallery {
    padding: 60px 0;
    background: #f8f8f8;
    text-align: center;
}

.about-gallery h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 35px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}


/* =========================
   CTA
========================= */
.about-cta {
    padding: 90px 0;
    background: #1e1e1e;
    color: #fff;
    text-align: center;
}

.about-cta h2 {
    font-size: 30px;
    font-weight: 800;
}

.about-cta p {
    margin: 12px 0 25px;
    font-size: 17px;
    opacity: 0.85;
}

.cta-btn {
    background: linear-gradient(135deg, #f7c64c, #d4a017);
    padding: 14px 35px;
    border-radius: 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212,160,23,0.45);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    .about-box {
        padding: 25px;
    }
}

/* CONTACT PAGE FINAL */
.contact-hero {background:#e9e9e9;padding:40px 0;}
.contact-hero-inner {max-width:1180px;margin:0 auto;overflow:hidden;border-radius:20px;box-shadow:0 20px 45px rgba(0,0,0,0.22);} 
.contact-hero-poster{width:100%;display:block;height:auto;} 
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin:45px 0 65px;} 
.contact-info-box{background:#fff;padding:30px 28px;border-radius:18px;box-shadow:0 12px 30px rgba(0,0,0,0.08);line-height:2.1;font-size:15px;} 
.contact-info-box h2{font-size:20px;margin-bottom:12px;color:#222;font-weight:700;} 
.contact-info-box hr{margin:22px 0;border:none;height:1px;background:#ddd;} 
.contact-form-box{background:#fff;padding:30px 28px;border-radius:18px;box-shadow:0 12px 30px rgba(0,0,0,0.08);} 
.contact-form-box h2{font-size:20px;margin-bottom:18px;font-weight:700;} 
.contact-form-box label{font-size:14px;margin-top:12px;display:block;font-weight:600;} 
.contact-form-box input,.contact-form-box textarea{width:100%;padding:12px 14px;margin-top:6px;border-radius:10px;border:1px solid #ddd;background:#fafafa;font-size:14px;transition:all .2s;} 
.contact-form-box textarea{height:120px;resize:vertical;} 
.contact-form-box input:focus,.contact-form-box textarea:focus{border-color:#d3a83f;box-shadow:0 0 0 3px rgba(211,168,63,0.25);} 
.btn-gold{background:linear-gradient(90deg,#d5a72f,#f3c14c);padding:13px 22px;border-radius:12px;font-weight:700;border:none;color:#000;margin-top:22px;cursor:pointer;font-size:15px;transition:.28s;} 
.btn-gold:hover{background:linear-gradient(90deg,#f3c14c,#d5a72f);box-shadow:0 8px 20px rgba(211,168,63,0.45);} 
.checkbox{margin-top:14px;display:flex;align-items:center;font-size:14px;gap:8px;} 
@media(max-width:900px){.contact-grid{grid-template-columns:1fr;}} 
/* ========== ROOT & RESET ========== */
:root {
  --color-bg: #f5f5f5;
  --color-bg-alt: #ffffff;
  --color-text: #1a1a2e;
  --color-muted: #777;
  --color-border: #e0e0e0;
  --color-gold: #d3a83f;
  --color-gold-light: #f3c14c;
  --color-gold-dark: #b8942f;
  --color-danger: #e74c3c;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-strong: 0 20px 45px rgba(0, 0, 0, 0.16);
  --header-height: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  direction: rtl;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* ========== BUTTONS ========== */
.btn-gold {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  color: #000;
  cursor: pointer;
  font-size: 15px;
  transition: all .28s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
  box-shadow: 0 8px 20px rgba(211,168,63,0.45);
  transform: translateY(-2px);
}

/* ========== SHOP FILTERS ========== */
.shop-filters {
  padding: 40px 0;
  background: #f8f9fa;
}

.shop-filters .filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.filter-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.filter-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 8px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  font-weight: 500;
}

.filter-chip:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(211,168,63,0.2);
}

.filter-chip.is-active {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold-dark);
  box-shadow: 0 4px 12px rgba(211,168,63,0.3);
}

.brand-chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.brand-chips .filter-chip {
  flex-direction: column;
  padding: 16px 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.brand-chips .filter-chip img {
  max-width: 70px;
  max-height: 35px;
  object-fit: contain;
  margin-bottom: 6px;
}

.brand-chips .filter-chip span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

/* فیلترهای عملیاتی */
.filter-actions {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.sort-select, .search-input {
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  background: #fafbfc;
  transition: all .2s ease;
  min-height: 44px;
}

.sort-select:focus, .search-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(211,168,63,0.15);
}

.search-input {
  min-width: 280px;
  flex: 1;
  max-width: 400px;
}

.results-count {
  font-size: 14px;
  color: #666;
  margin-left: auto;
  font-weight: 500;
}

/* ========== PRODUCTS GRID ========== */
.shop-results {
  padding: 40px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all .3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #f8f9fa;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.product-brand {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 600;
  background: rgba(211,168,63,0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.price {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-gold);
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-contact {
  background: #f8f9fa;
  color: #666;
  border: 1px solid #e9ecef;
  flex: 1;
}

.btn-contact:hover {
  background: #e9ecef;
  color: #333;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  padding: 20px;
}

.page-btn, .page-numbers span {
  padding: 10px 16px;
  border: 1px solid #e9ecef;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s ease;
  font-weight: 500;
  min-width: 44px;
  text-align: center;
}

.page-btn:hover:not(:disabled), .page-numbers span:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold);
  transform: translateY(-1px);
}

.page-numbers span.active {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold-dark);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .filters-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .filter-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .search-input {
    min-width: auto;
    order: -1;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .brand-chips {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-info h3 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .brand-chips {
    grid-template-columns: 1fr;
  }
  
  .filter-actions {
    padding: 16px;
  }
}

/* ========== LOADING & ANIMATIONS ========== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
/* ================ تنظیمات پایه ================ */
body {
    font-family: "Vazirmatn", sans-serif;
    margin: 0;
    background:#f5f5f7;
    color:#222;
}

.container {
    max-width:1350px;
    margin:auto;
}

a { text-decoration:none; }

/* =========================
   SHOP PAGE HERO  (Same structure as CONTACT HERO)
========================= */

.shop-hero {
    background:#0e0e16;
    padding:35px 0;
}

.shop-hero-inner {
    max-width:1180px;
    margin:0 auto;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,0.55);
    background:#161622;
}

.shop-hero-poster {
    width:100%;
    height:500px;
    display:block;
    object-fit:cover;
}

@media (max-width:576px){
    .shop-hero {
        padding:20px 0;
    }
    .shop-hero-inner {
        border-radius:14px;
        box-shadow:0 15px 35px rgba(0,0,0,0.55);
    }
    .shop-hero-poster {
        height:280px;
    }
}

/* ================ دکمه فیلتر موبایل ================ */
.mobile-filter-btn {
    display:none;
    width:100%;
    padding:14px;
    margin:0 0 20px 0;
    background:#1a1a2e;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:17px;
}

/* ================ ساختار اصلی ================ */
.shop-layout {
    display:flex;
    gap:25px;
    margin-bottom:60px;
}

/* ================ سایدبار فیلتر ================ */
.filters-sidebar {
    width:280px;
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    height:max-content;
    position:sticky;
    top:20px;
}

.filter-group h3 {
    margin-bottom:10px;
    padding-bottom:8px;
    border-bottom:2px solid #eee;
}

.filter-group label {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    margin:6px 0;
}

/* ================ آکاردئون برندها ================ */
.brand-item {
    padding:10px 0;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:5px;
    font-weight:600;
}

.brand-item i { transition:0.3s; }

.brand-item.active i {
    transform:rotate(180deg);
}

.brand-submenu {
    padding:0 10px;
    margin-bottom:15px;
    display:none;
}

.brand-submenu.active {
    display:block;
}

.brand-submenu label {
    margin:5px 0;
}

/* ================ بخش محصولات ================ */
.products-wrapper {
    flex:1;
}

.products-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(250px,1fr));
    gap:25px;
}

/* ================ کارت محصول ================ */
.product-card {
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.07);
    overflow:hidden;
    transition:0.25s;
    display:flex;
    flex-direction:column;
}

.product-card:hover {
    transform:translateY(-6px);
    box-shadow:0 14px 35px rgba(0,0,0,0.12);
}

.product-img {
    width:100%;
    height:220px;
    object-fit:cover;
    background:#eee;
}

.product-title {
    font-size:18px;
    margin:15px 15px 5px 15px;
    font-weight:600;
}

.product-brand {
    font-size:14px;
    color:#555;
    margin:0 15px 10px 15px;
}

.product-meta {
    display:flex;
    justify-content:space-between;
    margin:0 15px 15px 15px;
    font-size:14px;
    color:#444;
}

.product-bottom {
    margin-top:auto;
    padding:15px;
    border-top:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.product-price {
    font-size:16px;
    font-weight:700;
    color:#1a1a2e;
}

.product-btn {
    background:#f3c14c;
    padding:8px 18px;
    border-radius:8px;
    color:#1a1a2e;
    font-weight:600;
    transition:0.2s;
}

.product-btn:hover {
    background:#e0ae3f;
}

/* ================ فوتر ================ */
.footer {
    background:#111;
    color:#ccc;
    padding-top:40px;
}

.footer-top {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    padding-bottom:30px;
}

.footer-col h3 {
    color:#fff;
    margin-bottom:12px;
}

.footer-col a {
    display:block;
    margin:6px 0;
    color:#ccc;
}

.footer-col a:hover {
    color:#f3c14c;
}

.footer-bottom {
    text-align:center;
    padding:15px 0;
    font-size:14px;
    border-top:1px solid #222;
    color:#777;
}

/* ================ نسخه موبایل ================ */
@media(max-width:900px){
    .shop-layout {
        flex-direction:column;
    }

    .filters-sidebar {
        width:100%;
        display:none;
    }

    .filters-sidebar.active {
        display:block;
    }

    .mobile-filter-btn {
        display:block;
    }
}
.mazand-shop-fixed {
    all: initial !important;
    display: block !important;
    font-family: "Vazirmatn", sans-serif !important;
    direction: rtl !important;
    background: #f5f5f7 !important;
    line-height: 1.6 !important;
    color: #222 !important;
}

.mazand-shop-fixed * {
    all: unset !important;
}

/* حالا همه استایل‌های اصلی دوباره فعال بشن */
.mazand-shop-fixed * {
    all: revert !important;
}

/* تضمین ۱۰۰٪ که استایل‌ها اعمال بشن */
.mazand-shop-fixed .shop-hero,
.mazand-shop-fixed .filters-sidebar,
.mazand-shop-fixed .products-grid,
.mazand-shop-fixed .product-card,
.mazand-shop-fixed .brand-item,
.mazand-shop-fixed .mobile-filter-btn,
.mazand-shop-fixed .shop-layout {
    display: block !important;
}
.header, 
.header * {
    font-family: "Vazirmatn", sans-serif !important;
}
/* ========== NEWS FEATURED SECTION ========== */
.news-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  margin-top: 20px;
}

.news-featured-img {
  position: relative;
  height: 100%;
  min-height: 350px;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-danger);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
}

.news-featured-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.news-featured-content h3 {
  font-size: 1.6rem;
  margin: 10px 0 15px;
  line-height: 1.4;
  color: var(--color-text);
}

.news-featured-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.news-specs {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f9f9f9;
  padding: 10px 15px;
  border-radius: 8px;
  flex: 1;
}

.spec-item strong {
  font-size: 1.2rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 4px;
}

.spec-item span {
  font-size: 0.8rem;
  color: #666;
}

.news-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-bullets li {
  position: relative;
  padding-right: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #444;
}

.news-bullets li::before {
  content: "✔";
  position: absolute;
  right: 0;
  color: var(--color-gold);
  font-weight: bold;
}

/* Responsive for News */
@media (max-width: 900px) {
  .news-featured-card {
    grid-template-columns: 1fr;
  }
  .news-featured-img {
    height: 250px;
    min-height: auto;
  }
  .news-featured-content {
    padding: 25px;
  }
}
