#module-st_ezwm-order option[data-available="0"] {
    display:none;
}

#module-st_ezwm-order .to-free-shipping {
    display: none;
}

#module-st_ezwm-order .product-miniature__title {
    height: auto;
    -webkit-line-clamp: initial;
}

.ezwm-month-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 12px;
}

.ezwm-month-selector__item {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    font-size: 0.875rem;
    user-select: none;
}

.ezwm-month-selector__item:hover {
    border-color: #006fdb;
    background-color: #006fdb;
    color: #fff;
}

.ezwm-month-selector__item input {
    display: none;
}

.ezwm-month-selector__item--selected {
    background-color: #006fdb;
    border-color: #006fdb;
    color: #fff;
}

.ezwm-month-selector__item--selected:hover {
    background-color: #006fdb;
    border-color: #006fdb;
    color: #fff;
}

.ezwm-month-selector__item--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* =============================================
   Limit Warning Modal
   ============================================= */

.ezwm-limit-warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.ezwm-limit-warning-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    animation: ezwmFadeIn 0.2s ease-out;
}

.ezwm-limit-warning-modal__content {
    position: relative;
    max-width: 540px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: ezwmSlideIn 0.3s ease-out;
}

.ezwm-limit-warning-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.ezwm-limit-warning-modal__close:hover {
    color: #000;
}

.ezwm-limit-warning-modal__title {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc3545;
}

.ezwm-limit-warning-modal__body {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

.ezwm-limit-warning-modal__body p {
    margin-bottom: 12px;
}

.ezwm-limit-warning-modal__body strong {
    font-weight: 600;
}

.ezwm-limit-warning-modal__example {
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

.ezwm-limit-warning-modal__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ezwm-limit-warning-modal__actions .btn {
    flex: 1;
    min-width: 160px;
    padding: 12px 20px;
    text-align: center;
}

@keyframes ezwmFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ezwmSlideIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@media (max-width: 576px) {
    .ezwm-limit-warning-modal__content {
        padding: 20px 16px;
    }
    
    .ezwm-limit-warning-modal__actions {
        flex-direction: column;
    }
    
    .ezwm-limit-warning-modal__actions .btn {
        width: 100%;
    }
}