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

:root {
  --libera-primary: #7B00EC;
  --libera-secondary: #9D48FF;
  --libera-accent: #ED48E8;
  --libera-dark: #1A0B2E;
  --libera-text: #4A4A4A;
  --libera-bgLight: #FBFBFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--libera-bgLight);
  color: var(--libera-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.font-display { font-family: 'Outfit', sans-serif; }

.bg-pattern {
  background-color: #FBFBFF;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-40-39c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zm50 38c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM75 43c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1zM29 17c.552 0 1-.448 1-1s-.448-1-1-1-1 .448-1 1 .448 1 1 1z' fill='%237b00ec' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.bg-hero-overlay {
  background-image: linear-gradient(rgba(123, 0, 236, 0.65), rgba(123, 0, 236, 0.65)), url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&q=80");
}

.hero-shadow { text-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.drop-shadow-3xl { filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15)); }

.custom-scrollbar::-webkit-scrollbar { height: 4px; width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #F8FAFC; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #E2E8F0; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #7B00EC; }

#product-modal { display: none; opacity: 0; transition: opacity 0.3s ease; }
#product-modal.active { display: flex; opacity: 1; }
#mobile-menu { display: none; }
#mobile-menu.active { display: block; }

@media (max-width: 768px) {
  #product-modal .modal-content { flex-direction: column; max-height: 95vh; }
  #product-modal .modal-image-container { height: 200px; width: 100%; }
}
