.product-detail-page img {
  max-width: 100%;
  height: auto;
}

.product-hero-section_outter{
  margin: 0 auto; padding: 0 15px;
  max-width: var(--superx-container-width);
}

.product-hero-section{
  background-color: white; padding: 60px 0;
}

.product-hero-buttons{
  display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px;
}

/* Specification table styles - move caption to top */
.product-specifications table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
  border: 1px solid #e0e0e0;
}

.product-specifications table caption {
  caption-side: top;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: #1a1a1a;
  padding: 0 0 15px 0;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--superx-primary, #103B95);
}

.product-specifications table.has-thead thead th {
  background-color: var(--superx-primary, #103B95);
  color: #fff;
  font-weight: 600;
  padding: 12px 15px;
  text-align: left;
  border-bottom: none;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.product-specifications table.has-thead thead th:last-child {
  border-right: none;
}

/* When no-thead: style thead like normal tbody rows */
.product-specifications table.no-thead thead th {
  background-color: transparent;
  color: #555;
  font-weight: normal;
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.product-specifications table.no-thead thead th:last-child {
  border-right: none;
}

.product-specifications table.no-thead thead tr:hover th {
  background-color: #fafafa;
}

.product-specifications table th,
.product-specifications table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.product-specifications table th:last-child,
.product-specifications table td:last-child {
  border-right: none;
}

.product-specifications table th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #333;
}

.product-specifications table td {
  color: #555;
}

.product-specifications table tr:hover {
  background-color: #fafafa;
}

/* Label column styling (first N columns as label) */
.product-specifications table.has-label-col td.is-label-cell {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #333;
}

.product-specifications table.has-label-col.has-thead thead th.is-label-cell {
  background-color: var(--superx-primary-dark, #0a2a6e);
}

/* When no-thead with label-col: label th cells should look like label td */
.product-specifications table.has-label-col.no-thead thead th.is-label-cell {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #333;
}

/* Table scroll container styles */
.spec-table-wrapper.has-max-width {
  position: relative;
}

.spec-table-scroll-container {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.spec-table-scroll-container table {
  min-width: 100%;
}

/* Scroll indicators */
.scroll-indicator-left,
.scroll-indicator-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.scroll-indicator-left {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
}

.scroll-indicator-right {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.1), transparent);
}

.scroll-indicator-left.visible,
.scroll-indicator-right.visible {
  opacity: 1;
}

/* Scrollbar styling */
.spec-table-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.spec-table-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.spec-table-scroll-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.spec-table-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Highlight cards */
.product-detail-page .product-highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.product-detail-page .product-highlight-card ul {
  list-style: disc;
  padding-left: 20px;
  color: #555;
}

.product-detail-page .product-highlight-card li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* PhotoSwipe Custom Styles */
.pswp__video-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pswp__video-container video {
  max-width: 100%;
  max-height: 100%;
  outline: none;
}

/* PhotoSwipe image styles - maintain aspect ratio */
.pswp__img {
  object-fit: contain !important;
  cursor: move;
}

/* Speed up PhotoSwipe transitions - reduce fade duration */
.pswp {
  --pswp-transition-duration: 200ms;
}

.pswp__bg {
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.22, 1) !important;
}

.pswp .pswp__hide-on-close {
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.22, 1) !important;
}

.pswp__img,
.pswp__zoom-wrap {
  background: transparent!important;
}


/* Responsive */
@media (max-width: 768px) {
  .product-hero-section > div > div {
    flex-direction: column-reverse !important;
  }

  .product-hero-section > div > div > div {
    max-width: 100% !important;
  }

  .product-detail-page h1 {
    font-size: 1.75rem !important;
  }

  .product-detail-page h2 {
    font-size: 1.5rem !important;
  }

  /* Center gallery thumbnails on mobile */
  .product-gallery-thumbnails {
    justify-content: center !important;
    width: 100%;
  }

  .product-gallery-container {
    width: 100% !important;
    text-align: center;
  }

  .product-main-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-cta-buttons .brochure-dropdown-menu {
    bottom: auto;
    top: 100%;
  }
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.product-highlights-section {
  background: #f2f6fd;
  padding: 72px 0 80px;
}

.product-highlights-container {
  max-width: var(--superx-container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.product-highlights-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: 20px;
  color: #0d2660 !important;
  letter-spacing: 0.01em;
  padding-bottom: 10px;
}
.product-highlights-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  border-radius: 2px;
  background: #103B95;
  margin: 12px auto 0;
}

.product-highlights-tip {
  font-size: 1.1rem !important;
  color: #666 !important;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6 !important;
}

.product-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 20px;  /* room for icon overflowing card top */
  padding-right: 20px; /* room for icon overflowing card right */
}

