/* Table Styling for Product Pages */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Table Headers */
.spec-table th {
  background-color: #002b45;
  color: #ffffff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border: 1px solid #dcdcdc;
  white-space: nowrap;
}

/* Table Cells */
.spec-table td {
  padding: 12px 16px;
  color: #333333;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

/* Responsive Scroll Wrapper */
.table-wrapper,
.product-tables {
  overflow-x: auto;
  width: 100%;
  margin-top: 15px;
}

/* Table Section Title */
.table-title {
  margin-top: 50px;
  font-size: 28px;
  font-weight: bold;
  color: #002b45;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .spec-table {
    font-size: 14px;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px 12px;
  }

  .table-title {
    font-size: 22px;
  }
}
.related-searches {
  margin-top: 40px;
}

.related-searches h3 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.related-searches p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.product-buttons a {
  display: inline-block;
  margin: 6px 8px 6px 0;
  padding: 10px 16px;
  text-decoration: none;
}

.product-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Changed from 3 to 2 columns for 50-50 design */
  gap: 16px;
  margin: 20px 0 32px 0;
}

.product-buttons .btn {
  display: block;
  text-align: center;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #002b45;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-buttons .btn:hover {
  background-color: #f0d018;
}
@media (max-width: 900px) {
  .product-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-buttons {
    grid-template-columns: 1fr;
  }
}

