.top-header-bar {
    background-color: hsl(52, 100%, 50%, 1);
    color: black;
    text-align: center;
    font-size: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    width: 100vw;
    padding: 10px 0;
    height: 40px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    text-align: center;
    margin: 0;
    padding: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 23%);
    gap: 19.5px;
    padding: 20px;
    max-width: 1600px;
    margin: auto;
    width: 100%;
}

.product {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05);
}

.product-img-container {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
}

.product-img-container img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    margin: auto;
}

h3 {
    margin: 10px 0 5px;
    color: #333;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
}

.load-more {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    background: transparent;
    color: black;
    border: 2px solid black;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.load-more:hover {
    background: black;
    color: white;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 46%);
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .product-img-container img {
        max-width: 100%;
        max-height: 100%;
    }
}