:root {
      --bg: #0d070f;
      --bg-soft: #160a19;
      --panel: #211126;
      --panel-2: #2d1832;
      --ink: #fff8ec;
      --muted: #d9c8da;
      --gold: #e9bf55;
      --gold-soft: #ffe39b;
      --sage: #a9c7a0;
      --rose: #d79aa9;
      --line: rgba(233, 191, 85, .32);
      --line-soft: rgba(255, 248, 236, .14);
      --shadow: 0 22px 70px rgba(0, 0, 0, .42);
      --radius: 8px;
      --serif: Georgia, "Times New Roman", serif;
      --sans: "Segoe UI", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    .skip-link {
      position: fixed;
      z-index: 1000;
      top: -80px;
      left: 16px;
      padding: 10px 14px;
      border-radius: 6px;
      color: #120913;
      background: var(--gold-soft);
      font-weight: 800;
      text-decoration: none;
    }

    .skip-link:focus {
      top: 16px;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at 18% 16%, rgba(122, 60, 139, .36), transparent 28%),
        radial-gradient(circle at 88% 9%, rgba(169, 199, 160, .16), transparent 24%),
        linear-gradient(180deg, #120913 0%, #09050b 58%, #050307 100%);
      color: var(--ink);
      font-family: var(--sans);
      min-height: 100vh;
      overflow-x: hidden;
    }

    body.modal-open {
      overflow: hidden;
    }

    a {
      color: inherit;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .site-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9, 5, 11, .86);
      border-bottom: 1px solid rgba(255, 255, 255, .09);
      backdrop-filter: blur(16px);
    }

    .nav-inner {
      width: min(1160px, calc(100% - 32px));
      min-height: 64px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 1.14rem;
      font-weight: 800;
      letter-spacing: .02em;
      text-decoration: none;
      white-space: nowrap;
    }

    .brand-mark {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--gold);
      font-size: 1rem;
      line-height: 1;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
      flex-wrap: wrap;
    }

    .nav-links a {
      padding: 9px 12px;
      border-radius: 999px;
      color: var(--muted);
      font-size: .93rem;
      font-weight: 700;
      text-decoration: none;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      background: rgba(255, 255, 255, .08);
      color: var(--ink);
      outline: none;
    }

    .hero {
      position: relative;
      min-height: min(780px, calc(100svh - 64px));
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      background-image:
        linear-gradient(90deg, rgba(8, 4, 9, .88) 0%, rgba(14, 7, 15, .78) 36%, rgba(14, 7, 15, .28) 72%, rgba(8, 4, 9, .66) 100%),
        linear-gradient(0deg, rgba(8, 4, 9, .96) 0%, rgba(8, 4, 9, .16) 38%),
        url("/assets/tarot-hero.png");
      background-position: center;
      background-size: cover;
    }

    .hero-content {
      position: relative;
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      padding: clamp(82px, 13vw, 146px) 0 clamp(54px, 9vw, 98px);
    }

    .hero-copy {
      max-width: 700px;
    }

    .eyebrow {
      margin: 0 0 16px;
      color: var(--gold-soft);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3 {
      font-family: var(--serif);
    }

    h1 {
      max-width: 760px;
      margin: 0;
      color: var(--gold);
      font-size: clamp(3.35rem, 9vw, 7.4rem);
      line-height: .86;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .hero-lede {
      max-width: 640px;
      margin: 22px 0 0;
      color: #fff5e6;
      font-family: var(--serif);
      font-size: clamp(1.13rem, 2.4vw, 1.45rem);
      line-height: 1.55;
    }

    .actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .button,
    button.button {
      min-height: 46px;
      border: 0;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 18px;
      color: #140b10;
      background: var(--gold);
      box-shadow: none;
      cursor: pointer;
      font-weight: 900;
      text-decoration: none;
      transition: transform .14s ease, background .14s ease, color .14s ease, border-color .14s ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-1px);
      background: var(--gold-soft);
      outline: none;
    }

    .button.secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--line);
    }

    .button.secondary:hover,
    .button.secondary:focus-visible {
      background: rgba(255, 255, 255, .13);
      border-color: rgba(255, 227, 155, .7);
    }

    .button.ghost {
      color: var(--ink);
      background: transparent;
      border: 1px solid rgba(255, 255, 255, .22);
    }

    .button[disabled] {
      cursor: not-allowed;
      opacity: .58;
      transform: none;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 760px;
      margin-top: 34px;
    }

    .proof-pill {
      min-height: 74px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      padding: 14px 16px;
      background: rgba(13, 7, 15, .56);
      backdrop-filter: blur(10px);
    }

    .proof-pill strong {
      display: block;
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 1.02rem;
      line-height: 1.1;
    }

    .proof-pill span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.35;
    }

    .band {
      padding: clamp(56px, 8vw, 86px) 0;
    }

    .band.alt {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015)),
        rgba(22, 10, 25, .78);
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
    }

    .container {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

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

    .section-kicker {
      margin: 0 0 8px;
      color: var(--sage);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      color: var(--gold);
      font-size: clamp(2.05rem, 4.2vw, 3.65rem);
      line-height: .95;
      letter-spacing: 0;
      text-wrap: balance;
    }

    h3 {
      margin: 0;
      color: var(--gold-soft);
      font-size: 1.25rem;
      line-height: 1.1;
      letter-spacing: 0;
    }

    p {
      line-height: 1.65;
    }

    .muted {
      color: var(--muted);
    }

    .section-copy {
      max-width: 620px;
      margin: 0;
      color: var(--muted);
      font-size: 1.02rem;
    }

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

    .service-card {
      min-height: 274px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
      padding: 18px;
      border: 1px solid rgba(233, 191, 85, .28);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .032)),
        var(--panel);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    }

    .service-card.featured {
      border-color: rgba(233, 191, 85, .68);
      background:
        linear-gradient(145deg, rgba(233, 191, 85, .18), rgba(255, 255, 255, .045)),
        var(--panel);
    }

    .service-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .service-tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 4px 9px;
      border-radius: 999px;
      color: #130b10;
      background: var(--sage);
      font-size: .74rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .service-card p {
      margin: 12px 0 0;
      color: var(--muted);
    }

    .price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 16px;
      color: var(--ink);
    }

    .price {
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 1.55rem;
      font-weight: 900;
      line-height: 1;
    }

    .card-count {
      color: var(--sage);
      font-size: .88rem;
      font-weight: 800;
    }

    .story-grid {
      display: grid;
      grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
      gap: 32px;
      align-items: center;
    }

    .quote-panel {
      position: relative;
      min-height: 320px;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(233, 191, 85, .16), rgba(169, 199, 160, .08)),
        var(--panel-2);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .quote-panel::before {
      content: "";
      position: absolute;
      inset: auto -30px -55px auto;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(233, 191, 85, .24), transparent 62%);
    }

    .quote-mark {
      display: block;
      color: var(--gold);
      font-family: var(--serif);
      font-size: 4.2rem;
      line-height: .7;
    }

    .quote-panel p {
      position: relative;
      margin: 18px 0 0;
      color: #fff1dc;
      font-family: var(--serif);
      font-size: 1.35rem;
      line-height: 1.45;
    }

    .signature {
      position: relative;
      display: block;
      margin-top: 20px;
      color: var(--sage);
      font-weight: 900;
    }

    .story-copy p {
      margin: 14px 0;
      color: var(--muted);
      font-size: 1.04rem;
    }

    .values {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
    }

    .value {
      padding: 15px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
    }

    .value strong {
      display: block;
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 1.05rem;
    }

    .value span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.45;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      counter-reset: step;
    }

    .step {
      counter-increment: step;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .05);
    }

    .step::before {
      content: counter(step);
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 50%;
      color: #120913;
      background: var(--gold);
      font-weight: 900;
    }

    .step p {
      margin: 9px 0 0;
      color: var(--muted);
      font-size: .95rem;
    }

    .booking-shell {
      display: grid;
      grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(33, 17, 38, .94);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .booking-summary {
      padding: 24px;
      background:
        linear-gradient(180deg, rgba(233, 191, 85, .13), rgba(169, 199, 160, .07)),
        #1a0d1f;
      border-right: 1px solid rgba(255, 255, 255, .1);
    }

    .booking-summary .price {
      display: block;
      margin: 10px 0 8px;
      font-size: 2rem;
    }

    .summary-list {
      display: grid;
      gap: 10px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .summary-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      line-height: 1.45;
    }

    .summary-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--sage);
    }

    .booking-form {
      padding: 24px;
    }

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

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      display: block;
      margin: 0 0 7px;
      color: #fff1d1;
      font-size: .88rem;
      font-weight: 900;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid rgba(233, 191, 85, .42);
      border-radius: var(--radius);
      color: var(--ink);
      background: rgba(255, 255, 255, .075);
      padding: 12px 13px;
      outline: none;
    }

    textarea {
      min-height: 96px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(217, 200, 218, .72);
    }

    select option {
      color: var(--ink);
      background: #201126;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--gold-soft);
      box-shadow: 0 0 0 3px rgba(233, 191, 85, .16);
    }

    .field-note {
      margin: 7px 0 0;
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.4;
    }

    .hidden {
      display: none !important;
    }

    .booking-status {
      margin: 18px 0 0;
      padding: 14px 15px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      color: var(--muted);
      background: rgba(255, 255, 255, .055);
      line-height: 1.5;
    }

    .booking-status strong {
      color: var(--gold-soft);
    }

    .deck-wrap {
      margin-top: 22px;
    }

    .deck-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 14px;
      margin-bottom: 12px;
    }

    .deck-head p {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: .92rem;
    }

    .deck-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .deck {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
      gap: 9px;
    }

    .tarot-card {
      position: relative;
      min-height: 102px;
      aspect-ratio: 2 / 3.15;
      border: 1px solid rgba(233, 191, 85, .6);
      border-radius: 7px;
      color: var(--gold);
      background:
        radial-gradient(circle at 50% 35%, rgba(233, 191, 85, .34), transparent 21%),
        linear-gradient(145deg, #3a2141 0%, #100714 58%, #211126 100%);
      cursor: pointer;
      overflow: hidden;
      padding: 0;
      transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    }

    .tarot-card::before {
      content: "✦";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-size: 1.35rem;
    }

    .card-face {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(.96);
      transition: opacity .18s ease, transform .18s ease;
      background: #f1dfb9;
    }

    .card-title {
      position: absolute;
      left: 4px;
      right: 4px;
      bottom: 4px;
      z-index: 2;
      display: block;
      padding: 4px 5px;
      border-radius: 5px;
      color: #fff8ec;
      background: rgba(13, 7, 15, .78);
      font-size: .6rem;
      font-weight: 900;
      line-height: 1.08;
      text-align: center;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity .18s ease, transform .18s ease;
    }

    .tarot-card.selected {
      transform: translateY(-4px);
      border-color: #fff5d5;
      background: #f1dfb9;
      box-shadow: 0 13px 25px rgba(233, 191, 85, .28);
    }

    .tarot-card.selected::before {
      display: none;
    }

    .tarot-card.selected .card-face,
    .tarot-card.selected .card-title {
      opacity: 1;
      transform: none;
    }

    .tarot-card:focus-visible {
      outline: 3px solid rgba(255, 227, 155, .55);
      outline-offset: 3px;
    }

    .selected-list {
      display: grid;
      gap: 8px;
      margin-top: 12px;
    }

    .selected-item {
      padding: 10px 12px;
      border: 1px solid rgba(233, 191, 85, .28);
      border-radius: var(--radius);
      color: var(--muted);
      background: rgba(255, 255, 255, .052);
    }

    .selected-item strong {
      color: var(--gold-soft);
    }

    .payment-box {
      margin-top: 22px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .payment-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 14px;
    }

    .payment-method {
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      padding: 14px;
      background: rgba(255, 255, 255, .045);
    }

    .payment-method strong {
      display: block;
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 1.05rem;
    }

    .payment-method span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.4;
    }

    .legal-note {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.55;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    details {
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .045);
      overflow: hidden;
    }

    summary {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 15px 16px;
      color: var(--gold-soft);
      cursor: pointer;
      font-family: var(--serif);
      font-size: 1.08rem;
      font-weight: 900;
    }

    summary::after {
      content: "+";
      color: var(--sage);
      font-family: var(--sans);
      font-size: 1.3rem;
    }

    details[open] summary::after {
      content: "−";
    }

    details p {
      margin: 0;
      padding: 0 16px 16px;
      color: var(--muted);
    }

    .final-cta {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
      gap: 28px;
      align-items: center;
      padding: 30px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(233, 191, 85, .16), rgba(169, 199, 160, .08)),
        var(--panel);
      box-shadow: var(--shadow);
    }

    .final-cta p {
      color: var(--muted);
      margin: 16px 0 0;
    }

    .contact-card {
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      background: rgba(0, 0, 0, .16);
    }

    .contact-card strong {
      display: block;
      color: var(--gold-soft);
      font-family: var(--serif);
      font-size: 1.2rem;
    }

    .contact-card span {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      line-height: 1.45;
    }

    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 28px 0 36px;
      color: rgba(217, 200, 218, .72);
      text-align: center;
    }

    .site-footer p {
      margin: 0;
      font-size: .9rem;
    }

    .site-footer .fine-print {
      margin-top: 8px;
      font-size: .82rem;
    }

    .site-footer a {
      color: var(--gold-soft);
      font-weight: 800;
      text-decoration: none;
    }

    .toast {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 80;
      width: min(380px, calc(100% - 36px));
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      color: var(--ink);
      background: rgba(21, 10, 25, .96);
      box-shadow: var(--shadow);
      transform: translateY(16px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 980px) {
      .service-grid,
      .steps,
      .values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .story-grid,
      .booking-shell,
      .final-cta {
        grid-template-columns: 1fr;
      }

      .booking-summary {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
      }
    }

    @media (max-width: 700px) {
      h1 {
        font-size: clamp(2.55rem, 11vw, 3rem);
        line-height: .96;
        text-wrap: wrap;
      }

      h2 {
        font-size: clamp(1.72rem, 7.5vw, 2rem);
        line-height: 1.02;
        text-wrap: wrap;
      }

      .nav-inner {
        min-height: auto;
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .nav-links a {
        padding: 7px 9px;
        font-size: .88rem;
      }

      .hero {
        min-height: auto;
        align-items: flex-end;
        background-position: 64% center;
      }

      .hero-content {
        width: min(1160px, calc(100% - 28px));
        padding: 76px 0 46px;
      }

      .hero-copy,
      .section-head,
      .service-card,
      .quote-panel,
      .story-copy,
      .booking-form,
      .booking-summary,
      .final-cta,
      .contact-card {
        width: 100%;
        max-width: 330px;
        margin-inline: 0 auto;
        min-width: 0;
      }

      .hero-lede,
      .section-copy,
      .service-card p,
      .story-copy p,
      .final-cta p {
        overflow-wrap: anywhere;
      }

      .eyebrow,
      .section-kicker {
        letter-spacing: .12em;
      }

      .eyebrow {
        letter-spacing: .16em;
      }

      .hero-proof,
      .service-grid,
      .steps,
      .values,
      .form-grid,
      .payment-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

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

      .button {
        width: 100%;
      }

      .deck {
        grid-template-columns: repeat(auto-fill, minmax(68px, 1fr));
        gap: 8px;
        max-height: 70svh;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 2px 5px 2px 2px;
        scrollbar-color: var(--gold) rgba(255, 255, 255, .08);
      }

      .deck-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .deck-actions,
      .deck-actions .button {
        width: 100%;
      }

      .tarot-card {
        min-height: 106px;
      }

      .booking-form,
      .booking-summary,
      .final-cta {
        padding: 18px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
    }

.selected-cards-title { margin-top: 22px; }
