/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #4a4a4a;
    background-color: #faf9f6; /* Off-white/Cream */
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #fff;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-color: #e2e8e4; /* Soft Sage Green */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    background-color: #4a5d4e;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #354238;
}

/* Products Section */
.products {
    padding: 80px 10%;
    text-align: center;
}

.products h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    border-radius: 4px;
}

.add-to-cart {
    margin-top: 15px;
    padding: 10px 20px;
    border: 1px solid #4a5d4e;
    background: transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.add-to-cart:hover {
    background: #4a5d4e;
    color: white;
}

footer {
    padding: 40px;
    text-align: center;
    font-size: 12px;
    background: #fff;
    border-top: 1px solid #eee;
}