@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --nm-primary: #FFB800;
    --nm-primary-dark: #E5A500;
    --nm-primary-light: #FFD54F;
    --nm-secondary: #FF6B00;
    --nm-success: #10B981;
    --nm-danger: #EF4444;
    --nm-warning: #F59E0B;
    --nm-info: #3B82F6;
    --nm-dark: #1F2937;
    --nm-light: #F9FAFB;
    --nm-gray: #6B7280;
    --nm-border: #E5E7EB;
    --nm-shadow: 0 10px 40px rgba(0,0,0,0.1);
    --nm-radius: 16px;
    --nm-font: 'Vazirmatn', -apple-system, BlinkMacSystemFont, sans-serif;
}

.notify-me-wrapper {
    font-family: var(--nm-font);
    direction: rtl;
}

.notify-me-style-modern .notify-me-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--nm-radius);
    padding: 24px;
    box-shadow: var(--nm-shadow);
    border: 1px solid var(--nm-border);
    position: relative;
    overflow: hidden;
}

.notify-me-style-modern .notify-me-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nm-primary), var(--nm-secondary));
}

.notify-me-style-modern .notify-me-product-notice {
    color: var(--nm-dark);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.notify-me-style-modern .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-secondary) 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--nm-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,184,0,0.4);
}

.notify-me-style-modern .notify-me-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,184,0,0.5);
}

.notify-me-style-modern .notify-me-trigger svg {
    width: 20px;
    height: 20px;
}

.notify-me-style-dark .notify-me-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--nm-radius);
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.notify-me-style-dark .notify-me-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFB800, #FF6B00);
}

.notify-me-style-dark .notify-me-product-notice {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.notify-me-style-dark .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 100%);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--nm-font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,184,0,0.3);
}

.notify-me-style-dark .notify-me-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,184,0,0.4);
}

.notify-me-style-sport .notify-me-container {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.notify-me-style-sport .notify-me-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #FFB800, #FF6B00, #FF3366);
    border-radius: 22px;
    z-index: -1;
}

.notify-me-style-sport .notify-me-product-notice {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.notify-me-style-sport .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFB800, #FF6B00);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--nm-font);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255,184,0,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-me-style-sport .notify-me-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255,184,0,0.5);
}

.notify-me-style-minimal .notify-me-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--nm-border);
}

.notify-me-style-minimal .notify-me-product-notice {
    color: var(--nm-gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.notify-me-style-minimal .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nm-primary);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--nm-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notify-me-style-minimal .notify-me-trigger:hover {
    background: var(--nm-primary-dark);
}

.notify-me-style-glass .notify-me-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.notify-me-style-glass .notify-me-product-notice {
    color: var(--nm-dark);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.notify-me-style-glass .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--nm-primary), var(--nm-secondary));
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    font-family: var(--nm-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255,184,0,0.3);
}

.notify-me-style-glass .notify-me-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,184,0,0.4);
}

.notify-me-style-neon .notify-me-container {
    background: #0a0a0a;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 0 30px rgba(255,184,0,0.2);
    border: 1px solid rgba(255,184,0,0.3);
    position: relative;
}

.notify-me-style-neon .notify-me-product-notice {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.notify-me-style-neon .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--nm-primary);
    border: 2px solid var(--nm-primary);
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--nm-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255,184,0,0.3), inset 0 0 20px rgba(255,184,0,0.1);
    text-shadow: 0 0 10px rgba(255,184,0,0.5);
}

.notify-me-style-neon .notify-me-trigger:hover {
    background: var(--nm-primary);
    color: #000;
    box-shadow: 0 0 40px rgba(255,184,0,0.5), inset 0 0 40px rgba(255,184,0,0.2);
}

.notify-me-style-gradient .notify-me-container {
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 50%, #FF3366 100%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 50px rgba(255,107,0,0.3);
    position: relative;
    overflow: hidden;
}

.notify-me-style-gradient .notify-me-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    z-index: 0;
}

