
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #d32f2f;
    padding: 10px 20px;
    color: white;
}
header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
header .logo span {
    color: #ffffff;
}
header nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}
.search-box input {
    padding: 5px;
}
.search-box button {
    background: #fff;
    border: none;
    padding: 6px 10px;
    color: #d32f2f;
}
.hero img {
    width: 100%;
    height: auto;
}
.products {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}
.product-card {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    width: 200px;
}
.product-card img {
    width: 100%;
    height: auto;
}
footer {
    text-align: center;
    padding: 10px;
    background: #eee;
}
