/* ============================================================
   چرخ گستر سهند - Product Detail Page
   نسخه: 1.0 - چرخ‌دنده‌ها + پیچ و مهره + انیمیشن صنعتی
   ============================================================ */

:root {
  --atlas-deep-blue: #0a1a2f;
  --atlas-mid-blue: #0d2240;
  --atlas-tech-blue: #134074;
  --atlas-gold: #d4af37;
  --atlas-gold-light: #e5c767;
  --atlas-copper: #b87333;
  --atlas-steel: #6b7b8d;
  --atlas-white: #ffffff;
  --atlas-light-gray: #e8ecf1;
  --atlas-text-on-dark: #ccd6e0;
  --atlas-text-muted: #8899aa;
  --atlas-green: #2ecc71;
  --atlas-red: #e74c3c;
  --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1.2);
  --border-radius: 18px;
  --font-primary: 'IRANSans', 'Vazirmatn', 'Tahoma', sans-serif;
}

/* ==================== صفحه اصلی ==================== */
.product-detail-page {
  background: linear-gradient(180deg, #060e1a 0%, var(--atlas-deep-blue) 40%, var(--atlas-mid-blue) 100%);
  min-height: 100vh;
  font-family: var(--font-primary);
  direction: rtl;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* ==================== پس‌زمینه چرخ‌دنده‌ها ==================== */
.pd-gears-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
}

.pd-gear {
  position: absolute;
  color: var(--atlas-gold);
}

.pd-gear-1 {
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  animation: pdGearSlow 35s linear infinite;
}

.pd-gear-2 {
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  color: var(--atlas-copper);
  animation: pdGearMedium 25s linear infinite reverse;
}

.pd-gear-3 {
  top: 40%;
  left: -40px;
  width: 180px;
  height: 180px;
  animation: pdGearFast 12s linear infinite;
}

@keyframes pdGearSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pdGearMedium {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes pdGearFast {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==================== ذرات پیچ و مهره ==================== */
.pd-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pd-particle {
  position: absolute;
  color: var(--atlas-steel);
  opacity: 0.15;
  animation: pdFloat 8s ease-in infinite;
}

.pd-particle:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  font-size: 2rem;
}

.pd-particle:nth-child(2) {
  top: 25%;
  right: 8%;
  animation-delay: 1.5s;
  font-size: 1.5rem;
}

.pd-particle:nth-child(3) {
  top: 50%;
  left: 10%;
  animation-delay: 3s;
  font-size: 2.5rem;
}

.pd-particle:nth-child(4) {
  top: 70%;
  right: 5%;
  animation-delay: 4.5s;
  font-size: 1.8rem;
}

.pd-particle:nth-child(5) {
  top: 85%;
  left: 15%;
  animation-delay: 6s;
  font-size: 1.3rem;
}

.pd-particle:nth-child(6) {
  top: 15%;
  right: 20%;
  animation-delay: 2s;
  font-size: 2.2rem;
}

@keyframes pdFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-30px) rotate(90deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }

  75% {
    transform: translateY(-40px) rotate(270deg);
  }
}

