:root {
  --fm-purple: #6f2cff;
  --fm-purple-dark: #4b16c9;
  --fm-purple-soft: #f2ecff;
  --fm-black: #111114;
  --fm-ink: #202124;
  --fm-muted: #5f6368;
  --fm-line: #e6e8ee;
  --fm-surface: #ffffff;
  --fm-bg: #f8f9fb;
  --fm-success: #137333;
  --fm-radius: 18px;
}

* {
  letter-spacing: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--fm-bg);
  color: var(--fm-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

.material-symbols-rounded {
  font-size: 20px;
  line-height: 1;
  vertical-align: middle;
}

.site-header {
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(230, 232, 238, .9);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: 72px;
}

.brand-mark {
  align-items: center;
  background: var(--fm-purple);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.brand-word {
  color: var(--fm-black);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.brand-word span {
  color: var(--fm-purple);
}

.brand-word small {
  color: var(--fm-muted);
  font-size: .78em;
  font-weight: 700;
}

.nav-link {
  border-radius: 999px;
  color: var(--fm-muted);
  font-size: .94rem;
  font-weight: 600;
  padding: .55rem .9rem !important;
}

.nav-link:hover,
.nav-link:focus {
  background: var(--fm-purple-soft);
  color: var(--fm-purple);
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  gap: .45rem;
  justify-content: center;
}

.btn-primary-fm {
  background: var(--fm-purple);
  border-color: var(--fm-purple);
  color: #fff;
  box-shadow: 0 8px 18px rgba(111, 44, 255, .18);
}

.btn-primary-fm:hover,
.btn-primary-fm:focus {
  background: var(--fm-purple-dark);
  border-color: var(--fm-purple-dark);
  color: #fff;
}

.btn-dark-fm {
  background: var(--fm-black);
  border-color: var(--fm-black);
  color: #fff;
}

.btn-dark-fm:hover,
.btn-dark-fm:focus {
  background: #000;
  border-color: #000;
  color: #fff;
}

.btn-subtle {
  background: #fff;
  border: 1px solid var(--fm-line);
  color: var(--fm-ink);
}

.btn-subtle:hover {
  background: var(--fm-bg);
  border-color: #d7d9df;
}

.btn-outline-purple {
  border: 1px solid var(--fm-purple);
  color: var(--fm-purple);
}

.btn-outline-purple:hover {
  background: var(--fm-purple);
  color: #fff;
}

.avatar-dot {
  align-items: center;
  background: var(--fm-purple-soft);
  border-radius: 50%;
  color: var(--fm-purple);
  display: inline-flex;
  font-size: .72rem;
  font-weight: 800;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.hero-section {
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
  padding: 76px 0 54px;
}

.eyebrow-pill,
.section-label {
  color: var(--fm-purple);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-pill {
  align-items: center;
  background: var(--fm-purple-soft);
  border: 1px solid #e4d7ff;
  border-radius: 999px;
  display: inline-flex;
  gap: .45rem;
  padding: .55rem .85rem;
}

.hero-section h1 {
  color: var(--fm-black);
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .98;
  max-width: 760px;
}

.hero-copy {
  color: var(--fm-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  margin-top: 1.4rem;
  max-width: 610px;
}

.trust-row {
  border-top: 1px solid var(--fm-line);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  padding-top: 1.25rem;
}

.trust-row div {
  min-width: 0;
}

.trust-row strong {
  color: var(--fm-black);
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
}

.trust-row span {
  color: var(--fm-muted);
  display: block;
  font-size: .86rem;
}

.hero-visual {
  aspect-ratio: 1 / .86;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 70px rgba(17, 17, 20, .16);
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-visual::after {
  background: linear-gradient(180deg, rgba(17, 17, 20, 0) 20%, rgba(17, 17, 20, .48) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.floating-panel {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(17, 17, 20, .18);
  display: flex;
  gap: .8rem;
  max-width: min(280px, calc(100% - 32px));
  padding: .85rem 1rem;
  position: absolute;
  z-index: 2;
}

.floating-panel strong,
.floating-panel small {
  display: block;
}

.floating-panel small {
  color: var(--fm-muted);
  font-size: .8rem;
}

.panel-top {
  left: 18px;
  top: 18px;
}

.panel-bottom {
  bottom: 18px;
  right: 18px;
}

.text-purple {
  color: var(--fm-purple) !important;
}

.assurance-strip {
  background: #fff;
  border-bottom: 1px solid var(--fm-line);
  border-top: 1px solid var(--fm-line);
  padding: 22px 0;
}

.assurance-strip .col-md-4 {
  align-items: flex-start;
  display: grid;
  gap: .15rem .8rem;
  grid-template-columns: auto 1fr;
}

.assurance-strip .material-symbols-rounded {
  background: var(--fm-purple-soft);
  border-radius: 50%;
  color: var(--fm-purple);
  grid-row: span 2;
  padding: .45rem;
}

.assurance-strip strong,
.assurance-strip small {
  display: block;
}

.assurance-strip small {
  color: var(--fm-muted);
}

.section-pad {
  padding: 72px 0;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-head h2,
.how-band h2 {
  color: var(--fm-black);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin: .4rem 0 0;
}

.how-band h2 {
  color: #fff;
}

.search-box {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 999px;
  display: flex;
  gap: .5rem;
  min-width: min(100%, 360px);
  padding: .5rem .85rem;
}

.search-box span {
  color: var(--fm-muted);
}

.search-box input {
  border: 0;
  outline: 0;
  width: 100%;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 24px;
}

.filter-row button {
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 999px;
  color: var(--fm-muted);
  font-weight: 700;
  padding: .55rem .95rem;
}

.filter-row button.active {
  background: var(--fm-black);
  border-color: var(--fm-black);
  color: #fff;
}

.quick-buy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card,
.quick-card,
.choice-card {
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: var(--fm-radius);
  overflow: hidden;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.event-card:hover,
.quick-card:hover,
.choice-card:hover,
.choice-card.selected {
  border-color: rgba(111, 44, 255, .42);
  box-shadow: 0 16px 38px rgba(17, 17, 20, .08);
  transform: translateY(-2px);
}

.event-card img,
.quick-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.event-card-body,
.quick-card-body {
  padding: 18px;
}

.soft-badge {
  background: var(--fm-purple-soft);
  border-radius: 999px;
  color: var(--fm-purple);
  display: inline-flex;
  font-size: .76rem;
  font-weight: 800;
  padding: .28rem .65rem;
}

.event-card h3,
.quick-card h3 {
  color: var(--fm-black);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin: .65rem 0 .45rem;
}

.event-meta {
  color: var(--fm-muted);
  display: grid;
  font-size: .86rem;
  gap: .25rem;
}

.event-footer {
  align-items: center;
  border-top: 1px solid var(--fm-line);
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
}

.event-footer strong {
  color: var(--fm-black);
  display: block;
  font-size: 1.05rem;
}

.event-footer small {
  color: var(--fm-muted);
  display: block;
}

.empty-state {
  background: #fff;
  border: 1px dashed var(--fm-line);
  border-radius: var(--fm-radius);
  color: var(--fm-muted);
  padding: 48px;
  text-align: center;
}

.empty-state .material-symbols-rounded {
  color: var(--fm-purple);
  font-size: 40px;
}

.how-band {
  background: var(--fm-black);
  border-radius: 30px;
  color: #fff;
  padding: clamp(26px, 5vw, 56px);
  overflow: hidden;
}

.how-band p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

.step-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-grid article {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 18px;
}

.step-grid span {
  align-items: center;
  background: var(--fm-purple);
  border-radius: 50%;
  display: inline-flex;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  margin-bottom: 18px;
  width: 30px;
}

.step-grid h3 {
  font-size: 1rem;
  font-weight: 800;
}

.step-grid p {
  font-size: .88rem;
  margin-bottom: 0;
}

.how-actions {
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: flex-end;
  margin-top: 28px;
  padding-top: 24px;
}

.footer-fm {
  background: #070708;
  color: rgba(255, 255, 255, .64);
  padding: 50px 0 24px;
}

.footer-fm h6 {
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-fm a,
.footer-fm button {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .64);
  display: block;
  padding: .25rem 0;
  text-align: left;
  text-decoration: none;
}

.newsletter {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  display: flex;
  gap: .4rem;
  padding: .35rem;
  max-width: 100%;
}

.newsletter input {
  background: transparent;
  border: 0;
  color: #fff;
  min-width: 0;
  outline: 0;
  padding: 0 .75rem;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
  margin-top: 34px;
  padding-top: 18px;
}

.modal-content {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(17, 17, 20, .25);
  overflow: hidden;
}

.clean-modal-head {
  background: #fff;
  border-bottom: 1px solid var(--fm-line);
  padding: 24px;
}

.clean-modal-head .modal-title {
  color: var(--fm-black);
  font-size: 1.45rem;
  font-weight: 800;
}

.dark-head {
  background: var(--fm-black);
  color: #fff;
}

.dark-head .modal-title {
  color: #fff;
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  background: var(--fm-bg);
  border-top: 1px solid var(--fm-line);
  padding: 16px 24px;
}

.quantity-modal .modal-body {
  padding: 38px;
  position: relative;
}

.quantity-close {
  position: absolute;
  right: 18px;
  top: 18px;
}

.quantity-modal h5 {
  color: var(--fm-black);
  font-size: 1.35rem;
  font-weight: 800;
  margin: .4rem 0 .35rem;
}

.quantity-modal p {
  color: var(--fm-muted);
  margin-bottom: 22px;
}

.quantity-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.quantity-grid button,
.quantity-more {
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 10px;
  color: var(--fm-black);
  font-weight: 800;
  min-height: 48px;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.quantity-grid button:hover,
.quantity-more:hover {
  border-color: rgba(111, 44, 255, .4);
  box-shadow: 0 12px 28px rgba(17, 17, 20, .08);
  transform: translateY(-1px);
}

.quantity-more {
  margin-top: 12px;
  width: 100%;
}

.quantity-note {
  align-items: center;
  color: var(--fm-muted);
  display: flex;
  font-size: .86rem;
  gap: .65rem;
  justify-content: center;
  margin-top: 22px;
}

.quantity-note .material-symbols-rounded {
  color: var(--fm-black);
}

.summary-card {
  align-items: center;
  background: var(--fm-bg);
  border: 1px solid var(--fm-line);
  border-radius: 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: 160px 1fr;
  padding: 14px;
}

.summary-card img {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
  width: 100%;
}

.summary-card h4 {
  font-weight: 800;
  margin: .65rem 0 .2rem;
}

.summary-card p,
.summary-card small {
  color: var(--fm-muted);
}

.qty-control {
  align-items: center;
  display: flex;
  gap: .8rem;
}

.qty-control button {
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

.qty-control strong {
  font-size: 1.3rem;
  font-variant-numeric: tabular-nums;
  min-width: 24px;
  text-align: center;
}

.qty-control span,
.delivery-note,
.secure-note {
  color: var(--fm-muted);
}

.delivery-note,
.secure-note {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 14px;
  display: flex;
  gap: .6rem;
  min-height: 48px;
  padding: .7rem .9rem;
}

.price-box {
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  padding: 16px;
}

.price-box div {
  display: flex;
  justify-content: space-between;
  padding: .42rem 0;
}

.price-box span {
  color: var(--fm-muted);
}

.price-box strong {
  font-variant-numeric: tabular-nums;
}

.price-box .total {
  border-top: 1px dashed var(--fm-line);
  margin-top: .4rem;
  padding-top: .9rem;
}

.price-box .total strong {
  color: var(--fm-purple);
  font-size: 1.25rem;
  font-weight: 800;
}

.success-state {
  padding: 34px 12px;
  text-align: center;
}

.success-state > .material-symbols-rounded {
  color: var(--fm-purple);
  font-size: 64px;
}

.success-state h4 {
  font-weight: 800;
}

.success-state p {
  color: var(--fm-muted);
}

.order-code {
  background: var(--fm-purple-soft);
  border-radius: 14px;
  color: var(--fm-purple);
  display: inline-block;
  font-size: 1.1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  padding: .85rem 1.2rem;
}

.choice-stack {
  display: grid;
  gap: 12px;
}

.choice-card {
  align-items: center;
  color: inherit;
  display: grid;
  gap: 12px;
  grid-template-columns: 74px 1fr auto;
  padding: 12px;
  text-align: left;
  width: 100%;
}

.choice-card img {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  object-fit: cover;
  width: 74px;
}

.choice-card h5 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 .25rem;
}

.choice-card p {
  color: var(--fm-muted);
  font-size: .86rem;
  margin: 0;
}

.progress-track {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
}

.progress-track span {
  background: var(--fm-bg);
  border-radius: 999px;
  color: var(--fm-muted);
  font-size: .82rem;
  font-weight: 800;
  padding: .65rem .75rem;
  text-align: center;
}

.progress-track span.active {
  background: var(--fm-purple);
  color: #fff;
}

.payout-card {
  background: var(--fm-purple-soft);
  border: 1px solid #e4d7ff;
  border-radius: 18px;
  height: 100%;
  padding: 18px;
}

.payout-card span,
.payout-card strong {
  display: block;
}

.payout-card span {
  color: var(--fm-muted);
}

.payout-card strong {
  color: var(--fm-purple);
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.auth-toggle {
  background: var(--fm-bg);
  border: 1px solid var(--fm-line);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4px;
}

.auth-toggle button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--fm-muted);
  font-weight: 800;
  padding: .7rem;
}

.auth-toggle button.active {
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 17, 20, .08);
  color: var(--fm-black);
}

.help-item {
  border-bottom: 1px solid var(--fm-line);
  padding: 16px 0;
}

.help-item h6 {
  font-weight: 800;
}

.help-item p {
  color: var(--fm-muted);
  margin-bottom: 0;
}

.profile-panel {
  --bs-offcanvas-width: min(560px, 100vw);
}

.profile-hero {
  align-items: flex-start;
  background: var(--fm-black);
  color: #fff;
  padding: 24px;
}

.profile-hero .section-label {
  color: #bda8ff;
}

.profile-hero h5 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: .2rem 0;
}

.profile-hero p {
  color: rgba(255, 255, 255, .66);
  margin: 0;
}

.profile-avatar {
  align-items: center;
  background: var(--fm-purple);
  border-radius: 18px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 800;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.profile-status-card {
  align-items: flex-start;
  background: #fff7e8;
  border: 1px solid #ffe1a8;
  border-radius: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  margin-bottom: 18px;
  padding: 16px;
}

.profile-status-card.ready {
  background: #eaf7ef;
  border-color: #c9ead5;
}

.profile-status-card .material-symbols-rounded {
  background: rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: var(--fm-purple);
  padding: .55rem;
}

.profile-status-card strong {
  color: var(--fm-black);
  display: block;
  font-weight: 800;
}

.profile-status-card p {
  color: var(--fm-muted);
  margin: .25rem 0 0;
}

.profile-section {
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 22px;
  margin-bottom: 16px;
  padding: 18px;
}

.profile-section-head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 16px;
}

.profile-section-head h6 {
  color: var(--fm-black);
  font-weight: 800;
  margin: .2rem 0 0;
}

.status-pill {
  background: #fff7e8;
  border-radius: 999px;
  color: #9a5b00;
  flex: 0 0 auto;
  font-size: .76rem;
  font-weight: 800;
  padding: .35rem .65rem;
}

.status-pill.success {
  background: #e7f5ed;
  color: var(--fm-success);
}

.status-pill.muted {
  background: var(--fm-bg);
  color: var(--fm-muted);
}

.profile-form .form-label {
  color: var(--fm-muted);
  font-size: .84rem;
  font-weight: 700;
}

.ticketing-card {
  align-items: center;
  background: var(--fm-bg);
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  padding: 14px;
}

.ticketing-options {
  display: grid;
  gap: 10px;
}

.ticketing-option {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  color: inherit;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  padding: 12px;
  text-align: left;
  width: 100%;
}

.ticketing-option:hover,
.ticketing-option.selected {
  border-color: rgba(111, 44, 255, .45);
  box-shadow: 0 14px 30px rgba(17, 17, 20, .07);
}

.ticketing-option strong,
.ticketing-option small {
  display: block;
}

.ticketing-option strong {
  color: var(--fm-black);
  font-weight: 800;
}

.ticketing-option small {
  color: var(--fm-muted);
}

.ticketing-logo {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 16px;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  width: 58px;
}

.ticketing-logo span {
  color: var(--fm-purple);
  font-weight: 900;
}

.ticketing-logo.small-logo {
  border-radius: 14px;
  height: 46px;
  padding: 7px;
  width: 46px;
}

.ticketing-logo img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.ticketing-card strong,
.ticketing-card p {
  display: block;
}

.ticketing-card strong {
  color: var(--fm-black);
  font-weight: 800;
}

.ticketing-card p {
  color: var(--fm-muted);
  margin: .25rem 0 0;
}

.linked-ticket-list {
  display: grid;
  gap: 10px;
}

.linked-ticket,
.empty-linked {
  align-items: center;
  background: var(--fm-bg);
  border: 1px solid var(--fm-line);
  border-radius: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  padding: 12px;
}

.linked-ticket .material-symbols-rounded,
.empty-linked .material-symbols-rounded {
  color: var(--fm-purple);
}

.linked-ticket strong,
.linked-ticket small {
  display: block;
}

.linked-ticket strong {
  color: var(--fm-black);
  font-size: .9rem;
  font-weight: 800;
}

.linked-ticket small,
.empty-linked p {
  color: var(--fm-muted);
  margin: 0;
}

.sales-tabs {
  background: var(--fm-bg);
  border: 1px solid var(--fm-line);
  border-radius: 999px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 14px;
  padding: 4px;
}

.sales-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--fm-muted);
  display: inline-flex;
  font-size: .84rem;
  font-weight: 800;
  gap: .45rem;
  justify-content: center;
  padding: .62rem .7rem;
}

.sales-tabs button.active {
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 17, 20, .08);
  color: var(--fm-black);
}

.sales-tabs span {
  align-items: center;
  background: var(--fm-purple-soft);
  border-radius: 999px;
  color: var(--fm-purple);
  display: inline-flex;
  font-size: .72rem;
  justify-content: center;
  min-width: 24px;
  padding: .14rem .4rem;
}

.sale-ticket-card {
  grid-template-columns: auto 1fr;
}

.ticket-sale-icon {
  align-self: flex-start;
  margin-top: .2rem;
}

.sale-ticket-topline {
  align-items: flex-start;
  display: flex;
  gap: .75rem;
  justify-content: space-between;
}

.sale-price {
  color: var(--fm-black);
  flex: 0 0 auto;
  font-size: .92rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.sale-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .65rem;
}

.mini-status {
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  padding: .28rem .55rem;
}

.mini-status.activo,
.mini-status.en-venta {
  background: #e7f5ed;
  color: var(--fm-success);
}

.mini-status.pausado {
  background: #f1f3f4;
  color: #5f6368;
}

.mini-status.revision,
.mini-status.pendiente {
  background: #fff7e8;
  color: #9a5b00;
}

.mini-status.vendido {
  background: var(--fm-purple-soft);
  color: var(--fm-purple);
}

.sale-control-row {
  align-items: center;
  border-top: 1px solid var(--fm-line);
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr auto;
  margin-top: .8rem;
  padding-top: .8rem;
}

.sale-toggle {
  align-items: center;
  color: var(--fm-muted);
  display: inline-flex;
  gap: .55rem;
  margin: 0;
}

.sale-toggle input {
  display: none;
}

.sale-toggle span {
  background: #dfe3e8;
  border-radius: 999px;
  display: inline-flex;
  height: 24px;
  position: relative;
  transition: background .16s ease;
  width: 44px;
}

.sale-toggle span::after {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(17, 17, 20, .18);
  content: "";
  height: 18px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform .16s ease;
  width: 18px;
}

.sale-toggle input:checked + span {
  background: var(--fm-purple);
}

.sale-toggle input:checked + span::after {
  transform: translateX(20px);
}

.sale-toggle input:disabled + span {
  opacity: .55;
}

.sale-toggle strong {
  color: var(--fm-black);
  font-size: .82rem;
  font-weight: 800;
}

.sale-price-editor {
  align-items: center;
  background: #fff;
  border: 1px solid var(--fm-line);
  border-radius: 999px;
  display: flex;
  overflow: hidden;
}

.sale-price-editor input {
  border: 0;
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  max-width: 92px;
  outline: 0;
  padding: .45rem .35rem .45rem .75rem;
}

.sale-price-editor button {
  background: var(--fm-black);
  border: 0;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  height: 100%;
  padding: .52rem .7rem;
}

.sale-price-editor button:disabled,
.sale-price-editor input:disabled {
  opacity: .55;
}

.sale-price-editor.locked {
  background: #f8f9fb;
}

.sale-alert {
  align-items: center;
  background: #fff7e8;
  border: 1px solid #ffe1a8;
  border-radius: 14px;
  color: #7a4a00;
  display: flex;
  font-size: .8rem;
  gap: .55rem;
  line-height: 1.35;
  margin-top: .75rem;
  padding: .65rem .75rem;
}

.sale-alert .material-symbols-rounded {
  flex: 0 0 auto;
}

.sold-alert {
  background: var(--fm-purple-soft);
  border-color: #e4d7ff;
  color: var(--fm-purple);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 48px;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-buy-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .navbar-collapse {
    padding-bottom: 1rem;
  }

  .navbar-brand img {
    max-width: 180px;
  }
}

@media (max-width: 575.98px) {
  .sale-control-row {
    grid-template-columns: 1fr;
  }

  .sale-price-editor {
    justify-content: space-between;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2.15rem;
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.6;
  }

  .trust-row {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--fm-line);
    border-radius: 20px;
    padding: 12px 8px;
    margin-top: 2rem !important;
  }

  .trust-row strong {
    font-size: 1.25rem;
  }

  .trust-row span {
    font-size: 0.72rem;
  }

  .hero-visual {
    aspect-ratio: 1 / 1.05;
    border-radius: 22px;
  }

  .floating-panel {
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    border-radius: 14px;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
  }

  .floating-panel strong {
    font-size: 0.82rem;
  }

  .floating-panel small {
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .panel-bottom {
    bottom: 12px;
  }

  .panel-top {
    top: 12px;
  }

  .summary-card,
  .choice-card {
    grid-template-columns: 1fr;
  }

  .choice-card img {
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  .event-card h3 {
    font-size: 0.9rem;
    margin: 0.4rem 0;
  }
  
  .event-card-body {
    padding: 10px;
  }
  
  .event-meta {
    font-size: 0.75rem;
    gap: 0.15rem;
  }
  
  .event-meta > span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    width: 100%;
  }

  .event-meta .material-symbols-rounded {
    font-size: 16px;
    flex-shrink: 0;
  }
  
  .event-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
  }
  
  .event-footer button {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
}

.profile-section-head.collapsed .expand-icon {
  transform: rotate(0deg);
}
.profile-section-head:not(.collapsed) .expand-icon {
  transform: rotate(180deg);
}
