.custom-tier-cart-msg-wrapper, .custom-tier-cart-msg-wrapper-menu {
    margin-bottom: 20px;
}

.custom-tier-current-msg {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.custom-tier-cart-msg {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
    border-radius: 4px;
}

.custom-tier-cart-msg-wrapper-menu .custom-tier-cart-msg {
    width: auto;
    display: block;
}

.custom-tier-cart-msg a {
    color: #856404 !important;
    text-decoration: underline !important;
    font-weight: 600;
}

.custom-tier-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.custom-tier-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-tier-loader-wrapper.active {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    .custom-tier-cart-msg, .custom-tier-current-msg {
        font-size: 14px;
        text-align: center;
        display: block;
    }
}
