body:has(.catalog-page-wrapper),
body.page-product-detail-light {
  background-color: #faf8f5;
  color: #232127;
}

.catalog-page-wrapper {
  padding-top: var(--header-height-resting, 80px);
  min-height: 100vh;
  background-color: #faf8f5;
  background-image: 
    radial-gradient(circle at 85% 12%, rgba(107, 14, 24, 0.04) 0%, transparent 60%),
    radial-gradient(circle at 10% 45%, rgba(203, 168, 113, 0.08) 0%, transparent 55%);
  color: #232127;
  position: relative;
  overflow: hidden;
}

.catalog-page-wrapper::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(203, 168, 113, 0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
}

.catalog-hero {
  padding: 55px 0 35px;
  border-bottom: 1px solid rgba(203, 168, 113, 0.25);
  background: linear-gradient(180deg, rgba(203, 168, 113, 0.08) 0%, rgba(250, 248, 245, 0) 100%);
  position: relative;
  z-index: 1;
}

.catalog-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: #6c6575;
  margin-bottom: 18px;
}

.breadcrumb-nav a {
  color: #6c6575;
  text-decoration: none;
  transition: color 0.25s ease;
  font-weight: 500;
}

.breadcrumb-nav a:hover {
  color: #7b5924;
}

.breadcrumb-separator {
  color: #b89255;
  opacity: 0.7;
}

.breadcrumb-current {
  color: #1a0407;
  font-weight: 700;
}

.catalog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 30px;
  background: rgba(203, 168, 113, 0.12);
  border: 1px solid rgba(203, 168, 113, 0.38);
  color: #7b5924;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(203, 168, 113, 0.08);
}

.catalog-hero-badge span.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #550a12;
  box-shadow: 0 0 10px rgba(85, 10, 18, 0.4);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.catalog-main-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #1a0407;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.catalog-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #544e59;
  font-weight: 500;
  max-width: 900px;
  line-height: 1.65;
}

.catalog-content-section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
}

.catalog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.product-detail-media-card {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(85, 10, 18, 0.05), 0 4px 15px rgba(0, 0, 0, 0.02);
}

.product-detail-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #fdfbf8;
}

.product-detail-meta-bar {
  padding: 16px 24px;
  background: #fbf8f3;
  border-top: 1px solid rgba(203, 168, 113, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: #544e59;
}

.product-detail-meta-bar strong {
  color: #1a0407;
  font-weight: 700;
}

.product-detail-info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-model-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #7b5924;
  background: rgba(203, 168, 113, 0.12);
  border: 1px solid rgba(203, 168, 113, 0.35);
  padding: 5px 16px;
  border-radius: 30px;
  width: fit-content;
}

.product-detail-title {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: #1a0407;
  line-height: 1.3;
  margin: 0;
}

.product-detail-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #7b5924;
  line-height: 1.5;
}

.product-detail-desc {
  font-size: 1rem;
  color: #38343e;
  line-height: 1.85;
  margin: 0;
}

.product-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(203, 168, 113, 0.25);
  border-bottom: 1px solid rgba(203, 168, 113, 0.25);
}

.highlight-box {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.3);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(85, 10, 18, 0.02);
}

.highlight-box-title {
  font-size: 11.5px;
  color: #7b5924;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.highlight-box-val {
  font-size: 14px;
  font-weight: 800;
  color: #1a0407;
}

.product-actions-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.btn-download-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #cba871 0%, #b89255 100%);
  color: #1a0407;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 14px;
  text-decoration: none;
  border: 1.5px solid #dfbe87;
  box-shadow: 0 8px 24px rgba(203, 168, 113, 0.3);
  transition: all 0.28s ease;
}

.btn-download-catalog:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(203, 168, 113, 0.45);
  background: linear-gradient(135deg, #dfbe87 0%, #cba871 100%);
}

.btn-request-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #550a12 0%, #7d121e 100%);
  color: #ffffff;
  border: 1.5px solid #cba871;
  padding: 16px 30px;
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(85, 10, 18, 0.25);
  transition: all 0.28s ease;
  outline: none;
  font-family: inherit;
}

