/* Product Detail Page - Clean Styles */

/* Page background - white */
.product-detail {
  background: #ffffff !important;
}

/* Top Section - Two Column + Light Gray Background */
.product-top-section {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 40px !important;
  margin-bottom: 30px !important;
  align-items: start !important;
  background: #f0f2f5 !important;
  padding: 30px !important;
  border-radius: 8px !important;
}

/* Back Button */
.product-back-btn {
  margin-bottom: 10px;
}

.btn-back {
  color: #0a2540;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.btn-back:hover {
  color: #ff6b35;
}

.product-gallery-section {
  width: 100% !important;
}

/* Gallery - white card background + arrows + zoom */
.gallery-main-wrapper {
  background: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  margin-bottom: 15px !important;
  position: relative !important;
  padding: 20px !important;
}

.main-image {
  aspect-ratio: auto !important;
  background: #ffffff !important;
  padding: 20px !important;
  min-height: 450px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: zoom-in !important;
}

.main-image img {
  max-width: 100% !important;
  max-height: 450px !important;
  object-fit: contain !important;
}

.gallery-zoom-hint {
  display: none !important;
}

/* Gallery arrows */
.gallery-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: none !important;
  color: #333 !important;
  font-size: 24px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
  transition: all 0.3s ease !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.gallery-arrow:hover {
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25) !important;
}

.gallery-prev {
  left: 15px !important;
}

.gallery-next {
  right: 15px !important;
}

.gallery-counter {
  display: none !important;
}

.product-info-section {
  width: 100% !important;
}

/* OEM Badge */
.product-oem-badge {
  display: inline-block !important;
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

.product-model-text {
  color: #666666 !important;
  font-size: 14px !important;
  margin-bottom: 8px !important;
}

.product-name-title {
  color: #0a2540 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
}

.product-category-text {
  color: #666666 !important;
  font-size: 15px !important;
  margin-bottom: 20px !important;
}

.product-desc-text {
  color: #444444 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin-bottom: 25px !important;
}

.product-desc-text p {
  margin: 0 !important;
}

/* MOQ Block */
.product-moq-block {
  background: #fff8f5 !important;
  padding: 20px 25px !important;
  border-radius: 8px !important;
  margin-bottom: 20px !important;
  border-left: 4px solid #ff6b35 !important;
}

.moq-label-text {
  color: #666666 !important;
  font-size: 13px !important;
  margin-bottom: 8px !important;
}

.moq-value-text {
  color: #ff6b35 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

/* Features Brief */
.product-features-brief {
  margin-bottom: 30px !important;
}

.features-brief-label {
  color: #0a2540 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
}

.features-brief-items {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.features-brief-items li {
  padding: 6px 0 !important;
  color: #444444 !important;
  font-size: 14px !important;
  padding-left: 20px !important;
  position: relative !important;
}

.features-brief-items li::before {
  content: "✓" !important;
  color: #ff6b35 !important;
  position: absolute !important;
  left: 0 !important;
  font-weight: bold !important;
}

/* Action Buttons */
.product-action-btns {
  display: flex !important;
  gap: 15px !important;
}

.btn-inquire-now,
.btn-request-sample {
  padding: 14px 30px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  flex: 1 !important;
}

.btn-inquire-now {
  background: #ff6b35 !important;
  color: #ffffff !important;
}

.btn-inquire-now:hover {
  background: #e55a2b !important;
}

.btn-request-sample {
  background: transparent !important;
  color: #0a2540 !important;
  border: 2px solid #0a2540 !important;
}

.btn-request-sample:hover {
  background: #0a2540 !important;
  color: #ffffff !important;
}

/* Section Heading */
.section-heading {
  color: #0a2540 !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  text-align: left !important;
  margin-bottom: 30px !important;
  margin-top: 0 !important;
}

/* Product Specs */
.product-specs-section {
  margin-bottom: 50px !important;
  padding-top: 40px !important;
}

.specs-table-simple {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
  table-layout: fixed !important;
  border: 1px solid #e3e8ee !important;
}

.specs-table-simple td {
  padding: 16px 20px !important;
  border: 1px solid #e3e8ee !important;
  font-size: 15px !important;
  text-align: center !important;
}

.specs-table-simple .spec-label {
  color: #666666 !important;
  font-weight: 500 !important;
  width: 35% !important;
  background: #fafbfd !important;
}

.specs-table-simple .spec-value {
  color: #0a2540 !important;
  font-weight: 600 !important;
}

.specs-table-simple tr:last-child td {
  border-bottom: 1px solid #e3e8ee !important;
}

/* OEM Service */
.oem-service-section {
  margin-bottom: 60px !important;
  text-align: center !important;
  background: #0a2540 !important;
  padding: 50px 30px !important;
  border-radius: 8px !important;
}

.oem-service-section .section-heading {
  color: #ffffff !important;
}

.oem-title-large {
  color: #ffffff !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
}

.oem-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 16px !important;
  margin-bottom: 40px !important;
  text-align: center !important;
}

.oem-grid-4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  text-align: center !important;
}

.oem-item {
  text-align: center !important;
}

.oem-item-icon {
  font-size: 40px !important;
  margin-bottom: 15px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 70px !important;
  height: 70px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.oem-item-icon svg {
  display: block !important;
  width: 28px !important;
  height: 28px !important;
}

.oem-item-title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
}

.oem-item-desc {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  text-align: center !important;
}

/* Key Features */
.key-features-section {
  margin-bottom: 50px !important;
}

.key-features-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}

