/* ============================================================
   DETAIL PAGE — FULL CSS
   ============================================================ */

/* ── Container ── */
.detail-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

/* ── Breadcrumb ── */
.detail-breadcrumb {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  font-size: 13px;
}
.detail-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.detail-breadcrumb a:hover { color: var(--navy); }
.detail-breadcrumb i.fa-angle-right { margin: 0 8px; color: var(--gray-400); font-size: 11px; }
.detail-breadcrumb span { color: var(--gray-600); font-weight: 600; }

/* ── Main ── */
.detail-main {
  padding: 32px 0 60px;
  background: var(--gray-50);
  min-height: 70vh;
}

/* ── Layout: sidebar + content ── */
.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* ── Sidebar ── */
.detail-sidebar { position: sticky; top: 90px; align-self: flex-start; display: flex; flex-direction: column; gap: 0; }

.sidebar-category-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sidebar-category-title {
  background: var(--accent);
  color: var(--white);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.sidebar-category-list {
  list-style: none;
  padding: 8px;
  margin: 0;
}
.sidebar-category-list li a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: var(--transition);
}
.sidebar-category-list li a:hover,
.sidebar-category-list li.active a {
  background: var(--navy);
  color: var(--white);
}

/* ── Sidebar Kateqoriya Ağacı ── */
.sidebar-all-cats {
  margin-top: 16px;
}

.sidebar-all-cats .sidebar-cat-tree {
  max-height: 840px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--gray-100);
}
.sidebar-all-cats .sidebar-cat-tree::-webkit-scrollbar { width: 4px; }
.sidebar-all-cats .sidebar-cat-tree::-webkit-scrollbar-track { background: var(--gray-100); }
.sidebar-all-cats .sidebar-cat-tree::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.sidebar-cat-tree {
  list-style: none;
  padding: 8px;
  margin: 0;
}

/* Üst kateqoriya */
.sct-parent > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sct-parent > a:hover {
  background: var(--navy);
  color: var(--white);
}
.sct-arrow {
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
  transition: color var(--transition);
}
.sct-parent > a:hover .sct-arrow {
  color: var(--white);
}

/* Alt kateqoriyalar */
.sct-children {
  list-style: none;
  padding: 0 0 4px 18px;
  margin: 0;
}
.sct-sub > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sct-sub > a:hover {
  background: var(--gray-50);
  color: var(--accent);
}
.sct-dash {
  font-size: 9px;
  color: var(--gray-400);
  flex-shrink: 0;
}

/* Nəvə kateqoriyalar */
.sct-grandchildren {
  list-style: none;
  padding: 0 0 4px 18px;
  margin: 0;
}
.sct-grandchildren li a {
  display: block;
  padding: 5px 10px;
  font-size: 12.5px;
  color: var(--gray-400);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.sct-grandchildren li a:hover {
  color: var(--accent);
  background: var(--gray-50);
}

/* ── Detail Content Box ── */
.detail-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  overflow: hidden;
}

/* ── TOP: Qalereya + Info ── */
.detail-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ============================================================
   GALLERY
   ============================================================ */
.detail-gallery   { display: flex; flex-direction: column; gap: 12px; }

.gallery-main  { order: 1; }
.gallery-thumbs { order: 2; }

.gallery-main {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  padding: 24px;
  overflow: hidden;
}
.gallery-main img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.gallery-main:hover img { transform: scale(1.03); }


.gallery-thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.thumbs-track-wrap { flex: 1; min-width: 0; max-width: 392px; overflow: hidden; }
.thumbs-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0;
}
.thumbs-track::-webkit-scrollbar { display: none; }

.thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.thumb:hover   { border-color: var(--accent); }
.thumb.active  { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
.thumb img     { max-width: 100%; max-height: 100%; object-fit: contain; }

.thumb-nav {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 12px;
  color: var(--gray-600);
  transition: var(--transition);
  padding: 0;
}
.thumb-nav:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── Info Panel ── */
.detail-info { display: flex; flex-direction: column; gap: 20px; }

.detail-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin: 0;
}

/* Specs */
.detail-specs {
  list-style: none;
  padding: 0; margin: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.detail-specs li {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--gray-100);
  gap: 10px;
}
.detail-specs li:last-child { border-bottom: none; }
.detail-specs li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 1px;
  flex-shrink: 0;
}
.spec-name  { font-weight: 700; color: var(--gray-800); white-space: nowrap; }
.spec-value { color: var(--accent); font-weight: 600; }

/* Files */
.detail-files { display: flex; flex-direction: column; gap: 8px; }
.file-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.file-link i      { color: var(--accent); font-size: 14px; }
.file-link:hover  { color: var(--accent); }

