.healoga-checkout {
  --healoga-green: #145b47;
  --healoga-green-2: #1c7a60;
  --healoga-gold: #dca313;
  --healoga-ink: #173d33;
  --healoga-soft: #f3f4f3;
  box-sizing: border-box;
  width: min(100%, 760px);
  margin: 32px auto;
  overflow: hidden;
  border: 1px solid rgba(20, 91, 71, .09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(20, 91, 71, .10);
  color: var(--healoga-ink);
  font-family: inherit;
}
.healoga-checkout *, .healoga-checkout *::before, .healoga-checkout *::after { box-sizing: border-box; }
.healoga-checkout__header { padding: 30px 34px 27px; background: var(--healoga-green); color: #fff; text-align: center; }
.healoga-checkout__eyebrow { display: inline-block; margin-bottom: 7px; color: #c9e2d9; font-size: 13px; }
.healoga-checkout__header h2 { margin: 0; color: #fff; font-size: clamp(22px, 4vw, 30px); line-height: 1.6; }
.healoga-checkout__price { margin-top: 6px; color: #fff; font-size: 16px; font-weight: 700; }
.healoga-checkout__price del { opacity: .65; font-weight: 400; }
.healoga-checkout__form { padding: 32px 34px 35px; }
.healoga-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; }
.healoga-fields label { display: flex; flex-direction: column; gap: 8px; color: var(--healoga-ink); font-size: 14px; font-weight: 700; }
.healoga-fields label b { color: var(--healoga-gold); }
.healoga-field--wide { grid-column: 1 / -1; }
.healoga-fields input { width: 100%; height: 52px; margin: 0; padding: 0 16px; border: 1px solid #dfe6e3; border-radius: 13px; outline: none; background: var(--healoga-soft); color: #183e34; font: inherit; transition: border-color .2s, box-shadow .2s, background .2s; }
.healoga-fields input:focus { border-color: var(--healoga-green-2); background: #fff; box-shadow: 0 0 0 4px rgba(28, 122, 96, .10); }
.healoga-fields input[name="phone"] { direction: ltr; text-align: right; }
.healoga-consent { display:flex; gap:12px; align-items:center; justify-content:space-between; margin:24px 0 20px; padding:13px 15px; border:1px solid #e8ecea; border-radius:14px; background:#f7f8f7; color:#52655f; font-size:13px; }
.healoga-consent label { display:flex; gap:9px; align-items:center; cursor:pointer; }
.healoga-consent input { flex:0 0 auto; width:18px; height:18px; margin:0; accent-color:var(--healoga-green-2); }
.healoga-terms-open { flex:0 0 auto; padding:5px 0; border:0; border-bottom:1px solid currentColor; background:transparent; color:var(--healoga-green-2); font:inherit; font-weight:800; cursor:pointer; }
.healoga-terms-modal[hidden] { display:none!important; }
.healoga-terms-modal { position:fixed; z-index:999999; inset:0; display:flex; align-items:center; justify-content:center; padding:20px; }
.healoga-terms-modal__backdrop { position:absolute; inset:0; background:rgba(10,35,28,.62); backdrop-filter:blur(3px); }
.healoga-terms-modal__panel { position:relative; z-index:1; width:min(100%,580px); max-height:min(82vh,680px); overflow:auto; padding:29px; border-radius:20px; background:#fff; box-shadow:0 24px 80px rgba(0,0,0,.25); }
.healoga-terms-modal__panel .healoga-checkout__eyebrow { color:var(--healoga-green-2); }
.healoga-terms-modal__panel h3 { margin:2px 0 17px; color:var(--healoga-green); font-size:23px; }
.healoga-terms-modal__text { color:#52655f; font-size:14px; line-height:2.15; }
.healoga-terms-modal__text p { margin:0 0 13px; }
.healoga-terms-modal__close { position:absolute; top:15px; left:16px; display:flex; width:34px; height:34px; align-items:center; justify-content:center; border:0; border-radius:50%; background:#f0f2f1; color:#53635e; font:inherit; font-size:25px; cursor:pointer; }
.healoga-terms-accept { width:100%; min-height:50px; margin-top:10px; padding:10px 18px; border:0; border-radius:13px; background:var(--healoga-green); color:#fff; font:inherit; font-weight:800; cursor:pointer; }
body.healoga-modal-open { overflow:hidden; }
.healoga-submit { display: flex; width: 100%; min-height: 58px; padding: 10px 21px; align-items: center; justify-content: center; gap: 15px; border: 0; border-radius: 14px; background: var(--healoga-gold); color: #fff; font: inherit; font-size: 16px; font-weight: 800; cursor: pointer; box-shadow: 0 8px 20px rgba(220, 163, 19, .22); transition: transform .2s, filter .2s; }
.healoga-submit:hover { filter: brightness(.96); transform: translateY(-1px); }
.healoga-submit:disabled { cursor: wait; opacity: .7; transform: none; }
.healoga-form-message { display: none; margin: 0 0 15px; padding: 12px 15px; border-radius: 10px; font-size: 13px; }
.healoga-form-message.is-error { display: block; background: #fff0ef; color: #9d2921; }
.healoga-notice { padding: 15px; border-radius: 10px; background: #fff3d5; color: #6b4b00; }
@media (max-width: 620px) {
  .healoga-checkout { margin: 22px auto; border-radius: 18px; }
  .healoga-checkout__header { padding: 24px 20px; }
  .healoga-checkout__form { padding: 24px 18px 26px; }
  .healoga-fields { grid-template-columns: 1fr; gap: 16px; }
  .healoga-field--wide { grid-column: auto; }
  .healoga-submit { flex-direction: column; gap: 3px; }
  .healoga-consent { align-items:flex-start; flex-direction:column; }
  .healoga-terms-modal { padding:13px; }
  .healoga-terms-modal__panel { padding:25px 20px 20px; border-radius:17px; }
}

.healoga-dashboard { --healoga-green:#145b47; --healoga-green-2:#1c7a60; --healoga-gold:#dca313; --healoga-ink:#173d33; width:min(100%,1000px); margin:32px auto; padding:30px; border-radius:22px; background:#f3f4f3; color:var(--healoga-ink); font-family:inherit; box-sizing:border-box; }
.healoga-dashboard *, .healoga-dashboard *::before, .healoga-dashboard *::after { box-sizing:border-box; }
.healoga-dashboard__header { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:24px; }
.healoga-dashboard__header span { color:#6e807a; font-size:13px; }
.healoga-dashboard__header h2 { margin:3px 0 0; color:var(--healoga-green); font-size:28px; }
.healoga-dashboard__header .healoga-dashboard__count { padding:8px 14px; border-radius:999px; background:#dfece7; color:var(--healoga-green); font-weight:700; }
.healoga-course-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.healoga-course-card { display:grid; grid-template-columns:155px 1fr; overflow:hidden; min-height:205px; border:1px solid rgba(20,91,71,.08); border-radius:18px; background:#fff; box-shadow:0 8px 25px rgba(20,91,71,.06); }
.healoga-course-card__media { display:flex; align-items:center; justify-content:center; min-height:100%; background:#dce9e4 center/cover no-repeat; color:var(--healoga-green); font-size:42px; font-weight:800; }
.healoga-course-card__body { display:flex; flex-direction:column; align-items:flex-start; padding:20px; }
.healoga-course-card__status { padding:5px 10px; border-radius:999px; background:#e4f1ec; color:var(--healoga-green-2); font-size:11px; font-weight:700; }
.healoga-course-card h3 { margin:12px 0 6px; color:var(--healoga-ink); font-size:18px; line-height:1.7; }
.healoga-course-card p { margin:0 0 16px; color:#7a8984; font-size:12px; }
.healoga-course-button { display:inline-flex; align-items:center; justify-content:center; gap:8px; margin-top:auto; padding:10px 17px; border-radius:999px; background:var(--healoga-gold); color:#fff!important; font-size:13px; font-weight:800; text-decoration:none!important; transition:transform .2s,filter .2s; }
.healoga-course-button:hover { filter:brightness(.96); transform:translateY(-1px); }
.healoga-dashboard__empty { padding:50px 20px; border-radius:18px; background:#fff; text-align:center; }
.healoga-dashboard__empty-icon { display:flex; width:48px; height:48px; margin:0 auto 14px; align-items:center; justify-content:center; border-radius:50%; background:#e4f1ec; color:var(--healoga-green); font-size:22px; }
.healoga-dashboard__empty h2,.healoga-dashboard__empty h3 { margin:0 0 8px; color:var(--healoga-green); }
.healoga-dashboard__empty p { margin:0 auto 20px; color:#71817c; }
@media (max-width:800px) { .healoga-course-grid { grid-template-columns:1fr; } }
@media (max-width:520px) { .healoga-dashboard { padding:18px; border-radius:18px; } .healoga-course-card { grid-template-columns:1fr; } .healoga-course-card__media { min-height:150px; } }
