body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fffaf5;
    color: #333;
}

header {
    background: #6b3e26;
    color: white;
    text-align: center;
    padding: 20px;
}

nav {
    background: #d9a441;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 40px;
    background: #fff1dc;
}

.hero-img {
    width: 300px;
    max-width: 90%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.hero button {
    padding: 10px 20px;
    background: #6b3e26;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.hero button:hover {
    background: #4e2c1a;
}

section {
    padding: 30px;
    text-align: center;
}

.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
    background: #f3e0c3;
    padding: 15px;
    border-radius: 8px;
    width: 180px;
}

.product img {
    width: 100%;
    border-radius: 6px;
}

.product p {
    margin-top: 10px;
    font-weight: bold;
}

.about-img {
    width: 350px;
    max-width: 95%;
    border-radius: 10px;
    margin: 15px 0;
}

footer {
    background: #6b3e26;
    color: white;
    text-align: center;
    padding: 10px;
}