/* Creation progress (summary CTA → signup) */
.creation-progress {
    position: fixed;
    inset: 0;
    z-index: 2900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.creation-progress.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.creation-progress__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
}

.creation-progress__panel {
    position: relative;
    width: 100%;
    max-width: 22rem;
    padding: 1.75rem 1.5rem 1.5rem;
    background: #141416;
    border-radius: 1rem;
    border: 1px solid rgba(254, 98, 131, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.creation-progress__title {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
}

.creation-progress__track {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.creation-progress__fill {
    height: 100%;
    width: 10%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff7000, #fe6283);
}

.creation-progress__pct {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: #fe6283;
}

body.creation-progress-open {
    overflow: hidden;
}

.signup-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 3000;
}

.signup-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

body.modal-open {
    overflow: hidden;
}

.signup-modal__overlay {
    position: absolute;
    inset: 0;
}

.signup-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 49rem;
    background: #141416;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    max-height: calc(100dvh - 2rem);
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .signup-modal__dialog {
        background: rgba(30, 30, 32, 0.25);
        max-height: calc(100dvh - 1rem);
        backdrop-filter: blur(10px);
    }
}

.signup-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease;
}

.signup-modal__close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.signup-modal__body {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    color: #ECEDEE;
    background: rgba(255, 255, 255, 0.12);
}

.signup-modal__form-panel {
    flex: 1;
    padding: 2rem 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.signup-modal__media-panel {
    flex: 1;
    position: relative;
}

.signup-modal__media {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.signup-modal__media img,
.signup-modal__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.signup-modal__media-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signup-modal__media-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
}

.signup-modal__title {
    font-size: 2rem;
    margin: 0 0 0.5rem;
    text-align: center;
    color: #EA80FC;
    font-weight: 700;
    flex-shrink: 0;
}

.signup-modal__subtitle {
    text-align: center;
    color: #A1A1AA;
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.signup-modal__form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
}

.signup-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.signup-modal__field input {
    width: 100%;
    padding: 0.95rem;
    background: #2D2D30;
    border: 2px solid rgba(234, 128, 252, 0.5);
    border-radius: 0.75rem;
    font-size: 1rem;
    color: #fff;
    transition: border 0.2s ease, background 0.2s ease;
}

.signup-modal__password-wrap {
    position: relative;
}

.signup-modal__password-wrap input {
    padding-right: 3rem;
}

.signup-modal__password-toggle {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: color 0.2s ease;
}

.signup-modal__password-toggle:hover {
    color: rgba(255, 255, 255, 0.85);
}

.signup-modal__password-toggle:focus-visible {
    outline: 2px solid rgba(234, 128, 252, 0.85);
    outline-offset: 2px;
    border-radius: 0.35rem;
}

.signup-modal__password-icon {
    display: block;
}

.signup-modal__password-icon--hide {
    display: none;
}

.signup-modal__password-toggle[aria-pressed="true"] .signup-modal__password-icon--show {
    display: none;
}

.signup-modal__password-toggle[aria-pressed="true"] .signup-modal__password-icon--hide {
    display: block;
}

.signup-modal__field-hint {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
}

.signup-modal__field input:focus {
    border-color: rgba(234, 128, 252, 1);
    background: #303036;
    outline: none;
}

.signup-modal__submit {
    width: 100%;
    padding: 0.95rem;
    border-radius: 0.75rem;
    border: none;
    background: rgb(234, 128, 252);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(234, 128, 252, 0.25);
}

.signup-modal__submit:hover {
    transform: translateY(-1px);
}

.signup-modal__feature-tags {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0.15rem 0 0;
    line-height: 1.45;
}

.signup-modal__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    color: rgba(236, 237, 238, 0.45);
}

.signup-modal__divider::before,
.signup-modal__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(236, 237, 238, 0.2);
}

.signup-modal__google-btn {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    border: none;
    background: #fff;
    color: #111;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.signup-modal__google-btn[data-loading="true"] {
    opacity: 0.75;
    cursor: wait;
}

