body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #F4E8D3;
    color: #1A1A1A;
}

header {
    background: #1A1A1A;
    color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    height: 60px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero h1 {
    z-index: 2;
    font-size: 55px;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.section {
    padding: 60px 40px;
    text-align: center;
}

.section h2 {
    color: #C65A1E;
    font-size: 32px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #D9A441;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

footer {
    background: #1A1A1A;
    color: white;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}
