/* دکمه موجود شد خبرم کن */
button.shik-stock-notify-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #046027 0%, #03c04a 100%)
}

button.shik-stock-notify-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45);
}

button.shik-stock-notify-btn:active {
    transform: translateY(0);
}

button.shik-stock-notify-btn .btn-icon {
    font-size: 18px;
}


/* Modal Overlay */
.shik-stock-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    direction: rtl;
    backdrop-filter: blur(4px);
}


/* Modal Content */
.shik-stock-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    position: relative;
    margin: 1rem;
    animation: modalSlideIn 0.3s ease-out;
}

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


/* Close Button */
button.shik-stock-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    border-radius: 0 16px 0 12px;
    transition: all 0.2s ease;
}

button.shik-stock-modal-close:hover {
    background: linear-gradient(135deg, #ff5252, #e53935);
}


/* Modal Header */
.shik-stock-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.shik-stock-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}


/* Form Groups */
.shik-stock-form-group {
    margin-bottom: 1.25rem;
}

.shik-stock-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.shik-stock-form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background-color: #f9fafb;
}

.shik-stock-form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background-color: #fff;
}

.shik-stock-form-group input::placeholder {
    color: #9ca3af;
    letter-spacing: 1px;
}


/* Submit Button */
button.shik-stock-submit-btn {
    width: 100%;
    padding: 14px;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #046027 0%, #03c04a 100%)

}

button.shik-stock-submit-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45);
}

button.shik-stock-submit-btn:disabled {
    background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loader */
.shik-stock-submit-btn .btn-loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid #fff;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}

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


/* Message Box */
.shik-stock-message {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.shik-stock-message.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.shik-stock-message.error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.shik-stock-message.info {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    border: 1px solid #93c5fd;
}


/* Responsive */
@media (max-width: 480px) {
    .shik-stock-modal-content {
        margin: 0.5rem;
        padding: 1.5rem;
    }

    .shik-stock-modal-header h3 {
        font-size: 18px;
    }

    .shik-stock-form-group input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .shik-stock-submit-btn {
        padding: 12px;
        font-size: 15px;
    }
}


/* Admin Styles */
.shik-stock-admin-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.shik-stock-stat-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    min-width: 150px;
    text-align: center;
}

.shik-stock-stat-box .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1e40af;
    display: block;
}

.shik-stock-stat-box .stat-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 10px;
}

.shik-stock-stat-box.pending .stat-number {
    color: #d97706;
}

.shik-stock-stat-box.sent .stat-number {
    color: #059669;
}

.shik-stock-stat-box.cancelled .stat-number {
    color: #dc2626;
}
