.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;
}


/* 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-color: #f7faff;
  padding: 60px 0;
}
.site-type-jp .product-highlights-section{
  background-color: #f7f7f7;
}

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

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

.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(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

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

.product-highlight-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   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;
}

/* 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;
}

/* 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;
}

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

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

/* ===================================
   JP Site Specific Button Styles for Product Page
   =================================== */

/* Hero Section Buttons - Primary Button */
.site-type-jp .product-hero-buttons .btn-superx-primary,
.site-type-jp .product-cta-buttons .btn-superx-primary
{
  border: 1px solid var(--superx-primary);
  border-radius: 50px;
  display: inline-block;
  padding: 8px 26px;
  background: var(--jp-gradient-primary);
  color: #fff;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.site-type-jp .product-hero-buttons .btn-superx-primary:hover,
.site-type-jp .product-cta-buttons .btn-superx-primary:hover
{
  text-decoration: none;
  opacity: 0.9;
}

.site-type-jp .product-hero-buttons .btn-superx-primary::after,
.site-type-jp .product-cta-buttons .btn-superx-primary::after
{
  content: "\f133"; /* bi-arrow-right-circle-fill */
  font-family: bootstrap-icons !important;
  margin-left: 7px;
  vertical-align: text-top;
  font-size: 1.2rem;
  padding-right: 3px;
  transition: all 0.3s ease;
}

.site-type-jp .product-hero-buttons .btn-superx-primary:hover::after,
.site-type-jp .product-cta-buttons .btn-superx-primary:hover::after
{
  margin-left: 10px;
  padding-right: 0px;
}

/* Hero Section Buttons - Outline Button */
.site-type-jp .product-hero-buttons .btn-superx-outline,
.site-type-jp .product-cta-buttons .btn-superx-outline
{
  border: 1px solid var(--superx-primary);
  border-radius: 50px;
  display: inline-block;
  padding: 8px 26px;
  background: linear-gradient(90deg, #103b95, #07868a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.site-type-jp .product-hero-buttons .btn-superx-outline:hover,
.site-type-jp .product-cta-buttons .btn-superx-outline:hover
{
  text-decoration: none;
  background: var(--jp-gradient-primary);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.site-type-jp .product-hero-buttons .btn-superx-outline::after,
.site-type-jp .product-cta-buttons .btn-superx-outline::after
{
  content: "\f133"; /* bi-arrow-right-circle-fill */
  font-family: bootstrap-icons !important;
  margin-left: 7px;
  vertical-align: text-top;
  font-size: 1.2rem;
  padding-right: 3px;
  transition: all 0.3s ease;
}

.site-type-jp .product-hero-buttons .btn-superx-outline:hover::after,
.site-type-jp .product-cta-buttons .btn-superx-outline:hover::after{
  margin-left: 10px;
  padding-right: 0px;
}

.site-type-jp .product-hero-buttons .btn-superx-outline.brochure-dropdown-toggle .brochure-dropdown-icon,
.site-type-jp .product-cta-buttons .btn-superx-outline.brochure-dropdown-toggle .brochure-dropdown-toggle-icon {
  display:none!important;
}

.site-type-jp .product-hero-buttons .btn-superx-outline.brochure-dropdown-toggle::after,
.site-type-jp .product-cta-buttons .btn-superx-outline.brochure-dropdown-toggle::after {
  content: "\f118";
  font-size:1.3rem;
}

@media (max-width: 768px){
  .product-hero-gallery{
    margin-left:auto;
    margin-right:auto;
  }
}

/* ===================================
   JP Site Specific Highlights Styles
   =================================== */

/* Highlights Section - JP Site */
.site-type-jp .product-highlights-section {
  background-color: #f7f7f7;
  padding-bottom: 60px;
}

.site-type-jp .product-highlights-container {
  margin: 0 auto;
  padding: 30px 0;
  border-radius: 16px;
  max-width: var(--superx-container-width);
}

.site-type-jp .product-highlights-title {
  color: #1a1a1a !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'YuGothic', sans-serif;
}

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

.site-type-jp .product-highlights-grid{
  background: #fff;
  border-radius:30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px 35px 35px 35px;
}

/* Highlight Card Styles */
.site-type-jp .product-highlight-card {
  height: 100%;
  width: 100%;
  text-align: center;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding:0;
  box-shadow: none;
}

/* Feature Icon Container - 使用 ::before 伪元素显示图标 */
.site-type-jp .product-highlight-card::before {
  content: '';
  display: block;
  width: 150px;
  height: 150px;
  z-index: 2;
  margin-bottom: -60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Icon 1 - 使用 nth-child 为每个卡片设置不同图标 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(1)::before {
  background-image: url('../images/highlight/highlight_icon_1.png');
}

/* Icon 2 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(2)::before {
  background-image: url('../images/highlight/highlight_icon_2.png');
}

/* Icon 3 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(3)::before {
  background-image: url('../images/highlight/highlight_icon_3.png');
}

/* Icon 4 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(4)::before {
  background-image: url('../images/highlight/highlight_icon_4.png');
}

/* Icon 5 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(5)::before {
  background-image: url('../images/highlight/highlight_icon_5.png');
}

/* Icon 6 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(6)::before {
  background-image: url('../images/highlight/highlight_icon_6.png');
}

/* Icon 7 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(7)::before {
  background-image: url('../images/highlight/highlight_icon_7.png');
}

/* Icon 8 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(8)::before {
  background-image: url('../images/highlight/highlight_icon_8.png');
}

/* Icon 9 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(9)::before {
  background-image: url('../images/highlight/highlight_icon_9.png');
}

/* Icon 10+ - 超过 9 个统一使用 icon 1 */
.site-type-jp .product-highlights-grid > .product-highlight-card:nth-child(n+10)::before {
  background-image: url('../images/highlight/highlight_icon_1.png');
}

/* Feature Content Area */
.site-type-jp .product-highlight-card > div {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(140deg, #103B95 5.09%, #07868A 98.86%);
  padding: 70px 20px 0 20px;
  display: flex;
  flex-direction: column;
}

/* Feature Title */
.site-type-jp .product-highlight-card h3,
.site-type-jp .product-highlight-card .field--name-field-highlight h3 {
  color: #fff !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  font-family: 'YuGothic', sans-serif;
  text-align: center;
}

/* Feature List */
.site-type-jp .product-highlight-card ul,
.site-type-jp .product-highlight-card .field--name-field-highlight ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
  margin: 0;
  width: 100%;
}

.site-type-jp .product-highlight-card li,
.site-type-jp .product-highlight-card .field--name-field-highlight li {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  text-align: left;
  margin-bottom: 8px;
}

/* Feature Paragraph Text */
.site-type-jp .product-highlight-card p,
.site-type-jp .product-highlight-card .field--name-field-highlight p {
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  text-align: left;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .site-type-jp .product-highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-type-jp .product-highlight-card {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .site-type-jp .product-highlights-container {
    padding: 20px;
    margin: 0 8px;
    border-radius: 16px;
  }

  .site-type-jp .product-highlight-card::before {
    width: 120px;
    height: 120px;
    margin-bottom: -50px;
  }

  .site-type-jp .product-highlight-card > div {
    padding-top: 60px;
  }

  .site-type-jp .product-highlight-card h3,
  .site-type-jp .product-highlight-card .field--name-field-highlight h3 {
    font-size: 20px !important;
  }

  .site-type-jp .product-highlight-card li,
  .site-type-jp .product-highlight-card .field--name-field-highlight li,
  .site-type-jp .product-highlight-card p,
  .site-type-jp .product-highlight-card .field--name-field-highlight p {
    font-size: 14px !important;
  }
}

/* ===================================
   End JP Site Specific Highlights Styles
   =================================== */


