body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: #222;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

nav h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a.active {
    text-decoration: underline;
}

/* SEARCH + FILTER */
.search-filter {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: white;
    border-bottom: 1px solid #ddd;
}

.search-filter input,
.search-filter select {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* PRODUCTS */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
    box-sizing: border-box;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* equal height cards */
}

.product:hover {
    transform: translateY(-5px);
}

/* ✅ Fix image size */
.product-list img {
    width: 100%;
    height: 200px;   /* fix height for all */
    object-fit: cover;  /* crop properly */
    border-radius: 8px;
    display: block;
}

.price {
    font-weight: bold;
    color: green;
    font-size: 1.2em;
}

.qty-control {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
}

.qty-control button {
    padding: 5px 10px;
    border: none;
    background: #ddd;
    cursor: pointer;
    border-radius: 5px;
}

.qty-control input {
    width: 40px;
    text-align: center;
}

/* ✅ WhatsApp button bigger & bold */
.whatsapp-order {
    background: #07a13f;
    color: white;
    border: none;
    padding: 12px 18px; /* bigger button */
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.whatsapp-order:hover {
    background: #1ebe57;
}

/* ABOUT PAGE */
.about {
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}

@media only screen and (max-width: 600px) {
    .search-filter {
        flex-direction: column;
    }
}