.signup-modal__google-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.signup-modal__google-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.signup-modal__message {
    min-height: 1.25rem;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.35rem;
}

.signup-modal__message[data-state="info"] {
    color: #93D9F7;
}

.signup-modal__message[data-state="success"] {
    color: #8be78b;
}

.signup-modal__message[data-state="error"] {
    color: #ff8a8a;
}

.signup-modal__terms {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.1rem 0 0;
}

.signup-modal__terms-link {
    color: rgba(234, 128, 252, 0.85);
    text-decoration: none;
}

.signup-modal__terms-link:hover {
    text-decoration: underline;
    color: rgba(234, 128, 252, 1);
}

.signup-modal__login-hint {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.signup-modal__login-link {
    color: rgba(234, 128, 252, 0.85);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
    font-weight: 500;
}

.signup-modal__login-link:hover {
    text-decoration: underline;
    color: rgba(234, 128, 252, 1);
}

.signup-modal__login-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

@media (max-width: 1024px) {
    .signup-modal__dialog {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .signup-modal__body {
        flex-direction: column;
    }
    .signup-modal__media-panel {
        min-height: 14rem;
        display: none;
    }
}

@media (max-width: 575px) {
    .signup-modal {
        padding: 1rem;
    }
    .signup-modal__dialog {
        max-width: 100%;
    }
    .signup-modal__form-panel {
        padding: 2.5rem 1.5rem 1.25rem;
    }
    .signup-modal__close {
        top: 0.5rem;
        right: 0.5rem;
    }
}

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* SUMMARY — desktop and landscape layout */
    @media (orientation: landscape), (min-width: 541px) {
      .summary-wrap {
        display: grid;
        grid-template-columns: 15fr 8fr; /* JS kirjutab vajadusel px-idega üle */
        column-gap: 10px;
        align-items: start;
      }

      .summary-hero {
        position: relative;
        aspect-ratio: 9 / 16;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.60);
        background: rgba(255, 255, 255, 0.05);
      }

      .summary-right {
        height: 100%;
        display: grid;
        /* Desktop: 5 columns x 2 rows = 10 tiles */
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
      }

      .summary-tile {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        aspect-ratio: 3 / 4;
      }

      .summary-dim {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
        z-index: 0;
      }

      .summary-icon-wrap {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
      }

      .summary-icon {
        font-size: 32px;
        opacity: .95;
      }

      .summary-hero img,
      .summary-hero video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }
      .summary-tile img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        z-index: 0;
      }
      .summary-tile .summary-tile-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
      }
    }

    /* Desktop content widths defined later in the file (late overrides) */

    /* Style step (1) — show two style cards side‑by‑side in landscape/desktop */
    @media (orientation: landscape), (min-width: 768px) {
      .style-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      background: #000;
      color: #fff;
      font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
      overflow-x: hidden;
    }

    .video-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      height: 100svh;
      object-fit: cover;
      z-index: -2;
      pointer-events: none;
      will-change: transform;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      z-index: -1;
      pointer-events: none;
    }

    .hidden {
      display: none !important;
    }

    .page-wrapper {
      position: relative;
      min-height: 100vh;
      padding-top: max(10px, calc(env(safe-area-inset-top, 0px) + 0px), calc(6vh - 20px));
      padding-bottom: 60px;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    .content {
      width: min(92vw, 26rem);
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: center;
      background: rgba(0, 0, 0, 1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 16px;
      padding: 20px 18px;
      padding-top: calc(20px + env(safe-area-inset-top, 0px));
      padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
      backdrop-filter: saturate(120%) blur(10px);
      -webkit-backdrop-filter: saturate(120%) blur(10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      margin-bottom: 20px;
      position: relative;
      overflow: hidden;
    }

    .content>*:last-child {
      margin-bottom: 0 !important;
    }

    .trust-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 8px 12px;
      z-index: 10;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      animation: slideUp 0.5s ease-out 1s both;
    }

    @keyframes slideUp {
      from {
        transform: translateY(100%);
      }

      to {
        transform: translateY(0);
      }
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .trust-icon {
      width: 16px;
      height: 16px;
      opacity: 0.9;
    }

    .value-banner {
      background: #151515;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 8px 12px;
      margin-bottom: 10px;
      text-align: center;
      animation: fadeIn .8s ease-out .3s both;
    }

    /* Make value banner look interactive when used as CTA on step 7 */
    .value-banner.clickable { cursor: pointer; }
    .value-banner.clickable:hover { background: rgba(255,255,255,0.08); }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .value-text {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .value-text .highlight {
      color: #ff7000;
      font-weight: 700;
      transition: transform .2s ease;
      display: inline-block;
    }

    @media (max-width:390px) {
      .value-banner {
        padding: 7px 10px;
        margin-bottom: 8px;
      }

      .value-text {
        font-size: 12px;
      }
    }

    .progress-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: rgba(255, 255, 255, 0.1);
      border-top-left-radius: inherit;
      border-top-right-radius: inherit;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      overflow: hidden;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #ff7000, #ff5a00);
      transition: width .3s cubic-bezier(.4, 0, .2, 1);
      box-shadow: 0 0 10px rgba(255, 112, 0, 0.4);
    }

    .section-title {
      font-weight: 800;
      font-size: clamp(16px, 4.3vw, 25px);
      line-height: 1.3;
      margin: 0;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: -.3px;
    }

    .section-subtitle {
      font-weight: 600;
      font-size: clamp(14px, 4vw, 18px);
      line-height: 1.2;
      margin: 0 0 10px 0;
      color: #fff;
    }

    .btn-primary {
      background: linear-gradient(135deg, #ff7000, #ff5a00);
      color: #fff;
      border: 0;
      border-radius: 14px;
      padding: 16px 24px;
      font-weight: 700;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: .5px;
      line-height: 1;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      min-height: 52px;
      margin-top: 24px;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(255, 112, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: all .2s cubic-bezier(.4, 0, .2, 1);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;                 /* jääb konteineri sisse */
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-120%);      /* start väljaspool vasakul */
  transition: transform .6s ease;    /* animatsioon transform’iga */
  pointer-events: none;
}

.btn-primary:not(:disabled):hover::before {
  transform: translateX(120%);       /* libise paremale välja */
}

    .btn-primary:disabled {
      opacity: .4;
      cursor: not-allowed;
    }

    .btn-primary:not(:disabled):hover {
      background: linear-gradient(135deg, #ff5a00, #ff4500);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(255, 112, 0, 0.35), 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .btn-primary:not(:disabled) {
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 8px 24px rgba(255, 112, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      50% {
        box-shadow: 0 8px 32px rgba(255, 112, 0, 0.4), 0 4px 16px rgba(255, 90, 0, 0.2);
      }
    }

    @keyframes gentlePulse {
      0% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.03);
        opacity: .95;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    .btn-primary.just-enabled {
      animation: gentlePulse .4s ease-in-out;
    }

    .trust-mini {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      margin-top: 16px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 500;
      animation: fadeIn .5s ease-out .8s both;
    }

    .style-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      width: 100%;
    }

    .style-card {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      border: 2px solid transparent;
      background: rgba(255, 255, 255, 0.05);
      aspect-ratio: 9/16;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      -webkit-tap-highlight-color: transparent;
      transition: all .2s ease;
      cursor: pointer;
    }

    .style-card button {
      all: unset;
      position: relative;
      width: 100%;
      height: 100%;
      cursor: pointer;
      display: block;
    }

    .style-card video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      z-index: 0;
    }

    /* CDN style preview: spinner until remote file is playable */
    .style-video-loader {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.4);
      pointer-events: none;
    }

    .style-video-loader::after {
      content: '';
      width: 36px;
      height: 36px;
      border: 3px solid rgba(255, 255, 255, 0.22);
      border-top-color: rgba(255, 255, 255, 0.92);
      border-radius: 50%;
      animation: styleVideoLoaderSpin 0.75s linear infinite;
    }

    @keyframes styleVideoLoaderSpin {
      to {
        transform: rotate(360deg);
      }
    }

    .signup-modal__media .style-video-loader {
      z-index: 2;
    }

    @media(hover:hover) {
      .style-card:hover {
        transform: scale(1.03);
        border-color: rgba(255, 255, 255, 0.2);
      }
    }

    /* (old .style-badge capsule styles removed) */
    .style-card.selected {
      border-color: #ff7000;
      box-shadow: 0 0 0 3px rgba(255, 112, 0, 0.2), 0 8px 24px rgba(255, 112, 0, 0.2);
    }

    .style-check {
      position: absolute;
      right: 10px;
      top: 10px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff7000, #ff5a00);
      display: none;
      place-items: center;
      z-index: 2;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(255, 112, 0, 0.3);
      animation: checkIn .3s cubic-bezier(.34, 1.56, .64, 1);
    }

    @keyframes checkIn {
      from {
        transform: scale(0);
      }

      to {
        transform: scale(1);
      }
    }

    .style-card.selected .style-check {
      display: grid;
    }

    .grid {
      display: grid;
      gap: 10px;
      width: 100%;
    }

    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid rgba(33, 33, 33, 1);
      background: rgba(21, 21, 21, 1);
      aspect-ratio: 3/4;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      transition: all .2s ease;
      cursor: pointer;
    }

    .card button {
      all: unset;
      width: 100%;
      height: 100%;
      cursor: pointer;
      display: block;
      position: relative;
    }

    /* Ensure injected media covers the card area (steps 2–4 images) */
    .card button img,
    .card button picture,
    .card button video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      z-index: 0;
    }
    /* Entrance animations for steps 2, 3, 4 */
    .quiz-step-2 .group,
    .quiz-step-3 .group,
    .quiz-step-4 .group {
      animation: stepContentIn 0.4s ease-out both;
    }
    .quiz-step-2 .group:nth-child(2) { animation-delay: 0.05s; }
    .quiz-step-2 .group:nth-child(3) { animation-delay: 0.1s; }
    .quiz-step-3 .group:nth-child(2) { animation-delay: 0.05s; }
    .quiz-step-3 .group:nth-child(3) { animation-delay: 0.1s; }
    .quiz-step-3 .group:nth-child(4) { animation-delay: 0.15s; }
    .quiz-step-4 .group:nth-child(1) { animation-delay: 0.05s; }
    .quiz-step-4 .group:nth-child(2) { animation-delay: 0.1s; }
    @keyframes stepContentIn {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .quiz-step-2 .group,
      .quiz-step-3 .group,
      .quiz-step-4 .group {
        animation: none;
      }
    }

    /* (old .badge capsule styles removed) */
    .check {
      display: none;
      position: absolute;
      right: 6px;
      top: 6px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ff7000, #ff5a00);
      place-items: center;
      z-index: 2;
      font-size: 12px;
      font-weight: 700;
      animation: checkIn .3s cubic-bezier(.34, 1.56, .64, 1);
    }

    .card.selected {
      border-color: #ff7000;
      box-shadow: 0 0 0 2px rgba(255, 112, 0, 0.2);
    }

    .card.selected .check {
      display: grid;
    }

    /* Card scale and dimmed others (steps 2–6) */
    .quiz-step-2 #ethnicityGroup .grid.grid-3,
    .quiz-step-3 .grid.grid-3 {
      overflow: visible;
    }
    .quiz-step-2 #ethnicityGroup .grid.grid-3 .card,
    .quiz-step-3 .grid.grid-3 .card {
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    }
    .quiz-step-2 #ethnicityGroup .grid.grid-3 .card:hover,
    .quiz-step-3 .grid.grid-3 .card:hover {
      transform: scale(1.05);
      border-color: #fe6283;
      box-shadow: 0 4px 20px rgba(254, 98, 131, 0.3);
      z-index: 1;
    }
    .quiz-step-2 #ethnicityGroup .grid.grid-3 .card.selected,
    .quiz-step-3 .grid.grid-3 .card.selected {
      transform: scale(1.08);
      border-color: #fe6283;
      box-shadow: 0 0 15px rgba(254, 98, 131, 0.4);
      z-index: 1;
    }
    .quiz-step-2 #ethnicityGroup .grid.grid-3:has(.card.selected) .card:not(.selected),
    .quiz-step-3 .grid.grid-3:has(.card.selected) .card:not(.selected) {
      opacity: 0.6;
    }

    .quiz-step-2 #ageGroup .grid.grid-3,
    .quiz-step-4 .grid.grid-3,
    #voiceGroup .grid.grid-3,
    #personalityGroup .grid.grid-3,
    #relationshipGroup .grid.grid-3 {
      overflow: visible;
    }
    .quiz-step-2 #ageGroup .grid.grid-3 .card,
    .quiz-step-4 .grid.grid-3 .card,
    #voiceGroup .grid.grid-3 .card,
    #personalityGroup .grid.grid-3 .card,
    #relationshipGroup .grid.grid-3 .card {
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
    }
    .quiz-step-2 #ageGroup .grid.grid-3 .card:hover,
    .quiz-step-4 .grid.grid-3 .card:hover,
    #voiceGroup .grid.grid-3 .card:hover,
    #personalityGroup .grid.grid-3 .card:hover,
    #relationshipGroup .grid.grid-3 .card:hover {
      transform: scale(1.05);
      border-color: #fe6283;
      box-shadow: 0 4px 20px rgba(254, 98, 131, 0.3);
      z-index: 1;
    }
    .quiz-step-2 #ageGroup .grid.grid-3 .card.selected,
    .quiz-step-4 .grid.grid-3 .card.selected,
    #voiceGroup .grid.grid-3 .card.selected,
    #personalityGroup .grid.grid-3 .card.selected,
    #relationshipGroup .grid.grid-3 .card.selected {
      transform: scale(1.08);
      border-color: #fe6283;
      box-shadow: 0 0 15px rgba(254, 98, 131, 0.4);
      z-index: 1;
    }
    .quiz-step-2 #ageGroup .grid.grid-3:has(.card.selected) .card:not(.selected),
    .quiz-step-4 .grid.grid-3:has(.card.selected) .card:not(.selected),
    #voiceGroup .grid.grid-3:has(.card.selected) .card:not(.selected),
    #personalityGroup .grid.grid-3:has(.card.selected) .card:not(.selected),
    #relationshipGroup .grid.grid-3:has(.card.selected) .card:not(.selected) {
      opacity: 0.6;
    }

    .card.age {
      aspect-ratio: 16/9;
    }

    .card.age .num {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: clamp(16px, 4.5vw, 20px);
      z-index: 2; /* above dim overlay */
    }

    .card .dim {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
      z-index: 1; /* dim above image */
    }

    .card.icon-card .icon-content {
      position: absolute;
      z-index: 2; /* above dim overlay */
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px;
    }

    .card.icon-card .icon {
      font-size: 32px;
    }

    .card.icon-card.voice-card .icon {
      font-size: 28px;
      color: rgba(255, 255, 255, 0.8);
    }

    .group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 8px;
    }

    .group-title {
      font-weight: 700;
      font-size: clamp(14px, 3.5vw, 16px);
      text-align: center;
      color: rgba(255, 255, 255, 1);
      margin-top: 5px;
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: -.3px;
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      min-height: 44px;
      margin-top: 8px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.9);
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all .2s ease;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-secondary:active {
      transform: translateY(1px);
    }

    .content.animating {
      pointer-events: none;
    }

    @keyframes cardOut {
      0% {
        opacity: 1;
        transform: scale(1);
      }

      100% {
        opacity: 0;
        transform: scale(0.95);
      }
    }

    @keyframes cardIn {
      0% {
        opacity: 0;
        transform: scale(0.95);
      }

      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .card .card-option-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      z-index: 2;
    }
    .card:hover .card-option-video,
    .card.selected .card-option-video {
      opacity: 1;
    }
    .card:hover button > img,
    .card.selected button > img {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .card .card-option-img,
    .card .card-option-video + img,
    .card button > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .content.closing {
      animation: cardOut .2s ease-out forwards;
    }

    .content.opening {
      animation: cardIn .25s ease-out forwards;
    }

    @media (max-width:375px) {
      .content {
        gap: 10px;
        padding: 16px 14px;
      }

      .section-title {
        font-size: 19px;
      }

      .section-subtitle {
        font-size: 12px;
      }

      .btn-primary {
        font-size: 16px;
        padding: 14px 20px;
      }

      .value-banner {
        padding: 6px 9px;
        margin-bottom: 8px;
      }

      .value-text {
        font-size: 11.5px;
      }
    }

    @media (orientation:landscape) and (max-height:500px) {
      .page-wrapper {
        padding-top: 20px;
      }

      .trust-bar {
        display: none;
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -1000px 0;
      }

      100% {
        background-position: 1000px 0;
      }
    }

    .skeleton {
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
      background-size: 1000px 100%;
      animation: shimmer 2s infinite;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    button:focus-visible {
      outline: 2px solid #ff7000;
      outline-offset: 2px;
    }

    button:focus {
      outline: none;
    }

    button:focus:not(:focus-visible) {
      outline: none;
    }

    button,
    .style-card,
    .card {
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      user-select: none;
    }

    @media (prefers-reduced-motion: reduce) {

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

      .video-bg,
      .style-card video {
        display: none !important;
      }

      .style-card .style-video-loader {
        display: none !important;
      }

      .overlay {
        background: rgba(0, 0, 0, 0.8);
      }
    }

    /* SUMMARY – mobile portrait layout */
    @media (max-width: 540px) {
      .summary-wrap {
        display: grid;
        grid-template-columns: 15fr 8fr;
        /* JS kirjutab täpsete px-idega üle */
        column-gap: 8px;
        align-items: start;
      }

      .summary-hero {
        position: relative;
        aspect-ratio: 9 / 16;
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.60);
        background: rgba(255, 255, 255, 0.05);
      }

      .summary-right {
        height: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .summary-tile {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        aspect-ratio: 3 / 4;
      }

      .summary-dim {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
        z-index: 0;
      }

      .summary-icon-wrap {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
      }

      .summary-icon {
        font-size: 28px;
        opacity: .95;
      }

      .summary-hero img,
      .summary-hero video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
      }
      .summary-tile img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        z-index: 0;
      }
      .summary-tile .summary-tile-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        pointer-events: none;
      }
    }

    /* (old summary compact badge blocks removed) */
    /* Step heading spacing */
    .step-heading {
      margin: 0 0 8px 0;
    }

    /* Colored emoji inside section-title (disables text-clip mask) */
    .section-title .emoji {
      background: none !important;
      -webkit-background-clip: initial !important;
      background-clip: initial !important;
      -webkit-text-fill-color: initial !important;
      color: inherit;
      margin-right: 6px;
    }

    /* Edge-to-edge badge – COMMON BASE for all (style, card, summary) */
    .style-badge,
    .card .badge,
    .summary-wrap .summary-badge {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 4px 8px;
      font-size: 11px;
      line-height: 1.2;
      font-weight: 600; /* ühtlustatud */
      background: rgba(0, 0, 0, 0.60);
      color: #fff;
      border: 0;
      border-radius: 0;
      border-bottom-left-radius: inherit;
      border-bottom-right-radius: inherit;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-transform: capitalize;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      z-index: 2;
      pointer-events: none;
    }

    /* Selected – one declaration is enough */
    .style-card.selected .style-badge,
    .card.selected .badge {
      background: rgba(0, 0, 0, 0.72) !important;
      border: 0 !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    /* Summary smaller badges (refinement) */
    .summary-right .summary-badge {
      padding: 2px 6px;
      font-size: 9px;
      line-height: 1.1;
    }
    @media (min-width: 768px) {
      .summary-right .summary-badge { font-size: 12px; padding: 4px 8px; }
      .summary-icon { font-size: 34px; }
    }
    @media (min-width: 1200px) {
      .summary-right .summary-badge { font-size: 13px; padding: 5px 10px; }
      .summary-icon { font-size: 36px; }
    }

    /* Responsive sizing (only size/padding, not positioning) */
    @media (max-width:540px) {
      .summary-wrap .summary-badge {
        font-size: 10px;
        padding: 3px 6px;
      }
    }

    @media (min-width:768px) {
      .summary-wrap .summary-badge {
        font-size: 12px;
        padding: 5px 10px;
      }
    }

    /* === THEME OVERRIDE: Purple ↔ Pink === */
:root{
  --accent-1: #8350cb;   /* purple */
  --accent-2: #fe6283;   /* pink   */
  --bg-1:     #4e283c;
  --bg-2:     #271a2b;
  --card-grad-1: linear-gradient(36deg, #8350cb4a -18.81%, transparent 51.42%);
  --card-grad-2: linear-gradient(33deg, transparent -2.3%, #fe62834a 98.42%);
  --card-base:   #271a2b66;
}

/* Content pane */
.content{
  background: linear-gradient(143deg, var(--bg-1) 37.31%, var(--bg-2) 112.95%) !important;
  border-color: rgba(255,255,255,.12) !important;
}

/* Cards (steps 2–6) + style cards (step 1) */
.card,
.style-card{
  background: var(--card-grad-1), var(--card-grad-2), var(--card-base) !important;
  border-color: var(--accent-2) !important; /* #fe6283 */
}

/* Selected state */
.card.selected,
.style-card.selected{
  border-color: var(--accent-1) !important; /* purple */
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent-1) 35%, transparent),
    0 8px 24px color-mix(in srgb, var(--accent-1) 25%, transparent) !important;
}

/* Small round checks on selected tiles */
.check,
.style-check{
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2)) !important;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-2) 35%, transparent) !important;
}

