/**
 * WooCommerce Simple Attribute Reset - Styles v3.0
 *
 * Simple notification styling when date clears
 *
 * @version 3.0.0
 */

/* ============================================================================
   Toast Notification
   ============================================================================ */

/**
 * Notification that appears when clearing date
 */
.wc-simple-reset-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    animation: slideInUp 0.3s ease-out;
    max-width: 300px;
    line-height: 1.5;
}

/* Slide in animation */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Icon before notification text */
.wc-simple-reset-notification::before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 8px;
}

/* ============================================================================
   Mobile Responsiveness
   ============================================================================ */

@media (max-width: 768px) {
    .wc-simple-reset-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        font-size: 13px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .wc-simple-reset-notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
}

/* ============================================================================
   Accessibility
   ============================================================================ */

/**
 * Respect reduced motion preferences
 */
@media (prefers-reduced-motion: reduce) {
    .wc-simple-reset-notification {
        animation: none;
        transition: none;
    }
}

/**
 * High contrast mode support
 */
@media (prefers-contrast: high) {
    .wc-simple-reset-notification {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
}

/* ============================================================================
   Print Styles
   ============================================================================ */

@media print {
    .wc-simple-reset-notification {
        display: none;
    }
}
