/**
 * Estiene Min-Max Quantities
 * Frontend Styles
 */

/* Notice Styles */
.estiene-min-max-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    margin: 15px 0;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.estiene-min-max-notice.show {
    opacity: 1;
    transform: translateY(0);
}

.estiene-notice-info {
    background-color: #e7f3ff;
    border-left: 4px solid #2196F3;
    color: #1976D2;
}

.estiene-notice-warning {
    background-color: #fff4e5;
    border-left: 4px solid #ff9800;
    color: #f57c00;
}

.estiene-notice-error {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    color: #c62828;
}

.notice-icon::before {
    content: "ⓘ";
    font-size: 18px;
    font-weight: bold;
}

.estiene-notice-warning .notice-icon::before {
    content: "⚠";
}

.estiene-notice-error .notice-icon::before {
    content: "✕";
}

.notice-message {
    flex: 1;
}

/* Button States */
.estiene-show-customizer-btn.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    filter: grayscale(100%);
    user-select: none;
    position: relative;
}

.estiene-show-customizer-btn.disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
    pointer-events: auto;
}

.estiene-inquiry-btn.highlighted {
    position: relative;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.3);
    background-color: #ff9800 !important;
    color: #fff !important;
}

.estiene-inquiry-btn.pulse {
    animation: inquiry-pulse 2s infinite;
}

@keyframes inquiry-pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 152, 0, 0.1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .estiene-min-max-notice {
        padding: 12px 15px;
        font-size: 13px;
    }
}
