.custom-specs-table table {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #024268;
}

.custom-specs-table table th,
.custom-specs-table table td {
  text-align: center;
  vertical-align: middle;
  color: #024268;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.custom-specs-table table th {
  background-color: #f9f9f9;
  font-weight: bold;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .custom-specs-table table {
    font-size: 14px;
  }

  .custom-specs-table table th,
  .custom-specs-table table td {
    padding: 6px 8px;
    font-size: 13px;
  }

}
/* Extra small screens (like 400px and below) */
@media (max-width: 400px) {
  .custom-specs-table table {
    font-size: 12px;
  }

  .custom-specs-table table th,
  .custom-specs-table table td {
    padding: 4px 6px;
    font-size: 11px;
  }
}
.custom-specs-wrapper {
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.custom-specs-wrapper.collapsed {
  max-height: 400px; /* adjust based on average rows */
}

.custom-specs-wrapper.expanded {
  max-height: 3000px; /* just needs to be big enough */
}

.custom-specs-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, white 40%, transparent);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.custom-specs-wrapper.expanded::after {
  opacity: 0;
}
.product-specs-section h2 {
    color:  #024268;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;   
}