.pcshop-categories-grid-5 { gap: 16px !important; }
.pcshop-category-card {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
  border-radius: 16px !important;
  padding: 24px 16px !important;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1) !important;
  position: relative;
  overflow: hidden;
}
.pcshop-category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.pcshop-category-card:hover::before { transform: scaleX(1); }
.pcshop-category-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
  border-color: transparent !important;
}
.pcshop-category-card .cat-icon {
  font-size: 48px !important;
  margin-bottom: 12px !important;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}
.pcshop-category-card .cat-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}
.pcshop-category-card:hover .cat-icon {
  transform: scale(1.15) rotate(-5deg);
}
.pcshop-category-card .cat-name {
  font-weight: 600 !important;
  font-size: 13px !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pcshop-cat-card-accent {
  background: linear-gradient(135deg, rgba(108,92,231,0.05), rgba(118,75,162,0.05)) !important;
  border-color: rgba(108,92,231,0.2) !important;
}
.pcshop-cat-card-accent:hover {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
}
.pcshop-cat-card-accent:hover .cat-name { color: white !important; }

.pcshop-section-header {
  border-bottom: none !important;
  padding: 20px 0 !important;
  margin-bottom: 24px !important;
  position: relative;
}
.pcshop-section-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}
.pcshop-section-title {
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.pcshop-section-link {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}
.pcshop-section-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.4) !important;
  text-decoration: none !important;
}
