* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body { background-color: #fff9fa; color: #5d4037; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: #fff; border-bottom: 2px solid #fce4ec;
    position: sticky; top: 0; z-index: 1000;
}
.logo { font-family: 'Dancing Script', cursive; font-size: 32px; color: #f06292; }
.logo span { color: #f8bbd0; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin: 0 15px; }
.nav-links a { text-decoration: none; color: #880e4f; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: #f06292; }
.cart-icon { position: relative; cursor: pointer; font-size: 24px; transition: 0.3s; }
#cart-count { background: #ad1457; color: white; font-size: 12px; padding: 2px 6px; border-radius: 50%; position: absolute; top: -5px; right: -10px; }
.bump { transform: scale(1.3); }

/* Hero Section */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(255, 241, 242, 0.4), rgba(255, 241, 242, 0.4)), 
                url('https://images.unsplash.com/photo-1488477181946-6428a0291777?q=80&w=1200') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content h1 { font-family: 'Dancing Script', cursive; font-size: 4rem; color: #880e4f; }
.btn { padding: 12px 30px; background: #f06292; color: white; border: none; border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s; margin-top: 20px;}
.btn:hover { background: #ec407a; transform: scale(1.05); }

/* Products */
.products { padding: 60px 8%; }
.products h2 { text-align: center; margin-bottom: 40px; font-family: 'Dancing Script', cursive; font-size: 2.5rem; color: #ad1457; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.product-card { background: white; padding: 20px; border-radius: 20px; text-align: center; border: 1px solid #fce4ec; position: relative; transition: 0.3s; }
.product-card:hover { box-shadow: 0 10px 20px rgba(248,187,208,0.4); }
.badge { position: absolute; top: 10px; right: 10px; background: #f8bbd0; color: #ad1457; padding: 5px 12px; border-radius: 15px; font-size: 12px; font-weight: bold; }
.product-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 15px; }
.product-card h3 { margin: 15px 0; color: #880e4f; }
.product-card p { color: #f06292; font-weight: 700; margin-bottom: 15px; }
.btn-add { width: 100%; padding: 10px; border: 2px solid #f8bbd0; background: #fff; color: #f06292; border-radius: 10px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-add:hover { background: #fce4ec; }

/* Footer */
.footer { background-color: #fce4ec; padding: 60px 0 20px; margin-top: 50px; border-top: 1px solid #f8bbd0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 8%; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 { color: #ad1457; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; color: #880e4f; font-size: 14px; }
.footer-bottom { text-align: center; padding-top: 40px; margin-top: 40px; border-top: 1px solid rgba(173,20,87,0.1); font-size: 13px; }

/* Toast & Mobile */
#toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; }
.toast { background: #f06292; color: white; padding: 12px 25px; border-radius: 8px; margin-top: 10px; animation: slideIn 0.5s ease forwards; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
}