:root {
    --pink: #ff7aa8;
    --cream: #fff2f5;
    --dark: #4a2c2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--cream);
    color: var(--dark);
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    color: var(--pink);
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover {
    color: var(--pink);
}

.cart-btn {
    background: var(--pink);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* HOME */
.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
}

.home-content {
    max-width: 50%;
}

.home-content h1 {
    font-family: 'Pacifico', cursive;
    font-size: 48px;
    color: var(--pink);
}

.home-content p {
    margin: 15px 0;
    font-size: 18px;
}

.btn {
    background: var(--pink);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.home-image img {
    width: 400px;
    border-radius: 15px;
}

/* ABOUT */
.about, .product, .review, .qa {
    text-align: center;
    padding: 60px 10%;
}

.about p {
    max-width: 700px;
    margin: 15px auto;
}

/* PRODUCT */
.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 280px;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.price {
    color: var(--pink);
    font-weight: bold;
}

.buy-btn {
    background: var(--pink);
    border: none;
    color: white;
    padding: 8px 15px;
    margin-top: 10px;
    border-radius: 6px;
    cursor: pointer;
}

/* REVIEW */
.review-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Q&A */
.qa-item {
    background: white;
    margin: 10px auto;
    padding: 15px;
    border-radius: 8px;
    max-width: 600px;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 30px 10px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--pink);
}

/* BUY NOW BUTTON (Mobile) */
.buy-now {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 60%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .navbar ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .home {
        flex-direction: column;
        text-align: center;
    }

    .home-content, .home-image {
        max-width: 100%;
    }

    .buy-now {
        display: block;
    }
}