body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #222;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.topbar {
    background: #111;
    color: #fff;
    padding: 16px 0;
    margin-bottom: 24px;
}

.logo {
    color: #fff;
    text-decoration: none;
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filters input,
.filters select,
.filters button {
    padding: 10px;
    font-size: 14px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eee;
}

.card-body {
    padding: 14px;
}

.card h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.description {
    color: #444;
    font-size: 14px;
    line-height: 1.4;
}

.meta {
    color: #666;
    font-size: 14px;
}

.price {
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 8px;
}

.discount {
    margin-left: 8px;
    color: #0a7d2d;
    font-weight: bold;
}