
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}
header {
    background-color: #d4af37;
    padding: 20px;
    text-align: center;
    color: white;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: 500;
}
.hero {
    background: url('img/banner.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px #000;
    font-size: 2em;
    font-weight: bold;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    justify-content: center;
}
.product-card {
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 15px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card img {
    width: 100%;
    height: auto;
}
.product-card h3 {
    margin: 10px 0 5px;
}
button {
    background-color: #d4af37;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
}
button:hover {
    background-color: #b9982f;
}
footer {
    background-color: #f7f7f7;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}
@media (max-width: 600px) {
    .product-card {
        width: 90%;
    }
}
