/* MAIN WIDGET GLASS */
.chat-widget {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 300px;

    background: rgba(255, 255, 255, 0.08); /* transparent */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    display: none;
    z-index: 9999;
    overflow: hidden;

    animation: slideUp 0.3s ease;
}

/* HEADER GLASS */
.chat-header {
    background: rgba(255, 165, 0, 0.15); /* light orange glass */
    color: #fff;

    padding: 12px;
    display: flex;
    justify-content: space-between;

    font-weight: 600;

    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* BODY GLASS */
.chat-body {
    padding: 10px;

    background: transparent;
}

/* OPTIONS GLASS */
.chat-option {
    background: rgba(255,255,255,0.1);
    color: #fff;

    padding: 10px;
    border-radius: 8px;
    margin: 6px 0;

    cursor: pointer;
    transition: 0.2s;

    border: 1px solid rgba(255,255,255,0.1);
}

.chat-option:hover {
    background: rgba(10, 49, 122, 0.6);
    color: #fff;
}

/* FOOTER GLASS */
.chat-footer {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px;

    background: rgba(255, 165, 0, 0.15);
    backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255,255,255,0.1);
}

/* INPUT GLASS */
.chat-footer input {
    flex: 1;
    height: 42px;

    padding: 10px 14px;

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);

    outline: none;

    background: rgba(255,255,255,0.1);

    color: #fff;
    caret-color: #fff;

    font-size: 14px;
    font-weight: 500;
}

.chat-footer input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* BUTTON SAME (KEEP STRONG CTA) */
.chat-footer button {
    padding: 11px 14px;

    border: none;
    cursor: pointer;

    border-radius: 12px;

    background: linear-gradient(135deg, #25D366, #1db954);
    color: #ffffff;

    font-size: 12px;

    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);

    transition: all 0.25s ease;
}

.chat-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

.chat-footer button:active {
    transform: scale(0.96);
}


/* footer address styling */
    .custom-f-style {
        font-weight: 600 !important;
        color: #ffffff !important;
        line-height: 1.5 !important;
        margin: 0 !important;
        font-size: 15px !important;
        transition: 0.3s;
    }

    .custom-f-style a:hover {
        color: #f9670c !important; /* Hover par orange highlight */
    }

    .loc-label {
        display: block;
        color: #f9670c;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 1.5px;
        margin-bottom: 5px;
    }

    /* Glow Line Effect */
    .glow-separator {
        height: 1px;
        width: 80%;
        background: linear-gradient(90deg, #f9670c, transparent);
        margin: 15px 0;
        position: relative;
        box-shadow: 0 0 8px rgba(249, 103, 12, 0.4);
    }

    .glow-separator::before {
        content: '';
        position: absolute;
        left: 0;
        top: -2px;
        width: 5px;
        height: 5px;
        background: #f9670c;
        border-radius: 50%;
        box-shadow: 0 0 10px #f9670c;
    }

    .address-wrapper {
        margin-top: 20px;
    }

    /* nav side bar glass look */
    .side {
        /* Transparent Background with white tint */
        background: rgba(17, 17, 17, 0.7) !important;
    
        /* Modern Blur Effect */
        backdrop-filter: blur(-100px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
    
        /* Subtle Border for glass depth */
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    
        /* Smooth Shadow */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    
        /* Existing Transitions */
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    }
    
    /* Side Menu ke andar jo widgets hain unhe clean dikhane ke liye */
    .side .widget {
        background: transparent !important;
        border: none !important;
    }
    
    .side .widget .logo::after{
        background: #000000 !important;
    }
    
    /* Close button ko glass look mein prominent karne ke liye */
    .side .close-side {
        background: rgba(249, 103, 12, 0.2) !important;
        color: #f9670c !important;
        backdrop-filter: blur(5px);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        transition: 0.3s;
    }
    
    .side .close-side:hover {
        background: #f9670c !important;
        color: #fff !important;
        transform: rotate(90deg);
    }



