/* LPOD Academy per-course price widget — scoped under .lpod-price-widget */
.lpod-price-widget, .lpod-price-widget * { box-sizing: border-box; }
.lpod-price-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
  line-height: 1.45;
  text-align: left;
}
.lpod-price-widget .lpod-pw-loading {
  font-size: 14px;
  color: #64748b;
  text-align: center;
  padding: 10px 0;
}
.lpod-price-widget .lpod-pw-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #0f172a;
}
.lpod-price-widget .lpod-pw-hours {
  font-size: 13px;
  color: #64748b;
  margin: 2px 0 12px;
}
.lpod-price-widget .lpod-pw-deposit {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  background: #f1f9fd;
  border: 1px solid #cfe9f7;
  border-radius: 10px;
  padding: 10px 12px;
}
.lpod-price-widget .lpod-pw-deposit span {
  font-size: 13px;
  font-weight: 600;
  color: #2ea0d6;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lpod-price-widget .lpod-pw-deposit strong { font-size: 26px; font-weight: 800; }
.lpod-price-widget .lpod-pw-note {
  font-size: 12.5px;
  color: #64748b;
  margin: 10px 0 0;
}
.lpod-price-widget .lpod-pw-form { margin-top: 14px; }
.lpod-price-widget label,
.lpod-price-widget .lpod-pw-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 0 5px;
  color: #334155;
}
.lpod-price-widget .lpod-pw-label { margin-top: 12px; }
.lpod-price-widget .lpod-pw-input {
  width: 100%;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #fff;
  color: #0f172a;
  text-transform: uppercase;
}
.lpod-price-widget .lpod-pw-input:focus,
.lpod-price-widget button:focus-visible,
.lpod-price-widget a:focus-visible {
  outline: 2px solid #2ea0d6;
  outline-offset: 2px;
}
.lpod-price-widget .lpod-pw-error {
  display: block;
  min-height: 15px;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}
.lpod-price-widget .lpod-pw-toggle { display: flex; gap: 8px; }
.lpod-price-widget .lpod-pw-pill {
  flex: 1;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  background: #fff;
  color: #334155;
  cursor: pointer;
}
.lpod-price-widget .lpod-pw-pill.lpod-pw-on {
  border-color: #2ea0d6;
  background: #eaf6fc;
  color: #12657f;
}
.lpod-price-widget .lpod-pw-check {
  width: 100%;
  margin-top: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  border: 1px solid #2ea0d6;
  border-radius: 9px;
  background: #fff;
  color: #12657f;
  cursor: pointer;
}
.lpod-price-widget .lpod-pw-breakdown {
  margin-top: 14px;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
}
.lpod-price-widget .lpod-pw-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  padding: 4px 0;
}
.lpod-price-widget .lpod-pw-line.lpod-pw-total {
  font-weight: 800;
  font-size: 16px;
  border-top: 1px dashed #e5e7eb;
  margin-top: 6px;
  padding-top: 8px;
}
.lpod-price-widget .lpod-pw-reassure,
.lpod-price-widget .lpod-pw-meta {
  font-size: 12px;
  color: #64748b;
  margin: 8px 0 0;
}
.lpod-price-widget .lpod-pw-fallback {
  margin-top: 14px;
  font-size: 13px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 10px;
  padding: 10px 12px;
}
.lpod-price-widget .lpod-pw-fallback a { color: #b45309; font-weight: 700; }
.lpod-price-widget .lpod-pw-cta {
  display: block;
  margin-top: 14px;
  background: #ee8823;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(238, 136, 35, 0.32);
}
.lpod-price-widget .lpod-pw-cta:hover { background: #d97a1a; }
@media (max-width: 420px) {
  .lpod-price-widget { padding: 16px; border-radius: 12px; }
  .lpod-price-widget .lpod-pw-deposit strong { font-size: 23px; }
  .lpod-price-widget .lpod-pw-toggle { flex-direction: column; }
}
