/* ===== KASHSURG PREMIUM E-COMMERCE STYLES ===== */

/* Typography variables */
:root {
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
}

.heading-display {
  font-family: var(--font-display);
}

/* Glassmorphism Styles */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-dark {
  background: rgba(11, 19, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

::-webkit-scrollbar-track {
  background: #F8F9FA;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Seamless Brands scroll loop */
@keyframes loop-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.animate-loop-scroll {
  display: flex;
  width: max-content;
  animation: loop-scroll 35s linear infinite;
}

/* Image Zoom Frame */
.zoom-img-container {
  overflow: hidden;
  position: relative;
}

.zoom-img-container img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Mobile Optimization Utilities */
@media (max-width: 640px) {
  html, body {
    overflow-x: hidden;
  }
  .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .brand-carousel-card {
    min-width: 135px !important;
    width: calc(50% - 8px) !important;
  }
}