/* 3 cards: 3 columns, full width */
.product-highlights-grid.grid-count-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* 2 cards: 2 columns, centered */
.product-highlights-grid.grid-count-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66%;
  margin-left: auto;
  margin-right: auto;
}

/* 1 card: 1 column, ~1/3 width centered */
.product-highlights-grid.grid-count-1 {
  grid-template-columns: 1fr;
  max-width: 33%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .product-highlights-grid,
  .product-highlights-grid.grid-count-3 { grid-template-columns: repeat(2, 1fr); }
  .product-highlights-grid.grid-count-2,
  .product-highlights-grid.grid-count-1 { max-width: 100%; }
}
@media (max-width: 600px) {
  .product-highlights-grid,
  .product-highlights-grid.grid-count-3,
  .product-highlights-grid.grid-count-2,
  .product-highlights-grid.grid-count-1 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* Card: left blue bar */
.product-highlight-card {
  position: relative;
  overflow: visible;
  background: #ffffff;
  border: 1px solid #dde6f5;
  border-left: 4px solid #b0c0e1;
  border-radius: 10px;
  padding: 22px 20px 20px 20px;
  box-shadow: 0 2px 10px rgba(16, 59, 149, 0.07);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-left-color 0.26s ease;
}
.product-highlight-card::before {
  display: none !important;
}
.product-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(16, 59, 149, 0.15);
  border-left-color: #1a4fba;
}

/* PNG icon: floating outside card top-right */
.product-highlight-card .phc-icon {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 79px;
  height: 79px;
  pointer-events: none;
  background: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  margin: 0;
  opacity: 0.8;
  /*filter: drop-shadow(0 0 1.5px rgba(16, 59, 149, 1))*/
  /*        drop-shadow(0 0 1.5px rgba(16, 59, 149, 1));*/
}

/* 8-icon cycle via nth-child */
.product-highlight-card:nth-child(8n+1) .phc-icon { background-image: url('../images/highlight/highlight_icon_1.png'); }
.product-highlight-card:nth-child(8n+2) .phc-icon { background-image: url('../images/highlight/highlight_icon_2.png'); }
.product-highlight-card:nth-child(8n+3) .phc-icon { background-image: url('../images/highlight/highlight_icon_3.png'); }
.product-highlight-card:nth-child(8n+4) .phc-icon { background-image: url('../images/highlight/highlight_icon_4.png'); }
.product-highlight-card:nth-child(8n+5) .phc-icon { background-image: url('../images/highlight/highlight_icon_5.png'); }
.product-highlight-card:nth-child(8n+6) .phc-icon { background-image: url('../images/highlight/highlight_icon_6.png'); }
.product-highlight-card:nth-child(8n+7) .phc-icon { background-image: url('../images/highlight/highlight_icon_7.png'); }
.product-highlight-card:nth-child(8n+8) .phc-icon { background-image: url('../images/highlight/highlight_icon_8.png'); }

/* Highlight card title */
.product-detail-page .product-highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d2660;
  margin-bottom: 10px;
  line-height: 1.4;
  padding-right: 0;
}

/* Highlight card list */
.product-detail-page .product-highlight-card ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.product-detail-page .product-highlight-card li {
  position: relative;
  padding-left: 13px;
  color: #444444;
  line-height: 1.65;
  margin-bottom: 4px;
}
.product-detail-page .product-highlight-card li::before {
  content: '' !important;
  display: block !important;
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #103B95 !important;
  opacity: 0.55;
}

/* ============================================
   GALLERY STYLES
   ============================================ */
.product-main-image-wrapper {
  position: relative;
  cursor: pointer;
}

.product-main-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.product-main-image-fade {
  opacity: 0;
  transition: opacity 0.3s;
}

.zoom-hint-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
}

.zoom-hint-badge-count {
  margin-left: 5px;
}

.product-gallery-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #ddd;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  transition: border-color 0.3s;
}

