/* UnlockedMagick shared UI primitives — disclosures, plan table, sticky CTA */

.um-disclosure {
  display: block;
  margin: 14px 0;
  padding: 12px 16px;
  background: rgba(201, 168, 76, 0.06);
  border-left: 3px solid rgba(201, 168, 76, 0.55);
  border-radius: 6px;
  color: rgba(231, 220, 160, 0.92);
  font-size: 13px;
  line-height: 1.6;
}
.um-disclosure.um-disclosure-warning {
  background: rgba(239, 68, 68, 0.08);
  border-left-color: rgba(239, 68, 68, 0.7);
  color: #fecaca;
}
.um-disclosure strong { color: #FFD700; margin-right: 4px; }
.um-disclosure a { color: #C9A84C; text-decoration: underline; }

.um-plan-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  overflow: hidden;
}
.um-plan-table thead { background: rgba(201,168,76,0.1); }
.um-plan-table th,
.um-plan-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.um-plan-table th[scope="row"] {
  color: #FFD700;
  font-weight: 700;
  font-family: 'Cinzel', serif;
}
.um-plan-table tbody tr:last-child th,
.um-plan-table tbody tr:last-child td { border-bottom: 0; }
.um-plan-cta {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #C9A84C, #FFD700);
  color: #111 !important;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 13px;
  white-space: nowrap;
}
.um-plan-cta:hover { transform: translateY(-1px); }

@media (max-width: 780px) {
  .um-plan-table thead { display: none; }
  .um-plan-table,
  .um-plan-table tbody,
  .um-plan-table tr,
  .um-plan-table td,
  .um-plan-table th { display: block; width: 100%; }
  .um-plan-table tr {
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.02);
  }
  .um-plan-table td { border-bottom: 0; padding: 6px 4px; }
  .um-plan-table td::before {
    content: attr(data-label) ": ";
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    margin-right: 6px;
  }
}

.um-sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 9500;
  display: none;
  background: linear-gradient(135deg, #C9A84C, #FFD700);
  color: #111;
  text-align: center;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none !important;
  font-size: 15px;
}
.um-sticky-cta:hover { transform: translateY(-2px); }
@media (max-width: 820px) { .um-sticky-cta { display: block; } }
