.cms p {
    color: #000 !important;
}

.relative-area {
    position: relative;
}

.area-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 8;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.invalid {
    border: 2px solid #e74c3c !important;
    background-color:#fff5f5 !important;
}

.not--available {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
    cursor: not-allowed;
    opacity: 0.6;
    text-decoration: line-through;
}

.not--available:hover {
    background: #f8d7da;
}
.shipping-wrapper {
    width: 100%;
    margin-top: 10px;
}

.shipping-box {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content; /* keeps pill shape */
    padding: 6px 18px;
    border: 2px dashed #cfcfcf;
    border-radius: 30px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.shipping-icon {
    width: 55px;
}

.shipping-text {
    color: #35aee2;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
}