#achax-addtocart-popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 9999;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-width: 500px;
    max-width: 600px;
}

.achax-popup-content {
    position: relative;
}

.achax-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #000;
    z-index: 10;
}

.achax-popup-message {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #3c763d;
}

.achax-icon-check {
    font-weight: bold;
    color: green;
    margin-right: 5px;
}

.achax-popup-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.achax-popup-image img {
    max-width: 80px;
    max-height: 80px;
/*    border: 1px solid #ccc;
    border-radius: 4px;*/
}

.achax-popup-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.achax-btn {
    text-decoration: none;
    background-color: #0056b3;
    color: white !important;
    padding: 8px 24px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 13px;
}

.achax-btn:hover {
    background-color: #004191;
}

.achax-btn-primary {
    background-color: #0056b3;
}
