@import "tailwindcss";
body {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
@font-face {
  font-family: hangOutFont;
  src: url(../font/DFVN-Hangout-Regular.otf);
}
.logo {
    font-family: 'hangOutFont', sans-serif !important;
    user-select: none;
    font-size: 32px !important;
}
.gradient-bg {
    background: linear-gradient(135deg, #fef7f0 0%, #fdf2f8 50%, #fffbeb 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(251, 207, 232, 0.3);
}
.btn-primary {
    background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.flash-sale {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.category-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 207, 232, 0.2);
}

.product-card {
    background: white;
    border: 1px solid rgba(251, 207, 232, 0.1);
}

.search-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}
