
  <style>
    :root {
      --bg: #000;
      --card: #0b0b0b;
      --text: #fff;
      --muted: #999;
      --gold: #ffd700;
      --accent: #ff5454;
      --price: #ff3b3b;
    }
    * { box-sizing: border-box; }

 body {
  color: var(--text);
  font-family: sans-serif;
  margin: 0;
}

    .page-title {
      max-width: 1180px;
      margin: 10px auto 15px;
      padding: 0 15px;
      text-align: right;
    }
    .page-title h1 {
      font-size: 22px;
      margin: 0 0 4px;
      color: var(--gold);
    }
    .breadcrumb {
      font-size: 12px;
      color: #dcdcdc;
    }
    .breadcrumb a {
      color: #dcdcdc;
      text-decoration: none;
    }
    .breadcrumb a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    .product-wrap {
      max-width: 1180px;
      margin: 0 auto 40px;
      padding: 0 15px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      align-items: center;
    }

    .info-box {
      background: rgba(10,10,10,.4);
      border: 1px solid rgba(255,255,255,.03);
      border-radius: 20px;
      padding: 18px;
      text-align: center;
    }
    .info-box h2 {
      margin-top: 0;
      font-size: 19px;
    }
    .price-line .amount {
      color: var(--price);
      font-weight: bold;
      font-size: 18px;
    }
    /* FIX PRICE COLOR EVERYWHERE */
.product-price .amount {
  color: var(--price);
  font-weight: bold;
}

    .price-line .currency {
      color: #fff;
      font-size: 12px;
      opacity: .9;
    }

    .features {
      margin: 10px 0 15px;
      text-align: right;
      display: inline-block;
    }
    .features li {
      list-style: none;
      font-size: 13px;
      color: #ddd;
      margin-bottom: 5px;
      display: flex;
      gap: 6px;
      align-items: flex-start;
    }
    .bullet {
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 999px;
      margin-top: 6px;
      flex: 0 0 6px;
    }

    .cta-line {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    .contact-box {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 9px 18px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      font-size: 13px;
      border: none;
      box-shadow: 0 0 12px rgba(0,0,0,0.4);
      transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
      opacity: 0.95;
    }
    .contact-box .icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      overflow: hidden;
    }
    .contact-box .icon img {
      width: 18px;
      height: 18px;
      display: block;
    }
    .contact-box .label {
      white-space: nowrap;
    }
    .contact-box:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 18px rgba(0,0,0,0.6);
      opacity: 1;
    }
    .contact-box.whatsapp {
      background: #25d366;
      color: #000;
    }
    .contact-box.telegram {
      background: #229ED9;
      color: #fff;
    }

    .gallery-box {
      background: #fff;
      border-radius: 20px;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 480px;
      margin: 0 auto;
    }
    .main-image {
      background: #fefefe;
      border-radius: 16px;
      height: 420px;
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
    .main-image img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    .full-desc {
      max-width: 1180px;
      margin: 0 auto 40px;
      padding: 0 15px;
    }
    .full-desc h3 {
      margin-bottom: 10px;
      color: #fff;
      font-size: 18px;
      text-align:right;
    }
    .full-desc-inner {
      max-width: 900px;
      margin: 20px auto 0;
      color: #ddd;
      line-height: 1.9;
      font-size: 15px;
      text-align: justify;
    }
    .full-desc-inner p {
      margin-bottom: 18px;
    }
    .full-desc-inner strong {
      color: #ffd700;
    }

    .faq-wrap{
      max-width:900px;
      margin:0 auto 40px;
      padding:0 15px;
      color:#ddd;
      font-size:14px;
      line-height:1.9;
      text-align:right;
    }
    .faq-wrap h2{
      text-align:center;
      margin-bottom:18px;
      color:#fff;
      font-size:19px;
    }
    .faq-q{
      font-weight:700;
      color:#ffd700;
      margin-top:10px;
      margin-bottom:4px;
    }

    .reviews {
      max-width: 1180px;
      margin: 0 auto 40px;
      padding: 0 15px;
    }
    .reviews h3 { margin-bottom: 10px; }
    .star-select {
      display: flex;
      gap: 10px;
      margin-bottom: 10px;
    }
    .star-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }
    .star {
      font-size: 22px;
      color: #555;
      transition: .15s;
    }
    .star-num {
      font-size: 11px;
      color: #aaa;
      margin-top: 2px;
    }
    .reviews textarea {
      width: 100%;
      min-height: 80px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.05);
      background: rgba(0,0,0,0.3);
      color: #fff;
      padding: 8px;
      margin-bottom: 10px;
      resize: vertical;
      font-family: inherit;
    }
    .reviews button {
      background: linear-gradient(90deg,#ffd700,#ffbf00);
      border: none;
      color: #000;
      padding: 6px 15px;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
    }
    .review-list {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .review-item {
      background: rgba(255,255,255,0.015);
      border-radius: 12px;
      padding: 10px 12px;
    }
    .review-stars { color: #ffd700; margin-bottom: 4px; }
    .review-text { font-size: 13px; color: #ddd; white-space: pre-wrap; }
    .review-hidden { display:none; }

    .review-reply {
      margin-top: 8px;
      padding: 8px 10px;
      border-radius: 8px;
      background: rgba(0, 128, 0, 0.15);
      border: 1px solid rgba(0, 180, 0, 0.5);
      font-size: 12px;
      color: #d4ffd4;
    }
    .review-reply-label {
      font-weight: 700;
      margin-bottom: 3px;
      color: #a4ffb0;
    }
    .review-reply-time {
      margin-top: 4px;
      font-size: 10px;
      color: #9bd6a3;
    }

    .related {
      max-width: 1180px;
      margin: 0 auto 60px;
      padding: 0 15px;
    }
    .related h3 {
      margin-bottom: 15px;
      font-size: 17px;
      color: #fff;
    }
    .related-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    @media(max-width:950px){
      .product-wrap { grid-template-columns:1fr; }
      .gallery-box { order:-1; }
      .related-grid{grid-template-columns:repeat(2,1fr);}
    }
    @media(max-width:520px){
      .related-grid{grid-template-columns:1fr;}
    }
    .related-card {
      background: #000;
      border: 1px solid rgba(255,215,0,0.04);
      border-radius: 14px;
      padding: 14px;
      text-align: center;
    }
    .related-img {
      background: #fff;
      border-radius: 10px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
    }
    .related-img img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }
    .related-title {
      font-weight: 600;
      margin-bottom: 4px;
      color: #fff;
      font-size: 13px;
    }
    .related a {
      display: inline-block;
      margin-top: 6px;
      background: linear-gradient(90deg,#ffd700,#ffbf00);
      color: #000;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 12px;
      text-decoration: none;
    }

.product-page {
  background: radial-gradient(
    circle at top,
    #1a1a1a 0%,
    #000 60%
  );
  min-height: 100vh;
}
/* ===== FORCE PRODUCT PAGE BACKGROUND ===== */
body.product-page,
html body.product-page {
  background: radial-gradient(
    circle at top,
    #1a1a1a 0%,
    #000 60%
  ) !important;
  min-height: 100vh;
}
body.product-page main,
body.product-page #main-content {
  background: transparent !important;
}

  </style>
/* ===== FORCE PRODUCT PAGE BACKGROUND ===== */
html,
body {
  background: transparent;
}

/* فقط برای صفحه محصول */
body.product-page {
  background: radial-gradient(
    circle at top,
    #1a1a1a 0%,
    #000 60%
  ) !important;
  min-height: 100vh;
}

/* لایه‌های داخلی صفحه محصول */
body.product-page main,
body.product-page #main-content {
  background: transparent !important;
}

/* === PRODUCT PAGE BACKGROUND – FINAL & CLEAN === */
body.product-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #000;
  z-index: -1;
}

/* === PRODUCT PAGE BACKGROUND (REAL FIX) === */
.product-bg {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: -1;
}
/* ===== FINAL BACKGROUND FIX (NO HTML DIV) ===== */
html, body {
  background: #000 !important;
  min-height: 100%;
}

body {
  position: relative;
}

/* این دقیقاً جای همون div فیکس رو می‌گیره */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 60%);
  z-index: -1;
  pointer-events: none;
}

