body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f2f4f8;
}

/* Top Navbar */
.navbar {
    background: linear-gradient(90deg, #2b5876, #4e4376);
    padding: 12px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    background: white;
    color: #333;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.navbar a:hover {
    background: #ffd200;
}

/* Search Bar */
.search-box {
    margin: 20px auto;
    text-align: center;
}

.search-box input {
    width: 60%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 16px;
}

/* Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 12px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #1a8917;
}

.title {
    font-size: 16px;
    font-weight: 600;
}

.meta {
    font-size: 12px;
    color: #777;
}