/* ==========================
   Base & Theme
========================== */
:root {
  --bg: #f0f0f0;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #000000;
  --brand-600: #17a589;
  --stroke: rgba(15, 23, 42, 0.08);
  --shadow: 0 10px 35px rgba(0,0,0,0.08);
}

html[data-theme="dark"] {
  --bg: #171c25;
  --card: #0f172a;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --brand: #22d3ee;
  --brand-600: #06b6d4;
  --stroke: rgba(148, 163, 184, 0.12);
  --shadow: 0 10px 35px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-family: 'Vazirmatn', sans-serif; background: var(--bg); color: var(--text); }
img { max-width: 100%; display: block; border-radius: 10px; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1200px, 92%); margin: auto; }
.section { padding: 1% 0; }
.center { text-align: center; }

/* ==========================
   Header
========================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  background: color-mix(in oklab, var(--card) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.site-header .logo img { height: 64px; border-radius: 10px; }
.main-nav { display: flex; gap: 16px; align-items: center; }
.main-nav a {
  color: var(--text); font-weight: 500;
  padding: 6px 12px; border-radius: 10px;
}
.main-nav a:hover, .main-nav a.active { background: color-mix(in oklab, var(--brand) 20%, transparent); color: #fff; }

.mode-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--stroke);
  background: var(--card); color: var(--text);
  padding: 8px 12px; border-radius: 999px; cursor: pointer;
  box-shadow: var(--shadow);
}
.mode-toggle .icon-sun { display: block; }
html[data-theme="dark"] .icon-sun { opacity: .4; }
html[data-theme="dark"] .icon-moon { filter: drop-shadow(0 0 4px rgba(34,211,238,.6)); }

/* ==========================
   Hero
========================== */
.hero { text-align: center; }
.hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.hero p { color: var(--muted); margin-bottom: 22px; }
.cta-group { display: inline-flex; gap: 12px; flex-wrap: wrap; }

/* ==========================
   Buttons
========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; font-weight: 600;
  border-radius: 12px; transition: .2s ease; border: 1px solid var(--stroke);
}
.btn-primary { background: var(--brand); color: #0b1220; border: none; }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: color-mix(in oklab, var(--text) 0%, transparent); }

/* ==========================
   Cards & Grids
========================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.feature-card h3 { margin-bottom: 6px; }
.feature-card p { color: var(--muted); }

/* Testimonials */
.testimonial-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial {
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: 18px; padding: 22px; box-shadow: var(--shadow);
}
.testimonial .stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial .author { color: var(--muted); margin-top: 8px; font-size: 14px; }

/* Contact Form */
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid var(--stroke);
  background: var(--card); color: var(--text);
  border-radius: 8px; padding: 10px;
}

/* ==========================
   WhatsApp Floating
========================== */
.whatsapp-float {
  position: fixed; bottom: 18px; inset-inline-end: 18px;
  z-index: 60; display: grid; place-items: center;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%; box-shadow: var(--shadow);
  animation: pulse 2.6s ease-in-out infinite;
}
.whatsapp-float .wa-icon { font-size: 22px; }
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ==========================
   Footer
========================== */
.site-footer {
  padding: 36px 0; border-top: 1px solid var(--stroke);
  background: color-mix(in oklab, var(--card) 92%, transparent);
  text-align: center;
}
.site-footer .trust-badge img { width: 64px; height: 64px; }

/* ==========================
   Animations
========================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-visible { opacity: 1 !important; transform: none !important; }
.is-sticky { box-shadow: 0 6px 22px rgba(0,0,0,0.08); }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .testimonial-list { grid-template-columns: 1fr; }
  .main-nav { display: none; } /* میشه بعداً منوی موبایل اضافه کرد */
}
/* ==========================
   Mobile Menu
========================== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: var(--card);
    border-top: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    padding: 20px 0;
    animation: slideDown 0.3s ease forwards;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
  
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.logo {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  transition: opacity 0.4s ease;
}

.logo-img.dark-logo {
  display: none;
}

/* حالت تاریک */
[data-theme="dark"] .logo-img.light-logo {
  display: none;
}
[data-theme="dark"] .logo-img.dark-logo {
  display: inline-block;
}
/* ==========================
   اصلاح موقعیت فلش گالری محصول
========================== */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  user-select: none;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

