
/* --- LOGO UPLOAD & workflow --- */
.sw-logo-section {
    margin-top: 16px;
}

.sw-upload-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.sw-choice-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.sw-choice-btn:hover {
    border-color: #e2e8f0;
    background: #fff;
    color: #475569;
    transform: translateY(-1px);
}

.sw-choice-btn.active {
    border-color: var(--sw-primary);
    background: #eff6ff;
    color: var(--sw-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}


.sw-choice-btn svg {
    flex-shrink: 0;
}

.sw-upload-dropzone {
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.sw-upload-dropzone:hover, .sw-upload-dropzone.dragover {
    border-color: #1e3a8a;
    background: #f1f5f9;
    border-style: solid;
}

.sw-upload-icon {
    color: #94a3b8;
    margin-bottom: 16px;
}

.sw-upload-dropzone p {
    margin: 0;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
}

.sw-upload-dropzone p span {
    color: #1e3a8a;
    font-weight: 800;
    text-decoration: underline;
}

.sw-upload-dropzone small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #64748b;
    opacity: 0.8;
}

.sw-hidden {
    display: none !important;
}

/* Preview Box */
.sw-logo-preview-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--sw-border);
    border-radius: 12px;
    animation: swFadeIn 0.4s ease-out;
}

.sw-logo-preview-img {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.sw-logo-preview-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sw-logo-preview-info {
    flex: 1;
}

.sw-logo-preview-info strong {
    display: block;
    font-size: 14px;
    color: var(--sw-text);
    margin-bottom: 4px;
    font-weight: 700;
}

.sw-logo-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--sw-text-muted);
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 400;
}

.sw-logo-disclaimer svg {
    margin-top: 2px;
    flex-shrink: 0;
}

.sw-remove-logo {
    background: #fff;
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.sw-remove-logo:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Upload Later Info */
.sw-upload-later-info {
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--sw-border);
    border-radius: 12px;
    text-align: left;
    animation: swFadeIn 0.4s ease-out;
}

.sw-info-tag {
    font-weight: 700;
    color: var(--sw-success);
    margin-bottom: 6px;
    font-size: 14px;
}

.sw-upload-later-info p {
    margin: 0;
    font-size: 13px;
    color: var(--sw-text-muted);
    line-height: 1.5;
    font-weight: 400;
}

/* Printing Notes Field */
.sw-printing-notes-field {
    margin-top: 28px;
}

/* .sw-printing-notes-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--sw-text);
    margin-bottom: 8px;
} */

.sw-printing-notes-field textarea {
    width: 100%;
    height: 100px;
    padding: 16px;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: #1e293b;
    background: #f8fafc;
    resize: vertical;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
}

.sw-printing-notes-field textarea:focus {
    border-color: #1e3a8a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.sw-printing-notes-field textarea::placeholder {
    color: #94a3b8;
}

/* --- PREMIUM MODAL SYSTEM --- */
.sw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sw-modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
}

.sw-modal-overlay.active .sw-modal-content {
    transform: scale(1) translateY(0);
}

.sw-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-modal-icon.info { background: #eff6ff; color: #3b82f6; }
.sw-modal-icon.success { background: #f0fdf4; color: #22c55e; }
.sw-modal-icon.warning { background: #fff7ed; color: #f59e0b; }
.sw-modal-icon.error { background: #fef2f2; color: #ef4444; }

.sw-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.sw-modal-message {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 28px;
}

.sw-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sw-modal-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    outline: none;
}

.sw-modal-btn.primary {
    background: #2563eb;
    color: #ffffff;
}

.sw-modal-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.sw-modal-btn.secondary {
    background: #f1f5f9;
    color: #475569;
}

.sw-modal-btn.secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
}

@keyframes swFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
