body { font-family: 'Poppins', sans-serif; -webkit-tap-highlight-color: transparent; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Custom Inputs */
.input-field {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    transition: all 0.2s;
}
.input-field:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

[x-cloak] { display: none !important; }
.slider { transition: transform 0.5s ease; }

/* Fix lỗi vệt xanh loading */
[x-cloak] { display: none !important; }

/* Đồng bộ khung ảnh 16:9 cho toàn bộ card sản phẩm */
.aspect-w-16 { position: relative; padding-bottom: 56.25%; /* 16:9 */ }
.aspect-w-16 > img { position: absolute; height: 100%; width: 100%; top: 0; left: 0; right: 0; bottom: 0; object-fit: cover; }

/* Giới hạn tiêu đề sản phẩm 1 dòng */
.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}