body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #faf7f2;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-bottom: 2px solid #e5d7c5;
}

.logo {
    height: 60px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
}

.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
}

.gallery {
    padding: 40px 20px;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.gallery .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform .2s;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card a {
    display: inline-block;
    margin-top: 10px;
    color: #b5651d;
    font-weight: bold;
}