/* Global Modern Security Aesthetic Custom Styles */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #0284c7;    /* Sky Blue 600 */
  --color-accent: #06b6d4;     /* Cyan 500 */
  --color-dark-bg: #0f172a;    /* Slate 900 */
  --color-dark-card: #1e293b;  /* Slate 800 */
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Glassmorphism utility classes */
.glass-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.dark .glass-card-dark {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glowing accent effects */
.glow-primary {
  box-shadow: 0 0 25px rgba(2, 132, 199, 0.35);
}

.glow-cyan {
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

/* Smooth zoom on hover for product galleries and cards */
.hover-zoom-img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hover-zoom-img:hover {
  transform: scale(1.08);
}

/* Mega menu dropdown smooth fade and slide */
[x-cloak] {
  display: none !important;
}

/* Custom styled scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0f172a;
}

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0284c7;
}
