/* Buy Bar (Bottom Action Bar) */
.ad-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 6px 10px;
    z-index: 999;
}

.ad-action-btn {
    width: 110px;
    min-width: 110px;
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    border-radius: 18px;
    font-size: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.ad-action-btn.chat {
    background: #eeeeee;
    color: #000;
}

.ad-action-btn.cart {
    background: #ffb703;
    color: #000;
}

.ad-action-btn.buy {
    background: #ff6f3c;
    color: #fff;
}
/* Style for the login popup message */
.login-popup {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.btn-login {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

/* Existing styles above */

/* Orange theme for the login popup */
.login-popup {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Orange theme for the login button */
.btn-login {
    display: inline-block;
    padding: 10px 15px;
    background-color: #ff6f3c;  /* Orange color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.btn-login:hover {
    background-color: #ff8f5d;  /* Darker orange on hover */
}

/* Remove underline from the Chat button */
.ad-action-btn.chat {
    text-decoration: none;
}

