/* Ticket-shop theme reskins. Scoped under .theme-ios / .theme-poster on the
   shop root (.shop-page for the real shop, .preview-shop for the live editor
   preview) — both share the same inner class names, so one ruleset covers both. */

/* ===== iOS — glassy, modern app feel ===== */
.theme-ios .shop-hero { border-radius: 30px; min-height: 320px; box-shadow: 0 30px 60px -24px rgba(20, 30, 50, .35); }
.theme-ios .shop-hero .scrim { background: linear-gradient(180deg, rgba(10, 14, 24, .05) 20%, rgba(10, 14, 24, .58)); }
.theme-ios .shop-hero .hero-content { padding: 28px; }
.theme-ios .shop-hero .eyebrow { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: 12px; }
.theme-ios .shop-hero .large-title { font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; }

.theme-ios .shop-layout { gap: 20px; }
.theme-ios .list { background: transparent; border: none; box-shadow: none; display: flex; flex-direction: column; gap: 10px; }
.theme-ios .ticket-pick,
.theme-ios .ticket-grid.list { border-radius: 20px; }
.theme-ios .ticket-pick {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .5) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 24px -14px rgba(20, 30, 50, .25);
}
.theme-ios .ticket-grid .ticket-pick { border-right: 1px solid rgba(255, 255, 255, .5) !important; }
.theme-ios .stepper { background: var(--fill); border-radius: 999px; }
.theme-ios .btn:not(.btn-icon) { border-radius: 999px !important; }
.theme-ios .btn-primary { box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--accent) 55%, transparent); }
.theme-ios .input { border-radius: 999px; }
.theme-ios .shop-summary-card {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 26px;
  box-shadow: 0 20px 50px -20px rgba(20, 30, 50, .3);
}
.theme-ios .mobile-checkout-fab { border-radius: 999px; }
.theme-ios .surface.card.sheen { border-radius: 22px; }

/* ===== Statement — premium, kinetic, atmospheric. Extends the marketing
   site's own established motion language (floating gradient blobs, scroll
   reveals, bold display type) into the shop. No boxed/card surfaces — only
   single hairlines — but everything moves: sections reveal on scroll, the
   countdown genuinely ticks, rows respond to touch. ===== */
.theme-poster {
  --statement-bg: #0B0A14; --statement-ink: #F3F1F8; --statement-glow: var(--accent);
  --statement-dim: color-mix(in srgb, var(--statement-ink) 60%, transparent);
  --statement-line: color-mix(in srgb, var(--statement-ink) 16%, transparent);
}
.theme-poster { background: var(--statement-bg); color: var(--statement-ink); position: relative; }
.theme-poster .brand, .theme-poster .topbar-context, .theme-poster .headline,
.theme-poster .title2, .theme-poster .title3 { color: var(--statement-ink); }
.theme-poster .muted, .theme-poster .footnote { color: var(--statement-dim); }
.theme-poster .btn-icon.btn-surface { background: color-mix(in srgb, var(--statement-ink) 8%, transparent); color: var(--statement-ink); border: 1px solid var(--statement-line); }
.theme-poster .segmented.seg-mini { background: color-mix(in srgb, var(--statement-ink) 8%, transparent); border: 1px solid var(--statement-line); }
.theme-poster .segmented.seg-mini button { color: var(--statement-dim); }
.theme-poster .segmented.seg-mini button.active { background: var(--statement-glow); color: #0B0A14; }

/* Soft floating gradient blobs behind everything — same recipe as the
   marketing site's hero, tinted with the event's own accent color. */
.shop-blobs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.theme-poster .shop-blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .3; background: var(--statement-glow); }
.theme-poster .shop-blob.b1 { width: 460px; height: 460px; top: -160px; left: -120px; animation: statementFloat 16s ease-in-out infinite; }
.theme-poster .shop-blob.b2 { width: 380px; height: 380px; top: 30%; right: -160px; opacity: .22; animation: statementFloat 19s ease-in-out infinite reverse; }
.theme-poster .shop-blob.b3 { width: 320px; height: 320px; bottom: -140px; left: 38%; opacity: .18; animation: statementFloat 22s ease-in-out infinite; }
@keyframes statementFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, -22px) scale(1.06); }
}
.theme-poster .container { position: relative; z-index: 1; }

/* Reveal-on-scroll — identical timing/easing to the marketing site. */
.theme-poster .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.theme-poster .reveal.in-view { opacity: 1; transform: translateY(0); }
.theme-poster .shop-intro.reveal { transition-delay: .08s; }
.theme-poster .shop-ticket-section.reveal { transition-delay: .14s; }
.theme-poster .shop-layout.reveal { transition-delay: .18s; }

