* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body { background-color: #fffafb; color: #333; }

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}

.logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: bold; }
.logo span { color: #ff4d7d; }

nav ul { display: flex; list-style: none; }
nav ul li { margin: 0 15px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 500; transition: 0.3s; }
nav ul li a:hover { color: #ff4d7d; }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 5%;
    color: white;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 55px; line-height: 1.2; }
.btn-shop {
    margin-top: 20px;
    padding: 12px 35px;
    background: #ff4d7d;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
}
.btn-shop:hover { background: #333; transform: scale(1.05); }

/* Products Section */
.products, .categories { padding: 50px 5%; text-align: center; }
h2 { margin-bottom: 30px; font-family: 'Playfair Display', serif; font-size: 32px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    border: 1px solid #eee;
}

.product-item:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.badge {
    position: absolute; top: 10px; left: 10px;
    background: #ff4d7d; color: white; padding: 5px 10px; font-size: 12px;
}

.price span { text-decoration: line-through; color: #999; font-size: 14px; }
.add-to-cart {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: transparent;
    border: 2px solid #333;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.add-to-cart:hover { background: #333; color: white; }

footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 50px; }