/* ==================== کانتینر ==================== */
.pd-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==================== Breadcrumb ==================== */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pd-breadcrumb a {
  color: var(--atlas-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.pd-breadcrumb a:hover {
  color: var(--atlas-gold);
}

.pd-breadcrumb-separator {
  color: var(--atlas-gold);
  font-size: 0.7rem;
}

.pd-breadcrumb-current {
  color: var(--atlas-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==================== گرید اصلی ==================== */
.pd-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* ==================== گالری تصاویر ==================== */
.pd-gallery-wrapper {
  background: linear-gradient(145deg, rgba(19, 64, 116, 0.25), rgba(10, 26, 47, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* خط بالای گالری */
.pd-gallery-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--atlas-gold), transparent);
}

/* تصویر اصلی */
.pd-main-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #060e1a;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pd-main-image-container:hover .pd-main-image {
  transform: scale(1.03);
}

/* نشان ذره‌بین */
.pd-zoom-indicator {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--atlas-deep-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pd-main-image-container:hover .pd-zoom-indicator {
  opacity: 1;
}

.pd-zoom-indicator svg {
  width: 18px;
  height: 18px;
}

/* تامبنیل‌ها */
.pd-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.pd-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: #060e1a;
}

.pd-thumb:hover {
  border-color: var(--atlas-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.pd-thumb.active {
  border-color: var(--atlas-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================== اطلاعات محصول ==================== */
.pd-info-wrapper {
  position: relative;
  z-index: 1;
}

.pd-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--atlas-gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1rem;
}

.pd-category-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--atlas-gold);
  border-radius: 50%;
}

.pd-title {
  color: var(--atlas-white);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.pd-short-desc {
  color: var(--atlas-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pd-divider {
  width: 80px;
  height: 2px;
  background: var(--atlas-gold);
  margin: 1.5rem 0;
  border-radius: 1px;
}

/* ==================== قیمت ==================== */
.pd-price-block {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.pd-price-label {
  color: var(--atlas-text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.pd-price-value {
  color: var(--atlas-gold);
  font-size: 2rem;
  font-weight: 900;
}

.pd-price-currency {
  font-size: 0.9rem;
  margin-right: 0.3rem;
  opacity: 0.7;
}

.pd-price-negotiable {
  color: var(--atlas-text-on-dark);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ==================== دکمه‌ها ==================== */
.pd-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-pd-cart {
  background: linear-gradient(135deg, var(--atlas-gold), var(--atlas-copper));
  color: var(--atlas-deep-blue);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-pd-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.btn-pd-cart::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  animation: pdBtnShine 3s ease-in-out infinite;
}

@keyframes pdBtnShine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.btn-pd-cart svg {
  width: 20px;
  height: 20px;
}

.btn-pd-inquiry {
  background: transparent;
  color: var(--atlas-white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-pd-inquiry:hover {
  border-color: var(--atlas-gold);
  color: var(--atlas-gold);
  background: rgba(212, 175, 55, 0.05);
}

/* ==================== ویژگی‌ها ==================== */
.pd-features-title {
  color: var(--atlas-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pd-features-title svg {
  width: 22px;
  height: 22px;
  color: var(--atlas-gold);
}

.pd-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pd-feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.pd-feature-item:hover {
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(-4px);
}

.pd-feature-name {
  color: var(--atlas-text-on-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.pd-feature-value {
  color: var(--atlas-gold);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ==================== توضیحات کامل ==================== */
.pd-description-block {
  background: linear-gradient(145deg, rgba(19, 64, 116, 0.25), rgba(10, 26, 47, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  position: relative;
}

.pd-description-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--atlas-gold), transparent);
}

.pd-description-title {
  color: var(--atlas-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pd-description-title svg {
  width: 22px;
  height: 22px;
  color: var(--atlas-gold);
}

.pd-description-content {
  color: var(--atlas-text-on-dark);
  font-size: 0.95rem;
  line-height: 2.2;
  opacity: 0.9;
}

.pd-description-content p {
  margin-bottom: 1rem;
}

/* ==================== لایت‌باکس ==================== */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.pd-lightbox.active {
  display: flex;
}

.pd-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-in;
}

.pd-lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: var(--atlas-gold);
  border: none;
  border-radius: 50%;
  color: var(--atlas-deep-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  font-size: 1.2rem;
}

.pd-lightbox-close:hover {
  background: var(--atlas-white);
  transform: rotate(90deg);
}

.pd-lightbox-hint {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-family: var(--font-primary);
  z-index: 1;
  pointer-events: none;
}
/* ==================== متغیرها و تنظیمات پایه ====================
:root {
  --atlas-gold: #d4af37;
  --atlas-white: #ffffff;
  --atlas-text-on-dark: rgba(255, 255, 255, 0.85);
  --border-radius: 16px;
  --font-primary: 'IRANSans', 'Tahoma', sans-serif;
} */

/* ==================== بخش دفترچه راهنما ==================== */
.pd-manual-block {
  background: linear-gradient(145deg, rgba(19, 64, 116, 0.25), rgba(10, 26, 47, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

.pd-manual-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--atlas-gold), transparent);
}

.pd-manual-title {
  color: var(--atlas-white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pd-manual-title svg {
  width: 22px;
  height: 22px;
  color: var(--atlas-gold);
}

/* آکاردئون - نسخه اصلاح شده با max-height پویا */
.manual-accordion {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.manual-accordion.warning {
  background: rgba(231, 76, 60, 0.08);
  border-color: rgba(231, 76, 60, 0.2);
}

.manual-accordion.success {
  background: rgba(46, 204, 113, 0.08);
  border-color: rgba(46, 204, 113, 0.2);
}

.manual-accordion.info {
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.2);
}

.manual-accordion.default {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.15);
}

.manual-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  color: var(--atlas-white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: right;
  transition: all 0.3s;
}

.accordion-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.accordion-title {
  flex: 1;
}

.accordion-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.manual-accordion.active .accordion-chevron {
  transform: rotate(180deg);
}

.manual-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.2rem;
  color: var(--atlas-text-on-dark);
  font-size: 0.9rem;
  line-height: 2;
}

/* اصلاح مهم: نمایش محتوا هنگام فعال شدن */
.manual-accordion.active .manual-accordion-body {
  max-height: 500px; /* مقدار کافی برای نمایش تمام محتوا */
  padding-bottom: 1rem;
}

.manual-accordion-body p {
  margin-bottom: 0.5rem;
}

/* دکمه دانلود دفترچه */
.manual-download-section {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.btn-pd-manual-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.btn-pd-manual-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.45);
}

.btn-pd-manual-download svg {
  width: 18px;
  height: 18px;
}

/* دکمه دفترچه راهنما کنار سبد خرید */
.btn-pd-manual {
  background: rgba(33, 150, 243, 0.08);
  color: #2196f3;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(33, 150, 243, 0.3);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-pd-manual:hover {
  background: rgba(33, 150, 243, 0.2);
  border-color: #2196f3;
  color: #fff;
  transform: translateY(-2px);
}

.btn-pd-manual svg {
  width: 20px;
  height: 20px;
}

/* ==================== ریسپانسیو جامع (یکپارچه) ==================== */

/* تبلت و صفحه‌های کوچک‌تر از 992px */
@media (max-width: 992px) {
  .pd-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pd-title {
    font-size: 1.6rem;
  }

  .pd-price-value {
    font-size: 1.6rem;
  }

  /* تنظیمات دفترچه در تبلت */
  .pd-manual-block {
    padding: 2rem;
    margin-top: 2rem;
  }
}

/* موبایل (حداکثر عرض 768px) */
@media (max-width: 768px) {
  .product-detail-page {
    padding: 0.5rem;
  }

  .pd-main-grid {
    gap: 1.5rem;
  }

  .pd-gallery-wrapper {
    padding: 1rem;
  }

  .pd-title {
    font-size: 1.4rem;
  }

  .pd-description-block {
    padding: 1.5rem 1rem;
  }

  .pd-thumbnails {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
  }

  .pd-actions {
    flex-direction: column;
  }

  .btn-pd-cart,
  .btn-pd-inquiry {
    justify-content: center;
  }

  /* ریسپانسیو دفترچه راهنما در موبایل */
  .pd-manual-block {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .pd-manual-title {
    font-size: 1.1rem;
  }

  .manual-accordion-btn {
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
  }

  .manual-accordion-body {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

  .btn-pd-manual-download {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-pd-manual {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }
}

/* موبایل کوچک (حداکثر عرض 480px) */
@media (max-width: 480px) {
  .pd-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

  .pd-title {
    font-size: 1.2rem;
  }

  /* تنظیمات دقیق‌تر دفترچه برای موبایل کوچک */
  .pd-manual-block {
    padding: 1rem;
    margin-top: 1rem;
  }

  .pd-manual-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .manual-accordion-btn {
    font-size: 0.85rem;
    padding: 0.7rem 0.8rem;
    gap: 0.4rem;
  }

  .accordion-icon {
    font-size: 1rem;
  }

  .manual-accordion-body {
    font-size: 0.8rem;
    padding: 0 0.8rem;
    line-height: 1.8;
  }

  .manual-accordion.active .manual-accordion-body {
    padding-bottom: 0.8rem;
  }

  .btn-pd-manual-download {
    font-size: 0.85rem;
    padding: 0.65rem 1.2rem;
    width: 100%;
    justify-content: center;
  }

  .btn-pd-manual {
    font-size: 0.85rem;
    padding: 0.65rem 1.2rem;
    width: 100%;
    justify-content: center;
  }
}

/* ==================== استایل پرینت دفترچه راهنما ==================== */
@media print {
  body * {
    visibility: hidden;
  }

  .pd-manual-block,
  .pd-manual-block * {
    visibility: visible;
  }

  .pd-manual-block {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff !important;
    color: #000 !important;
    border: none !important;
    padding: 1rem !important;
    margin: 0 !important;
  }

  .pd-manual-block::before {
    display: none;
  }

  .pd-manual-title,
  .pd-manual-title svg {
    color: #000 !important;
  }

  .manual-accordion {
    border: 1px solid #ccc !important;
    background: #fff !important;
    margin-bottom: 0.5rem !important;
    page-break-inside: avoid;
  }

  .manual-accordion-btn {
    color: #000 !important;
    font-weight: bold;
  }

  .manual-accordion-body {
    max-height: none !important;
    color: #333 !important;
    display: block !important;
    padding: 0.5rem 1rem !important;
    overflow: visible !important;
  }

  .manual-accordion .accordion-chevron {
    display: none;
  }

  .btn-pd-manual-download,
  .btn-pd-manual,
  .pd-gears-bg,
  .pd-particles,
  .pd-lightbox,
  header,
  footer,
  .pd-breadcrumb {
    display: none !important;
  }
}