/* CTA button */
.btn-primary{
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2)) !important;
  box-shadow:
    0 8px 24px color-mix(in srgb, var(--accent-2) 28%, transparent),
    0 4px 12px rgba(0,0,0,.3) !important;
}
.btn-primary:not(:disabled):hover{
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-1) 90%, #fff), color-mix(in srgb, var(--accent-2) 90%, #fff)) !important;
  box-shadow:
    0 12px 32px color-mix(in srgb, var(--accent-2) 35%, transparent),
    0 6px 16px rgba(0,0,0,.3) !important;
}

/* Shine stripe on hover – unchanged (works with existing ::before rule) */

/* Progress bar fill */
.progress-fill{
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2)) !important;
  box-shadow: 0 0 10px color-mix(in srgb, var(--accent-2) 40%, transparent) !important;
}

/* Value banner highlight */
.value-text .highlight{
  color: var(--accent-2) !important;
}

/* Pulse animation with new colors (overrides previous one) */
@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 8px 24px color-mix(in srgb, var(--accent-2) 28%, transparent),
      0 4px 12px rgba(0,0,0,.3);
  }
  50% {
    box-shadow:
      0 8px 32px color-mix(in srgb, var(--accent-2) 45%, transparent),
      0 4px 16px color-mix(in srgb, var(--accent-1) 20%, transparent);
  }
}



    /* === Late overrides (ensure these apply after base .content rule) === */
    @media (orientation: landscape) {
      /* Steps 1–6 container a bit narrower */
      .content { width: min(92vw, 46rem); }
    }

    @media (min-width: 768px) {
      /* Steps 1–6 desktop container */
      .content { width: min(92vw, 50rem); }
      /* Summary container (shrinks tiles + hero) */
      .content.content--wide-summary { width: min(96vw, 54rem); }
    }

    @media (min-width: 1200px) {
      .content.content--wide-summary { width: min(96vw, 60rem); }
    }

    /* Reduce side gutters for steps 1–6 by widening inner grids */
    @media (orientation: landscape) {
      .content .grid,
      .content .style-grid { width: 100%; max-width: 35.5rem; margin-left: auto; margin-right: auto; }
    }

    /* Desktop emoji/icon sizing (steps 5–7) */
    @media (min-width: 768px) {
      /* Step 5 & 6 cards */
      .card.icon-card .icon { font-size: 44px; }
      .card.icon-card.voice-card .icon { font-size: 40px; }
      /* Summary step icons */
      .summary-icon { font-size: 44px; }
    }
    @media (min-width: 1200px) {
      .card.icon-card .icon { font-size: 48px; }
      .card.icon-card.voice-card .icon { font-size: 44px; }
      .summary-icon { font-size: 48px; }
    }

    /* Desktop typography scale-up and breathing room */
    @media (min-width: 768px) {
      .section-title { font-size: clamp(20px, 3.2vw, 28px); }
      .section-subtitle { font-size: clamp(16px, 2.4vw, 20px); }
      .group-title { font-size: clamp(16px, 2vw, 18px); margin-bottom: 12px; }
      .value-text { font-size: 15px; }
      .grid { margin-bottom: 16px; }
      .style-grid { margin-bottom: 16px; }
      .btn-primary { font-size: 20px; min-height: 62px; margin-top: 28px; }
      .btn-secondary { font-size: 16px; min-height: 52px; margin-top: 12px; }
      .style-badge, .card .badge { font-size: 12px; }
      .card.age .num { font-size: clamp(18px, 2.2vw, 22px); }
      .trust-mini { font-size: 12px; }
    }
    @media (min-width: 1200px) {
      .section-title { font-size: 30px; }
      .section-subtitle { font-size: 22px; }
      .group-title { font-size: 20px; margin-bottom: 14px; }
      .value-text { font-size: 16px; }
      .btn-primary { font-size: 21px; min-height: 64px; }
      .btn-secondary { font-size: 17px; min-height: 54px; }
      .style-badge, .card .badge { font-size: 13px; }
      .card.age .num { font-size: 24px; }
      .trust-mini { font-size: 13px; }
    }
    /* Buttons align to grid width on desktop */
    @media (orientation: landscape) {
      .content .btn-primary,
      .content .btn-secondary { width: 100%; max-width: 35.5rem; margin-left: auto; margin-right: auto; }
    }
    @media (min-width: 768px) {
      .content .btn-primary,
      .content .btn-secondary { width: 100%; max-width: 36rem; margin-left: auto; margin-right: auto; }
    }
    /* Summary right badges smaller in mobile portrait only (hero unchanged) */
    @media (max-width: 540px) {
      .summary-right .summary-badge { font-weight: 500; font-size: 9px; }
    }
    @media (min-width: 768px) {
      .content .grid,
      .content .style-grid { width: 100%; max-width: 36rem; margin-left: auto; margin-right: auto; }
    }

  

