/* Premium CSS for Tra Cứu Chứng Nhận Halal */
html, body {
  -webkit-tap-highlight-color: transparent;
}

/* Glassmorphism utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.dark .glass-panel {
  background: rgba(15, 23, 42, 0.65);
}

/* Subtle Noise Texture */
.bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes shine {
  100% {
    left: 125%;
  }
}
.animate-shine {
  animation: shine 1.5s ease-in-out;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.dark ::-webkit-scrollbar-thumb {
  background: #334155;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Custom list style for products */
#resProducts span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
}
#resProducts span::before {
  content: '•';
  color: #3b82f6; /* blue-500 */
  font-weight: bold;
}
.dark #resProducts span::before {
  color: #60a5fa; /* blue-400 */
}
