/* ================================================
   PHOSPHOROUS BRONZE FASTENERS SPECIFICATIONS PAGE
   Glassmorphism Data Tables & Layouts
   ================================================ */

/* ── PAGE HERO ── */
.spec-hero {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.spec-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.spec-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.15) 0%, var(--bg) 80%);
}
.spec-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.spec-hero p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ── SPECIFICATIONS LAYOUT ── */
.spec-page {
  max-width: 1200px;
  margin: 0 auto;
}

/* Glass Panels for tables */
.spec-panel {
  background: rgba(8, 16, 32, 0.5);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 40px);
  margin-bottom: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.spec-panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  border-bottom: 1px solid var(--line-accent);
  padding-bottom: 16px;
}
.spec-panel-title svg {
  stroke: var(--accent-soft);
  width: 24px;
  height: 24px;
}

/* ── DATA TABLES (Glassmorphism) ── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(255, 255, 255, 0.05);
  margin-top: 15px;
}
.table-responsive::-webkit-scrollbar {
  height: 6px;
}
.table-responsive::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.glass-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  min-width: 600px;
}
.glass-table th, .glass-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.glass-table th {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  white-space: nowrap;
}
.glass-table th:first-child { border-top-left-radius: 8px; }
.glass-table th:last-child { border-top-right-radius: 8px; }

.glass-table tbody tr {
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.01);
}
.glass-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.08);
  box-shadow: inset 0 0 20px rgba(37, 99, 235, 0.05);
}
.glass-table td {
  color: var(--text-secondary);
  line-height: 1.6;
}
.glass-table td strong {
  color: var(--text);
  font-weight: 600;
}

/* ── TWO COLUMN LISTS ── */
.spec-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.spec-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s;
}
.spec-list-item:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--line-accent);
  color: var(--text);
  transform: translateX(4px);
}
.spec-list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 10px var(--accent-bright);
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .spec-panel { padding: 20px 16px; }
  .spec-panel-title { font-size: 18px; }
  .glass-table { font-size: 13px; }
  .glass-table th, .glass-table td { padding: 12px 14px; }
  .spec-hero h1 { font-size: 28px; }
}
