body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

nav a {
    color: #6b46c1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #805ad5;
}

.hero {
    background-image: linear-gradient(to right, #6b46c1, #805ad5);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #6b46c1;
    border-color: #6b46c1;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #805ad5;
    border-color: #805ad5;
}

.categories, .featured-products {
    padding: 4rem 2rem;
}

.categories h2, .featured-products h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.category-item, .product-item {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item:hover, .product-item:hover {
    transform: translateY(-0.5rem);
}

.category-item img, .product-item img {
    object-fit: contain;
    margin-bottom: 1rem;
}

.category-item img {
    height: 100px;
    width: 100px;
}

.product-item img {
    height: 200px;
    width: 100%;
}

.category-item h3, .product-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-item p, .product-item p {
    color: #718096;
    font-size: 0.875rem;
}

.product-item .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6b46c1;
}

.product-item div p {
    font-weight: bolder;
    text-align: left;
    margin-bottom: 0rem;
    color: #4F6F52;
}

footer {
    background-color: #6b46c1;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.logo-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
}

.logo-link {
    flex-shrink: 0;
    margin: 0 20px;
    transition: transform 10s ease;
}

.logo-link:hover {
    transform: scale(6.1);
}

.logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logo-slider {
    animation: slide 20s linear infinite;
}

.slider-container {
    display: flex;
    justify-content: space-between;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-container img {
    width: 50%;
}

@media (max-width: 768px) {
    .slider-container {
        flex-direction: column;
    }

    .slider-container img {
        width: 100%;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin-bottom: 0.5rem;
    }

    .logo-slider {
        animation-duration: 15s;
    }

    .logo {
        height: 60px;
        max-width: 120px;
    }
}

.chatbot-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #155ac0;
    color: white;
    border: none;
    border-radius: 70%;
    width: 70px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.chatbot-btn:hover {
    background-color: #bd2c24;
}

.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    height: 400px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.chat-header {
    background-color: #46bdc1;
    color: white;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.chat-input {
    padding: 10px;
    border-top: 1px solid #ddd;
}

.chat-input input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#languageSelect {
    display: none;
    width: 200px;
}

#google_translate_element {
    display: none;
}