/* ---------- Финальный экран (summary/генерация по образцу clone) ---------- */
.summary {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summary-image {
  position: relative;
  width: min(340px, 100%);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #17151a;
  aspect-ratio: 96 / 169; /* 768×1352 из API */
}
.summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.summary-loading,
.summary-error {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}
.skeleton-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #1a1a1e 30%, #2c2730 50%, #1a1a1e 70%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.loading-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.btn-retry {
  padding: 10px 26px;
  border: 0;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, #ff7000, #fe6283);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.summary-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  white-space: nowrap;
}
.badge-label {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-value { color: #fff; font-weight: 700; }

.cta-tagline {
  margin: 20px 0 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
#ctaBtn.btn-primary {
  background: linear-gradient(90deg, #aa72e9 0%, #f96789 100%) !important;
  box-shadow: 0 8px 24px rgba(249, 103, 137, 0.35), 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  text-transform: uppercase !important;
  margin-top: 16px !important;
  border-radius: 16px !important;
  min-height: 54px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#ctaBtn.btn-primary:not(:disabled):hover {
  background: linear-gradient(90deg, #995ddb 0%, #f74d75 100%) !important;
  box-shadow: 0 12px 32px rgba(249, 103, 137, 0.45), 0 6px 16px rgba(0, 0, 0, 0.3) !important;
}
#backBtn.btn-secondary {
  border-radius: 16px !important;
  min-height: 54px !important;
  margin-top: 12px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