/* hover effect برای حس لوکس */
.gallery-btn:hover {
  background: rgba(0,0,0,0.65);
  transform: translateY(-50%) scale(1.1);
}

/* موقعیت دقیق در دو طرف */
.gallery-btn.prev {
  left: 24px;
}

.gallery-btn.next {
  right: 24px;
}

/* برای موبایل‌ها فاصله کمتر بشه */
@media (max-width: 768px) {
  .gallery-btn {
    font-size: 32px;
    padding: 6px 14px;
  }
  .gallery-btn.prev { left: 10px; }
  .gallery-btn.next { right: 10px; }
}
/* ==========================
   Product Detail Gallery
========================== */
.gallery-container {
  position: relative;
  max-width: 650px;         /* اندازه گالری */
  margin: 0 0 0 80px; /* ۸۰ پیکسل فاصله از سمت چپ */
          /* 💎 مرکز کردن گالری در عرض صفحه */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  
}


.gallery-slide {
  display: none;
}

.gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  user-select: none;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}

.gallery-btn:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.product-info {
  margin-top: 40px;
  text-align: center;
}
/* ==========================
   Product Cards Links (Clean Style)
========================== */

/* حذف رنگ آبی و خط زیر از لینک‌ها */
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* برای hover افکت ظریف اضافه کن */
.product-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* جلوگیری از تغییر رنگ بعد از کلیک */
.product-link:visited,
.product-link:active {
  color: inherit;
  text-decoration: none;
}

/* داخل کارت‌ها متن و عنوان هم با تم هماهنگ باشن */
.product-link h3 {
  color: var(--text);
  margin-top: 12px;
  font-weight: 600;
}

.product-link p {
  color: var(--muted);
  line-height: 1.6;
}
/* ======================
   استایل نمایش قیمت محصول
====================== */

.product-price {
  text-align: center;
  margin: 1.5rem 0;
  font-family: "Vazirmatn", sans-serif;
}

.product-price .old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.product-price .new-price {
  color: #e11d48; /* قرمز زیبا */
  font-size: 2rem;
  font-weight: 700;
  margin-right: 0.3rem;
}

.product-price .currency {
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 0.25rem;
}