.theme-poster .shop-hero {
  border-radius: 6px; min-height: 280px;
  background: linear-gradient(150deg, color-mix(in srgb, var(--statement-glow) 16%, #0B0A14) 0%, #0B0A14 70%) !important;
  box-shadow: none; border: 1px solid var(--statement-line);
}
.theme-poster .shop-hero .scrim { background: linear-gradient(180deg, rgba(11, 10, 20, .1) 30%, rgba(11, 10, 20, .85)); }
.theme-poster .shop-hero .hero-content { padding: 22px 26px; }
.theme-poster .shop-hero .eyebrow {
  color: var(--statement-ink) !important; font-weight: 700; letter-spacing: .1em; font-size: 12px; opacity: .85 !important;
}
.theme-poster .shop-hero .eyebrow::before {
  content: ''; display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%;
  background: var(--statement-glow); box-shadow: 0 0 10px 2px color-mix(in srgb, var(--statement-glow) 70%, transparent); vertical-align: middle;
}
.theme-poster .shop-hero .large-title {
  font-family: var(--font-display); font-size: clamp(30px, 5.5vw, 52px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.04;
  background: linear-gradient(120deg, var(--statement-ink) 40%, var(--statement-glow) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.theme-poster .shop-hero .callout { font-size: 14px; opacity: .75 !important; }

.theme-poster .list-section-title {
  font-size: 12px; font-weight: 700; color: var(--statement-dim); text-transform: uppercase; letter-spacing: .14em; margin: 0 0 var(--sp-3);
}
.theme-poster .list { background: transparent; border: none; box-shadow: none; border-radius: 0; }
.theme-poster .ticket-pick {
  position: relative; border-bottom: 1px solid var(--statement-line) !important; border-right: none !important;
  padding: 16px 10px !important; margin: 0 -10px; border-radius: 8px;
  transition: background var(--dur-fast), padding-left var(--dur-fast);
}
.theme-poster .ticket-pick:hover { background: color-mix(in srgb, var(--statement-glow) 6%, transparent); padding-left: 16px !important; }
.theme-poster .ticket-pick .headline { font-weight: 700; font-size: 15.5px; color: var(--statement-ink); }
.theme-poster .ticket-pick .footnote { color: var(--statement-dim); }
.theme-poster .ticket-availability { height: 3px; border-radius: 2px; background: var(--statement-line); margin-top: 8px; max-width: 220px; overflow: hidden; }
.theme-poster .ticket-availability i { display: block; height: 100%; border-radius: 2px; background: var(--statement-glow); transition: width .5s ease; }
.theme-poster .stepper { background: color-mix(in srgb, var(--statement-ink) 8%, transparent); border: 1px solid var(--statement-line); border-radius: 999px; }
.theme-poster .stepper button,
.theme-poster .stepper .val { color: var(--statement-ink); }
.theme-poster .stepper button:active { transform: scale(.88); }
.theme-poster .sold-out-tag { letter-spacing: .06em; text-transform: uppercase; font-size: 11px; color: var(--statement-dim); }

/* Intro (description + location): sits right under the hero, ahead of
   tickets — the story comes first. Plain flowing text, no padding/box, each
   given a small eyebrow label so it reads as a designed section rather than
   an orphaned paragraph. */
.theme-poster .shop-intro { margin: 26px 0 6px; }
.theme-poster .shop-section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--statement-glow); margin-bottom: 8px;
}
.theme-poster .shop-description {
  background: transparent; border: none; box-shadow: none; border-radius: 0; padding: 0; margin-bottom: 26px;
  color: color-mix(in srgb, var(--statement-ink) 88%, transparent); font-size: 16.5px; line-height: 1.7; max-width: 62ch;
}
.theme-poster .shop-location { background: transparent; border: none; box-shadow: none; border-radius: 0; padding: 0; }
.theme-poster .directions-row { padding: 0 0 20px; border-bottom: 1px solid var(--statement-line); align-items: center; }
.theme-poster .shop-location-name {
  display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 17px; font-weight: 700;
}
.theme-poster .shop-location-name ion-icon { color: var(--statement-glow); font-size: 18px; flex: none; }
.theme-poster .directions-row .footnote { margin-left: 26px; }
.theme-poster .directions-row .btn-surface {
  background: color-mix(in srgb, var(--statement-ink) 8%, transparent); border: 1px solid var(--statement-line); color: var(--statement-ink);
  border-radius: 999px; font-weight: 700; font-size: 13px; padding: 9px 16px;
}
.theme-poster .directions-row .btn-surface:hover { background: color-mix(in srgb, var(--statement-glow) 16%, transparent); border-color: var(--statement-glow); }

/* Countdown: hairline dividers between segments, digits pulse on every tick. */
.theme-poster .shop-countdown { gap: 0; border-top: 1px solid var(--statement-line); border-bottom: 1px solid var(--statement-line); }
.theme-poster .shop-countdown div { background: transparent; border: none; border-radius: 0; box-shadow: none; border-right: 1px solid var(--statement-line); }
.theme-poster .shop-countdown div:last-child { border-right: none; }
.theme-poster .shop-countdown strong {
  font-family: var(--font-display); color: var(--statement-ink); display: inline-block;
}
.theme-poster .shop-countdown strong.tick { animation: statementTick .5s ease; }
@keyframes statementTick {
  0% { transform: scale(1.18); color: var(--statement-glow); text-shadow: 0 0 16px color-mix(in srgb, var(--statement-glow) 70%, transparent); }
  100% { transform: scale(1); }
}
.theme-poster .shop-countdown span { letter-spacing: .1em; color: var(--statement-dim); }

/* Countdown as a compact label pinned to the hero's side, instead of a full
   row buried in the page — a small glass pill, ticking live. */
.theme-poster .shop-countdown-badge {
  position: absolute; top: 50%; right: 18px; z-index: 2; transform: translateY(-50%);
  display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  background: color-mix(in srgb, var(--statement-bg) 55%, transparent);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--statement-line); color: var(--statement-ink);
}
.theme-poster .shop-countdown-badge > ion-icon { color: var(--statement-glow); font-size: 15px; flex: none; }
.theme-poster .shop-countdown-badge-nums { display: flex; align-items: baseline; gap: 1px; font-family: var(--font-display); font-weight: 700; font-size: 14px; white-space: nowrap; }
.theme-poster .shop-countdown-badge-nums span { font-size: 10.5px; font-weight: 600; color: var(--statement-dim); margin-right: 7px; }
.theme-poster .shop-countdown-badge-nums span:last-child { margin-right: 0; }
.theme-poster .shop-countdown-badge strong { display: inline-block; }
.theme-poster .shop-countdown-badge strong.tick { animation: statementTick .5s ease; }
@media (max-width: 640px) {
  .theme-poster .shop-countdown-badge { top: auto; bottom: 14px; right: 14px; transform: none; padding: 7px 11px; }
  .theme-poster .shop-countdown-badge-nums { font-size: 12px; }
}

/* Summary/checkout panels: no enclosing box — separated by a single top rule. */
.theme-poster .surface.card.sheen,
.theme-poster .shop-summary-card,
.theme-poster .checkout-upsell-card {
  background: transparent; border: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--statement-line);
}
.theme-poster .checkout-upsell-card { border-top: none; border-bottom: 1px solid var(--statement-line); padding: 16px 4px; }
.theme-poster .input {
  background: transparent; border-width: 0 0 1px; border-color: var(--statement-line); color: var(--statement-ink); border-radius: 0;
}
.theme-poster .input::placeholder { color: color-mix(in srgb, var(--statement-ink) 40%, transparent); }
.theme-poster .custom-select-trigger {
  background: transparent; border-width: 0 0 1px; border-color: var(--statement-line); color: var(--statement-ink); border-radius: 0;
}
.theme-poster .custom-select-list { background: var(--statement-bg); border: 1px solid var(--statement-line); color: var(--statement-ink); }

/* CTA: solid accent with a hover shine-sweep — the one deliberate "flourish". */
.theme-poster .btn-primary,
.theme-poster .btn-tinted {
  position: relative; overflow: hidden; border-radius: 999px !important; font-family: var(--font-display); font-weight: 700; letter-spacing: .01em;
  background: var(--statement-glow); color: #0B0A14; box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--statement-glow) 65%, transparent);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.theme-poster .btn-primary:hover,
.theme-poster .btn-tinted:hover { transform: translateY(-1px); box-shadow: 0 16px 34px -10px color-mix(in srgb, var(--statement-glow) 75%, transparent); }
.theme-poster .btn-primary::after,
.theme-poster .btn-tinted::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s ease;
}
.theme-poster .btn-primary:hover::after,
.theme-poster .btn-tinted:hover::after { transform: translateX(120%); }
.theme-poster .social-btn { background: color-mix(in srgb, var(--statement-ink) 8%, transparent); color: var(--statement-ink); border: 1px solid var(--statement-line); }
.theme-poster .mobile-checkout-fab { background: var(--statement-glow); color: #0B0A14; border-radius: 999px; }

/* Checkout flow panels: same hairline-only treatment. */
.theme-poster .checkout-hero-strip { background: transparent; border-bottom: 1px solid var(--statement-line); }
.theme-poster .checkout-step { background: color-mix(in srgb, var(--statement-ink) 6%, transparent); color: var(--statement-dim); border-radius: 999px; }
.theme-poster .checkout-step-icon { background: transparent; color: inherit; }
.theme-poster .checkout-step.current { background: color-mix(in srgb, var(--statement-glow) 16%, transparent); color: var(--statement-ink); }
.theme-poster .checkout-step.current .checkout-step-icon { background: var(--statement-glow); color: #0B0A14; }
.theme-poster .checkout-step.done .checkout-step-icon { background: transparent; color: var(--statement-glow); }
.theme-poster .checkout-section {
  background: transparent; border: none; border-top: 1px solid var(--statement-line); border-radius: 0; padding: var(--sp-4) 0;
}
.theme-poster .checkout-section-title { color: var(--statement-ink); }
.theme-poster .checkout-section-title ion-icon { color: var(--statement-glow); }
.theme-poster .checkout-total-lines { border-top-color: var(--statement-line); }
.theme-poster .checkout-grand-total { color: var(--statement-ink); }
/* These were missed the first pass: field labels, item-line text and price
   figures were inheriting the light theme's near-black default, effectively
   invisible on the dark background. */
.theme-poster .field label { color: var(--statement-dim); }
.theme-poster .tabular { color: var(--statement-ink); }
.theme-poster .btn-primary .tabular, .theme-poster .btn-tinted .tabular, .theme-poster .mobile-checkout-fab .tabular { color: inherit; }
.theme-poster .checkout-summary-line span:first-child { color: var(--statement-ink); }
.theme-poster .checkout-trust-row span { background: color-mix(in srgb, var(--statement-ink) 8%, transparent); color: var(--statement-ink); border: 1px solid var(--statement-line); border-radius: 999px; padding: 5px 10px; }
.theme-poster .checkout-trust-row ion-icon { color: var(--statement-glow); }
@media (prefers-reduced-motion: reduce) {
  .theme-poster .shop-blob { animation: none; }
  .theme-poster .reveal { opacity: 1; transform: none; transition: none; }
  .theme-poster .shop-countdown strong.tick { animation: none; }
}

/* ===== Festival — huge editorial type, dark & flat, festival-lineup energy ===== */
.theme-festival { background: #0B0B0C; color: #F2EDE3; }
.theme-festival .brand,
.theme-festival .topbar-context,
.theme-festival .headline { color: #F2EDE3; }
.theme-festival .segmented.seg-mini { background: rgba(242, 237, 227, .1); }
.theme-festival .segmented.seg-mini button { color: rgba(242, 237, 227, .65); }
.theme-festival .segmented.seg-mini button.active { background: #F2EDE3; color: #0B0B0C; }
.theme-festival .btn-icon.btn-surface { background: rgba(242, 237, 227, .1); color: #F2EDE3; border: 1px solid rgba(242, 237, 227, .16); }

.theme-festival .shop-hero { border-radius: 8px; min-height: 400px; box-shadow: none; background: linear-gradient(160deg, #18140f 0%, #2b2015 100%) !important; }
.theme-festival .shop-hero .scrim { background: linear-gradient(180deg, rgba(11, 11, 12, .12) 20%, rgba(11, 11, 12, .82)); }
.theme-festival .shop-hero .hero-content { padding: 40px; }
.theme-festival .shop-hero .eyebrow { text-transform: uppercase; letter-spacing: .2em; font-weight: 700; font-size: 11px; color: #DCA035 !important; opacity: 1 !important; }
.theme-festival .shop-hero .large-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: -.01em; font-size: clamp(38px, 7.5vw, 88px); line-height: .94;
}
.theme-festival .shop-hero .callout { text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 650; opacity: .85 !important; }

.theme-festival .list-section-title { text-transform: uppercase; letter-spacing: .16em; font-size: 11.5px; font-weight: 700; color: rgba(242, 237, 227, .5); }
.theme-festival .list { background: transparent; border: none; box-shadow: none; border-radius: 0; }
.theme-festival .ticket-pick { border-bottom: 1px solid rgba(242, 237, 227, .14) !important; padding: 20px 6px; border-right: none !important; border-top: none !important; }
.theme-festival .ticket-pick .headline { text-transform: uppercase; letter-spacing: .03em; font-weight: 700; font-size: 15px; color: #F2EDE3; }
.theme-festival .ticket-pick .footnote { color: rgba(242, 237, 227, .55); }
.theme-festival .stepper { background: transparent; border: 1px solid rgba(242, 237, 227, .28); border-radius: 999px; }
.theme-festival .stepper button { color: #F2EDE3; }
.theme-festival .stepper .val { color: #F2EDE3; }
.theme-festival .sold-out-tag { color: rgba(242, 237, 227, .45); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; }

.theme-festival .surface.card.sheen,
.theme-festival .shop-summary-card { background: #17161a; border: 1px solid rgba(242, 237, 227, .14); box-shadow: none; border-radius: 6px; color: #F2EDE3; }
.theme-festival .shop-summary-card .muted,
.theme-festival .surface.card.sheen .muted { color: rgba(242, 237, 227, .55); }
.theme-festival .directions-row .title3 { color: #F2EDE3; }
.theme-festival .input { background: #0B0B0C; border-color: rgba(242, 237, 227, .22); color: #F2EDE3; }
.theme-festival .input::placeholder { color: rgba(242, 237, 227, .4); }
.theme-festival .btn-primary,
.theme-festival .btn-tinted {
  border-radius: 2px !important; text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  background: #DCA035; color: #1A1408; box-shadow: none;
}
.theme-festival .shop-countdown div { background: rgba(242, 237, 227, .06); border: 1px solid rgba(242, 237, 227, .14); }
.theme-festival .shop-countdown strong { color: #F2EDE3; }
.theme-festival .shop-countdown span { color: rgba(242, 237, 227, .5); }
.theme-festival .social-btn { background: rgba(242, 237, 227, .1); color: #F2EDE3; }
.theme-festival .mobile-checkout-fab { background: #DCA035; color: #1A1408; border-radius: 2px; text-transform: uppercase; letter-spacing: .08em; }

/* Checkout flow: same dark/flat/gold treatment as the rest of this theme —
   these classes are only used on the checkout page so they were never
   covered before checkout started inheriting the shop theme. */
.theme-festival .checkout-hero-strip { background: #17161a; border: 1px solid rgba(242, 237, 227, .14); }
.theme-festival .checkout-trust-row span { background: rgba(242, 237, 227, .08); color: #F2EDE3; border: 1px solid rgba(242, 237, 227, .16); }
.theme-festival .checkout-trust-row ion-icon { color: #DCA035; }
.theme-festival .checkout-step { background: rgba(242, 237, 227, .06); color: rgba(242, 237, 227, .55); }
.theme-festival .checkout-step-icon { background: rgba(242, 237, 227, .08); color: inherit; }
.theme-festival .checkout-step.current { background: rgba(220, 160, 53, .16); color: #F2EDE3; }
.theme-festival .checkout-step.current .checkout-step-icon { background: #DCA035; color: #1A1408; }
.theme-festival .checkout-step.done .checkout-step-icon { background: rgba(242, 237, 227, .08); color: #DCA035; }
.theme-festival .checkout-section { background: #17161a; border: 1px solid rgba(242, 237, 227, .14); box-shadow: none; }
.theme-festival .checkout-section-title { color: #F2EDE3; }
.theme-festival .checkout-section-title ion-icon { color: #DCA035; }
.theme-festival .checkout-total-lines { border-top-color: rgba(242, 237, 227, .14); }
.theme-festival .checkout-grand-total { color: #F2EDE3; }
.theme-festival .checkout-upsell-card { background: rgba(242, 237, 227, .05); border: 1px solid rgba(242, 237, 227, .14); box-shadow: none; }
.theme-festival .custom-select-trigger { background: #0B0B0C; border-color: rgba(242, 237, 227, .22); color: #F2EDE3; }
.theme-festival .custom-select-list { background: #17161a; border: 1px solid rgba(242, 237, 227, .18); color: #F2EDE3; }
/* Field labels, item-line text and price figures default to the light
   theme's near-black label color, which doesn't inherit through — invisible
   on this dark background unless set explicitly. */
.theme-festival .field label { color: rgba(242, 237, 227, .55); }
.theme-festival .tabular { color: #F2EDE3; }
.theme-festival .btn-primary .tabular, .theme-festival .btn-tinted .tabular, .theme-festival .mobile-checkout-fab .tabular { color: inherit; }
.theme-festival .checkout-summary-line span:first-child { color: #F2EDE3; }

@media (max-width: 640px) {
  .theme-poster .shop-hero { min-height: 320px; }
  .theme-ios .shop-hero { min-height: 280px; }
  .theme-festival .shop-hero { min-height: 300px; }
  .theme-festival .mobile-checkout-fab { letter-spacing: .02em; font-size: 13px; padding: 0 14px; }
}
@media (max-width: 360px) {
  .theme-festival .mobile-checkout-fab { text-transform: none; font-size: 12.5px; }
}
