        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        .header {
            background-color: #4CAF50;
            padding: 20px;
            color: white;
        }
        
        #logo {
    max-width: 133px; /* Adjust the maximum width as needed */
    height: auto; /* Allow the height to adjust proportionally to the width */
    margin-right: 10px; /* Add margin to separate the logo from text */
}


        .product {
            padding: 20px;
            margin: 10px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            display: inline-block;
            width: calc(33% - 20px);
            text-align: left;
        }

        .product img {
            width: 100%;
            border-radius: 6px;
        }

        .product h3 {
            margin-top: 10px;
            color: #4CAF50;
        }

        .button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #FFA500;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .button:hover {
            background-color: #FF8500;
        }

        .footer {
            background-color: #333;
            color: white;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
            
        }
        
                /* Add this CSS */
        @media screen and (max-width: 767px) {
            .product {
                width: calc(50% - 20px);
            }
        }

        @media screen and (max-width: 479px) {
            .product {
                width: 100%;
            }
        }
        
          /* Add this CSS */
        .product {
            position: relative;
            overflow: hidden;
            flex: 0 0 48%;
            margin-bottom: 20px;
            padding: 20px;
            border: 1px solid #ccc;
            box-sizing: border-box;
            background-color: #fff;
        }

        .product .preview {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            text-align: center;
            padding-top: 30%;
            box-sizing: border-box;
            transition: opacity 0.3s;
        }

        .product .preview img {
            max-width: 80%;
            max-height: 80%;
            vertical-align: middle;
            border-radius: 6px;
        }

        .product:hover .preview {
            display: block;
        }
        
        
        .products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product {
    flex: 0 0 48%;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #fff;
}


.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.carousel-content {
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    /* width: 300px; */
}

