/* ========== 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;
}


/* ========== 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);
}


/* ========== 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;
    }
}

/* =========================
   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;
    }
}
 
/* ========== 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;
}

/* Fix font after all:unset */
.mazand-shop-fixed,
.mazand-shop-fixed * {
  font-family: "Vazirmatn", sans-serif !important;
}
.mazand-shop-fixed {
    all: unset;
    display: block;
    direction: rtl;
    background: #f5f5f7;
    color: #222;
    line-height: 1.6;
    font-family: "Vazirmatn", sans-serif;
}

/* reset کنترل‌شده */
.mazand-shop-fixed * {
    box-sizing: border-box;
}

/* تضمین فونت */
.mazand-shop-fixed,
.mazand-shop-fixed * {
    font-family: "Vazirmatn", sans-serif !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;
}
/* === FORCE PERSIAN FONT FIX === */
html, body {
  font-family: "Vazirmatn", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.mazand-shop-fixed input,
.mazand-shop-fixed textarea,
.mazand-shop-fixed button,
.mazand-shop-fixed select {
  font-family: "Vazirmatn", sans-serif !important;
}