.btn-request-quote:hover {
  transform: translateY(-2px);
  border-color: #dfbe87;
  box-shadow: 0 12px 32px rgba(85, 10, 18, 0.35);
  background: linear-gradient(135deg, #7d121e 0%, #961421 100%);
}

.product-specs-section {
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 18px 50px rgba(85, 10, 18, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
}

.specs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(203, 168, 113, 0.25);
}

.specs-section-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1a0407;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.specs-section-title svg {
  color: #550a12;
}

.specs-model-tag {
  font-size: 0.92rem;
  font-weight: 700;
  color: #7b5924;
  background: rgba(203, 168, 113, 0.12);
  border: 1px solid rgba(203, 168, 113, 0.35);
  padding: 4px 14px;
  border-radius: 20px;
}

.specs-table-wrapper {
  overflow-x: auto;
  border: 1.5px solid rgba(203, 168, 113, 0.3);
  border-radius: 16px;
  background: #ffffff;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: inherit;
  font-size: 0.95rem;
}

.specs-table thead {
  background: linear-gradient(90deg, #550a12 0%, #7d121e 100%);
  color: #ffffff;
  border-bottom: 2px solid #cba871;
}

.specs-table th {
  padding: 18px 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  color: #ffffff;
}

.specs-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(203, 168, 113, 0.18);
  line-height: 1.5;
}

.specs-table tbody tr:nth-child(even) {
  background: rgba(250, 248, 245, 0.65);
}

.specs-table tbody tr:hover {
  background: rgba(203, 168, 113, 0.09);
}

.specs-table tbody tr:last-child td {
  border-bottom: none;
}

.specs-table td:first-child {
  font-weight: 700;
  color: #550a12;
  width: 38%;
}

.specs-table td:last-child {
  font-weight: 600;
  color: #232127;
}

@media (max-width: 1080px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .catalog-hero {
    padding: 40px 0 25px;
  }

  .catalog-hero-container,
  .catalog-container {
    padding: 0 20px;
  }

  .product-specs-section {
    padding: 24px 20px;
  }

  .product-highlights-row {
    grid-template-columns: 1fr;
  }

  .specs-table th,
  .specs-table td {
    padding: 12px 16px;
    font-size: 0.88rem;
  }
}

.product-main-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fdfbf7;
}

.product-detail-main-img {
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}

.media-video-badge-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(85, 10, 18, 0.9);
  color: #cba871;
  border: 1.5px solid rgba(203, 168, 113, 0.6);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(85, 10, 18, 0.35);
  transition: all 0.3s ease;
}

.media-video-badge-pill:hover {
  background: #550a12;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(85, 10, 18, 0.5);
  border-color: #cba871;
}

.media-video-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cba871;
  box-shadow: 0 0 10px #cba871;
  animation: pulse-glow 1.8s infinite;
}

.product-thumbnails-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 4px 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(203, 168, 113, 0.4) transparent;
}

.product-thumbnails-carousel::-webkit-scrollbar {
  height: 4px;
}

.product-thumbnails-carousel::-webkit-scrollbar-thumb {
  background: rgba(203, 168, 113, 0.4);
  border-radius: 4px;
}

.product-thumb-btn {
  flex: 0 0 76px;
  height: 62px;
  padding: 0;
  border: 1.5px solid rgba(203, 168, 113, 0.3);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.product-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb-btn:hover {
  border-color: #b89255;
  transform: translateY(-2px);
}

.product-thumb-btn.is-active {
  border: 2px solid #550a12;
  box-shadow: 0 0 12px rgba(85, 10, 18, 0.25), 0 0 8px rgba(203, 168, 113, 0.4);
  transform: scale(1.04);
}

.product-media-showcase-section {
  margin-top: 48px;
  padding: 40px;
  background: #ffffff;
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(85, 10, 18, 0.05), 0 4px 15px rgba(0, 0, 0, 0.02);
}

.media-showcase-header {
  margin-bottom: 28px;
}

.media-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(203, 168, 113, 0.12);
  border: 1px solid rgba(203, 168, 113, 0.35);
  border-radius: 20px;
  color: #7b5924;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.media-showcase-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #1a0407;
  margin: 0;
  line-height: 1.35;
}

.product-video-card {
  margin-bottom: 36px;
}

.video-card-inner {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #110507;
  border: 1.5px solid rgba(203, 168, 113, 0.35);
  box-shadow: 0 16px 40px rgba(85, 10, 18, 0.12);
}

.video-iframe-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-iframe-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-html5-responsive video {
  width: 100%;
  max-height: 520px;
  display: block;
  background: #000;
}

.product-gallery-section-wrap {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(203, 168, 113, 0.25);
}

.product-gallery-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #550a12;
  margin: 0 0 20px;
}

.product-gallery-heading svg {
  color: #cba871;
}

.product-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.gallery-grid-card {
  position: relative;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #fdfbf7;
  border: 1.5px solid rgba(203, 168, 113, 0.3);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(85, 10, 18, 0.04);
  transition: all 0.3s ease;
}

.gallery-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(85, 10, 18, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cba871;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}

.gallery-grid-card:hover {
  transform: translateY(-4px);
  border-color: #b89255;
  box-shadow: 0 12px 28px rgba(85, 10, 18, 0.12);
}

.gallery-grid-card:hover img {
  transform: scale(1.08);
}

.gallery-grid-card:hover .gallery-card-hover-overlay {
  opacity: 1;
}

.media-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  background: rgba(18, 3, 5, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.media-lightbox-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.media-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  border: 1.5px solid rgba(203, 168, 113, 0.5);
  background: #000;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-lightbox-overlay.is-active .media-lightbox-content {
  transform: scale(1);
}

.media-lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.media-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(203, 168, 113, 0.4);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.media-lightbox-close:hover {
  background: #550a12;
  color: #cba871;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .product-media-showcase-section {
    padding: 24px 18px;
    margin-top: 32px;
  }
  .product-detail-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-grid-card {
    height: 120px;
  }
}