.notify-me-style-gradient .notify-me-product-notice {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.notify-me-style-gradient .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #FF6B00;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--nm-font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.notify-me-style-gradient .notify-me-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.notify-me-style-elegant .notify-me-container {
    background: linear-gradient(to bottom, #fdfcfb 0%, #e2d1c3 100%);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #d4c4b5;
}

.notify-me-style-elegant .notify-me-product-notice {
    color: #5d4e37;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.notify-me-style-elegant .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8B7355 0%, #6B5344 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--nm-font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107,83,68,0.3);
}

.notify-me-style-elegant .notify-me-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107,83,68,0.4);
}

.notify-me-style-flat .notify-me-container {
    background: #f5f5f5;
    border-radius: 0;
    padding: 24px;
    border-bottom: 4px solid var(--nm-primary);
}

.notify-me-style-flat .notify-me-product-notice {
    color: var(--nm-dark);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.notify-me-style-flat .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nm-primary);
    color: #000;
    border: none;
    padding: 14px 28px;
    border-radius: 0;
    font-family: var(--nm-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-me-style-flat .notify-me-trigger:hover {
    background: var(--nm-secondary);
    color: #fff;
}

.notify-me-style-neumorphic .notify-me-container {
    background: #e0e5ec;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 9px 9px 16px rgba(163,177,198,0.6), -9px -9px 16px rgba(255,255,255,0.5);
    border: none;
}

.notify-me-style-neumorphic .notify-me-product-notice {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.notify-me-style-neumorphic .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e0e5ec;
    color: var(--nm-primary-dark);
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: var(--nm-font);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 6px 6px 12px rgba(163,177,198,0.6), -6px -6px 12px rgba(255,255,255,0.5);
}

.notify-me-style-neumorphic .notify-me-trigger:hover {
    box-shadow: inset 6px 6px 12px rgba(163,177,198,0.6), inset -6px -6px 12px rgba(255,255,255,0.5);
}

.notify-me-style-aurora .notify-me-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(102,126,234,0.4);
    position: relative;
    overflow: hidden;
}

.notify-me-style-aurora .notify-me-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: aurora-shine 3s infinite;
}

@keyframes aurora-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.notify-me-style-aurora .notify-me-product-notice {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.notify-me-style-aurora .notify-me-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.95);
    color: #764ba2;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--nm-font);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.notify-me-style-aurora .notify-me-trigger:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.notify-me-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    font-family: var(--nm-font);
}

