/* MIORI Custom Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: #D4CEC5;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A8A095;
}

/* Typography polish */
.font-serif {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}

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

/* Product Card Effects */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* Smooth modal transitions */
#cart-drawer, #mobile-menu-drawer, #search-modal, #quickview-modal {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Toast Notification Animation */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast-message {
  animation: slideUpFade 0.3s ease forwards;
}
