body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    flex-wrap: wrap;
}

.logo img {
    max-height: 50px;
}

.location-selector {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.location-selector select {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
}

@media(min-width: 576px) {
    .location-selector select {
        width: auto;
    }
}

main {
    padding: 20px;
}

.item-selector {
    display: flex;
    justify-content: space-around;
    margin: -20px 0;
    padding: 2px 0;
    /* background-color: #761a1a; */
    /* border-radius: 10px; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    flex-wrap: wrap;
}

.item-btn {
    padding: 15px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 5px;
    text-align: center;
    flex-grow: 1;
}

.item-btn:hover {
    background-color: #0056b3;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.product-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    width: calc(100% - 40px);
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item img.product-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-item h3 {
    margin: 10px 0;
    font-size: 18px;
}

.product-item p {
    margin: 5px 0;
    font-size: 16px;
}

.button-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.view-more-btn, .enquiry-btn {
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: white;
    flex: 1;
    text-align: center;
}

.view-more-btn {
    background-color: #007bff;
    margin-right: 5px;
}

.view-more-btn:hover {
    background-color: #0056b3;
}

.enquiry-btn {
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.enquiry-btn:hover {
    background-color: #1ebc59;
}

.product-item:hover {
    transform: translateY(-5px);
}

/* styles.css */
.item-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    background-color: #f0f0f0;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.item-btn:hover {
    background-color: #ddd;
    color: #000;
}

.item-btn.active {
    background-color: #007bff;
    color: white;
}

/* Add more styling as needed for other elements */


/* Responsive adjustments */
@media(min-width: 576px) {
    .product-item {
        width: calc(50% - 40px);
    }
}

@media(min-width: 768px) {
    .product-item {
        width: calc(33.33% - 40px);
    }
}

@media(min-width: 992px) {
    .product-item {
        width: calc(25% - 40px);
    }
}


/*body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.logo img {
    max-height: 50px;
    
}

.location-selector select {
    margin: 0 10px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

main {
    padding: 20px;
}

.item-selector {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 10px 0;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.item-btn {
    padding: 15px 25px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    flex: 1;
    margin: 0 5px;
    text-align: center;
}

.item-btn:hover {
    background-color: #0056b3;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}
.product-item {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px;
    width: calc(25% - 40px);  4 items per row with spacing 
    height: auto;  Let the height adjust based on content 
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item img.product-image {
    width: 100%;
    height: auto;
    max-height: 200px;  Maximum height for the image 
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-item h3 {
    margin: 10px 0;
    font-size: 18px;
}

.product-item p {
    margin: 5px 0;
    font-size: 16px;
}

.button-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.view-more-btn, .enquiry-btn {
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: white;
    flex: 1;
    text-align: center;
}

.view-more-btn {
    background-color: #007bff;
    margin-right: 5px;  Space between the buttons 
}

.view-more-btn:hover {
    background-color: #0056b3;
}

.enquiry-btn {
    background-color: #25D366;  WhatsApp green color 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.enquiry-btn:hover {
    background-color: #1ebc59;  Slightly darker green on hover 
}

.product-item:hover {
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .product-item {
        width: calc(50% - 40px);  2 items per row on smaller screens 
    }
}

@media (max-width: 480px) {
    .product-item {
        width: calc(100% - 40px);  1 item per row on very small screens 
    }
}*/