.notify-me-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify-me-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.notify-me-modal-container {
    position: relative;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 24px;
    animation: modal-appear 0.3s ease;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.notify-me-style-modern .notify-me-modal-container {
    background: #fff;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}

.notify-me-style-dark .notify-me-modal-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

.notify-me-style-sport .notify-me-modal-container {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, #FFB800, #FF6B00) 1;
}

.notify-me-style-minimal .notify-me-modal-container {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
}

.notify-me-style-glass .notify-me-modal-container {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.notify-me-style-neon .notify-me-modal-container {
    background: #0a0a0a;
    box-shadow: 0 0 50px rgba(255,184,0,0.3);
    border: 1px solid rgba(255,184,0,0.3);
}

.notify-me-style-gradient .notify-me-modal-container {
    background: linear-gradient(135deg, #FFB800 0%, #FF6B00 50%, #FF3366 100%);
    box-shadow: 0 25px 80px rgba(255,107,0,0.4);
}

.notify-me-style-elegant .notify-me-modal-container {
    background: linear-gradient(to bottom, #fdfcfb 0%, #e2d1c3 100%);
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
}

.notify-me-style-flat .notify-me-modal-container {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-bottom: 6px solid var(--nm-primary);
}

.notify-me-style-neumorphic .notify-me-modal-container {
    background: #e0e5ec;
    box-shadow: 20px 20px 60px rgba(163,177,198,0.6), -20px -20px 60px rgba(255,255,255,0.5);
}

.notify-me-style-aurora .notify-me-modal-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    box-shadow: 0 25px 80px rgba(102,126,234,0.5);
}

.notify-me-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.notify-me-style-modern .notify-me-modal-close,
.notify-me-style-minimal .notify-me-modal-close,
.notify-me-style-glass .notify-me-modal-close,
.notify-me-style-elegant .notify-me-modal-close,
.notify-me-style-flat .notify-me-modal-close,
.notify-me-style-neumorphic .notify-me-modal-close {
    background: #f3f4f6;
    color: #6b7280;
}

.notify-me-style-modern .notify-me-modal-close:hover,
.notify-me-style-minimal .notify-me-modal-close:hover,
.notify-me-style-glass .notify-me-modal-close:hover,
.notify-me-style-elegant .notify-me-modal-close:hover,
.notify-me-style-flat .notify-me-modal-close:hover,
.notify-me-style-neumorphic .notify-me-modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.notify-me-style-dark .notify-me-modal-close,
.notify-me-style-sport .notify-me-modal-close,
.notify-me-style-neon .notify-me-modal-close {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.notify-me-style-dark .notify-me-modal-close:hover,
.notify-me-style-sport .notify-me-modal-close:hover,
.notify-me-style-neon .notify-me-modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.notify-me-style-gradient .notify-me-modal-close,
.notify-me-style-aurora .notify-me-modal-close {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.notify-me-style-gradient .notify-me-modal-close:hover,
.notify-me-style-aurora .notify-me-modal-close:hover {
    background: rgba(255,255,255,0.4);
}

.notify-me-modal-content {
    padding: 32px;
}

.notify-me-product {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.notify-me-style-dark .notify-me-product,
.notify-me-style-sport .notify-me-product,
.notify-me-style-neon .notify-me-product {
    border-bottom-color: rgba(255,255,255,0.1);
}

.notify-me-product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.notify-me-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notify-me-product-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.notify-me-style-modern .notify-me-product-title,
.notify-me-style-minimal .notify-me-product-title,
.notify-me-style-glass .notify-me-product-title,
.notify-me-style-elegant .notify-me-product-title,
.notify-me-style-flat .notify-me-product-title,
.notify-me-style-neumorphic .notify-me-product-title {
    color: var(--nm-dark);
}

.notify-me-style-dark .notify-me-product-title,
.notify-me-style-sport .notify-me-product-title,
.notify-me-style-neon .notify-me-product-title,
.notify-me-style-gradient .notify-me-product-title,
.notify-me-style-aurora .notify-me-product-title {
    color: #fff;
}

.notify-me-notification-message {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.notify-me-style-modern .notify-me-notification-message,
.notify-me-style-minimal .notify-me-notification-message,
.notify-me-style-glass .notify-me-notification-message,
.notify-me-style-elegant .notify-me-notification-message,
.notify-me-style-flat .notify-me-notification-message,
.notify-me-style-neumorphic .notify-me-notification-message {
    color: var(--nm-gray);
}

.notify-me-style-dark .notify-me-notification-message,
.notify-me-style-sport .notify-me-notification-message,
.notify-me-style-neon .notify-me-notification-message,
.notify-me-style-gradient .notify-me-notification-message,
.notify-me-style-aurora .notify-me-notification-message {
    color: rgba(255,255,255,0.8);
}

.notify-me-form-group {
    margin-bottom: 20px;
}

.notify-me-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.notify-me-style-modern .notify-me-form-group label,
.notify-me-style-minimal .notify-me-form-group label,
.notify-me-style-glass .notify-me-form-group label,
.notify-me-style-elegant .notify-me-form-group label,
.notify-me-style-flat .notify-me-form-group label,
.notify-me-style-neumorphic .notify-me-form-group label {
    color: var(--nm-dark);
}

.notify-me-style-dark .notify-me-form-group label,
.notify-me-style-sport .notify-me-form-group label,
.notify-me-style-neon .notify-me-form-group label,
.notify-me-style-gradient .notify-me-form-group label,
.notify-me-style-aurora .notify-me-form-group label {
    color: #fff;
}

.notify-me-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--nm-font);
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.notify-me-style-modern .notify-me-input,
.notify-me-style-minimal .notify-me-input,
.notify-me-style-glass .notify-me-input,
.notify-me-style-elegant .notify-me-input,
.notify-me-style-flat .notify-me-input {
    background: #f9fafb;
    border: 2px solid var(--nm-border);
    color: var(--nm-dark);
}

.notify-me-style-modern .notify-me-input:focus,
.notify-me-style-minimal .notify-me-input:focus,
.notify-me-style-glass .notify-me-input:focus,
.notify-me-style-elegant .notify-me-input:focus,
.notify-me-style-flat .notify-me-input:focus {
    border-color: var(--nm-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,184,0,0.2);
}

.notify-me-style-dark .notify-me-input,
.notify-me-style-sport .notify-me-input,
.notify-me-style-neon .notify-me-input {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    color: #fff;
}

.notify-me-style-dark .notify-me-input:focus,
.notify-me-style-sport .notify-me-input:focus,
.notify-me-style-neon .notify-me-input:focus {
    border-color: var(--nm-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,184,0,0.2);
}

.notify-me-style-gradient .notify-me-input,
.notify-me-style-aurora .notify-me-input {
    background: rgba(255,255,255,0.9);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--nm-dark);
}

.notify-me-style-gradient .notify-me-input:focus,
.notify-me-style-aurora .notify-me-input:focus {
    border-color: #fff;
    outline: none;
}

.notify-me-style-neumorphic .notify-me-input {
    background: #e0e5ec;
    border: none;
    color: #666;
    box-shadow: inset 4px 4px 8px rgba(163,177,198,0.6), inset -4px -4px 8px rgba(255,255,255,0.5);
}

.notify-me-style-neumorphic .notify-me-input:focus {
    outline: none;
    box-shadow: inset 6px 6px 12px rgba(163,177,198,0.6), inset -6px -6px 12px rgba(255,255,255,0.5);
}

.notify-me-style-flat .notify-me-input {
    border-radius: 0;
}

.notify-me-submit-btn {
    width: 100%;
    padding: 16px;
    font-family: var(--nm-font);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notify-me-style-modern .notify-me-submit-btn,
.notify-me-style-minimal .notify-me-submit-btn,
.notify-me-style-glass .notify-me-submit-btn {
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-secondary) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,184,0,0.4);
}

.notify-me-style-modern .notify-me-submit-btn:hover,
.notify-me-style-minimal .notify-me-submit-btn:hover,
.notify-me-style-glass .notify-me-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,184,0,0.5);
}

.notify-me-style-dark .notify-me-submit-btn,
.notify-me-style-sport .notify-me-submit-btn,
.notify-me-style-neon .notify-me-submit-btn {
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-secondary) 100%);
    color: #000;
    box-shadow: 0 4px 20px rgba(255,184,0,0.3);
}

.notify-me-style-dark .notify-me-submit-btn:hover,
.notify-me-style-sport .notify-me-submit-btn:hover,
.notify-me-style-neon .notify-me-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,184,0,0.4);
}

