/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F1E4; /* Soft Beige */
    color: #5A4A42; /* Warm Brown */
    margin: 0;
    padding: 0;
}
/* Header */
header {
    background-color: #DEC1A3; /* Dusty Beige */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}
.logo {
    font-size: 24px;
    font-weight: bold;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 8px 15px;
}
nav ul li a:hover {
    background-color: #BFA89E; /* Soft Neutral */
    border-radius: 5px;
}
/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #D8A7B1; /* Dusty Pink */
    color: white;
}
.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}
.shop-btn {
    display: inline-block;
    background-color: #5A4A42; /* Deep Warm Brown */
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    /*transition: background 0.3s;*/
}
.shop-btn:hover {
    background-color: #DEC1A3;
}
/* Featured Products */
.featured-products {
    text-align: center;
    padding: 40px 20px;
}
.featured-products h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.products {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.product {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
}
.product img {
    width: 100%;
    border-radius: 5px;
}
.product h3 {
    margin: 15px 0 10px;
}
.product p {
    font-size: 16px;
    font-weight: bold;
}
.product button {
    background-color: #5A4A42;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    /*transition: background 0.3s;*/
}
.product button:hover {
    background-color: #D8A7B1;
}
/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #5A4A42;
    color: white;
    margin-top: 20px;
}