.gallery-thumbnail.active {
  border-color: var(--superx-primary, #103B95);
}

.gallery-thumbnail:hover {
  border-color: var(--superx-primary, #103B95);
  opacity: 0.8;
}

.gallery-thumbnail-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-thumbnail-video-bg {
  width: 100%;
  height: 100%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumbnail-video-bg i {
  color: white;
  font-size: 16px;
}

.thumb-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

.thumb-video-icon i {
  font-size: 16px;
}

.product-gallery-data {
  display: none;
}

.product-gallery-disclaimer {
  font-size: 0.75rem;
  color: #666;
  margin-top: 10px;
  display: block;
  text-align: center;
}

/* ============================================
   Product Page Styles - Extracted from Twig
   =================================== */

/* Product Hero Section */
.product-hero-section .product-hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.product-hero-section .product-hero-info,
.product-hero-section .product-hero-gallery {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}

.product-hero-section .product-hero-title {
  font-size: 3rem !important;
  font-weight: 500;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.product-hero-section .product-hero-description {
  font-size: 1.2rem !important;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

/* Product Gallery */
.product-hero-section .product-gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.product-hero-section .product-gallery-container {
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.product-hero-section .product-main-image-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-block;
  min-height: 200px;
  border-radius: 8px;
}

.product-hero-section .product-main-image-wrapper img {
  transition: opacity 0.3s ease;
}

.product-hero-section .product-main-image-wrapper:hover img {
  opacity: 0.9;
}

.product-hero-section .product-main-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-hero-section .product-main-image[onload] {
  opacity: 1;
}

.product-hero-section .zoom-hint-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px !important;
  pointer-events: none;
  transition: background 0.3s ease;
}

.product-hero-section .product-main-image-wrapper:hover .zoom-hint-badge {
  background: rgba(0,0,0,0.8);
}

.product-hero-section .zoom-hint-count {
  margin-left: 5px;
}

.product-hero-section .product-gallery-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-hero-section .gallery-thumbnail {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

.product-hero-section .gallery-thumbnail:hover {
  border-color: var(--superx-primary, #103B95) !important;
  transform: scale(1.05);
}

.product-hero-section .gallery-thumbnail.active {
  border-color: var(--superx-primary, #103B95) !important;
}

.product-hero-section .gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.product-hero-section .gallery-thumbnail:hover img {
  opacity: 0.85;
}

.product-hero-section .product-gallery-disclaimer {
  font-size: 0.75rem !important;
  color: #666;
  margin-top: 10px;
  font-style: italic;
  display: block;
  text-align: center;
}

/* Video Elements */
.product-hero-section .thumb-video-bg {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.product-hero-section .thumb-video-bg i {
  color: white;
  font-size: 16px !important;
}

.product-hero-section .thumb-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 0 3px rgba(0,0,0,0.8);
}

.product-hero-section .thumb-video-icon i {
  font-size: 16px !important;
}

.product-hero-section .video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.9);
  opacity: 0.8;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.product-hero-section .video-play-overlay i {
  font-size: 64px !important;
}

.product-hero-section .product-main-image-wrapper:hover .video-play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.product-hero-section .video-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 8px;
}

.product-hero-section .video-placeholder i {
  font-size: 64px !important;
  margin-bottom: 10px;
}

.product-hero-section .video-placeholder span {
  font-size: 14px !important;
  opacity: 0.8;
}

/* Datasheet Dropdown in Hero Section */
.product-hero-section .product-datasheet-dropdown {
  position: relative;
  display: inline-block;
}

.product-hero-section .datasheet-dropdown-toggle {
  cursor: pointer;
}

.product-hero-section .datasheet-dropdown-icon {
  margin-left: 5px;
}

.product-hero-section .datasheet-dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  top: 100%;
  left: 0;
  margin-top: 5px;
  border: 1px solid #ddd;
}

.product-hero-section .datasheet-dropdown-menu.show {
  display: block;
}

.product-hero-section .datasheet-dropdown-link {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.product-hero-section .datasheet-dropdown-link:last-child {
  border-bottom: none;
}

.product-hero-section .datasheet-dropdown-link:hover {
  background-color: #f1f1f1;
}

/* Brochure Dropdown in Hero Section */
.product-hero-section .product-brochure-dropdown {
  position: relative;
  display: inline-block;
}

.product-hero-section .brochure-dropdown-toggle {
  cursor: pointer;
}

.product-hero-section .brochure-dropdown-icon {
  margin-left: 5px;
}

.product-hero-section .brochure-dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  top: 100%;
  left: 0;
  margin-top: 5px;
  border: 1px solid #ddd;
}

.product-hero-section .brochure-dropdown-menu.show {
  display: block;
}

.product-hero-section .brochure-dropdown-link {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.product-hero-section .brochure-dropdown-link:last-child {
  border-bottom: none;
}

.product-hero-section .brochure-dropdown-link:hover {
  background-color: #f1f1f1;
}

/* Highlight Section */
.product-highlight-section {
  background-color: #f7faff;
  padding: 60px 0;
}

.product-highlight-section .product-highlight-container {
  max-width: var(--superx-container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.product-highlight-section .product-highlight-title {
  font-size: 2rem !important;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.product-highlight-section .product-highlight-tip {
  font-size: 1.1rem !important;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.product-highlight-section .product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-highlight-section .product-highlight-card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-highlight-section .product-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Highlight card内部样式 */
.product-highlight-section .product-highlight-card h3 {
  font-size: 1.25rem !important;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.product-highlight-section .product-highlight-card p {
  font-size: 1rem !important;
  line-height: 1.6;
  color: #555;
}

.product-highlight-section .product-highlight-card ul {
  list-style: disc;
  padding-left: 20px;
  color: #555;
}

.product-highlight-section .product-highlight-card li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.95rem !important;
}

/* Specifications Section */
.product-spec-section {
  background-color: white;
  padding: 60px 0;
}

.product-spec-section .product-spec-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.product-spec-section .product-spec-title {
  font-size: 2rem !important;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
  text-align: center;
}

.product-spec-section .spec-table-wrapper {
  border-radius: 8px;
  padding: 20px;
}

/* CTA Section */
.product-cta-section {
  background-color: #f7faff;
  padding: 80px 0;
  text-align: center;
}

.product-cta-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.product-cta-section .cta-title {
  font-size: 1.85rem !important;
  font-weight: 600 !important;
  margin-bottom: 15px;
  color: #1a1a1a !important;
}

.product-cta-section .cta-description {
  font-size: 1.2rem !important;
  color: #666 !important;
  margin: 0 auto 30px auto;
  line-height: 1.6 !important;
  width: 60%;
}
.product-cta-section .cta-description span{
  white-space: nowrap;
}

.product-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Datasheet dropdown in CTA section - bottom positioning */
.product-cta-section .datasheet-dropdown {
  position: relative;
  display: inline-block;
}

.product-cta-section .datasheet-dropdown-toggle {
  cursor: pointer;
}

.product-cta-section .datasheet-dropdown-toggle-icon {
  margin-left: 5px;
}

.product-cta-section .datasheet-dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.product-cta-section .datasheet-dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.product-cta-section .datasheet-dropdown-menu a:last-child {
  border-bottom: none;
}

.product-cta-section .datasheet-dropdown-menu a:hover {
  background-color: #f1f1f1;
}

/* Bottom menu variant */
.product-cta-section .datasheet-dropdown-menu-bottom {
  bottom: 100%;
  top: auto;
  margin-bottom: 5px;
}

.product-cta-section .datasheet-dropdown-menu.show {
  display: block;
}

/* Brochure dropdown in CTA section - bottom positioning */
.product-cta-section .brochure-dropdown {
  position: relative;
  display: inline-block;
}

.product-cta-section .brochure-dropdown-toggle {
  cursor: pointer;
}

.product-cta-section .brochure-dropdown-toggle-icon {
  margin-left: 5px;
}

.product-cta-section .brochure-dropdown-menu {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 100;
  margin-bottom: 5px;
}

.product-cta-section .brochure-dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}

.product-cta-section .brochure-dropdown-menu a:last-child {
  border-bottom: none;
}

.product-cta-section .brochure-dropdown-menu a:hover {
  background-color: #f5f5f5;
}

/* Datasheet dropdown styles - CTA section */
.product-cta-section .datasheet-dropdown {
  position: relative;
  display: inline-block;
}

.product-cta-section .datasheet-dropdown-toggle {
  cursor: pointer;
}

.product-cta-section .datasheet-dropdown-toggle-icon {
  margin-left: 5px;
}

.product-cta-section .datasheet-dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.product-cta-section .datasheet-dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}

.product-cta-section .datasheet-dropdown-menu a:last-child {
  border-bottom: none;
}

.product-cta-section .datasheet-dropdown-menu a:hover {
  background-color: #f5f5f5;
}

/* Utility Classes */
.product-gallery-data {
  display: none !important;
}

/* ===================================
   End Product Page Extracted Styles
   =================================== */

