/* その他加工注文専用スタイル */

/* カスタムオーダー用の注意事項 */
.custom-order-note {
    color: #1565c0;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}

/* 加工方法入力フォーム */
.processing-form {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.processing-form .form-group {
    margin-bottom: 20px;
}

.processing-form .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.processing-form .form-group .required {
    color: #dc3545;
}

.processing-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.processing-form .form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.processing-form .form-note {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 12px;
}

/* 加工方法表示 */
.processing-method-summary {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
    border: 1px solid #dee2e6;
}

.processing-method-summary strong {
    color: #495057;
}

.processing-method-section {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.processing-method-section h3 {
    color: #1565c0;
    margin-top: 0;
    margin-bottom: 10px;
}

.processing-method-content {
    color: #0d47a1;
    white-space: pre-wrap;
    line-height: 1.6;
}

/* 完了画面のスタイル */
.processing-info {
    margin: 30px 0;
    padding: 20px;
    background: #e3f2fd;
    border-radius: 8px;
    border: 1px solid #90caf9;
}

.processing-info h2 {
    color: #1565c0;
    margin-bottom: 15px;
    font-size: 20px;
}

.processing-content {
    color: #0d47a1;
    white-space: pre-wrap;
    line-height: 1.6;
}

/* 重要事項セクション */
.important-notes {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin: 30px 0;
}

.important-notes h2 {
    color: #856404;
    margin-bottom: 15px;
}

.important-notes ul {
    margin: 0;
    padding-left: 20px;
}

.important-notes li {
    color: #856404;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* 注意書き */
.order-summary .note,
.total-summary .note {
    color: #856404;
    font-size: 13px;
    margin-top: 10px;
}

/* モーダル内のカスタムオーダー表示 */
.custom-order-modal-content .note {
    color: #856404;
    background-color: #fff3cd;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .processing-form {
        padding: 15px;
    }
    
    .processing-method-section,
    .processing-info {
        padding: 15px;
    }
    
    .important-notes {
        padding: 15px;
    }
}

/* アニメーション */
#custom-processing-section {
    animation: fadeIn 0.3s ease-in;
}

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