body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    font-size: 2em;
    font-weight: bold;
    color: #e67e22; /* A warm orange */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
}

.hero-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #fce4ec; /* A light pink/peach */
}

.hero-section h1 {
    font-size: 3em;
    color: #884333; /* A warm brown */
}

.featured-products {
    padding: 50px 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}
.product-card img {
    width: 100%; /* Makes the image fill its container */
    height: auto; /* Maintains the aspect ratio */
}
/* General Styles */
:root {
    --primary-color: #8B4513; /* SaddleBrown - a rich brown */
    --secondary-color: #A0522D; /* Sienna - a warm, earthy tone */
    --text-color: #333;
    --light-text-color: #fff;
    --background-color: #F8F4E3; /* A soft, warm off-white */
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.primary-btn:hover {
    background-color: #6C3400;
}

/* Header */
.site-header {
    background-color: var(--background-color);
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.header-actions a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-left: 15px;
}

/* Hero Section */
.hero-banner {
    background-color: #E8E2D7;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Featured Products Section */
.featured-collection {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 10px 0;
}

.add-to-cart-btn {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    width: 100%;
}

.add-to-cart-btn:hover {
    background-color: #944d28;
}

/* Newsletter Section */
.newsletter-cta {
    background-color: #E8E2D7;
    padding: 60px 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.newsletter-form input {
    width: 300px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-form .btn {
    border-radius: 0 5px 5px 0;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}
/* ... (existing CSS from previous response) ... */

/* New CSS for Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

.cart-overlay.visible {
    visibility: visible;
    opacity: 1;
}

.cart-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background-color: #fff;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.cart-overlay.visible .cart-sidebar {
    transform: translateX(0);
}

#close-cart-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

#cart-items {
    max-height: calc(100% - 150px);
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.item-details h4 {
    margin: 0;
    font-size: 1rem;
}

.item-details p {
    margin: 5px 0 0;
    color: #666;
}

.cart-summary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: #f7f7f7;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
}

.empty-cart-message {
    text-align: center;
    color: #888;
}

#cart-count {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* ... (rest of the CSS) ... */