/* مطمئن می‌شیم لایه‌های داخلی سفید نشن */
#main-content,
main {
  background: transparent !important;
}
/* FIX product title color */
.product-page .info-box h2 {
  color: #fff;
}
/* ===== PRICE COLOR OVERRIDE (FINAL) ===== */
body.product-page .price-line .amount,
body.product-page .product-price .amount,
body.product-page .amount,
body.product-page .product-wrap .info-box .price-line .amount {
  color: #ff3b3b !important;
  font-weight: 900 !important;
}

/* اگر توی .price-line هر چیزی بود، قرمز کن */
body.product-page .price-line,
body.product-page .price-line * {
  color: #ff3b3b !important;
}
body.product-page .price-line .currency {
  color: #fff !important; /* فقط واحد پول سفید بمونه */
}
/* ===== PRODUCT PRICE – FINAL OVERRIDE ===== */
body.product-page .price-line > .amount {
  color: #ff3b3b !important;
  font-weight: 900;
}

.product-page .price-line .amount {
  color: #ff3b3b !important;
  font-weight: bold;
}
body.product-page .info-box .price-line span.amount{
  color:#ff3b3b !important;
  font-weight:700 !important;
}
/* PRODUCT PRICE – FINAL */
body.product-page .price-line .amount {
  color: #ff3b3b !important;
  font-weight: 900 !important;
}

body.product-page .price-line .currency {
  color: #ffffff !important;
}

.review-date {
  font-size: 10px;
  color: #888;
  text-decoration: none;
}

.review-date:hover {
  color: #ff700;
  text-decoration: underline;
}