.notify-me-style-gradient .notify-me-submit-btn,
.notify-me-style-aurora .notify-me-submit-btn {
    background: #fff;
    color: var(--nm-secondary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.notify-me-style-gradient .notify-me-submit-btn:hover,
.notify-me-style-aurora .notify-me-submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.notify-me-style-elegant .notify-me-submit-btn {
    background: linear-gradient(135deg, #8B7355 0%, #6B5344 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(107,83,68,0.3);
}

.notify-me-style-elegant .notify-me-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107,83,68,0.4);
}

.notify-me-style-flat .notify-me-submit-btn {
    background: var(--nm-primary);
    color: #000;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-me-style-flat .notify-me-submit-btn:hover {
    background: var(--nm-secondary);
    color: #fff;
}

.notify-me-style-neumorphic .notify-me-submit-btn {
    background: #e0e5ec;
    color: var(--nm-primary-dark);
    box-shadow: 6px 6px 12px rgba(163,177,198,0.6), -6px -6px 12px rgba(255,255,255,0.5);
}

.notify-me-style-neumorphic .notify-me-submit-btn:hover {
    box-shadow: inset 6px 6px 12px rgba(163,177,198,0.6), inset -6px -6px 12px rgba(255,255,255,0.5);
}

.notify-me-success-message,
.notify-me-error-message {
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notify-me-success-message {
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.2);
}

.notify-me-error-message {
    background: rgba(239,68,68,0.1);
    color: #DC2626;
    border: 1px solid rgba(239,68,68,0.2);
}

.notify-me-loading {
    position: relative;
    pointer-events: none;
}

.notify-me-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