/* Description */
.detail-description {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border-top: 3px solid var(--accent);
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--gray-100);
}
.detail-description::-webkit-scrollbar {
  width: 5px;
}
.detail-description::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 4px;
}
.detail-description::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}
.detail-description p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 0;
}

/* Email Button */
.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  width: fit-content;
}
.btn-email:hover { background: var(--navy); transform: translateY(-2px); }


/* ============================================================
   OXŞAR MƏHSULLAR
   ============================================================ */
.oxsar-wrap {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 2px solid var(--gray-100);
}

.oxsar-slider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.oxsar-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.oxsar-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 8px 2px 12px;
}
.oxsar-track::-webkit-scrollbar { display: none; }

.oxsar-card {
  flex-shrink: 0;
  width: 220px;
}

.oxsar-nav {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.oxsar-nav:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

@media (max-width: 768px) {
  .oxsar-card { width: 180px; }
  .oxsar-wrap { margin-top: 32px; padding-top: 24px; }
}


/* ============================================================
   XÜSUSİYYƏT SECTİONLARI
   Tək sıralar  (1,3,5...):  Mətn sol  | Şəkil sağ
   Cüt sıralar (2,4,6...):  Şəkil sol | Mətn sağ
   ============================================================ */

.ds-sections {
  margin-top: 56px;
  border-top: 2px solid var(--gray-100);
}

/* Hər section: 2 bərabər sütun, yan-yana */
.ds-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--gray-100);
}
.ds-section:last-child { border-bottom: none; }

/* Mətn bloku */
.ds-section-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ds-section-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.ds-bullet-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.ds-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.65;
}
.ds-bullet-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  font-size: 15px;
}

/* Şəkil bloku */
.ds-section-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 28px;
  min-height: 280px;
}
.ds-section-img img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}


/* ============================================================
   VİDEOLAR
   ============================================================ */
.ds-videos-wrap {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-100);
}

.ds-block-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ds-block-title i { color: var(--accent); font-size: 18px; }

.ds-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ds-video-item   { display: flex; flex-direction: column; gap: 10px; }
.ds-video-frame  {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: #000;
}
.ds-video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.ds-video-caption {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 600;
  text-align: center;
  margin: 0;
}


/* ============================================================
   TEXNİKİ CƏDVƏLLƏR
   ============================================================ */
