    /* --- CSS CHO FOOTER --- */
    .footer-main {
        background: #e9ebee;
        color: black;
        padding: 70px 0 50px 0;
        font-size: 15px;
        line-height: 1.8;
    }
    .footer-main .footer-widget h3 {
        color: black;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #dad2d2ff;
        position: relative;
    }
    .footer-main .footer-widget h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        height: 2px;
        width: 60px;
    }
    .footer-main a {
        color: black;
        transition: all 0.3s ease;
    }
    .footer-main a:hover {
        color: #3498db;
        text-decoration: none !important;
    }
    .footer-main ul {
        list-style: none;
        padding-left: 0;
    }
    .footer-main .footer-widget ul li {
        margin-bottom: 15px;
    }
    .footer-main .footer-widget ul li i {
        margin-right: 12px;
        color: #3498db;
    }
    .footer-main .contact-info p {
        margin-bottom: 18px;
    }
    .footer-main .contact-info i {
        width: 20px;
        color: #3498db;
        margin-right: 10px;
    }
    .footer-social-icons a {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: #333;
        color: #fff;
        border-radius: 50%;
        margin-right: 10px;
        font-size: 16px;
    }
    .footer-social-icons a:hover {
        background: #3498db;
        color: #fff;
        transform: translateY(-3px);
    }
    .footer-bottom {
        background: #e9ebee;
        color: #888;
        padding: 20px 0;
        font-size: 14px;
        text-align: center;
    }
    
    .chatbot-toggler {
        position: fixed;
        right: 30px;
        bottom: 30px;
        width: 60px;
        height: 60px;
        background-color: #3498db;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        cursor: pointer;
        z-index: 999;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .chatbot-toggler:hover {
        transform: scale(1.1);
        background-color: #2980b9;
    }
    .chatbot-widget {
        position: fixed;
        right: 30px;
        bottom: 100px;
        width: 380px;
        max-width: 90%;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transform: scale(0.5);
        transform-origin: bottom right;
        transition: all 0.3s ease;
    }
    .chatbot-widget.show {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }
    .chatbot-header {
        background: #3498db;
        color: #fff;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .chatbot-header h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }
    .chatbot-header .close-btn {
        font-size: 1.5rem;
        cursor: pointer;
        opacity: 0.8;
    }
    .chatbot-header .close-btn:hover {
        opacity: 1;
    }
    .chatbot-box {
        height: 400px;
        overflow-y: auto;
        padding: 20px;
        background-color: #f9f9f9;
    }
    .message {
        margin-bottom: 15px;
        display: flex;
    }
    .message .content {
        max-width: 80%;
        padding: 10px 15px;
        border-radius: 15px;
        line-height: 1.5;
    }
    .bot-message {
        justify-content: flex-start;
    }
    .bot-message .content {
        background: #e9ebee;
        color: #333;
        border-bottom-left-radius: 2px;
    }
    .user-message {
        justify-content: flex-end;
    }
    .user-message .content {
        background: #3498db;
        color: #fff;
        border-bottom-right-radius: 2px;
    }
    .chatbot-input {
        display: flex;
        padding: 10px;
        border-top: 1px solid #eee;
    }
    .chatbot-input input {
        flex-grow: 1;
        border: none;
        outline: none;
        padding: 15px;
        font-size: 1.rem;
        background: #f1f1f1;
        border-radius: 8px;
    }
    .chatbot-input button {
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: #3498db;
        cursor: pointer;
        padding: 0 15px;
    }
    .chatbot-box .menu-option {
        background-color: #fff;
        border: 1px solid #3498db;
        color: #3498db;
        padding: 10px 15px;
        border-radius: 20px;
        cursor: pointer;
        text-align: center;
        margin: 5px 0;
        transition: all 0.2s ease;
    }
    .chatbot-box .menu-option:hover {
        background-color: #3498db;
        color: #fff;
    }
.product-result-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}
.product-result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.product-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0; 
}
.product-result-info {
    min-width: 0; 
}
.product-result-info h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.product-result-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 500;
}

.price-input-form {
    display: flex;
    align-items: center;
    gap: 10px; 
    padding: 15px 20px; 
    border-top: 1px solid #e0e0e0;
    background-color: #ffffff; 
    border-radius: 0 0 10px 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); 
}
.price-input-form label {
    white-space: nowrap;
    margin-bottom: 0;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem; 
}
.price-input-form input[type="number"] {
    flex-grow: 1; 
    max-width: 100px; 
    padding: 10px 12px;
    border: 1px solid #dcdcdc; 
    border-radius: 6px; 
    text-align: right;
    font-size: 1rem;
    box-shadow: none; 
    transition: all 0.2s ease-in-out;
    -moz-appearance: textfield;
}
.price-input-form input[type="number"]::-webkit-outer-spin-button,
.price-input-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.price-input-form input[type="number"]:focus {
    outline: none;
    border-color: #3498db; 
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2); 
}
.price-input-form button {
    background-color: #3498db; 
    color: white;
    border: none;
    padding: 11px 22px; 
    border-radius: 6px;
    cursor: pointer;
    margin-left: 5px; 
    font-weight: 600; 
    font-size: 0.95rem;
    box-shadow: 0 3px 6px rgba(52, 152, 219, 0.2);
    transition: all 0.2s ease-in-out;
}
.price-input-form button:hover {
    background-color: #2980b9;
    box-shadow: 0 5px 10px rgba(41, 128, 185, 0.3); 
    transform: translateY(-2px); 
}
.price-input-form button:active {
    transform: translateY(0px);
    box-shadow: 0 1px 3px rgba(41, 128, 185, 0.2);
    background-color: #2471a3; 
}


.price-input-error { display: none; }
