
/* ===== Aozhong Abrasive Application Selection Table ===== */
.az-abapp-section {
  width: 100%;
  padding: 40px 20px;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.az-abapp-container {
  max-width: 1180px;
  margin: 0 auto;
}

.az-abapp-head {
  max-width: 900px;
  margin-bottom: 36px;
}

.az-abapp-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #7a3cc8;
}

.az-abapp-head h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #101820;
}

.az-abapp-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #5f6b76;
}

/* Table Wrapper */
.az-abapp-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(16,24,32,0.08);
  box-shadow: 0 18px 45px rgba(16,24,32,0.08);
}

/* Table */
.az-abapp-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.az-abapp-table thead th {
  padding: 20px 22px;
  background: #101820;
  color: #ffffff;
  text-align: left;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.az-abapp-table thead th:last-child {
  border-right: none;
}

.az-abapp-table tbody tr {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.az-abapp-table tbody tr:hover {
  box-shadow: inset 4px 0 0 #7a3cc8;
}

.az-abapp-table tbody td {
  padding: 22px 22px;
  vertical-align: top;
  color: #5f6b76;
  font-size: 15px;
  line-height: 1.68;
  border-bottom: 1px solid #e8edf1;
  border-right: 1px solid #eef2f5;
  background: #ffffff;
  transition: background 0.3s ease;
}

.az-abapp-table tbody tr:hover td {
  background: #fbf9ff;
}

.az-abapp-table tbody td:last-child {
  border-right: none;
}

.az-abapp-table tbody tr:last-child td {
  border-bottom: none;
}

/* Application Badge */
.az-abapp-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(122,60,200,0.10);
  color: #7a3cc8;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
  white-space: nowrap;
}

.az-abapp-featured-type {
  background: linear-gradient(135deg, #8f55dc, #5b239f);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(122,60,200,0.22);
}

/* Tags */
.az-abapp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.az-abapp-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f7f9fb;
  border: 1px solid rgba(16,24,32,0.08);
  color: #34414d;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  transition: all 0.25s ease;
}

.az-abapp-table tbody tr:hover .az-abapp-tags span {
  border-color: rgba(122,60,200,0.18);
  background: rgba(122,60,200,0.06);
  color: #101820;
}

/* Bottom Note */
.az-abapp-note {
  margin-top: 22px;
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fbf7ff, #ffffff);
  border: 1px solid rgba(122,60,200,0.12);
  box-shadow: 0 14px 34px rgba(16,24,32,0.05);
}

.az-abapp-note span {
  display: inline-block;
  margin-bottom: 10px;
  color: #7a3cc8;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 800;
}

.az-abapp-note p {
  margin: 0;
  color: #5f6b76;
  font-size: 15.8px;
  line-height: 1.75;
}

/* Entrance Animation */
.az-abapp-table-wrap,
.az-abapp-note {
  opacity: 0;
  transform: translateY(24px);
  animation: azAbAppFadeUp 0.75s ease forwards;
}

.az-abapp-table-wrap {
  animation-delay: 0.08s;
}

.az-abapp-note {
  animation-delay: 0.18s;
}

@keyframes azAbAppFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .az-abapp-section {
    padding: 40px 16px;
  }

  .az-abapp-head {
    margin-bottom: 30px;
  }

  .az-abapp-head p {
    font-size: 15.5px;
  }

  .az-abapp-table-wrap {
    overflow: visible;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .az-abapp-table {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
  }

  .az-abapp-table thead {
    display: none;
  }

  .az-abapp-table tbody,
  .az-abapp-table tr,
  .az-abapp-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .az-abapp-table tbody tr {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(16,24,32,0.08);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(16,24,32,0.07);
    overflow: hidden;
    padding: 6px 0;
  }

  .az-abapp-table tbody tr:hover {
    box-shadow: 0 18px 42px rgba(16,24,32,0.12);
  }

  .az-abapp-table tbody td {
    border: none;
    border-bottom: 1px solid #eef2f5;
    padding: 14px 18px;
    background: transparent !important;
  }

  .az-abapp-table tbody td:last-child {
    border-bottom: none;
  }

  .az-abapp-table tbody td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 7px;
    color: #8b97a3;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
  }

  .az-abapp-type {
    white-space: normal;
    text-align: center;
  }

  .az-abapp-note {
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
  }

  .az-abapp-note p {
    font-size: 15px;
  }
}
