
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff69b4;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav a:hover {
    color: #ff69b4;
}

.hero-section {
    text-align: center;
    padding: 100px 20px;
    background: #ffe4e1;
}

.hero-section h1 {
    font-size: 48px;
    color: #ff69b4;
}

.hero-section p {
    font-size: 18px;
    margin: 20px 0;
}

.shop-now {
    display: inline-block;
    padding: 10px 20px;
    background: #ff69b4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.shop-now:hover {
    background: #ff1493;
}

.product-section {
    padding: 50px 20px;
    background: #f8f8f8;
    text-align: center;
}

.product-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 200px;
    padding: 15px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product-card p {
    font-size: 16px;
    color: #ff69b4;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}
