/* Product Specification Table */
table {
  width: 100% !important;
  margin: 25px 0 !important;
  border: 1px solid #e2e5e8 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.08) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  table-layout: fixed !important;
}

/* Table Header */
table thead {
  background: linear-gradient(135deg, #111820 0%, #26333e 100%) !important;
}

table thead tr,
table thead tr.firstRow {
  background: transparent !important;
}

table thead th {
  padding: 18px 24px !important;
  border: 0 !important;
  border-bottom: 3px solid #f5b400 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.5px !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

table thead th:first-child {
  width: 48% !important;
}

table thead th:last-child {
  width: 52% !important;
  text-align: right !important;
}

/* Table Body */
table tbody tr {
  background: #ffffff !important;
  transition: background-color 0.25s ease !important;
}

table tbody tr:nth-child(even) {
  background: #f6f7f8 !important;
}

table tbody tr:hover {
  background: rgba(245, 180, 0, 0.12) !important;
}

/* Highlight Model Row */
table tbody tr:first-child {
  background: rgba(245, 180, 0, 0.16) !important;
}

table tbody tr:first-child td {
  color: #111820 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

/* Table Cells */
table tbody td {
  padding: 16px 24px !important;
  border: 0 !important;
  border-bottom: 1px solid #e3e6e9 !important;
  background: transparent !important;
  color: #505a64 !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  vertical-align: middle !important;
}

table tbody tr:last-child td {
  border-bottom: 0 !important;
}

/* Parameter Name */
table tbody td:first-child {
  position: relative !important;
  padding-left: 40px !important;
  color: #202932 !important;
  font-weight: 700 !important;
  text-align: left !important;
}

table tbody td:first-child::before {
  position: absolute !important;
  top: 50% !important;
  left: 24px !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #f5b400 !important;
  content: "" !important;
  transform: translateY(-50%) !important;
}

/* Specification Value */
table tbody td:last-child {
  color: #27323c !important;
  font-weight: 600 !important;
  text-align: right !important;
}

/* Mobile */
@media screen and (max-width: 767px) {
  table {
    margin: 18px 0 !important;
    border-radius: 8px !important;
    table-layout: auto !important;
  }

  table thead th {
    padding: 14px 12px !important;
    font-size: 12px !important;
  }

  table tbody td {
    padding: 13px 12px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
  }

  table tbody td:first-child {
    width: 48% !important;
    padding-left: 27px !important;
  }

  table tbody td:first-child::before {
    left: 12px !important;
  }

  table tbody td:last-child {
    width: 52% !important;
  }
}