/* Product Detail Page Styles */

/* Feature icons section */
.feature-icons-section {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Hidden data containers */
.hidden-data {
  display: none;
}

/* Service icon container */
.service-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #1e4cd2;
  border-radius: 50%;
  margin: 0 auto 15px;
}

/* Service icon image */
.service-icon-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Service icon text */
.service-icon-text {
  font-size: 14px;
}

/* Download modal submit button */
#submitDownloadForm {
  border-radius: 5px;
}

.spec-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #0066cc;
  margin: 0 0 1rem 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Desktop styles: fixed table layout with equal columns */
.spec-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  table-layout: fixed;
}

.spec-table td {
  padding: 10px 15px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  color: #333;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spec-table tr:nth-child(odd) td {
  background-color: #f5f5f5;
}

.spec-table tr:nth-child(even) td {
  background-color: white;
}

.spec-table tr:first-child td {
  background-color: #f5f5f5 !important;
  color: #666;
  font-weight: 400;
}

/* Main media content container */
#mainMediaContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Main product image */
#mainMediaContent img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Video thumbnail image */
.video-placeholder img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Lightbox video placeholder */
.video-placeholder-lightbox {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-placeholder-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Service policy cards on mobile */
@media (max-width: 767px) {
  #product-service .service-card-skeleton {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 20px 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto 20px auto;
    max-width: calc(100% - 30px);
  }
  
  #product-service .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  #product-service .col-md-3 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Mobile scroll indicator */
.specs-scroll-wrapper {
  width: 100%;
}

@media (max-width: 767px) {
  .spec-table-wrapper {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .spec-table {
    table-layout: auto !important;
    width: auto !important;
    min-width: 100%;
  }
  
  .spec-table td {
    white-space: nowrap;
    min-width: auto !important;
    width: auto !important;
  }
  
  
}