body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}
.topbar {
    background-color: #f85606;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar .logo {
    font-size: 24px;
    font-weight: bold;
}
.topbar .menu a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}
.category-bar {
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ddd;
}
.category-bar a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.banner img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.products {
    padding: 30px;
    background: #fff;
}
.products h2 {
    text-align: center;
    color: #444;
    margin-bottom: 30px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.product {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: box-shadow 0.3s;
}
.product:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.product img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}
.product h3 {
    font-size: 18px;
    margin: 10px 0;
}
.product p {
    font-size: 16px;
    color: #f85606;
    font-weight: bold;
}
.product button {
    background: #f85606;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.product button:hover {
    background: #d94500;
}