/*
 * P H B Studio - Premium Minimalist Fashion Store Stylesheet
 */

@import "tailwindcss";

/* Thiết lập Font chữ từ Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Tùy chỉnh thanh cuộn trình duyệt đen tối giản sang trọng */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #000000;
}

::-webkit-scrollbar-thumb:hover {
  background: #333333;
}

/* Các lớp hiệu ứng hoạt mượt */
.transition-smooth {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cart-drawer {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cart-overlay {
  transition: opacity 0.35s ease;
}

.product-image-container img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-container:hover img {
  transform: scale(1.05);
}

/* Hoạt ảnh Slide toast thông báo */
@keyframes slideDown {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.toast-slide-down {
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animation đường gạch dưới Menu khi Active */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1.5px;
  bottom: -4px;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease;
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
}

.limit-lines-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}