/* 自定义样式补充 */
.glass-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-gradient {
  background: linear-gradient(135deg, #0056b3 0%, #002d5e 100%);
}

.product-card {
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-icon-wrapper {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.text-gradient {
  background: linear-gradient(to right, #0056b3, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.swiper-pagination-bullet-active {
  background-color: #0056b3 !important;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.page-item,
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-size: 14px;
  text-decoration: none;
}

.page-item:hover,
.page-link:hover {
  background: #0056b3;
  color: #ffffff;
  border-color: #0056b3;
}

.text-secondary {
  color: #6b7280;
}
.page-num-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.line-clamp-2,
.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  -webkit-line-clamp: 3;
}

.content-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  border-color: #dbeafe;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.mobile-submenu-toggle a {
  pointer-events: none;
}

.mobile-submenu-btn.active i {
  transform: rotate(180deg);
}