.product-price .price-note {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
/* ======================
   انتخاب رنگ چوب محصول
====================== */

.wood-color-selector {
  text-align: center;
  margin: 2rem 0;
}

.wood-color-selector h4 {
  color: var(--text-color, #555);
  font-weight: 500;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.color-options {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.color-btn:hover,
.color-btn.selected {
  border-color: #e11d48; /* رنگ قرمز برند فایدیم */
  transform: scale(1.1);
}/* ======================
   چیدمان نهایی و منظم صفحه محصول
====================== */

.product-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background: var(--bg);
  min-height: 100vh;
}

/* چیدمان دقیق دو ستونه */
/* 🎯 فاصله متعادل از دو طرف برای گالری و نوشته‌ها */
.product-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 6rem;  /* فاصله از سمت چپ */
  padding-right: 6rem; /* فاصله از سمت راست */
  box-sizing: border-box;
}


/* گالری محصول */
.product-gallery {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* فلش‌های گالری */
.product-gallery .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-gallery .nav:hover {
  background: rgba(225, 29, 72, 0.8);
}
.product-gallery .prev { left: 14px; }
.product-gallery .next { right: 14px; }

/* ستون راست (جزئیات محصول) */
.product-details {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  gap: 1rem;
}

.product-details h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-details ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* قیمت */
.product-price {
  text-align: right;
  margin: 1rem 0;
  font-family: "Vazirmatn", sans-serif;
}
.product-price .old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 1.1rem;
  margin-left: 0.4rem;
}
.product-price .new-price {
  color: #e11d48;
  font-size: 1.9rem;
  font-weight: 700;
}
.product-price .price-note {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* انتخاب رنگ چوب */
/* ==========================
   وسط‌چین کردن انتخاب رنگ چوب در همه حالت‌ها
========================== */
.wood-color-selector {
  text-align: center !important;
}

.wood-color-selector h4 {
  display: inline-block !important;
  margin: 0 auto 0.6rem auto !important;
  text-align: center !important;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 0.3rem;
}

.color-options {
  display: flex;
  justify-content: center !important;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.color-btn:hover,
.color-btn.selected {
  border-color: #e11d48;
  transform: scale(1.1);
}



/* دکمه واتساپ */
.btn.btn-primary {
  background-color: #00a884;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
}
.btn.btn-primary:hover {
  transform: scale(1.05);
  background-color: #00936f;
}

/* ======================
   واکنش‌گرا
====================== */
/* ======================
   واکنش‌گرا (اصلاح نهایی)
====================== */
/* ===== Mobile layout: gallery on top, details below (<=900px) ===== */
@media screen and (max-width: 900px) {
  .product-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 2rem !important;
    padding: 1rem !important;
    text-align: center !important;
  }

  /* گالری (هر دو نام محتمل) */
  .gallery-container,
  .product-gallery {
    order: 1 !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto 1.5rem auto !important; /* لغو margin:0 0 0 80px در موبایل */
    display: flex !important;
    justify-content: center !important;
  }

  /* جزئیات محصول (هر دو نام محتمل) */
  .product-details,
  .product-info {
    order: 2 !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .color-options { justify-content: center !important; }
  .product-price { text-align: center !important; }

  /* فلش‌های گالری کمی کوچک‌تر */
  .gallery-btn { transform: translateY(-50%) scale(.9) !important; }
}
@media screen and (max-width: 900px) {
  /* ساختار ستون عمودی در موبایل */
  .product-gallery {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 1.8rem !important;
  }

  /* گالری بیاد بالا وسط */
  .gallery-container {
    order: 1 !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto 1.5rem auto !important;
  }

  /* توضیحات بیاد زیرش */
  .product-info {
    order: 2 !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* رنگ‌ها و قیمت وسط‌چین */
  .color-options { justify-content: center !important; }
  .product-price { text-align: center !important; }

  /* دکمه واتساپ وسط */
  .btn.btn-primary {
    display: block !important;
    margin: 1rem auto 0 auto !important;
  }
}
/* ==========================
   وسط‌چین کردن انتخاب رنگ در موبایل
========================== */
@media screen and (max-width: 900px) {
  .wood-color-selector {
    text-align: center !important;
  }

  
}
/* فقط موبایل؛ دسکتاپ بدون تغییر می‌ماند */
@media (max-width: 900px) {
  /* دکمه‌ها در موبایل در مرکز قرار بگیرند (حتی اگر یکی بره خط بعد) */
  .hero .cta-group {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px;
  }

  /* رنگ هر دو دکمه یکی باشد (سبز)، فقط در موبایل */
  .hero .cta-group .btn-ghost {
    background: #00a884 !important;
    color: #fff !important;
    border: none !important;
  }
  .hero .cta-group .btn-primary:hover,
  .hero .cta-group .btn-ghost:hover {
    background: #00936f !important;
    transform: translateY(-1px);
  }

  /* اگر به خط بعد رفت، وسط بایستد و عرض مناسبی داشته باشد */
  .hero .cta-group .btn {
    margin-inline: 0;
    text-align: center;
    flex: 0 1 auto;          /* اندازه طبیعی */
  }
}
/* جلوگیری از اسکرول افقی ناشی از عناصر عریض (ایمن) */
html, body { overflow-x: hidden; }

/* ظرف واکنش‌گرای مپ */
.map-embed {
  position: relative;
  width: 100%;
  max-width: 900px;        /* دلخواه؛ روی دسکتاپ محدود می‌کند */
  margin: 12px auto 0;
  border-radius: 16px;
  overflow: hidden;
}

/* پیش‌فرض دسکتاپ: نسبت 16:9 با aspect-ratio */
.map-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  display: block;
}

/* فقط موبایل: اگر مرورگر aspect-ratio را نادیده گرفت، fallback با padding */
@media (max-width: 900px) {
  .map-embed {
    padding-bottom: 60%;   /* ~16:9 */
    height: 0;             /* برای fallback */
  }
  .map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
  }

  /* اگر هنوز iframe قدیمی با width ثابت جایی باقی مانده باشد، این خط مجبورش می‌کند
     که از عرض صفحه تجاوز نکند */
  iframe[src*="google.com/maps"] {
    max-width: 100% !important;
  }
}

