/* ============================================================
   product/product.css — 상품소개 페이지 전용 스타일
============================================================ */

/* ---------- 사업영역 배지 ---------- */
.area-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(0, 98, 255, 0.08);
    color: var(--main-blue);
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.area-badge.re100-badge {
    background: var(--main-blue);
    color: white;
}

/* ---------- 문의 폼 입력 스타일 ---------- */
.form-input-styled {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    width: 100%;
    transition: all 0.2s;
}
.form-input-styled:focus {
    outline: none;
    border-color: #0062ff;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 98, 255, 0.05);
}

/* ---------- 지붕임대 조건부 필드 (애니메이션) ---------- */
.conditional-field {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.conditional-field.active {
    max-height: 1200px;
    opacity: 1;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border: 1px solid #dbeafe;
    border-radius: 1.5rem;
}

/* ---------- 문의 모달 슬라이드 업 ---------- */
.modal-content {
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
