body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 150px;
}

.navbar {
    background-color: transparent;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    position: fixed;
    height: 125px;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s;
}

.left-section {
    padding-left: 175px;
    display: flex;
    align-items: center;
}

.left-section a {
    color: black;
    text-decoration: none;
    padding: 14px 16px;
}

.center-section {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    width: 125px;
    border-radius: 50%;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

a
{
    text-decoration: none
}
.product {
    width: calc(25% - 10px);
    box-sizing: border-box;
    padding: 2px;
    margin: 2px;
}

.product a
{
    color: black;
    text-decoration: none;
}

.product img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    width: 900px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-image
{
    max-width: 600px;
}

.image-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.slider-item {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.product-details {
    flex: 1;
    width: : 300px;
    padding-top: 50px;
    padding-left: 50px;
}

#messageSellerBtn
{
    border: none;
    padding: 16px 32px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    background-color: white;
    color: black;
    border: 4px solid gray;
}

#messageSellerBtn:hover {
    background-color: gray;
    color: white;
}

h2, p {
    margin: 0;
}

img {
    width: 425px;
    height: auto;
}

.arrow {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    user-select: none;
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

/* Media query for mobile design */
@media screen and (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: 160px;
    }

    .left-section {
    	display: none;
        padding-left: 0;
        width: 100%;
        justify-content: center;
    }

    .left-section a {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .center-section {
        position: static;
        transform: none;
        margin-top: 15px;
    }

    .logo
    {
        width: 75px;
        border-radius: 50%;
    }

    .product-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .product {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }

    .product img {
        width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .container
    {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: none;
    }

    .slider-item img, .slider-item.active img
    {
        width: 100%;
    }

    .product-image
    {
        max-width: 100%;
    }

    .product-details
    {
        width: 100%;
        padding: 20px;
    }

    
}

@media screen and (min-width: 601px) and (max-width: 900px) 
{

    .left-section
    {
        display: none;
    }

    .logo
    {
        width: 100px;
        border-radius: 50%;
    }

    .product-container 
    {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .product
    {
        width: calc(50% - 20px);
        box-sizing: border-box;
        padding: 10px;
        margin: 10px;
    }

    .product img 
    {
        width: 100%;
        height: auto;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .container
    {
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        box-shadow: none;
    }

    .slider-item img, .slider-item.active img
    {
        width: 100%;
    }

    .product-image
    {
        max-width: 100%;
    }

    .product-details
    {
        width: 100%;
        padding: 20px;
    }
}