.ds-tables-wrap {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.ds-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.ds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

/* İki sütunlu (ad | dəyər) */
.ds-table tbody tr:nth-child(odd)  { background: var(--gray-50); }
.ds-table tbody tr:nth-child(even) { background: var(--white); }
.ds-table tbody tr:hover           { background: #eef4ff; }
.ds-table th,
.ds-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
  line-height: 1.5;
}
.ds-table th {
  font-weight: 700;
  color: var(--gray-800);
  background: var(--gray-50);
  white-space: nowrap;
  width: 220px;
  border-right: 1px solid var(--gray-200);
}
.ds-table td { color: var(--gray-600); }

/* Məhsul modelləri (çox sütunlu) */
.ds-table--model thead tr { background: var(--navy); }
.ds-table--model thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  width: auto;
}
.ds-table--model thead th:last-child { border-right: none; }
.ds-table--model tbody td { border-right: 1px solid var(--gray-100); }
.ds-table--model tbody td:first-child {
  font-weight: 700;
  color: var(--gray-800);
  background: var(--gray-50);
}
.ds-table--model tbody td:last-child { border-right: none; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { max-height: 46px; margin-bottom: 14px; }
.footer-logo-text { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.footer-desc      { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.footer-socials   { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--accent); color: var(--white); }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { display: flex !important; align-items: center; gap: 10px; color: rgba(255,255,255,0.55); font-size: 13.5px; }
.footer-contact li i { color: var(--accent); width: 14px; }
.footer-contact li a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .detail-layout  { grid-template-columns: 220px 1fr; }
  .detail-top     { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: 1 / -1; }

  /* Sections: mövcud 2 sütun qalır amma gap azalır */
  .ds-section { gap: 36px; padding: 40px 0; }
  .ds-videos-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — MOBİL (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Layout */
  .detail-layout    { grid-template-columns: 1fr; overflow: hidden; }
  .detail-sidebar   { position: static; display: none; }
  .detail-content   { padding: 16px; width: 100%; box-sizing: border-box; overflow: hidden; }
  .detail-container { padding: 0 12px; max-width: 100%; overflow: hidden; }
  .detail-main      { padding: 16px 0 40px; overflow: hidden; }
  .detail-top       { grid-template-columns: 1fr; gap: 20px; width: 100%; }

  /* Gallery: thumbs sol tərəfdə (şaquli) */
  .detail-gallery {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px;
  }
  .gallery-main    { order: 2; flex: 1; min-height: 300px; padding: 12px; }
  .gallery-main img { max-height: 280px; }
  .gallery-thumbs  { order: 1; flex-direction: column; align-items: center; gap: 6px; width: 60px; flex-shrink: 0; }
  .thumbs-track-wrap { width: 60px; max-width: none !important; overflow: hidden; flex: none !important; }
  .thumbs-track {
    flex-direction: column !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    max-height: 260px;
    gap: 6px;
  }
  .thumb           { width: 54px !important; height: 54px !important; }
  .thumb-nav       { width: 28px !important; height: 28px !important; font-size: 10px !important; }
  #thumbPrev i     { transform: rotate(90deg); display: inline-block; }
  #thumbNext i     { transform: rotate(-90deg); display: inline-block; }

  /* Specs / email */
  .detail-breadcrumb { font-size: 11px; padding: 10px 0; }
  .detail-specs li   { font-size: 12.5px; padding: 9px 12px; }
  .btn-email         { width: 100%; justify-content: center; }

  /* ── XÜSUSİYYƏT SECTİONLARI — MOBİLDƏ STACKLƏNİR ── */
  /* Mobil: hər section üst-altə düzülür (şəkil üstdə, mətn altda) */
  .ds-section {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 32px 0;
  }
  /* Şəkil həmişə yuxarı çıxsın (order ilə) */
  .ds-section .ds-section-img  { order: 1; }
  .ds-section .ds-section-text { order: 2; }

  .ds-section-img     { min-height: 180px; padding: 16px; }
  .ds-section-img img { max-height: 200px; }
  .ds-section-title   { font-size: 16px; }

  /* Videos */
  .ds-videos-grid   { grid-template-columns: 1fr; }
  .ds-videos-wrap   { margin-top: 36px; padding-top: 28px; }

  /* Tables */
  .ds-tables-wrap   { margin-top: 36px; padding-top: 28px; gap: 32px; }
  .ds-table th      { width: 130px; font-size: 12.5px; }
  .ds-table td      { font-size: 12.5px; }
  .ds-block-title   { font-size: 15px; }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr; gap: 28px; }
  .footer-col:first-child { grid-column: auto; }
  .footer-top       { padding: 40px 0 24px; }
}


/* ============================================================
   YAZI NÜMUNƏLƏRİ SLİDERİ (məhsul detail səhifəsi)
   ============================================================ */
.ds-yazinumune-wrap {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-100);
}

.ds-yazinumune-slider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.ds-yn-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ds-yn-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 12px;
}
.ds-yn-track::-webkit-scrollbar { display: none; }

.ds-yn-item {
  flex-shrink: 0;
  width: calc(33.333% - 11px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ds-yn-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: box-shadow .25s, transform .25s;
}
.ds-yn-item:hover .ds-yn-img-wrap {
  box-shadow: 0 6px 24px rgba(0,0,0,.14);
  transform: translateY(-3px);
}
.ds-yn-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.ds-yn-item:hover .ds-yn-img-wrap img {
  transform: scale(1.05);
}

.ds-yn-caption {
  font-size: 12.5px;
  color: var(--gray-600);
  text-align: center;
  margin: 0;
  padding: 0 4px;
}

.ds-yn-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.ds-yn-nav:hover {
  background: var(--navy, #001f3f);
  color: var(--white);
  border-color: var(--navy, #001f3f);
}

@media (max-width: 768px) {
  .ds-yn-item      { width: calc(50% - 8px); }
  .ds-yn-img-wrap  { height: 130px; }
}

@media (max-width: 480px) {
  .ds-yn-item      { width: 100%; }
  .ds-yn-img-wrap  { height: 200px; }
}


/* ============================================================
   RESPONSIVE — KİÇİK MOBİL (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .detail-container   { padding: 0 8px; }
  .detail-content     { padding: 12px; border-radius: var(--radius); }
  .gallery-main       { min-height: 240px; }
  .gallery-main img   { max-height: 220px; }
  .thumbs-track       { max-height: 200px !important; }
  .thumb              { width: 46px !important; height: 46px !important; }
  .thumbs-track-wrap  { width: 46px !important; }
  .gallery-thumbs     { width: 46px; }
  .detail-title       { font-size: 16px; }
  .ds-section-title   { font-size: 15px; }
  .ds-block-title     { font-size: 14px; }
  .ds-section         { padding: 24px 0; }
}