 /* ============================================================
           CO-HOST CREATE PAGE — prefix: chc-
        ============================================================ */
 .chc-wrap {
     max-width: 580px;
     margin: 120px auto;
     padding: 28px 16px 80px;
     color: var(--text, #231805);
 }

 /* ── Page header ── */
 .chc-page-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 12px;
     margin-bottom: 26px;
 }

 .chc-heading h1 {
     font-family: 'Syne', sans-serif;
     font-size: 1.55rem;
     font-weight: 800;
     color: var(--text, #231805);
     letter-spacing: -0.5px;
     margin: 0 0 4px;
     line-height: 1.2;
 }

 .chc-heading p {
     font-size: 0.8rem;
     color: var(--dark-gray, #555);
     margin: 0;
 }

 .chc-back-btn {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 8px 14px;
     border-radius: 9px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.76rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     color: var(--dark-slate-gray, #2f4858);
     background: rgba(47, 72, 88, 0.07);
     border: 1px solid rgba(47, 72, 88, 0.15);
     text-decoration: none;
     cursor: pointer;
     transition: all 0.2s ease;
     white-space: nowrap;
     flex-shrink: 0;
 }

 .chc-back-btn:hover {
     background: var(--dark-slate-gray, #2f4858);
     color: #fff;
     border-color: var(--dark-slate-gray, #2f4858);
 }

 .chc-back-btn svg {
     width: 13px;
     height: 13px;
     flex-shrink: 0;
 }

 /* ── Card ── */
 .chc-card {
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(12px);
     border-radius: 16px;
     box-shadow: 0 4px 32px rgba(35, 24, 5, 0.08);
     border: 1px solid rgba(227, 152, 45, 0.14);
     overflow: hidden;
 }

 /* Card top accent bar */
 .chc-card-bar {
     height: 4px;
     background: linear-gradient(to right, var(--primary, #e3982d), var(--secondary, #007968));
 }

 /* Card inner header */
 .chc-card-header {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 20px 24px 16px;
     border-bottom: 1px solid rgba(227, 152, 45, 0.1);
 }

 .chc-card-icon {
     width: 42px;
     height: 42px;
     border-radius: 11px;
     background: linear-gradient(135deg, rgba(0, 97, 108, 0.14), rgba(0, 121, 104, 0.1));
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     flex-shrink: 0;
     border: 1px solid rgba(0, 97, 108, 0.12);
 }

 .chc-card-title {
     font-family: 'Syne', sans-serif;
     font-size: 0.82rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.3px;
     color: var(--primary, #e3982d);
     margin: 0 0 2px;
 }

 .chc-card-sub {
     font-size: 0.72rem;
     color: var(--dark-gray, #555);
     margin: 0;
 }

 /* ── Form body ── */
 .chc-form-body {
     padding: 24px 24px 20px;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 /* Field group */
 .chc-field {
     display: flex;
     flex-direction: column;
     gap: 7px;
 }

 .chc-label {
     font-size: 0.72rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     color: var(--dark-slate-gray, #2f4858);
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .chc-label svg {
     width: 11px;
     height: 11px;
     opacity: 0.6;
     flex-shrink: 0;
 }

 .chc-label .chc-required {
     font-size: 0.65rem;
     color: var(--primary, #e3982d);
     font-style: normal;
 }

 .chc-label .chc-readonly-tag {
     font-size: 0.6rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     background: rgba(47, 72, 88, 0.09);
     color: var(--dark-slate-gray, #2f4858);
     padding: 2px 7px;
     border-radius: 5px;
     border: 1px solid rgba(47, 72, 88, 0.14);
 }

 /* Input base */
 .chc-input {
     width: 100%;
     padding: 11px 14px;
     border: 1.5px solid rgba(227, 152, 45, 0.25);
     border-radius: 10px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.86rem;
     color: var(--text, #231805);
     background: #fff;
     outline: none;
     transition: border-color 0.22s ease, box-shadow 0.22s ease;
     box-sizing: border-box;
 }

 .chc-input:focus {
     border-color: var(--primary, #e3982d);
     box-shadow: 0 0 0 3px rgba(227, 152, 45, 0.1);
 }

 .chc-input::placeholder {
     color: #bbb;
 }

 /* Readonly input */
 .chc-input[readonly] {
     background: rgba(47, 72, 88, 0.04);
     border-color: rgba(47, 72, 88, 0.14);
     color: var(--dark-slate-gray, #2f4858);
     cursor: not-allowed;
 }

 .chc-input[readonly]:focus {
     border-color: rgba(47, 72, 88, 0.2);
     box-shadow: none;
 }

 /* Input with icon prefix */
 .chc-input-wrap {
     position: relative;
 }

 .chc-input-wrap .chc-input {
     padding-left: 40px;
 }

 .chc-input-icon {
     position: absolute;
     left: 13px;
     top: 50%;
     transform: translateY(-50%);
     width: 15px;
     height: 15px;
     opacity: 0.4;
     pointer-events: none;
     flex-shrink: 0;
 }

 .chc-input-wrap.readonly .chc-input-icon {
     opacity: 0.3;
 }

 /* Hint text */
 .chc-hint {
     font-size: 0.69rem;
     color: var(--dark-gray, #888);
     display: flex;
     align-items: center;
     gap: 4px;
     margin-top: -2px;
 }

 .chc-hint svg {
     width: 10px;
     height: 10px;
     opacity: 0.5;
     flex-shrink: 0;
 }

 /* ── Toggle box ── */
 .chc-toggle-box {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     background: rgba(227, 152, 45, 0.04);
     border: 1.5px solid rgba(227, 152, 45, 0.18);
     border-radius: 11px;
     padding: 14px 16px;
     cursor: pointer;
     transition: background 0.2s ease, border-color 0.2s ease;
     user-select: none;
 }

 .chc-toggle-box:hover {
     background: rgba(227, 152, 45, 0.07);
     border-color: rgba(227, 152, 45, 0.3);
 }

 .chc-toggle-box.active {
     background: rgba(227, 152, 45, 0.07);
     border-color: rgba(227, 152, 45, 0.35);
 }

 .chc-tog-left {
     display: flex;
     align-items: center;
     gap: 11px;
 }

 .chc-tog-ico {
     width: 36px;
     height: 36px;
     border-radius: 9px;
     background: rgba(227, 152, 45, 0.12);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1rem;
     flex-shrink: 0;
     transition: background 0.2s;
 }

 .chc-toggle-box.active .chc-tog-ico {
     background: rgba(227, 152, 45, 0.2);
 }

 /* .chc-tog-text {} */

 .chc-tog-name {
     font-family: 'Syne', sans-serif;
     font-size: 0.85rem;
     font-weight: 700;
     color: var(--text, #231805);
     line-height: 1.2;
     margin-bottom: 2px;
 }

 .chc-tog-desc {
     font-size: 0.69rem;
     color: var(--dark-gray, #555);
 }

 /* Switch pill */
 .chc-switch {
     position: relative;
     width: 44px;
     height: 22px;
     background: var(--chinese-silver, #ccc);
     border-radius: 11px;
     border: none;
     cursor: pointer;
     transition: background 0.24s ease;
     flex-shrink: 0;
     pointer-events: none;
     /* parent box handles click */
 }

 .chc-switch::after {
     content: '';
     position: absolute;
     width: 18px;
     height: 18px;
     background: #fff;
     border-radius: 50%;
     top: 2px;
     left: 2px;
     transition: transform 0.24s ease;
     box-shadow: 0 1px 5px rgba(0, 0, 0, 0.22);
 }

 .chc-switch.on {
     background: var(--primary, #e3982d);
 }

 .chc-switch.on::after {
     transform: translateX(22px);
 }

 /* ── Divider ── */
 .chc-divider {
     height: 1px;
     background: rgba(227, 152, 45, 0.1);
     margin: 4px 0;
 }

 /* ── Card footer / actions ── */
 .chc-card-footer {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 10px;
     padding: 16px 24px 22px;
     flex-wrap: wrap;
 }

 .chc-btn {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     padding: 10px 22px;
     border-radius: 10px;
     font-family: 'DM Sans', sans-serif;
     font-size: 0.82rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     cursor: pointer;
     border: none;
     transition: all 0.23s ease;
     text-decoration: none;
     white-space: nowrap;
 }

 .chc-btn svg {
     width: 13px;
     height: 13px;
     flex-shrink: 0;
 }

 .chc-btn.reset {
     background: transparent;
     color: var(--dark-gray, #555);
     border: 1.5px solid rgba(47, 72, 88, 0.2);
 }

 .chc-btn.reset:hover {
     background: rgba(47, 72, 88, 0.06);
     border-color: rgba(47, 72, 88, 0.35);
     color: var(--dark-slate-gray, #2f4858);
 }

 .chc-btn.submit {
     background: var(--primary, #e3982d);
     color: #fff;
     box-shadow: 0 4px 14px rgba(227, 152, 45, 0.32);
 }

 .chc-btn.submit:hover {
     background: var(--secondary, #007968);
     transform: translateY(-1px);
     box-shadow: 0 6px 20px rgba(0, 121, 104, 0.28);
 }

 /* ── Responsive ── */
 @media (max-width: 640px) {
     .chc-wrap {
         padding: 16px 12px 60px;
     }

     .chc-form-body {
         padding: 18px 16px 14px;
         gap: 16px;
     }

     .chc-card-header {
         padding: 16px 16px 14px;
     }

     .chc-card-footer {
         padding: 14px 16px 18px;
     }

     .chc-heading h1 {
         font-size: 1.3rem;
     }

     .chc-card-footer {
         justify-content: stretch;
     }

     .chc-btn {
         flex: 1;
         justify-content: center;
     }
 }