.key-feature-item {
  padding: 25px !important;
  background: #f0f2f5 !important;
  border-radius: 10px !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  gap: 18px !important;
}

.key-feature-icon {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  flex-shrink: 0 !important;
  background: #fff0eb !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: left !important;
}

.key-feature-icon svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
}

.key-feature-content {
  flex: 1 !important;
  flex-grow: 1 !important;
  min-width: 0 !important;
  text-align: left !important;
}

.key-feature-title {
  color: #0a2540 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.key-feature-desc {
  color: #666666 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Packaging - New 2x2 Layout */
.packaging-section-new {
  margin-bottom: 50px !important;
}

.packaging-section-new .section-heading {
  text-align: left !important;
  margin-bottom: 25px !important;
}

.packaging-grid-2x2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}

.packaging-card-new {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  background: #f0f2f5 !important;
  padding: 20px !important;
  border-radius: 8px !important;
}

.packaging-card-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  background: #d9dee3 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.packaging-card-icon svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
}

.packaging-card-content {
  flex: 1 !important;
}

.packaging-card-label {
  color: #666666 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 5px !important;
}

.packaging-card-value {
  color: #0a2540 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

.packaging-label {
  color: #666666 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0 !important;
  flex-shrink: 0 !important;
}

.packaging-value {
  color: #0a2540 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: right !important;
}

/* Customization Options - New 5-column Layout */
.customization-options-section-new {
  margin-bottom: 50px !important;
}

.customization-options-section-new .section-heading {
  text-align: left !important;
  margin-bottom: 25px !important;
}

.customization-grid-5 {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 15px !important;
}

.custom-card-new {
  min-width: 0 !important;
  background: #f0f2f5 !important;
  padding: 25px 15px !important;
  border-radius: 8px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.custom-card-icon {
  width: 50px !important;
  height: 50px !important;
  background: #fff0eb !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 15px !important;
}

.custom-card-icon svg {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
}

.custom-card-title {
  color: #0a2540 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

.custom-card-desc {
  color: #666666 !important;
  font-size: 13px !important;
}

/* Leadtime */
.leadtime-section {
  margin-bottom: 60px !important;
}

.leadtime-grid-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.leadtime-item {
  text-align: center !important;
  padding: 30px 20px !important;
  background: #0a2540 !important;
  border-radius: 8px !important;
}

.leadtime-label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  margin-bottom: 12px !important;
}

.leadtime-value {
  color: #ff6b35 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

/* Lead time - compact, responsive information cards */
.leadtime-section-new {
  margin: 58px 0 50px !important;
}

.leadtime-section-new .section-heading {
  text-align: left !important;
  margin-bottom: 22px !important;
}

.leadtime-grid-3-new {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.leadtime-card-new {
  min-width: 0 !important;
  min-height: 116px !important;
  background: #f7f9fc !important;
  border: 1px solid #e8edf3 !important;
  padding: 22px !important;
  border-radius: 10px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.leadtime-card-icon {
  flex: 0 0 46px !important;
  width: 46px !important;
  height: 46px !important;
  background: #fff0e9 !important;
  color: #ff6b35 !important;
  border-radius: 9px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.leadtime-card-icon .line-icon {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
}

.leadtime-card-copy {
  min-width: 0 !important;
  padding-top: 1px !important;
}

.leadtime-card-label {
  display: block !important;
  color: #65768a !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 7px !important;
}

.leadtime-card-value {
  display: block !important;
  color: #0a2540 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  overflow-wrap: anywhere !important;
}

.leadtime-note {
  color: #718094 !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  margin-top: 13px !important;
}

/* Related Products */
.related-products-section {
  margin-bottom: 60px !important;
}

.related-subtitle {
  text-align: center !important;
  color: #666666 !important;
  font-size: 16px !important;
  margin-top: -25px !important;
  margin-bottom: 35px !important;
}

/* Bottom CTA */
.bottom-cta-section {
  text-align: center !important;
  padding: 60px 40px !important;
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%) !important;
  border-radius: 16px !important;
  margin-bottom: 60px !important;
}

.bottom-cta-title {
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  margin-bottom: 15px !important;
}

.bottom-cta-text {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 16px !important;
  margin-bottom: 30px !important;
}

.bottom-cta-btn {
  display: inline-block !important;
  padding: 16px 40px !important;
  background: #ff6b35 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.bottom-cta-btn:hover {
  background: #e55a2b !important;
  transform: translateY(-2px) !important;
}

/* Ensure lightbox is hidden */
.lightbox {
  display: none !important;
}

.lightbox.active {
  display: flex !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .customization-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 850px) {
  .leadtime-grid-3-new {
    grid-template-columns: 1fr !important;
  }

  .leadtime-card-new {
    min-height: 0 !important;
  }
}

@media (max-width: 768px) {
  .customization-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-top-section {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .oem-grid-4,
  .packaging-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .customization-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 360px) {
  .customization-grid-5 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .product-name-title {
    font-size: 24px !important;
  }
  
  .product-action-btns {
    flex-direction: column !important;
  }
  
  .section-heading {
    font-size: 22px !important;
  }
  
  .oem-title-large {
    font-size: 28px !important;
  }
  
  .key-features-grid,
  .leadtime-grid-3 {
    grid-template-columns: 1fr !important;
  }
  
  .oem-grid-4,
  .packaging-grid-4,
  .customization-options-grid {
    grid-template-columns: 1fr !important;
  }
  
  .bottom-cta-title {
    font-size: 24px !important;
  }
  
  .bottom-cta-section {
    padding: 40px 20px !important;
  }
}
