

.consultation-divider {
    height: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
    background: #1a1a1a;
    padding-top: 1px;
}

.consultation-main {
    min-height: calc(100vh - 200px);
    background: #fafafa;
}

.consultation-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    min-height: calc(100vh - 200px);
}

.consultation-intro {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 24px;
}

.intro-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.intro-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #d1d5db;
    margin: 0 0 40px 0;
    max-width: 400px;
}

.intro-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-features li {
    font-size: 14px;
    color: #9ca3af;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.intro-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.consultation-form-wrapper {
    padding: 60px 80px;
    background: #ffffff;
    overflow-y: auto;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.form-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 32px 0;
}

.product-info-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    margin-bottom: 24px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.product-details h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.product-hint {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.product-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}
.type-custom {
    background: #fff3e0;
    color: #e65100;
}
.type-normal {
    background: #e3f2fd;
    color: #1565c0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    justify-items: stretch;
    align-items: start;
}

.form-row > .form-group {
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.required {
    color: #dc2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.radio-label input[type="radio"]:checked {
    border-color: #1a1a1a;
    background: #1a1a1a;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.type-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.type-radio {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
}

.type-radio:hover {
    border-color: #d1d5db;
}

.type-radio input[type="radio"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.type-radio .radio-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-radio .radio-content strong {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.type-radio .radio-content small {
    font-size: 12px;
    color: #6b7280;
}

.type-radio:has(input[type="radio"]:checked) {
    border-color: #1a1a1a;
    background: #fafafa;
}

@media (max-width: 480px) {
    .type-radio-group {
        grid-template-columns: 1fr;
    }
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-file {
    padding: 10px 20px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-file:hover {
    background: #e5e7eb;
}

.file-status {
    font-size: 13px;
    color: #9ca3af;
}

.file-hint {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #374151;
}

@media (max-width: 1024px) {
    .consultation-container {
        grid-template-columns: 1fr;
    }

    .consultation-intro {
        padding: 40px 32px;
        min-height: auto;
    }

    .intro-title {
        font-size: 36px;
    }

    .consultation-form-wrapper {
        padding: 40px 32px;
    }
}

@media (max-width: 640px) {
    .consultation-intro {
        padding: 32px 24px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-desc {
        font-size: 14px;
    }

    .consultation-form-wrapper {
        padding: 32px 24px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        gap: 16px;
    }

    .product-info-card {
        flex-direction: column;
    }

    .product-thumb {
        width: 100%;
        height: 160px;
    }

    .file-upload {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .file-hint {
        font-size: 13px;
    }
}
