:root {
    --color-burgundy: #5a1832;
    --color-burgundy-dark: #431024;
    --color-pink: #f4b7ca;
    --color-pink-light: #fdeaf1;
    --color-card: #ffffff;
    --color-text: #4b1830;
    --color-muted: #7a4a5c;
    --shadow-card: 0 14px 34px rgba(90, 24, 50, 0.14);
    --radius-card: 24px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--color-pink-light);
    color: var(--color-text);
}

button {
    font: inherit;
}

.quiz-app {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: var(--color-pink-light);
}

.quiz-shell {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    overflow: hidden;
    background: var(--color-pink-light);
}

.quiz-step {
    display: none;
    min-height: 100vh;
}

.quiz-step.is-active {
    display: block;
}

.quiz-hero {
    position: relative;
    min-height: 315px;
    padding: 24px 20px 58px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 100%);
    color: #ffffff;
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
}

.quiz-hero--compact {
    min-height: 285px;
}

.quiz-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background:
        radial-gradient(circle at 18% 18%, rgba(244, 183, 202, 0.55) 0 8px, transparent 9px),
        radial-gradient(circle at 82% 22%, rgba(244, 183, 202, 0.45) 0 10px, transparent 11px),
        radial-gradient(circle at 34% 78%, rgba(244, 183, 202, 0.35) 0 9px, transparent 10px),
        linear-gradient(135deg, transparent 0 44%, rgba(244, 183, 202, 0.2) 45% 55%, transparent 56% 100%);
    background-size: 120px 120px, 150px 150px, 130px 130px, 90px 90px;
}

.quiz-hero::before,
.quiz-hero::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(244, 183, 202, 0.18);
    transform: rotate(45deg);
    border-radius: 28px;
}

.quiz-hero::before {
    top: 62px;
    left: -52px;
}

.quiz-hero::after {
    right: -48px;
    bottom: 40px;
}

.quiz-hero__content {
    position: relative;
    z-index: 1;
}

.quiz-logo {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quiz-back {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.quiz-title {
    max-width: 340px;
    margin: 64px auto 0;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    text-align: center;
}

.quiz-title--small {
    margin-top: 34px;
    font-size: 30px;
}

.quiz-content {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    padding: 0 20px 32px;
}

.quiz-content--problem {
    padding-bottom: 42px;
}

.quiz-options {
    display: grid;
    gap: 18px;
}

.quiz-options--problem {
    gap: 14px;
}

.quiz-card {
    width: 100%;
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 0;
    border-radius: var(--radius-card);
    background: var(--color-card);
    color: var(--color-text);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quiz-card:active {
    transform: scale(0.985);
    box-shadow: 0 8px 20px rgba(90, 24, 50, 0.16);
}

.quiz-card--problem {
    min-height: 86px;
    padding: 15px 18px;
}

.quiz-card__icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: var(--color-pink-light);
    font-size: 32px;
}

.quiz-card--problem .quiz-card__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 16px;
    font-size: 25px;
}

.quiz-card__text {
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.quiz-card--problem .quiz-card__text {
    font-size: 18px;
    line-height: 1.2;
}

@media (max-width: 360px) {
    .quiz-hero {
        min-height: 292px;
    }

    .quiz-hero--compact {
        min-height: 270px;
    }

    .quiz-title {
        margin-top: 52px;
        font-size: 30px;
    }

    .quiz-title--small {
        margin-top: 28px;
        font-size: 27px;
    }

    .quiz-card {
        min-height: 94px;
        padding: 16px 18px;
    }

    .quiz-card--problem {
        min-height: 78px;
        padding: 14px 16px;
    }

    .quiz-card__text {
        font-size: 21px;
    }

    .quiz-card--problem .quiz-card__text {
        font-size: 16px;
    }
}
.quiz-card--timing {
    min-height: 96px;
}

.quiz-card--timing .quiz-card__text {
    font-size: 20px;
    line-height: 1.18;
}

@media (max-width: 360px) {
    .quiz-card--timing .quiz-card__text {
        font-size: 18px;
    }
}
.weight-group {
    display: none;
}

.weight-group.is-active {
    display: block;
}

.quiz-options--weight {
    gap: 14px;
}

.quiz-card--weight {
    min-height: 82px;
    padding: 15px 18px;
}

.quiz-card--weight .quiz-card__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 16px;
    font-size: 25px;
}

.quiz-card--weight .quiz-card__text {
    font-size: 20px;
    line-height: 1.18;
}

@media (max-width: 360px) {
    .quiz-card--weight {
        min-height: 76px;
        padding: 14px 16px;
    }

    .quiz-card--weight .quiz-card__text {
        font-size: 18px;
    }
}
.quiz-hero--result {
    min-height: 250px;
}

.quiz-content--result {
    padding-bottom: 44px;
}

.result-card {
    padding: 24px 20px 22px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.result-label {
    margin: 0 0 8px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.result-title {
    margin: 0 0 14px;
    color: var(--color-text);
    font-size: 28px;
    line-height: 1.08;
    font-weight: 900;
}

.result-description {
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.45;
}

.result-box {
    margin: 16px 0 0;
    padding: 16px;
    border-radius: 20px;
    background: var(--color-pink-light);
}

.result-box--soft {
    background: #fff6f9;
    border: 1px solid rgba(90, 24, 50, 0.08);
}

.result-box h3 {
    margin: 0 0 8px;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.2;
}

.result-box p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.45;
}

.result-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
}

.result-button {
    min-height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
}

.result-button--primary {
    background: var(--color-burgundy);
    color: #ffffff;
}

.result-button--secondary {
    background: var(--color-pink-light);
    color: var(--color-text);
}

.result-restart {
    width: 100%;
    min-height: 46px;
    margin-top: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-burgundy);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.result-note {
    margin: 12px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
}

@media (max-width: 360px) {
    .result-title {
        font-size: 25px;
    }

    .result-description,
    .result-box p {
        font-size: 15px;
    }
}

.consultation-widget__decor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.consultation-widget__line {
    height: 2px;
    flex: 1;
    max-width: 132px;
    background: var(--color-pink);
}

.consultation-widget__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--color-pink);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.consultation-widget__button {
    width: 100%;
    min-height: 56px;
    border: 2px solid var(--color-pink);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-pink);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(90, 24, 50, 0.12);
    pointer-events: auto;
}

.consultation-widget__button:active {
    transform: scale(0.985);
}

.quiz-step {
    padding-bottom: 128px;
}

@media (max-width: 360px) {

    .consultation-widget__button {
        min-height: 52px;
        font-size: 18px;
    }

    .consultation-widget__icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .quiz-step {
        padding-bottom: 116px;
    }
}
/* First screen: pet selection */

.quiz-hero--pet {
    min-height: 330px;
    padding: 36px 24px 46px;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    background: #2a0205;
    box-shadow: 0 10px 24px rgba(90, 24, 50, 0.2);
}

.quiz-hero--pet::before,
.quiz-hero--pet::after,
.quiz-hero--pet .quiz-hero__pattern {
    display: none;
}

.quiz-hero__content--center {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.quiz-logo-mark {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-top: 6px;
    background: #ffffff;
    color: #2a0205;
    font-size: 24px;
    font-weight: 900;
    clip-path: polygon(50% 0%, 90% 14%, 84% 74%, 50% 100%, 16% 74%, 10% 14%);
    box-shadow: 0 3px 0 rgba(255, 255, 255, 0.35);
}

.quiz-logo-mark span {
    transform: translateY(-2px);
}

.quiz-title--pet {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin: 34px auto 0;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 400;
    text-align: center;
}

.quiz-title--pet span,
.quiz-title--pet strong {
    display: block;
}

.quiz-title--pet strong {
    margin-top: 6px;
    color: #f15b7b;
    font-size: 36px;
    font-weight: 800;
}

.quiz-subtitle {
    position: relative;
    z-index: 2;
    margin: 64px auto 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 400;
    text-align: center;
}

.triangle-pattern {
    position: absolute;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 34px);
    gap: 3px;
    pointer-events: none;
}

.triangle-pattern span {
    width: 34px;
    height: 30px;
    background: #f15b7b;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.triangle-pattern span:nth-child(2n) {
    background: #f58aa2;
}

.triangle-pattern span:nth-child(3n) {
    transform: rotate(180deg);
}

.triangle-pattern--left {
    top: 8px;
    left: -6px;
    transform: rotate(0deg);
}

.triangle-pattern--right {
    top: 10px;
    right: -4px;
    transform: scaleX(-1);
}

.quiz-content--pet {
    margin-top: 0;
    padding: 74px 34px 150px;
    background: #ffffff;
}

.quiz-options--pet {
    gap: 52px;
}

.quiz-card--pet {
    min-height: 114px;
    padding: 22px 28px;
    gap: 34px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(241, 91, 123, 0.15);
}

.quiz-card--pet .quiz-card__text {
    color: #050505;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 400;
}

.quiz-triangle-icon {
    position: relative;
    width: 82px;
    height: 72px;
    flex: 0 0 82px;
    display: grid;
    place-items: center;
    background: #f15b7b;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.quiz-triangle-icon span {
    display: block;
    color: #ffffff;
    font-size: 30px;
    transform: translateX(-8px);
}

@media (max-width: 390px) {
    .quiz-hero--pet {
        min-height: 316px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .quiz-title--pet {
        font-size: 31px;
    }

    .quiz-title--pet strong {
        font-size: 33px;
    }

    .quiz-subtitle {
        margin-top: 54px;
        font-size: 17px;
    }

    .quiz-content--pet {
        padding-left: 24px;
        padding-right: 24px;
    }

    .quiz-options--pet {
        gap: 42px;
    }

    .quiz-card--pet {
        min-height: 104px;
        gap: 26px;
    }

    .quiz-card--pet .quiz-card__text {
        font-size: 25px;
    }
}

@media (max-width: 360px) {
    .triangle-pattern {
        grid-template-columns: repeat(3, 30px);
    }

    .triangle-pattern span {
        width: 30px;
        height: 27px;
    }

    .quiz-title--pet {
        font-size: 28px;
    }

    .quiz-title--pet strong {
        font-size: 30px;
    }

    .quiz-content--pet {
        padding-left: 20px;
        padding-right: 20px;
    }

    .quiz-card--pet {
        min-height: 98px;
        padding: 18px 22px;
    }

    .quiz-triangle-icon {
        width: 72px;
        height: 64px;
        flex-basis: 72px;
    }

    .quiz-card--pet .quiz-card__text {
        font-size: 23px;
    }
}
/* Exact first screen based on Linearity Curve artboard 1320 x 2868 */

body {
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
}

.quiz-shell {
    background: #ffffff;
}

.quiz-step[data-step="pet"] {
    background: #ffffff;
}

.quiz-hero--pet {
    position: relative;
    min-height: 277px;
    padding: 25px 20px 0;
    overflow: hidden;
    background: #1a0000;
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
    box-shadow: 0 0 7px rgba(241, 97, 119, 0.6);
}

.quiz-hero--pet::before,
.quiz-hero--pet::after,
.quiz-hero--pet .quiz-hero__pattern {
    display: none;
}

.hero-triangles {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
    user-select: none;
}

.hero-triangles--left {
    top: 0;
    left: 0;
    width: 142px;
    height: auto;
}

.hero-triangles--right {
    top: 0;
    right: 0;
    width: 139px;
    height: auto;
}

.quiz-hero__content--pet {
    position: relative;
    z-index: 2;
    min-height: 252px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quiz-logo-svg {
    width: 45px;
    height: auto;
    display: block;
    margin-top: 22px;
}

.quiz-title--pet {
    max-width: 390px;
    margin: 21px auto 0;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.06;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.01em;
}

.quiz-title--pet span,
.quiz-title--pet strong {
    display: block;
}

.quiz-title--pet strong {
    margin-top: 4px;
    color: #f16177;
    font-size: 31px;
    font-weight: 400;
}

.quiz-subtitle--pet {
    margin: 33px auto 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.18;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.01em;
}

.quiz-content--pet {
    margin-top: 0;
    padding: 63px 31px 150px;
    background: #ffffff;
}

.quiz-options--pet {
    display: grid;
    gap: 42px;
}

.quiz-card--pet {
    width: 100%;
    min-height: 114px;
    display: flex;
    align-items: center;
    gap: 86px;
    padding: 21px 43px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 8px rgba(241, 97, 119, 0.15);
    text-align: left;
}

.quiz-card--pet:active {
    transform: scale(0.99);
    box-shadow: 0 0 8px rgba(241, 97, 119, 0.2);
}

.quiz-pet-icon {
    width: 82px;
    height: 72px;
    flex: 0 0 82px;
    display: block;
    object-fit: contain;
}

.quiz-card--pet .quiz-card__text {
    color: #000000;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Consultation block refined to match first screen */

.consultation-widget__decor {
    gap: 13px;
    margin-bottom: 8px;
}

.consultation-widget__line {
    height: 1.5px;
    max-width: 135px;
    background: #f16177;
}

.consultation-widget__icon {
    width: 38px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
}

.consultation-widget__icon img {
    width: 38px;
    height: auto;
    display: block;
}

.consultation-widget__button {
    width: 228px;
    min-height: 48px;
    margin: 0 auto;
    display: block;
    border: 3px solid #f16177;
    border-radius: 12px;
    background: #ffffff;
    color: #f16177;
    font-size: 23px;
    line-height: 1;
    font-weight: 700;
    box-shadow: none;
}

/* Small screens */

@media (max-width: 390px) {
    .quiz-hero--pet {
        min-height: 270px;
    }

    .hero-triangles--left {
        width: 134px;
    }

    .hero-triangles--right {
        width: 132px;
    }

    .quiz-title--pet,
    .quiz-title--pet strong {
        font-size: 29px;
    }

    .quiz-subtitle--pet {
        margin-top: 30px;
        font-size: 15px;
    }

    .quiz-content--pet {
        padding-left: 28px;
        padding-right: 28px;
    }

    .quiz-card--pet {
        gap: 70px;
        padding-left: 34px;
        padding-right: 34px;
    }
}

@media (max-width: 360px) {
    .quiz-hero--pet {
        min-height: 258px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .hero-triangles--left {
        width: 124px;
    }

    .hero-triangles--right {
        width: 122px;
    }

    .quiz-logo-svg {
        width: 40px;
    }

    .quiz-title--pet,
    .quiz-title--pet strong {
        font-size: 27px;
    }

    .quiz-subtitle--pet {
        font-size: 14px;
    }

    .quiz-content--pet {
        padding-top: 50px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .quiz-options--pet {
        gap: 34px;
    }

    .quiz-card--pet {
        min-height: 104px;
        gap: 48px;
        padding: 18px 28px;
    }

    .quiz-pet-icon {
        width: 74px;
        height: 65px;
        flex-basis: 74px;
    }

    .quiz-card--pet .quiz-card__text {
        font-size: 21px;
    }

    .consultation-widget__button {
        width: 220px;
        min-height: 46px;
        font-size: 21px;
    }
}
/* First screen correction pass 1 */

.quiz-hero--pet {
    min-height: 255px;
    padding-top: 20px;
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
}

.hero-triangles--left,
.hero-triangles--right {
    height: 86px;
    width: auto;
}

.hero-triangles--left {
    top: 0;
    left: 0;
}

.hero-triangles--right {
    top: 0;
    right: 0;
}

.quiz-logo-svg {
    width: 42px;
    margin-top: 16px;
}

.quiz-title--pet {
    margin-top: 18px;
    font-weight: 300;
    font-size: 30px;
    line-height: 1.04;
    letter-spacing: 0;
}

.quiz-title--pet strong {
    margin-top: 4px;
    font-weight: 300;
    font-size: 30px;
    color: #f16177;
}

.quiz-subtitle--pet {
    margin-top: 28px;
    font-weight: 300;
    font-size: 15.6px;
    line-height: 1.16;
    letter-spacing: 0;
}

.quiz-content--pet {
    padding-top: 61px;
    padding-left: 31px;
    padding-right: 31px;
    padding-bottom: 150px;
}

.quiz-options--pet {
    gap: 42px;
}

.quiz-card--pet {
    min-height: 114px;
    padding: 21px 34px;
    gap: 0;
    justify-content: flex-start;
    overflow: hidden;
}

.quiz-pet-icon {
    width: 82px;
    height: 72px;
    flex: 0 0 82px;
}

.quiz-card--pet .quiz-card__text {
    flex: 1;
    min-width: 0;
    padding-left: 76px;
    font-weight: 300;
    font-size: 23px;
    line-height: 1.1;
    white-space: nowrap;
}

.consultation-widget__decor {
    display: grid;
    grid-template-columns: 1fr 38px 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 7px;
}

.consultation-widget__line {
    width: 100%;
    max-width: none;
    height: 1.5px;
    align-self: center;
}

.consultation-widget__icon {
    width: 38px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-widget__icon img {
    width: 38px;
    height: auto;
    display: block;
}

.consultation-widget__button {
    width: 290px;
    min-height: 48px;
    padding: 0 18px;
    white-space: nowrap;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 390px) {
    .quiz-hero--pet {
        min-height: 250px;
    }

    .hero-triangles--left,
    .hero-triangles--right {
        height: 82px;
        width: auto;
    }

    .quiz-title--pet,
    .quiz-title--pet strong {
        font-size: 28px;
        font-weight: 300;
    }

    .quiz-subtitle--pet {
        font-size: 15px;
    }

    .quiz-card--pet {
        padding-left: 30px;
        padding-right: 30px;
    }

    .quiz-card--pet .quiz-card__text {
        padding-left: 66px;
        font-size: 22px;
    }

    .consultation-widget__button {
        width: 286px;
        font-size: 21px;
    }
}

@media (max-width: 360px) {
    .quiz-hero--pet {
        min-height: 240px;
    }

    .hero-triangles--left,
    .hero-triangles--right {
        height: 76px;
        width: auto;
    }

    .quiz-logo-svg {
        width: 39px;
        margin-top: 14px;
    }

    .quiz-title--pet,
    .quiz-title--pet strong {
        font-size: 26px;
    }

    .quiz-subtitle--pet {
        margin-top: 24px;
        font-size: 14px;
    }

    .quiz-content--pet {
        padding-top: 48px;
        padding-left: 22px;
        padding-right: 22px;
    }

    .quiz-card--pet {
        min-height: 104px;
        padding-left: 26px;
        padding-right: 22px;
    }

    .quiz-pet-icon {
        width: 74px;
        height: 65px;
        flex-basis: 74px;
    }

    .quiz-card--pet .quiz-card__text {
        padding-left: 48px;
        font-size: 20px;
    }

    .consultation-widget__button {
        width: 276px;
        min-height: 46px;
        font-size: 20px;
    }
}
.consultation-widget__decor {
    display: grid;
    grid-template-columns: 1fr 38px 1fr;
    align-items: center;
    gap: 14px;
    margin-bottom: 7px;
}

.consultation-widget__line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #f16177;
}

.consultation-widget__icon {
    width: 38px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-widget__icon img {
    width: 38px;
    height: auto;
    display: block;
}
/* Exact coordinate layout: first screen, artboard 430 x 934 */

.quiz-step[data-step="pet"] {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 934px;
    padding-bottom: 0;
    background: #ffffff;
    overflow: hidden;
}

/* Header */

.quiz-hero--pet {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 276.89px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #1a0000;
    border-bottom-left-radius: 32.5px;
    border-bottom-right-radius: 32.5px;
    box-shadow: 0 0 6.5px rgba(241, 97, 119, 0.6);
}

.quiz-hero--pet::before,
.quiz-hero--pet::after,
.quiz-hero--pet .quiz-hero__pattern {
    display: none;
}

.quiz-hero__content--pet {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    min-height: 0;
}

/* Header SVG elements */

.hero-triangles {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
    user-select: none;
}

.hero-triangles--left {
    left: 0;
    top: 0;
    width: 156.12px;
    height: 148.21px;
}

.hero-triangles--right {
    left: 305.86px;
    top: 0;
    width: 124.14px;
    height: 148.21px;
}

.quiz-logo-svg {
    position: absolute;
    left: 180.63px;
    top: 45.38px;
    width: 51.36px;
    height: 65.15px;
    display: block;
    margin: 0;
}

/* Header text */

.quiz-title--pet {
    position: absolute;
    left: 0;
    top: 113.79px;
    width: 430px;
    max-width: none;
    margin: 0;
    color: #ffffff;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 31px;
    line-height: 1.13;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.quiz-title--pet span,
.quiz-title--pet strong {
    display: block;
}

.quiz-title--pet strong {
    margin-top: 2px;
    color: #f16177;
    font-size: 31px;
    line-height: 1.13;
    font-weight: 400;
}

.quiz-subtitle--pet {
    position: absolute;
    left: 0;
    top: 223.14px;
    width: 430px;
    margin: 0;
    color: #ffffff;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

/* Pet cards area */

.quiz-content--pet {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 934px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.quiz-options--pet {
    display: block;
    position: absolute;
    inset: 0;
}

/* Card base */

.quiz-card--pet {
    position: absolute;
    left: 35.83px;
    width: 358.33px;
    height: 114.02px;
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 11.5px;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 8.1px rgba(241, 97, 119, 0.15);
    overflow: visible;
    cursor: pointer;
    text-align: left;
}

.quiz-card--pet:nth-child(1) {
    top: 332.18px;
}

.quiz-card--pet:nth-child(2) {
    top: 501.48px;
}

.quiz-card--pet:nth-child(3) {
    top: 670.64px;
}

.quiz-card--pet:active {
    transform: scale(0.99);
    box-shadow: 0 0 8.1px rgba(241, 97, 119, 0.22);
}

/* Pet SVG icons.
   Important: positions are based on your global x/y coordinates.
   The left value is calculated as icon-x minus card-x. */

.quiz-pet-icon {
    position: absolute;
    left: -18.22px;
    top: 36.76px;
    width: 82.11px;
    height: 71.67px;
    display: block;
    object-fit: contain;
    margin: 0;
}

/* Card text */

.quiz-card--pet .quiz-card__text {
    position: absolute;
    top: 42.5px;
    margin: 0;
    padding: 0;
    color: #000000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 23.5px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.quiz-card--pet:nth-child(1) .quiz-card__text {
    left: 186.53px;
}

.quiz-card--pet:nth-child(2) .quiz-card__text {
    left: 188.55px;
}

.quiz-card--pet:nth-child(3) .quiz-card__text {
    left: 122.01px;
}

/* Exact consultation block */

.consultation-widget__decor {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 32.58px;
    margin: 0;
    display: block;
}

.consultation-widget__line {
    position: absolute;
    top: 14.66px;
    display: block;
    height: 1.63px;
    background: #f16177;
}

.consultation-widget__line:first-child {
    left: 30.54px;
    width: 150px;
}

.consultation-widget__line:last-child {
    left: 249px;
    width: 150px;
}

.consultation-widget__icon {
    position: absolute;
    left: 199.34px;
    top: 0;
    width: 31.32px;
    height: 32.58px;
    display: block;
    background: transparent;
    border-radius: 0;
}

.consultation-widget__icon img {
    width: 31.32px;
    height: 32.58px;
    display: block;
    object-fit: contain;
}

.consultation-widget__button {
    position: absolute;
    left: 102.83px;
    top: 39.09px;
    width: 228.03px;
    height: 39.09px;
    min-height: 0;
    margin: 0;
    padding: 0;
    display: block;
    border: 1.5px solid #f16177;
    border-radius: 11.5px;
    background: #ffffff;
    color: #f16177;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 15.5px;
    line-height: 36px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    box-shadow: none;
    cursor: pointer;
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
}

/* Prevent older first-screen helper elements from showing */

.triangle-pattern,
.quiz-logo-mark,
.quiz-triangle-icon {
    display: none !important;
}
/* Pet icons position correction */

.quiz-pet-icon {
    left: 17.61px;
    top: 21.18px;
    width: 82.11px;
    height: 71.67px;
}
/* Soft fade behind fixed consultation button */

.quiz-shell::after {
    content: "";
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 45;
    width: 430px;
    height: 200px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 0.82) 50%,
        rgba(255, 255, 255, 1) 68%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
}

/* Exact coordinate layout: second screen / problem selection, artboard 430 x 934.3 */

.quiz-step[data-step="problem"] {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 934.3px;
    padding-bottom: 0;
    background: #ffffff;
    overflow: hidden;
}

/* Problem header */

.quiz-hero--problem {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 276.89px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #1a0000;
    border-bottom-left-radius: 32.5px;
    border-bottom-right-radius: 32.5px;
    box-shadow: 0 0 6.5px rgba(241, 97, 119, 0.6);
}

.quiz-hero--problem::before,
.quiz-hero--problem::after,
.quiz-hero--problem .quiz-hero__pattern {
    display: none;
}

.quiz-hero__content--problem {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    min-height: 0;
}

/* Problem header SVG */

.problem-header-icon {
    position: absolute;
    left: 177.83px;
    top: 45.38px;
    width: 74.33px;
    height: 65.15px;
    display: block;
}

/* Problem title */

.problem-title {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.problem-title__line {
    position: absolute;
    display: block;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 31px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.problem-title__line--1 {
    left: 152.47px;
    top: 115.47px;
    width: 128.56px;
    color: #ffffff;
}

.problem-title__line--2 {
    left: 94.75px;
    top: 145.94px;
    width: 243.91px;
    color: #f16177;
}

.problem-title__line--3 {
    left: 79.28px;
    top: 177.22px;
    width: 274.34px;
    color: #ffffff;
}

/* Problem subtitle */

.problem-subtitle {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.problem-subtitle__line {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 15.64px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.problem-subtitle__line--1 {
    left: 115.53px;
    top: 226.62px;
    width: 181.38px;
}

.problem-subtitle__line--2 {
    left: 49.47px;
    top: 245.66px;
    width: 313.81px;
}

/* Problem content */

.quiz-content--problem {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 934.3px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.quiz-options--problem {
    position: absolute;
    inset: 0;
    display: block;
}

/* Problem cards */

.problem-card {
    position: absolute;
    left: 35.83px;
    width: 358.33px;
    height: 65.15px;
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 11.4px;
    background: #ffffff;
    color: #1a0000;
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.15);
    overflow: visible;
    cursor: pointer;
    text-align: left;
}

.problem-card--1 {
    top: 301px;
}

.problem-card--2 {
    top: 392.86px;
}

.problem-card--3 {
    top: 485.05px;
}

.problem-card--4 {
    top: 576.92px;
}

.problem-card--5 {
    top: 668.78px;
}

.problem-card--6 {
    top: 760.64px;
}

.problem-card:active {
    transform: scale(0.99);
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.22);
}

/* Problem card SVG icons */

.problem-card__icon {
    position: absolute;
    left: 8.17px;
    top: 7.94px;
    width: 43px;
    height: 49.27px;
    display: block;
    object-fit: contain;
}

/* Problem card text */

.problem-card__title,
.problem-card__desc {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.problem-card__title {
    color: #f16177;
    font-size: 13.68px;
}

.problem-card__desc {
    color: #1a0000;
    font-size: 11.73px;
}

/* Card 1 text */

.problem-card--1 .problem-card__title {
    left: 96.39px;
    top: 20.31px;
    width: 217px;
}

.problem-card--1 .problem-card__desc {
    left: 113.08px;
    top: 36.19px;
    width: 183.22px;
}

/* Card 2 text */

.problem-card--2 .problem-card__title {
    left: 110.33px;
    top: 20.3px;
    width: 189.28px;
}

.problem-card--2 .problem-card__desc {
    left: 117.89px;
    top: 36.48px;
    width: 173.53px;
}

/* Card 3 text */

.problem-card--3 .problem-card__title {
    left: 131.61px;
    top: 20.3px;
    width: 146.63px;
}

.problem-card--3 .problem-card__desc {
    left: 95.33px;
    top: 36.49px;
    width: 219.56px;
}

/* Card 4 text */

.problem-card--4 .problem-card__title {
    left: 123.09px;
    top: 20.29px;
    width: 164.02px;
}

.problem-card--4 .problem-card__desc {
    left: 102.59px;
    top: 36.54px;
    width: 204.71px;
}

/* Card 5 text */

.problem-card--5 .problem-card__title {
    left: 155.93px;
    top: 20.65px;
    width: 98.24px;
}

.problem-card--5 .problem-card__desc {
    left: 92.36px;
    top: 36.19px;
    width: 224.34px;
}

/* Card 6 text */

.problem-card--6 .problem-card__title {
    left: 135.72px;
    top: 20.66px;
    width: 138.29px;
}

.problem-card--6 .problem-card__desc {
    left: 123.57px;
    top: 36.55px;
    width: 162.9px;
}
/* Problem screen text alignment correction */

.problem-card__title,
.problem-card__desc {
    left: 51.17px !important;
    width: 307.16px !important;
    text-align: center;
}
/* Add scroll space for problem screen so the fixed consultation block does not cover the last card */

.quiz-step[data-step="problem"] {
    min-height: 960px;
}

.quiz-content--problem {
    height: 960px;
}
/* Exact coordinate layout: third screen / timing selection, artboard 430 x 950 */

.quiz-step[data-step="timing"] {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 950px;
    padding-bottom: 0;
    background: #ffffff;
    overflow: hidden;
}

/* Timing header */

.quiz-hero--timing {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 276.89px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #1a0000;
    border-bottom-left-radius: 32.5px;
    border-bottom-right-radius: 32.5px;
    box-shadow: 0 0 6.5px rgba(241, 97, 119, 0.6);
}

.quiz-hero--timing::before,
.quiz-hero--timing::after,
.quiz-hero--timing .quiz-hero__pattern {
    display: none;
}

.quiz-hero__content--timing {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    min-height: 0;
}

/* Header icon */

.timing-header-icon {
    position: absolute;
    left: 181.79px;
    top: 45.38px;
    width: 66.42px;
    height: 65.15px;
    display: block;
}

/* Title */

.timing-title {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.timing-title__line {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 31.27px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.timing-title__line--1 {
    left: 95.45px;
    top: 128.72px;
    width: 239.52px;
    color: #ffffff;
}

.timing-title__line--2 {
    left: 64.74px;
    top: 173.01px;
    width: 29.55px;
    color: #ffffff;
}

.timing-title__line--3 {
    left: 103.16px;
    top: 166.68px;
    width: 262.25px;
    color: #f16177;
}

/* Subtitle */

.timing-subtitle {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.timing-subtitle__line {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 15.64px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.timing-subtitle__line--1 {
    left: 115.53px;
    top: 226.62px;
    width: 181.38px;
}

.timing-subtitle__line--2 {
    left: 49.47px;
    top: 245.66px;
    width: 313.81px;
}

/* Content area */

.quiz-content--timing {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 950px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.quiz-options--timing {
    position: absolute;
    inset: 0;
    display: block;
}

/* Cards */

.timing-card {
    position: absolute;
    left: 35.83px;
    width: 358.33px;
    height: 114.02px;
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 11.4px;
    background: #ffffff;
    color: #1a0000;
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.15);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

.timing-card--1 {
    top: 332.18px;
}

.timing-card--2 {
    top: 501.48px;
}

.timing-card--3 {
    top: 670.64px;
}

.timing-card:active {
    transform: scale(0.99);
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.22);
}

/* Card icons */
/* Position relative to card:
   52.15 - 35.83 = 16.32
   348.23 - 332.18 = 16.05 */

.timing-card__icon {
    position: absolute;
    left: 16.32px;
    top: 16.05px;
    width: 71.5px;
    height: 81.92px;
    display: block;
    object-fit: contain;
}

/* Text base */

.timing-card__title,
.timing-card__desc {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.timing-card__title {
    color: #f16177;
    font-size: 14.01px;
}

.timing-card__desc {
    color: #1a0000;
    font-size: 11.73px;
}

/* Card 1 */

.timing-card--1 .timing-card__title {
    left: 125.83px;
    top: 44.64px;
    width: 195.19px;
}

.timing-card--1 .timing-card__desc--1 {
    left: 94.37px;
    top: 60.85px;
    width: 257.88px;
}

/* Card 2 */

.timing-card--2 .timing-card__title {
    left: 165.59px;
    top: 37.72px;
    width: 115.76px;
}

.timing-card--2 .timing-card__desc--1 {
    left: 147.01px;
    top: 53.62px;
    width: 152.25px;
}

.timing-card--2 .timing-card__desc--2 {
    left: 160.37px;
    top: 67.61px;
    width: 125.74px;
}

/* Card 3 */

.timing-card--3 .timing-card__title {
    left: 179.94px;
    top: 44.73px;
    width: 86.74px;
}

.timing-card--3 .timing-card__desc--1 {
    left: 104.15px;
    top: 60.63px;
    width: 238.98px;
}
/* Timing screen correction pass 1 */

/* Header title: keep "чи" and "тільки планується?" on the same visual line */

.timing-title__line--2 {
    left: 64.74px;
    top: 166.68px;
    width: 29.55px;
    color: #ffffff;
}

.timing-title__line--3 {
    left: 103.16px;
    top: 166.68px;
    width: 262.25px;
    color: #f16177;
}

/* Subtitle: center like on the second screen */

.timing-subtitle__line--1 {
    left: 0;
    top: 226.62px;
    width: 430px;
    text-align: center;
}

.timing-subtitle__line--2 {
    left: 0;
    top: 245.66px;
    width: 430px;
    text-align: center;
}

/* Timing card descriptions: split long descriptions into two centered lines */

.timing-card--1 .timing-card__title {
    left: 0;
    top: 40.5px;
    width: 358.33px;
    text-align: center;
}

.timing-card--1 .timing-card__desc--1 {
    left: 0;
    top: 57px;
    width: 358.33px;
    text-align: center;
}

.timing-card--1 .timing-card__desc--2 {
    left: 0;
    top: 70.5px;
    width: 358.33px;
    text-align: center;
}

.timing-card--2 .timing-card__title {
    left: 0;
    top: 37.72px;
    width: 358.33px;
    text-align: center;
}

.timing-card--2 .timing-card__desc--1 {
    left: 0;
    top: 53.62px;
    width: 358.33px;
    text-align: center;
}

.timing-card--2 .timing-card__desc--2 {
    left: 0;
    top: 67.61px;
    width: 358.33px;
    text-align: center;
}

.timing-card--3 .timing-card__title {
    left: 0;
    top: 40.5px;
    width: 358.33px;
    text-align: center;
}

.timing-card--3 .timing-card__desc--1 {
    left: 0;
    top: 57px;
    width: 358.33px;
    text-align: center;
}

.timing-card--3 .timing-card__desc--2 {
    left: 0;
    top: 70.5px;
    width: 358.33px;
    text-align: center;
}
/* Timing screen text alignment: center between icon end and card right edge */

.timing-card__title,
.timing-card__desc {
    left: 87.82px !important;
    width: 270.51px !important;
    text-align: center;
}
/* Exact coordinate layout: weight screens / dog, cat, other */

.quiz-step[data-step="weight"] {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 950px;
    padding-bottom: 0;
    background: #ffffff;
    overflow: hidden;
}

.weight-group {
    display: none;
}

.weight-group.is-active {
    display: block;
}

.weight-layout {
    position: relative;
    width: 430px;
    min-height: 950px;
    background: #ffffff;
}

.weight-layout--cat {
    min-height: 860px;
}

/* Header */

.quiz-hero--weight {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 276.89px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #1a0000;
    border-bottom-left-radius: 32.58px;
    border-bottom-right-radius: 32.58px;
    box-shadow: 0 0 6.52px rgba(241, 97, 119, 0.6);
}

.quiz-hero--weight::before,
.quiz-hero--weight::after,
.quiz-hero--weight .quiz-hero__pattern {
    display: none;
}

.quiz-hero__content--weight {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    min-height: 0;
}

/* Header icons */

.weight-header-icon {
    position: absolute;
    display: block;
    object-fit: contain;
}

.weight-header-icon--dog {
    left: 175.59px;
    top: 56.7px;
    width: 78.35px;
    height: 114.14px;
}

/* Temporary cat coordinates. We will refine after visual check. */
.weight-header-icon--cat {
    left: 168px;
    top: 56.7px;
    width: 94px;
    height: 114.14px;
}

.weight-header-icon--other {
    left: 171.71px;
    top: 56.78px;
    width: 86.09px;
    height: 114.02px;
}

/* Title */

.weight-title {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.weight-title__line {
    position: absolute;
    left: 0;
    display: block;
    width: 430px;
    margin: 0;
    padding: 0;
    font-size: 31.27px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.weight-title__line--1 {
    top: 181.5px;
    color: #ffffff;
}

.weight-title__line--2 {
    top: 219px;
    color: #f16177;
}

/* Content */

.quiz-content--weight {
    position: absolute;
    left: 0;
    top: 0;
    width: 430px;
    height: 950px;
    margin: 0;
    padding: 0;
    background: transparent;
}

.weight-layout--cat .quiz-content--weight {
    height: 860px;
}

/* Cards */

.weight-card {
    position: absolute;
    left: 35.83px;
    width: 358.33px;
    height: 65.15px;
    min-height: 0;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 11.4px;
    background: #ffffff;
    color: #1a0000;
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.15);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

.weight-card--1 {
    top: 300.39px;
}

.weight-card--2 {
    top: 392.86px;
}

.weight-card--3 {
    top: 485.05px;
}

.weight-card--4 {
    top: 576.92px;
}

.weight-card--5 {
    top: 668.78px;
}

.weight-card--6 {
    top: 760.64px;
}

.weight-card:active {
    transform: scale(0.99);
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.22);
}

/* Arrow */

.weight-card__arrow {
    position: absolute;
    left: 331.13px;
    top: 32.58px;
    width: 13.42px;
    height: 13.42px;
    display: block;
    object-fit: contain;
    transform: translateY(-50%);
}

/* Animal icons */

.weight-card__animal {
    position: absolute;
    display: block;
    object-fit: contain;
}

/* Dog icons */

.weight-dog-puppy {
    left: 58.68px;
    top: 16.07px;
    width: 35.86px;
    height: 34.22px;
}

.weight-dog-under-4 {
    left: 58.63px;
    top: 14.26px;
    width: 35.85px;
    height: 36.64px;
}

.weight-dog-4-10 {
    left: 52.18px;
    top: 11.89px;
    width: 42.3px;
    height: 41.4px;
}

.weight-dog-10-25 {
    left: 35.76px;
    top: 10.49px;
    width: 58.74px;
    height: 44.18px;
}

.weight-dog-26-45 {
    left: 32.52px;
    top: 5.53px;
    width: 61.99px;
    height: 54.05px;
}

.weight-dog-over-45 {
    left: 29.26px;
    top: 6.21px;
    width: 65.23px;
    height: 52.82px;
}

/* Cat icons */

.weight-cat-kitten {
    left: 58.63px;
    top: 16.7px;
    width: 35.83px;
    height: 31.76px;
}

.weight-cat-under-3 {
    left: 58.63px;
    top: 15.51px;
    width: 35.83px;
    height: 32.93px;
}

.weight-cat-3-5 {
    left: 52.11px;
    top: 13.28px;
    width: 42.35px;
    height: 37.37px;
}

.weight-cat-5-7 {
    left: 35.82px;
    top: 5.65px;
    width: 58.64px;
    height: 52.62px;
}

.weight-cat-over-7 {
    left: 32.57px;
    top: 10.29px;
    width: 61.89px;
    height: 43.36px;
}

/* Other pet icons */

.weight-other-baby {
    left: 58.51px;
    top: 16.75px;
    width: 35.83px;
    height: 32.88px;
}

.weight-other-under-1 {
    left: 35.7px;
    top: 20.82px;
    width: 58.64px;
    height: 23.52px;
}

.weight-other-1-4 {
    left: 35.7px;
    top: 16.72px;
    width: 58.64px;
    height: 31.72px;
}

.weight-other-4-10 {
    left: 29.19px;
    top: 15.42px;
    width: 65.15px;
    height: 34.31px;
}

.weight-other-10-25 {
    left: 35.7px;
    top: 5.04px;
    width: 58.64px;
    height: 55.08px;
}

.weight-other-over-25 {
    left: 8.01px;
    top: 10.13px;
    width: 86.33px;
    height: 44.89px;
}

/* Text zone:
   Card left = 35.83.
   Icons visually end near x 130.
   Arrow starts at x 366.96.
   Text zone relative to card: left 94.5, width 236.63.
*/

.weight-card__title,
.weight-card__desc {
    position: absolute;
    left: 94.5px;
    width: 236.63px;
    display: block;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.weight-card__title {
    top: 21px;
    color: #f16177;
    font-size: 13.68px;
}

.weight-card__desc {
    top: 37px;
    color: #1a0000;
    font-size: 11.73px;
}

.weight-card__desc--line-1 {
    top: 35px;
}

.weight-card__desc--line-2 {
    top: 48px;
}

/* Cat screen: hide sixth card if old styles ever target it */

.weight-layout--cat .weight-card--6 {
    display: none;
}
/* Other pets: multiline descriptions */

.weight-layout--other .weight-card__title {
    top: 15px;
}

.weight-layout--other .weight-card__desc--line-1 {
    top: 30px;
}

.weight-layout--other .weight-card__desc--line-2 {
    top: 42px;
}

.weight-layout--other .weight-card__desc--line-3 {
    top: 54px;
}

.weight-layout--other .weight-card__desc {
    font-size: 11.2px;
}
/* Global bottom back button for all quiz screens except the first one */

.quiz-global-back {
    position: fixed;
    left: calc(50% - 183px);
    bottom: 30px;
    z-index: 55;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 58px;
    min-height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 11.73px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
}

.quiz-global-back[hidden] {
    display: none !important;
}

.quiz-global-back__arrow {
    width: 13px;
    height: 13px;
    border-left: 3px solid #f16177;
    border-bottom: 3px solid #f16177;
    transform: rotate(45deg);
}

.quiz-global-back__text {
    display: block;
    transform: translateY(0.5px);
}

/* Hide old weight-only back button if it still remains somewhere */

.weight-back-button {
    display: none !important;
}
/* Global back button: reliable visibility control */

.quiz-global-back {
    position: fixed;
    left: calc(50% - 183px);
    bottom: 30px;
    z-index: 60;
    display: none;
    align-items: center;
    gap: 7px;
    min-width: 58px;
    min-height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 11.73px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    pointer-events: auto;
    -webkit-font-smoothing: antialiased;
}

.quiz-global-back.is-visible {
    display: inline-flex;
}

.quiz-global-back__arrow {
    width: 13px;
    height: 13px;
    border-left: 3px solid #f16177;
    border-bottom: 3px solid #f16177;
    transform: rotate(45deg);
}

.quiz-global-back__text {
    display: block;
    transform: translateY(0.5px);
}

.weight-back-button {
    display: none !important;
}
/* Global back button - final reliable version */

.quiz-global-back {
    position: fixed !important;
    left: calc(50% - 183px) !important;
    bottom: 30px !important;
    z-index: 80 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    min-width: 58px !important;
    min-height: 32px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #1a0000 !important;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11.73px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    -webkit-font-smoothing: antialiased;
}

/* Hide only on first screen */

.quiz-shell:has(.quiz-step[data-step="pet"].is-active) .quiz-global-back {
    display: none !important;
}

.quiz-global-back__arrow {
    width: 13px !important;
    height: 13px !important;
    border-left: 3px solid #f16177 !important;
    border-bottom: 3px solid #f16177 !important;
    transform: rotate(45deg) !important;
    flex: 0 0 13px !important;
}

.quiz-global-back__text {
    display: block !important;
    color: #1a0000 !important;
    transform: translateY(0.5px) !important;
}

/* Disable old weight-only button if it remains */

.weight-back-button {
    display: none !important;
}
/* Global back button final position */

.quiz-global-back {
    position: fixed !important;
    left: calc(50% - 183px) !important;
    bottom: 24px !important;
    z-index: 80 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    min-width: 58px !important;
    min-height: 32px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #1a0000 !important;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 11.73px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    -webkit-font-smoothing: antialiased;
}

.quiz-shell:has(.quiz-step[data-step="pet"].is-active) .quiz-global-back {
    display: none !important;
}

.quiz-global-back__arrow {
    width: 13px !important;
    height: 13px !important;
    border-left: 3px solid #f16177 !important;
    border-bottom: 3px solid #f16177 !important;
    transform: rotate(45deg) !important;
    flex: 0 0 13px !important;
}

.quiz-global-back__text {
    display: block !important;
    color: #1a0000 !important;
    transform: translateY(0.5px) !important;
}
/* Result screen: single product template */

.quiz-step[data-step="result"] {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 1046px;
    padding-bottom: 0;
    background: #ffffff;
    overflow: visible;
}

.result-template {
    position: relative;
    width: 430px;
    min-height: 1046px;
    background: #ffffff;
    padding-bottom: 130px;
}

/* Header */

.quiz-hero--result-single {
    position: relative;
    left: 0;
    top: 0;
    width: 430px;
    height: 218.26px;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    background: #1a0000;
    border-bottom-left-radius: 32.58px;
    border-bottom-right-radius: 32.58px;
    box-shadow: 0 0 6.52px rgba(241, 97, 119, 0.6);
}

.quiz-hero--result-single::before,
.quiz-hero--result-single::after,
.quiz-hero--result-single .quiz-hero__pattern {
    display: none;
}

.quiz-hero__content--result {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.result-header-icon {
    position: absolute;
    left: 50%;
    top: 43.39px;
    width: auto;
    height: 82.17px;
    display: block;
    transform: translateX(-50%);
    object-fit: contain;
}

.result-header-title {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

.result-header-title__line {
    position: absolute;
    left: 0;
    width: 430px;
    display: block;
    margin: 0;
    padding: 0;
    font-size: 23.45px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
}

.result-header-title__line--1 {
    top: 144.23px;
    color: #ffffff;
}

.result-header-title__line--2 {
    top: 179.01px;
    color: #f16177;
}

/* Body */

.result-single-body {
    position: relative;
    width: 430px;
    padding: 16.29px 27.69px 0;
    background: #ffffff;
}

.result-single-title {
    width: 360px;
    margin: 0 auto;
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 15.64px;
    line-height: 1.18;
    font-weight: 700;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

.result-single-description {
    width: 332.27px;
    margin: 13.5px auto 0;
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 11.73px;
    line-height: 1.24;
    font-weight: 400;
    text-align: center;
    -webkit-font-smoothing: antialiased;
}

/* Product + buttons */

.result-single-product-row {
    position: relative;
    width: 374.62px;
    min-height: 179.17px;
    margin: 20px auto 0;
}

.result-single-product-image {
    position: absolute;
    left: 2.85px;
    top: 0;
    width: 179.17px;
    height: 179.17px;
    display: block;
    object-fit: contain;
}

.result-single-actions {
    position: absolute;
    left: 187.31px;
    top: 57.01px;
    width: 182.42px;
}

.result-single-button {
    width: 182.42px;
    height: 32.58px;
    display: grid;
    place-items: center;
    border-radius: 6.52px;
    background: #f16177;
    color: #ffffff;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 11.73px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}

.result-single-button + .result-single-button {
    margin-top: 15px;
}

/* Usage card */

.result-usage-card {
    position: relative;
    width: 374.62px;
    height: 162.68px;
    margin: 0 auto;
    border-radius: 11.4px;
    background: #1a0000;
    box-shadow: 0 0 6.52px rgba(241, 97, 119, 0.6);
    color: #ffffff;
}

.result-usage-title {
    position: absolute;
    left: 25.58px;
    top: 8.14px;
    width: 323.47px;
    margin: 0;
    color: #ffffff;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 15.64px;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
}

.result-usage-grid {
    position: absolute;
    inset: 0;
}

.result-usage-item {
    position: absolute;
    top: 34.3px;
    width: 94px;
    height: 110px;
    text-align: center;
}

.result-usage-item--dose {
    left: 0;
}

.result-usage-item--frequency {
    left: 124.76px;
}

.result-usage-item--course {
    left: 249.53px;
}

.result-usage-icon {
    width: 65.15px;
    height: 56.86px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.result-usage-value {
    position: absolute;
    left: 50%;
    top: 65.06px;
    width: 96px;
    display: block;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 15.64px;
    line-height: 1.05;
    font-weight: 700;
    text-align: center;
}

.result-usage-value--course {
    font-size: 11.73px;
    line-height: 1.15;
}

.result-usage-separator {
    position: absolute;
    top: 40.62px;
    width: 0.98px;
    height: 97.73px;
    background: #ffffff;
}

.result-usage-separator--left {
    left: 123.79px;
}

.result-usage-separator--right {
    left: 248.88px;
}

/* Text after scheme */

.result-single-usage-text {
    width: 332.27px;
    margin: 16.28px auto 0;
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 11.73px;
    line-height: 1.24;
    font-weight: 400;
    text-align: center;
}

/* Info card */

.result-info-card {
    position: relative;
    width: 374.62px;
    height: 58.64px;
    margin: 16.29px auto 0;
    border-radius: 11.4px;
    background: #ffffff;
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.15);
}

.result-info-icon {
    position: absolute;
    left: 16.29px;
    top: 21.18px;
    width: 16.29px;
    height: 16.29px;
    display: block;
}

.result-info-text {
    position: absolute;
    left: 48px;
    top: 50%;
    width: 248px;
    margin: 0;
    transform: translateY(-50%);
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 11.73px;
    line-height: 1.18;
    font-weight: 400;
    text-align: center;
}

.result-info-product {
    position: absolute;
    right: 4.89px;
    top: 4.89px;
    width: 48.86px;
    height: 48.86px;
    display: block;
    object-fit: contain;
}

/* Warning */

.result-warning-card {
    position: relative;
    width: 325.76px;
    min-height: 32.58px;
    margin: 110px auto 0;
    border-radius: 11.4px;
    background: rgba(26, 0, 0, 0.25);
}

.result-warning-icon {
    position: absolute;
    left: 8.15px;
    top: 8.14px;
    width: 16.29px;
    height: 16.29px;
    display: block;
}

.result-warning-text {
    width: 260px;
    margin: 0 auto;
    padding: 7px 0;
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 7.82px;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
}
/* Result single: usage card correction */

.result-usage-item {
    position: absolute;
    top: 34.3px;
    width: 124.87px;
    height: 110px;
    text-align: center;
}

.result-usage-item--dose {
    left: 0;
}

.result-usage-item--frequency {
    left: 124.87px;
}

.result-usage-item--course {
    left: 249.74px;
}

.result-usage-icon {
    width: 65.15px;
    height: 56.86px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.result-usage-value {
    left: 0;
    top: 65.06px;
    width: 124.87px;
    transform: none;
    text-align: center;
}

.result-usage-separator--left {
    left: 124.87px;
}

.result-usage-separator--right {
    left: 249.74px;
}
/* Result single: warning block position */

.result-warning-card {
    margin: 17px auto 0;
}
/* Hide old result template if any old markup remains */

.result-card,
.result-label,
.result-box,
.result-actions,
.result-restart,
.result-note {
    display: none !important;
}
/* Critical screen visibility safety */

.quiz-shell > .quiz-step {
    display: none !important;
}

.quiz-shell > .quiz-step.is-active {
    display: block !important;
}

.quiz-step[data-step="result"]:not(.is-active) {
    display: none !important;
}

.quiz-step[data-step="result"].is-active {
    display: block !important;
}
/* Hide orphan warning block outside the result screen */

.quiz-shell > .result-warning-card {
    display: none !important;
}
/* Result single: force course value into three lines */

.result-usage-item--course .result-usage-value,
.result-usage-value--course {
    width: 124.87px;
    font-size: 15.64px;
    line-height: 1.05;
    white-space: normal;
}

.result-usage-item--course .result-usage-value {
    top: 65.06px;
}
/* Result bundle additions */

.result-bundle-plus {
    position: absolute;
    left: 94.7px;
    top: 25.19px;
    width: 32.58px;
    height: 28.43px;
    display: none;
    object-fit: contain;
    z-index: 3;
}

.result-usage-card--secondary {
    display: none;
    margin-top: 17px;
}

.result-template.is-bundle .result-bundle-plus {
    display: block;
}

.result-template.is-bundle .result-usage-card--secondary {
    display: block;
}
/* Result bundle: place second usage card after the first one */

.result-usage-card--secondary {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    display: none;
    width: 374.62px;
    height: 162.68px;
    margin: 17px auto 0 !important;
}

.result-template.is-bundle .result-usage-card--secondary {
    display: block !important;
}
/* Result bundle: hide additional product suggestion */

.result-template.is-bundle .result-info-card {
    display: none !important;
}
/* Result bundle: first usage title in one line, normal font size */

.result-template.is-bundle .result-usage-card:not(.result-usage-card--secondary) .result-usage-title {
    left: 0 !important;
    top: 8.14px !important;
    width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    font-size: 15.64px !important;
    line-height: 1.15 !important;
    font-weight: 400 !important;
    white-space: nowrap !important;
    text-align: center !important;
    transform: none !important;
}
/* Product detail page: Iodis */

.product-detail-step {
    width: 430px;
    max-width: 100%;
    min-height: 100vh;
    background: #ffffff;
    padding-bottom: 150px;
}

.product-detail-hero {
    position: relative;
    width: 430px;
    max-width: 100%;
    height: 156px;
    overflow: hidden;
    background: #1a0000;
    border-bottom-left-radius: 32.58px;
    border-bottom-right-radius: 32.58px;
    box-shadow: 0 0 6.52px rgba(241, 97, 119, 0.6);
}

.product-detail-logo {
    position: absolute;
    left: 50%;
    top: 31px;
    width: 51px;
    height: 65px;
    transform: translateX(-50%);
    z-index: 2;
}

.product-detail-body {
    width: 430px;
    max-width: 100%;
    padding: 22px 32px 0;
    box-sizing: border-box;
    background: #ffffff;
    color: #1a0000;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.product-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 24px;
    color: #f16177;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
}

.product-breadcrumbs strong {
    color: #1a0000;
    font-weight: 400;
}

.product-detail-top {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 18px;
    align-items: center;
}

.product-detail-image-wrap {
    width: 150px;
}

.product-detail-image {
    width: 150px;
    height: 150px;
    display: block;
    object-fit: contain;
}

.product-detail-info {
    min-width: 0;
}

.product-detail-title {
    margin: 0;
    color: #1a0000;
    font-size: 27px;
    line-height: 0.98;
    font-weight: 700;
}

.product-detail-title span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.product-detail-registration {
    margin: 10px 0 0;
    color: #1a0000;
    font-size: 10px;
    line-height: 1.25;
}

.product-detail-short {
    margin: 22px 0 0;
    color: #1a0000;
    font-size: 10.8px;
    line-height: 1.25;
}

.product-detail-buy {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 40px;
    margin-top: 18px;
    align-items: end;
}

.product-section-label {
    margin: 0 0 10px;
    color: #1a0000;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
}

.product-volume-button {
    width: 130px;
    height: 31px;
    display: block;
    margin: 0 0 10px;
    border: 0;
    border-radius: 7px;
    background: #ffffff;
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.15);
    color: #1a0000;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
}

.product-volume-button.is-active {
    background: #f16177;
    color: #ffffff;
    box-shadow: 0 0 8.14px rgba(241, 97, 119, 0.25);
}

.product-purchase {
    padding-bottom: 10px;
}

.product-stock {
    margin: 0 0 8px;
    color: #1a0000;
    font-size: 15px;
    line-height: 1;
}

.product-price {
    margin: 0 0 14px;
    color: #1a0000;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

.product-cart-button {
    width: 130px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #f16177;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.product-detail-lead {
    margin: 26px 0 0;
    color: #1a0000;
    font-size: 15px;
    line-height: 1.28;
    font-weight: 400;
}

.product-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0;
    margin-top: 24px;
    border-bottom: 2px solid rgba(26, 0, 0, 0.45);
}

.product-tab {
    position: relative;
    height: 30px;
    border: 0;
    background: transparent;
    color: #1a0000;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
}

.product-tab.is-active {
    color: #f16177;
    font-weight: 700;
}

.product-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #f16177;
}

.product-tab-content {
    margin-top: 18px;
    color: #1a0000;
    font-size: 14px;
    line-height: 1.28;
    font-weight: 400;
}

.product-tab-content p {
    margin: 0 0 10px;
}
/* Product detail universal template */

.product-detail-subtitle {
    margin: 6px 0 0;
    color: #1a0000;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
}

.product-format-options {
    display: block;
}
/* Product detail layout by 430px design */

.product-detail-step {
    width: 430px !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    background: #ffffff !important;
    padding-bottom: 150px !important;
    overflow: visible !important;
}

/* Header */

.product-detail-hero {
    position: relative !important;
    width: 430px !important;
    max-width: 100% !important;
    height: 81.44px !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #1a0000 !important;
    border-bottom-left-radius: 32.58px !important;
    border-bottom-right-radius: 32.58px !important;
    box-shadow: 0 0 6.52px rgba(241, 97, 119, 0.6) !important;
}

.product-detail-hero .hero-triangles--left {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 156.12px !important;
    height: 148.21px !important;
    display: block !important;
}

.product-detail-hero .hero-triangles--right {
    position: absolute !important;
    left: 305.86px !important;
    top: 0 !important;
    width: 124.14px !important;
    height: 148.21px !important;
    display: block !important;
}

.product-detail-logo {
    position: absolute !important;
    left: 198.71px !important;
    top: 24.05px !important;
    width: 32.58px !important;
    height: 41.33px !important;
    transform: none !important;
    z-index: 2 !important;
}

/* Body */

.product-detail-body {
    position: relative !important;
    width: 430px !important;
    max-width: 100% !important;
    padding: 0 0 0 !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    color: #1a0000 !important;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
}

/* Top product block */

.product-detail-top {
    position: relative !important;
    display: block !important;
    width: 430px !important;
    height: 178.41px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-detail-image-wrap {
    position: absolute !important;
    left: 19.55px !important;
    top: 15.54px !important;
    width: 162.88px !important;
    height: 162.88px !important;
}

.product-detail-image {
    width: 162.88px !important;
    height: 162.88px !important;
    display: block !important;
    object-fit: contain !important;
}

.product-detail-info {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 430px !important;
    height: 178.41px !important;
    min-width: 0 !important;
}

.product-detail-title {
    position: absolute !important;
    left: 217.39px !important;
    top: 49.02px !important;
    width: 170px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 23.45px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

.product-detail-subtitle {
    position: absolute !important;
    left: 216.25px !important;
    top: 72.44px !important;
    width: 170px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
}

.product-detail-registration {
    position: absolute !important;
    left: 215.92px !important;
    top: 92.25px !important;
    width: 120px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 7.82px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

.product-detail-short {
    position: absolute !important;
    left: 195.86px !important;
    top: 121.49px !important;
    width: 203.6px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 7.82px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

/* Format + purchase */

.product-detail-buy {
    position: relative !important;
    display: block !important;
    width: 430px !important;
    height: 127.43px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-volume {
    position: absolute !important;
    left: 32.58px !important;
    top: 0 !important;
    width: 130.3px !important;
}

.product-section-label {
    margin: 0 0 8.43px !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.15 !important;
    font-weight: 400 !important;
}

.product-format-options {
    display: block !important;
    width: 130.3px !important;
}

.product-volume-button {
    width: 130.3px !important;
    height: 26.06px !important;
    display: block !important;
    margin: 0 0 8.88px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 6.52px !important;
    background: #ffffff !important;
    box-shadow: 0 0 4.89px rgba(241, 97, 119, 0.25) !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.product-volume-button.is-active {
    background: #f16177 !important;
    color: #ffffff !important;
}

.product-purchase {
    position: absolute !important;
    left: 200.34px !important;
    top: 41.58px !important;
    width: 199px !important;
    height: 70px !important;
    padding: 0 !important;
}

.product-stock {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
}

.product-price {
    position: absolute !important;
    left: 0 !important;
    top: 22.15px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 15.64px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.product-cart-button {
    position: absolute !important;
    left: 68.82px !important;
    top: 14.98px !important;
    width: 130.3px !important;
    height: 26.06px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 6.52px !important;
    background: #f16177 !important;
    color: #ffffff !important;
    font-size: 11.73px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* Large description */

.product-detail-lead {
    width: 358.33px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    text-align: left !important;
}

/* Tabs */

.product-tabs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    width: 390.91px !important;
    height: 31.4px !important;
    margin: 17.18px auto 0 !important;
    padding: 0 !important;
    border-bottom: 1.63px solid rgba(0, 0, 0, 0.5) !important;
}

.product-tab {
    position: relative !important;
    height: 31.4px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    text-align: center !important;
}

.product-tab.is-active {
    color: #f16177 !important;
    font-weight: 700 !important;
}

.product-tab.is-active::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -1.63px !important;
    width: 100% !important;
    height: 1.63px !important;
    background: #f16177 !important;
}

/* Tab text */

.product-tab-content {
    width: 358.33px !important;
    margin: 16.29px auto 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.22 !important;
    font-weight: 400 !important;
    text-align: left !important;
}

.product-tab-content p {
    margin: 0 0 10px !important;
}
/* Product detail title corrections */

.product-detail-title {
    height: auto !important;
    line-height: 1 !important;
    white-space: normal !important;
}

.product-detail-subtitle {
    height: auto !important;
    white-space: normal !important;
}

.product-detail-registration {
    top: 98px !important;
}

/* Single product title layout */

.product-detail-step:not(.is-product-bundle) .product-detail-title {
    top: 49.02px !important;
    line-height: 1 !important;
}

.product-detail-step:not(.is-product-bundle) .product-detail-subtitle {
    top: 72.44px !important;
}

.product-detail-step:not(.is-product-bundle) .product-detail-registration {
    top: 94px !important;
}

/* Bundle title layout */

.product-detail-step.is-product-bundle .product-detail-title {
    top: 39px !important;
    width: 175px !important;
    line-height: 0.96 !important;
}

.product-detail-step.is-product-bundle .product-detail-subtitle {
    top: 88px !important;
    width: 185px !important;
    line-height: 1.1 !important;
}

.product-detail-step.is-product-bundle .product-detail-registration {
    top: 112px !important;
    width: 185px !important;
}
/* Product detail bundle: fix title/RP/short spacing */

.product-detail-step.is-product-bundle .product-detail-title {
    top: 33px !important;
    width: 185px !important;
    line-height: 0.96 !important;
}

.product-detail-step.is-product-bundle .product-detail-subtitle {
    top: 84px !important;
    width: 190px !important;
    line-height: 1.1 !important;
}

.product-detail-step.is-product-bundle .product-detail-registration {
    top: 108px !important;
    width: 190px !important;
    line-height: 1.2 !important;
}

.product-detail-step.is-product-bundle .product-detail-short {
    top: 138px !important;
    width: 203.6px !important;
    line-height: 1.2 !important;
}
/* Product detail bundle: lower registration number */

.product-detail-step.is-product-bundle .product-detail-registration {
    top: 118px !important;
}
/* Consultation page */

.consultation-step {
    width: 430px !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    background: #ffffff !important;
    padding-bottom: 80px !important;
}

.consultation-page-body {
    width: 430px !important;
    max-width: 100% !important;
    padding: 38px 30px 0 !important;
    box-sizing: border-box !important;
    color: #1a0000 !important;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
}

.consultation-page-title {
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 23.45px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.consultation-page-text {
    width: 342px !important;
    margin: 18px auto 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
    text-align: center !important;
}

.consultation-options {
    width: 358.33px !important;
    margin: 34px auto 0 !important;
    display: grid !important;
    gap: 14px !important;
}

.consultation-option {
    width: 100% !important;
    min-height: 68px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0 22px !important;
    box-sizing: border-box !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 0 8px rgba(241, 97, 119, 0.25) !important;
    color: #1a0000 !important;
    text-decoration: none !important;
    text-align: left !important;
    font-family: inherit !important;
    cursor: pointer !important;
}

.consultation-option-title {
    display: block !important;
    color: #1a0000 !important;
    font-size: 15.64px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
}

.consultation-option-text {
    display: block !important;
    margin-top: 6px !important;
    color: #1a0000 !important;
    font-size: 10.5px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

.consultation-option--ai {
    background: #f16177 !important;
}

.consultation-option--ai .consultation-option-title,
.consultation-option--ai .consultation-option-text {
    color: #ffffff !important;
}

.consultation-page-note {
    width: 342px !important;
    margin: 28px auto 0 !important;
    padding: 0 !important;
    color: rgba(26, 0, 0, 0.72) !important;
    font-size: 9.5px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
    text-align: center !important;
}

/* Consultation page header icon */

.consultation-header-icon {
    left: 198.71px !important;
    top: 24.05px !important;
    width: 32.58px !important;
    height: 41.33px !important;
    object-fit: contain !important;
}
/* Internal cart page */

.cart-step {
    width: 430px !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    background: #ffffff !important;
    padding-bottom: 90px !important;
}

.cart-page-body {
    width: 430px !important;
    max-width: 100% !important;
    padding: 36px 30px 0 !important;
    box-sizing: border-box !important;
    color: #1a0000 !important;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
}

.cart-page-title {
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 23.45px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.cart-empty-message {
    width: 342px !important;
    margin: 34px auto 0 !important;
    color: #1a0000 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.cart-product-card {
    width: 358.33px !important;
    margin: 30px auto 0 !important;
    padding: 18px 18px 20px !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

.cart-product-image-wrap {
    width: 130px !important;
    height: 130px !important;
    margin: 0 auto !important;
}

.cart-product-image {
    width: 130px !important;
    height: 130px !important;
    display: block !important;
    object-fit: contain !important;
}

.cart-product-info {
    margin-top: 14px !important;
    text-align: center !important;
}

.cart-product-title {
    margin: 0 !important;
    color: #1a0000 !important;
    font-size: 19px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
}

.cart-product-subtitle {
    margin: 5px 0 0 !important;
    color: #1a0000 !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
}

.cart-product-format {
    margin: 12px 0 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

.cart-product-price {
    margin: 8px 0 0 !important;
    color: #1a0000 !important;
    font-size: 15.64px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.cart-quantity-row,
.cart-total-row {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 18px !important;
}

.cart-quantity-label,
.cart-total-label {
    color: #1a0000 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.cart-quantity-control {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.cart-quantity-button {
    width: 28px !important;
    height: 28px !important;
    display: grid !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #f16177 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.cart-quantity-value {
    min-width: 18px !important;
    color: #1a0000 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.cart-total-value {
    color: #1a0000 !important;
    font-size: 17px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.cart-checkout-button,
.cart-continue-button {
    width: 358.33px !important;
    height: 44px !important;
    display: grid !important;
    place-items: center !important;
    margin: 18px auto 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.cart-checkout-button {
    background: #f16177 !important;
    color: #ffffff !important;
}

.cart-continue-button {
    background: #ffffff !important;
    color: #1a0000 !important;
    box-shadow: 0 0 7px rgba(241, 97, 119, 0.25) !important;
}

.cart-step .cart-empty-message {
    display: none !important;
}

.cart-step.is-empty .cart-empty-message {
    display: block !important;
}

.cart-step.is-empty .cart-product-card,
.cart-step.is-empty .cart-checkout-button {
    display: none !important;
}

/* Checkout page */

.checkout-step {
    width: 430px !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    background: #ffffff !important;
    padding-bottom: 90px !important;
}

.checkout-page-body {
    width: 430px !important;
    max-width: 100% !important;
    padding: 34px 30px 0 !important;
    box-sizing: border-box !important;
    color: #1a0000 !important;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
}

.checkout-page-title {
    margin: 0 !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 23.45px !important;
    line-height: 1.05 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.checkout-summary-card {
    width: 358.33px !important;
    margin: 28px auto 0 !important;
    padding: 16px 18px !important;
    box-sizing: border-box !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

.checkout-summary-label {
    margin: 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

.checkout-summary-product {
    margin: 8px 0 0 !important;
    color: #1a0000 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.checkout-summary-meta {
    margin: 8px 0 0 !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

.checkout-summary-total {
    margin: 12px 0 0 !important;
    color: #1a0000 !important;
    font-size: 15.64px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.checkout-form {
    width: 358.33px !important;
    margin: 24px auto 0 !important;
}

.checkout-field {
    display: block !important;
    margin: 0 0 14px !important;
}

.checkout-field-label {
    display: block !important;
    margin-bottom: 6px !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.checkout-input {
    width: 100% !important;
    min-height: 42px !important;
    display: block !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    box-shadow: 0 0 7px rgba(241, 97, 119, 0.25) !important;
    color: #1a0000 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    outline: none !important;
}

.checkout-select {
    appearance: auto !important;
}

.checkout-textarea {
    min-height: 92px !important;
    padding-top: 12px !important;
    resize: vertical !important;
}

.checkout-submit-button {
    width: 358.33px !important;
    height: 44px !important;
    display: grid !important;
    place-items: center !important;
    margin: 20px auto 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: #f16177 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

/* Checkout delivery conditional fields */

.checkout-delivery-fields {
    display: none !important;
}

.checkout-delivery-fields.is-visible {
    display: block !important;
}

.checkout-delivery-note {
    margin: 4px 0 14px !important;
    color: rgba(26, 0, 0, 0.72) !important;
    font-size: 10.5px !important;
    line-height: 1.25 !important;
    font-weight: 400 !important;
}

.checkout-courier-fields {
    display: none !important;
}

.checkout-courier-fields.is-visible {
    display: block !important;
}

.checkout-address-row {
    display: flex !important;
    gap: 12px !important;
}

.checkout-field--half {
    width: calc(50% - 6px) !important;
}

.checkout-step {
    width: 430px !important;
    max-width: 100% !important;
    min-height: 100vh !important;
    background: #f5f5f5 !important;
    padding-bottom: 90px !important;
}

.checkout-step .checkout-page-body {
    width: 430px !important;
    max-width: 100% !important;
    min-height: calc(100vh - 81.44px) !important;
    padding: 24px 14px 110px !important;
    box-sizing: border-box !important;
    background: #f5f5f5 !important;
    color: #1a0000 !important;
    font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
}

.checkout-step .checkout-page-title {
    width: 390px !important;
    margin: 0 auto 16px !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 20px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    text-align: left !important;
}

.checkout-step .checkout-form {
    width: 390px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.checkout-card {
    width: 100% !important;
    padding: 16px 14px !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 1px rgba(26, 0, 0, 0.06) !important;
}

.checkout-card-title {
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #1a0000 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    text-align: left !important;
}

.checkout-step .checkout-field {
    display: block !important;
    margin: 0 0 12px !important;
}

.checkout-step .checkout-field:last-child {
    margin-bottom: 0 !important;
}

.checkout-step .checkout-field-label {
    display: block !important;
    margin-bottom: 6px !important;
    color: rgba(26, 0, 0, 0.7) !important;
    font-size: 10.5px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

.checkout-step .checkout-input {
    width: 100% !important;
    min-height: 42px !important;
    display: block !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(26, 0, 0, 0.18) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    box-shadow: none !important;
    color: #1a0000 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    outline: none !important;
}

.checkout-step .checkout-input:focus {
    border-color: #f16177 !important;
    box-shadow: 0 0 0 3px rgba(241, 97, 119, 0.12) !important;
}

.checkout-step .checkout-select {
    appearance: auto !important;
}

.checkout-step .checkout-textarea {
    min-height: 90px !important;
    padding-top: 12px !important;
    resize: vertical !important;
}

.checkout-delivery-fields {
    display: none !important;
    margin-top: 12px !important;
}

.checkout-delivery-fields.is-visible {
    display: block !important;
}

.checkout-courier-fields {
    display: none !important;
}

.checkout-courier-fields.is-visible {
    display: block !important;
}

.checkout-address-row {
    display: flex !important;
    gap: 10px !important;
}

.checkout-field--half {
    width: calc(50% - 5px) !important;
}

.checkout-delivery-note {
    margin: 2px 0 0 !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    background: #fff7f9 !important;
    color: rgba(26, 0, 0, 0.78) !important;
    font-size: 10.5px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
}

.checkout-recipient-box {
    padding: 12px !important;
    border-radius: 10px !important;
    background: #fafafa !important;
    border: 1px solid rgba(26, 0, 0, 0.08) !important;
}

.checkout-recipient-text {
    margin: 0 !important;
    color: #1a0000 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}

.checkout-warning-box {
    margin-top: 12px !important;
    padding: 12px !important;
    border-radius: 10px !important;
    background: #fff7e8 !important;
    border: 1px solid rgba(241, 188, 97, 0.45) !important;
    color: #1a0000 !important;
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
}

.checkout-order-product {
    padding: 12px !important;
    border-radius: 10px !important;
    background: #fafafa !important;
    border: 1px solid rgba(26, 0, 0, 0.08) !important;
}

.checkout-order-product-name {
    margin: 0 !important;
    color: #1a0000 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

.checkout-order-product-meta {
    margin: 8px 0 0 !important;
    color: rgba(26, 0, 0, 0.75) !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
}

.checkout-total-line {
    display: flex !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 10px !important;
    color: #1a0000 !important;
    font-size: 12.5px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
}

.checkout-total-line strong {
    font-weight: 700 !important;
    text-align: right !important;
}

.checkout-step .checkout-submit-button {
    width: 100% !important;
    height: 46px !important;
    display: grid !important;
    place-items: center !important;
    margin: 18px auto 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #f16177 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.checkout-terms-text {
    margin: 12px 0 0 !important;
    color: rgba(26, 0, 0, 0.62) !important;
    font-size: 9.5px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    text-align: left !important;
}

/* Checkout visual corrections: Enteronormin-style shadows */

.checkout-card {
    border: 0 !important;
    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

.checkout-step .checkout-input {
    border: 0 !important;
    box-shadow: 0 0 7px rgba(241, 97, 119, 0.25) !important;
}

.checkout-step .checkout-input:focus {
    border: 0 !important;
    box-shadow: 0 0 0 3px rgba(241, 97, 119, 0.16), 0 0 7px rgba(241, 97, 119, 0.25) !important;
}

.checkout-recipient-toggle {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 0 0 14px !important;
    color: #1a0000 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
}

.checkout-recipient-checkbox {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    accent-color: #f16177 !important;
    flex-shrink: 0 !important;
}

.checkout-step .checkout-input[readonly] {
    background: #fff7f9 !important;
    color: rgba(26, 0, 0, 0.82) !important;
}

.checkout-step .checkout-input[readonly]:focus {
    box-shadow: 0 0 7px rgba(241, 97, 119, 0.25) !important;
}

/* Extra bottom space so fixed widget does not cover page content */

.product-detail-step,
.cart-step,
.checkout-step,
.order-success-step {
    padding-bottom: 150px !important;
}

.checkout-step .checkout-page-body,
.cart-page-body,
.order-success-body,
.product-detail-body {
    padding-bottom: 150px !important;
}

/* Remove extra bottom space that was needed only for fixed widget */

.product-detail-step,
.cart-step,
.checkout-step,
.order-success-step {
    padding-bottom: 30px !important;
}

.checkout-step .checkout-page-body,
.cart-page-body,
.order-success-body,
.product-detail-body {
    padding-bottom: 30px !important;
}
/* Consultation widget final position: closer to content, no white backing */

.consultation-widget::before,
.consultation-widget::after {
    display: none !important;
    content: none !important;
}

.product-detail-step,
.cart-step,
.checkout-step,
.order-success-step {
    padding-bottom: 12px !important;
}

.checkout-step .checkout-page-body,
.cart-page-body,
.order-success-body,
.product-detail-body {
    padding-bottom: 12px !important;
}
/* Consultation widget final inline layout */

.consultation-widget {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 10px auto 18px !important;
    padding: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    z-index: 1 !important;
}

.consultation-widget::before,
.consultation-widget::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Keep the actual consultation button styled */
.consultation-widget button,
.consultation-widget a,
.consultation-widget .consultation-button {
    background: #f16177 !important;
    color: #ffffff !important;
}

/* Reduce bottom spacing after pages */
.product-detail-step,
.cart-step,
.checkout-step,
.order-success-step,
.quiz-step {
    padding-bottom: 16px !important;
}

.checkout-step .checkout-page-body,
.cart-page-body,
.order-success-body,
.product-detail-body {
    padding-bottom: 16px !important;
}

/* Hide widget only on consultation page */
body.is-consultation-step .consultation-widget {
    display: none !important;
}
/* Emergency restore consultation widget */

body:not(.is-consultation-step) .consultation-widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.consultation-widget {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 18px auto 24px !important;
    padding: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    z-index: 1 !important;
}

.consultation-widget::before,
.consultation-widget::after {
    display: none !important;
    content: none !important;
}

/* Hide only on the consultation page itself */
body.is-consultation-step .consultation-widget {
    display: none !important;
}
/* Restore consultation widget by real HTML classes */

.consultation-widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 18px auto 24px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    z-index: 1 !important;
}

.consultation-widget__decor {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;

    background: transparent !important;
    box-shadow: none !important;
}

.consultation-widget__line {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 120px !important;
    height: 1px !important;

    background: rgba(241, 97, 119, 0.55) !important;
}

.consultation-widget__icon {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 32px !important;
    height: 32px !important;

    background: transparent !important;
    box-shadow: none !important;
}

.consultation-widget__icon img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
}

.consultation-widget__button {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 100% !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 22px !important;

    background: #f16177 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

/* Hide consultation widget only on the consultation page */
body.is-consultation-step .consultation-widget {
    display: none !important;
}

/* Consultation widget final visible layout */

html body .consultation-widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    min-height: 0 !important;
    margin: 14px auto 22px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    z-index: 10 !important;
}

html body .consultation-widget__decor {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

html body .consultation-widget__line {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 120px !important;
    height: 1px !important;

    background: rgba(241, 97, 119, 0.55) !important;
}

html body .consultation-widget__icon {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 32px !important;
    height: 32px !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

html body .consultation-widget__icon img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
}

html body .consultation-widget__button {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 100% !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 22px !important;

    background: #f16177 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

/* Keep page bottom compact */

html body .quiz-step {
    padding-bottom: 12px !important;
}

html body .checkout-step .checkout-page-body,
html body .cart-page-body,
html body .order-success-body,
html body .product-detail-body {
    padding-bottom: 12px !important;
}

/* Consultation widget final force restore */

html body .consultation-widget,
html body.is-consultation-step .consultation-widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    min-height: 0 !important;
    margin: 14px auto 22px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    z-index: 10 !important;
}

html body .consultation-widget__decor {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

html body .consultation-widget__line {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 120px !important;
    height: 1px !important;

    background: rgba(241, 97, 119, 0.55) !important;
}

html body .consultation-widget__icon {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 32px !important;
    height: 32px !important;

    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

html body .consultation-widget__icon img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
}

html body .consultation-widget__button {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 100% !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 22px !important;

    background: #f16177 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

/* Compact bottom spacing */

.quiz-step {
    padding-bottom: 12px !important;
}

/* Final footer actions: clean old consultation look */

html body .quiz-footer-actions {
    position: relative !important;
    display: block !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 6px auto 14px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

/* Back button in footer */

html body .quiz-footer-actions .quiz-global-back,
html body .quiz-footer-back {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: auto !important;
    height: 32px !important;

    margin: 0 0 8px 0 !important;
    padding: 0 14px !important;

    border-radius: 18px !important;
    border: 1px solid rgba(241, 97, 119, 0.45) !important;

    background: transparent !important;
    color: #f16177 !important;
    box-shadow: none !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

/* Consultation widget restored */

html body .quiz-footer-actions .consultation-widget {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 100% !important;
    max-width: 100% !important;

    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* Remove white backing around the footer block */

html body .quiz-footer-actions,
html body .quiz-footer-actions *,
html body .quiz-footer-actions::before,
html body .quiz-footer-actions::after,
html body .quiz-footer-actions .consultation-widget,
html body .quiz-footer-actions .consultation-widget::before,
html body .quiz-footer-actions .consultation-widget::after,
html body .quiz-footer-actions .consultation-widget__decor,
html body .quiz-footer-actions .consultation-widget__icon {
    box-shadow: none !important;
}

html body .quiz-footer-actions,
html body .quiz-footer-actions::before,
html body .quiz-footer-actions::after,
html body .quiz-footer-actions .consultation-widget,
html body .quiz-footer-actions .consultation-widget::before,
html body .quiz-footer-actions .consultation-widget::after,
html body .quiz-footer-actions .consultation-widget__decor,
html body .quiz-footer-actions .consultation-widget__icon {
    background: transparent !important;
}

/* Original consultation decor */

html body .quiz-footer-actions .consultation-widget__decor {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;

    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
}

html body .quiz-footer-actions .consultation-widget__line {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 120px !important;
    height: 1px !important;

    background: rgba(241, 97, 119, 0.55) !important;
}

html body .quiz-footer-actions .consultation-widget__icon {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 32px !important;
    height: 32px !important;
}

html body .quiz-footer-actions .consultation-widget__icon img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
}

/* Consultation button */

html body .quiz-footer-actions .consultation-widget__button {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;

    place-items: center !important;

    width: 100% !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 22px !important;

    background: #f16177 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

/* Pull footer closer to active page content */

html body .quiz-step {
    padding-bottom: 0 !important;
}

html body .product-detail-step,
html body .cart-step,
html body .checkout-step,
html body .order-success-step {
    padding-bottom: 0 !important;
}

html body .checkout-step .checkout-page-body,
html body .cart-page-body,
html body .order-success-body,
html body .product-detail-body {
    padding-bottom: 0 !important;
}

/* Pull consultation footer up */

html body .quiz-footer-actions {
    margin-top: -30px !important;
    margin-bottom: 18px !important;
}

/* Product detail: do not pull footer over tab text */

html body.is-product-detail-step .quiz-footer-actions {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
}

html body.is-product-detail-step .product-detail-step,
html body.is-product-detail-step .product-detail-body,
html body.is-product-detail-step .product-detail-tabs,
html body.is-product-detail-step .product-detail-tab-content {
    overflow: visible !important;
}

html body.is-product-detail-step .product-detail-body {
    padding-bottom: 30px !important;
}

/* Product detail page: show full tab text */

html body .product-detail-step {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 40px !important;
}

html body .product-detail-body {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 40px !important;
}

html body .product-detail-tabs,
html body .product-detail-tabs-content,
html body .product-detail-tab-content,
html body .product-detail-tab-panel,
html body .product-tab-content,
html body [data-product-tab-content] {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;

    -webkit-mask-image: none !important;
    mask-image: none !important;
}

html body .product-detail-tabs::before,
html body .product-detail-tabs::after,
html body .product-detail-tabs-content::before,
html body .product-detail-tabs-content::after,
html body .product-detail-tab-content::before,
html body .product-detail-tab-content::after,
html body .product-detail-tab-panel::before,
html body .product-detail-tab-panel::after,
html body .product-tab-content::before,
html body .product-tab-content::after,
html body [data-product-tab-content]::before,
html body [data-product-tab-content]::after {
    display: none !important;
    content: none !important;
}

/* Final bottom actions: Back + Recommendation */

html body .quiz-final-actions {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 14px auto 22px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    z-index: 20 !important;
}

html body .quiz-final-actions__back {
    position: relative !important;
    display: grid !important;
    place-items: center !important;

    width: 112px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(241, 97, 119, 0.65) !important;
    border-radius: 22px !important;

    background: #ffffff !important;
    color: #f16177 !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.18) !important;
}

html body .quiz-final-actions__recommendation {
    position: relative !important;
    display: grid !important;
    place-items: center !important;

    flex: 1 1 auto !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 18px !important;

    border: 0 !important;
    border-radius: 22px !important;

    background: #f16177 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

/* Remove possible old white footer/backing */
html body .quiz-final-actions,
html body .quiz-final-actions::before,
html body .quiz-final-actions::after {
    background: transparent !important;
    box-shadow: none !important;
}

/* Hide old footer widgets if they still exist somewhere */
html body .quiz-footer-actions,
html body .quiz-bottom-actions,
html body .consultation-widget {
    display: none !important;
}

/* Final actions inside active quiz step */

html body .quiz-final-actions {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 18px auto 24px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    z-index: 20 !important;
}

html body .quiz-final-actions__back {
    position: relative !important;
    display: grid !important;
    place-items: center !important;

    width: 112px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(241, 97, 119, 0.65) !important;
    border-radius: 22px !important;

    background: #ffffff !important;
    color: #f16177 !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.18) !important;
}

html body .quiz-final-actions__recommendation {
    position: relative !important;
    display: grid !important;
    place-items: center !important;

    flex: 1 1 auto !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 18px !important;

    border: 0 !important;
    border-radius: 22px !important;

    background: #f16177 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

/* Final fixed bottom actions */

html body .quiz-final-actions {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    transform: translateX(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;

    z-index: 9999 !important;
}

html body .quiz-final-actions__back {
    position: relative !important;
    display: grid !important;
    place-items: center !important;

    width: 112px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 1px solid rgba(241, 97, 119, 0.65) !important;
    border-radius: 22px !important;

    background: #ffffff !important;
    color: #f16177 !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.18) !important;
}

html body .quiz-final-actions__recommendation {
    position: relative !important;
    display: grid !important;
    place-items: center !important;

    flex: 1 1 auto !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 18px !important;

    border: 0 !important;
    border-radius: 22px !important;

    background: #f16177 !important;
    color: #ffffff !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;

    box-shadow: 0 0 9px rgba(241, 97, 119, 0.25) !important;
}

/* Add space so fixed buttons do not cover content */

html body .quiz-step {
    padding-bottom: 92px !important;
}

html body .product-detail-step,
html body .cart-step,
html body .checkout-step,
html body .order-success-step {
    padding-bottom: 110px !important;
}

html body .product-detail-body,
html body .cart-page-body,
html body .checkout-page-body,
html body .order-success-body {
    padding-bottom: 110px !important;
}

/* Hide old consultation widget if it still exists */

html body .consultation-widget {
    display: none !important;
}

/* Final bottom actions: design version */

html body .quiz-final-actions {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    transform: translateX(-50%) !important;

    display: block !important;

    width: 390px !important;
    max-width: calc(100vw - 28px) !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;

    z-index: 9999 !important;
}

html body .quiz-final-actions__decor {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;

    width: 100% !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

html body .quiz-final-actions__line {
    display: block !important;
    flex: 1 1 auto !important;

    height: 2px !important;

    background: #f16177 !important;
    border-radius: 2px !important;
}

html body .quiz-final-actions__consultation-icon {
    display: grid !important;
    place-items: center !important;

    width: 34px !important;
    height: 34px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

html body .quiz-final-actions__consultation-icon img {
    display: block !important;

    width: 34px !important;
    height: 34px !important;

    object-fit: contain !important;
}

html body .quiz-final-actions__row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

html body .quiz-final-actions__back {
    position: relative !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;

    width: 86px !important;
    height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    color: #1a0000 !important;

    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    text-align: left !important;
    text-transform: lowercase !important;
}

html body .quiz-final-actions__back-icon {
    display: block !important;

    width: 18px !important;
    height: 18px !important;

    object-fit: contain !important;
}

html body .quiz-final-actions__consultation {
    position: relative !important;

    display: grid !important;
    place-items: center !important;

    flex: 1 1 auto !important;
    height: 46px !important;

    margin: 0 !important;
    padding: 0 18px !important;

    background: #ffffff !important;
    color: #f16177 !important;

    border: 2px solid #f16177 !important;
    border-radius: 8px !important;

    box-shadow: none !important;

    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-align: center !important;
}

/* Space for fixed bottom design block */

html body .quiz-step {
    padding-bottom: 112px !important;
}

html body .product-detail-step,
html body .cart-step,
html body .checkout-step,
html body .order-success-step {
    padding-bottom: 128px !important;
}

html body .product-detail-body,
html body .cart-page-body,
html body .checkout-page-body,
html body .order-success-body {
    padding-bottom: 128px !important;
}

/* Remove old widget if it still exists */

html body .consultation-widget {
    display: none !important;
}

/* Make consultation button narrower and centered */

html body .quiz-final-actions__row {
    position: relative !important;
    justify-content: center !important;
}

html body .quiz-final-actions__back {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: auto !important;
    min-width: 68px !important;
}

html body .quiz-final-actions__consultation {
    flex: 0 0 auto !important;

    width: 230px !important;
    max-width: calc(100% - 110px) !important;

    margin: 0 auto !important;
}

/* Multi-product cart */

html body .cart-product-card {
    display: block !important;
}

html body .cart-product-item {
    display: grid !important;
    grid-template-columns: 74px 1fr !important;
    column-gap: 12px !important;
    row-gap: 10px !important;

    padding: 0 0 14px !important;
    margin: 0 0 14px !important;

    border-bottom: 1px solid rgba(241, 97, 119, 0.18) !important;
}

html body .cart-product-item:last-of-type {
    margin-bottom: 10px !important;
}

html body .cart-product-item__image-wrap {
    grid-row: 1 / 3 !important;

    display: grid !important;
    place-items: center !important;

    width: 74px !important;
    min-height: 90px !important;
}

html body .cart-product-item__image {
    display: block !important;
    width: 70px !important;
    height: auto !important;
    object-fit: contain !important;
}

html body .cart-product-item__info {
    min-width: 0 !important;
}

html body .cart-product-item__title {
    margin: 0 0 2px !important;

    color: #1a0000 !important;
    font-size: 15px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
}

html body .cart-product-item__subtitle,
html body .cart-product-item__format,
html body .cart-product-item__price {
    margin: 0 0 2px !important;

    color: rgba(26, 0, 0, 0.78) !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
}

html body .cart-product-item__price {
    color: #f16177 !important;
    font-weight: 700 !important;
}

html body .cart-product-item__quantity-row,
html body .cart-product-item__total-row {
    grid-column: 1 / -1 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

html body .cart-product-item__quantity-label {
    color: rgba(26, 0, 0, 0.78) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

html body .cart-total-row--final {
    margin-top: 6px !important;
    padding-top: 10px !important;

    border-top: 1px solid rgba(241, 97, 119, 0.22) !important;
}

/* Bottom actions: back + consultation + cart */

html body .quiz-final-actions__row {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
}

html body .quiz-final-actions__back {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: auto !important;
    min-width: 68px !important;
}

html body .quiz-final-actions__cart {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: auto !important;
    min-width: 68px !important;
    height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    color: #1a0000 !important;

    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    text-transform: lowercase !important;
}

html body .quiz-final-actions__consultation {
    flex: 0 0 auto !important;

    width: 240px !important;
    max-width: calc(100% - 150px) !important;

    margin: 0 auto !important;
}

/* Bottom cart button arrow */

html body .quiz-final-actions__cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
}

html body .quiz-final-actions__cart-icon {
    display: block !important;

    width: 18px !important;
    height: 18px !important;

    object-fit: contain !important;
}

/* Nova Poshta autocomplete */

html body .checkout-field {
    position: relative !important;
}

html body .np-suggestions {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 6px) !important;

    display: none !important;

    max-height: 220px !important;
    overflow-y: auto !important;

    padding: 6px !important;

    background: #ffffff !important;
    border: 1px solid rgba(241, 97, 119, 0.28) !important;
    border-radius: 14px !important;

    box-shadow: 0 8px 24px rgba(102, 0, 20, 0.14) !important;

    z-index: 10000 !important;
}

html body .np-suggestions.is-visible {
    display: block !important;
}

html body .np-suggestions__item {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 10px 12px !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 10px !important;

    color: #1a0000 !important;

    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    text-align: left !important;
}

html body .np-suggestions__item:hover {
    background: #fff1f4 !important;
}

html body .np-suggestions__message {
    padding: 10px 12px !important;

    color: rgba(26, 0, 0, 0.62) !important;

    font-size: 13px !important;
    line-height: 1.25 !important;
}

/* Delivery index field: show only when JS marks it visible */

html body [data-delivery-index-field] {
    display: none !important;
}

html body [data-delivery-index-field].is-visible {
    display: block !important;
}

/* Ukrposhta index field: hide full row except when active */

html body .checkout-step [data-delivery-index-field] {
    display: none !important;
}

html body .checkout-step [data-delivery-index-field].is-visible {
    display: block !important;
}

/* Ukrposhta autocomplete */

html body .up-suggestions {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 6px) !important;

    display: none !important;

    max-height: 220px !important;
    overflow-y: auto !important;

    padding: 6px !important;

    background: #ffffff !important;
    border: 1px solid rgba(241, 97, 119, 0.28) !important;
    border-radius: 14px !important;

    box-shadow: 0 8px 24px rgba(102, 0, 20, 0.14) !important;

    z-index: 10000 !important;
}

html body .up-suggestions.is-visible {
    display: block !important;
}

html body .up-suggestions__item {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 10px 12px !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 10px !important;

    color: #1a0000 !important;

    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    text-align: left !important;
}

html body .up-suggestions__item:hover {
    background: #fff1f4 !important;
}

html body .up-suggestions__message {
    padding: 10px 12px !important;

    color: rgba(26, 0, 0, 0.62) !important;

    font-size: 13px !important;
    line-height: 1.25 !important;
}

/* Ukrposhta: index-first layout */

html body [data-delivery-fields].is-visible {
    display: flex !important;
    flex-direction: column !important;
}

html body [data-delivery-index-field] {
    order: 1 !important;
}

html body [data-delivery-city-field] {
    order: 2 !important;
}

html body [data-delivery-recipient-field] {
    order: 3 !important;
}

html body [data-delivery-warehouse-field] {
    order: 4 !important;
}

html body [data-delivery-courier-fields] {
    order: 5 !important;
}

html body [data-delivery-note] {
    order: 6 !important;
}

html body .checkout-input[readonly] {
    background: #fff7f9 !important;
    color: rgba(26, 0, 0, 0.72) !important;
}

/* Ukrposhta fallback fields */

html body .checkout-ukrposhta-index-help {
    display: none !important;

    width: fit-content !important;

    margin: 4px 0 12px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    color: #f16177 !important;

    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    text-align: left !important;
    text-decoration: underline !important;
}

html body .checkout-ukrposhta-fallback {
    display: none !important;
}

html body .checkout-ukrposhta-index-help.is-visible {
    display: inline-block !important;
}

html body .checkout-ukrposhta-fallback.is-visible {
    display: block !important;
}

/* Ukrposhta: index-only mode */

html body .checkout-ukrposhta-index-help,
html body .checkout-ukrposhta-fallback,
html body [data-ukrposhta-fallback],
html body [data-ukrposhta-region-field],
html body [data-ukrposhta-district-field] {
    display: none !important;
}

/* Hide warehouse field unless JS explicitly shows it */

html body [data-delivery-warehouse-field]:not(.is-visible) {
    display: none !important;
}

/* Checkout payment note */

html body .checkout-payment-note {
    display: none !important;

    margin-top: 8px !important;
    padding: 10px 12px !important;

    border-radius: 14px !important;
    background: #fff7f9 !important;

    color: rgba(26, 0, 0, 0.72) !important;

    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

html body .checkout-payment-note.is-visible {
    display: block !important;
}

/* Checkout payment note */

html body .checkout-payment-note {
    display: none !important;

    margin-top: 8px !important;
    padding: 10px 12px !important;

    border-radius: 14px !important;
    background: #fff7f9 !important;

    color: rgba(26, 0, 0, 0.72) !important;

    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
}

html body .checkout-payment-note.is-visible {
    display: block !important;
}

/* Global site menu */

.site-menu-button {
    position: fixed !important;
    z-index: 120 !important;

    top: 18px !important;
    left: calc(50% + 152px) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;

    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;

    cursor: pointer !important;
}

.site-menu-button span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.site-menu-button.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
}

.site-menu-button.is-open span:nth-child(2) {
    opacity: 0 !important;
}

.site-menu-button.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
}

.site-menu-panel {
    position: fixed !important;
    z-index: 119 !important;

    top: 68px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-8px) !important;

    width: min(366px, calc(100vw - 32px)) !important;

    padding: 14px !important;
    box-sizing: border-box !important;

    border-radius: 22px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 38px rgba(241, 97, 119, 0.32) !important;
    border: 1px solid rgba(241, 97, 119, 0.18) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
}

.site-menu-panel.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.site-menu-panel__title {
    margin: 0 0 10px !important;
    padding: 4px 6px 10px !important;

    color: #5a1630 !important;

    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;

    border-bottom: 1px solid rgba(241, 97, 119, 0.18) !important;
}

.site-menu-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.site-menu-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;

    min-height: 44px !important;

    padding: 0 12px !important;
    box-sizing: border-box !important;

    border-radius: 14px !important;
    background: #fff7f9 !important;

    color: #1a0000 !important;
    text-decoration: none !important;

    font-size: 13.5px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.site-menu-link::after {
    content: "›" !important;
    color: #f16177 !important;
    font-size: 22px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
}

.site-menu-link--accent {
    background: #f16177 !important;
    color: #ffffff !important;
}

.site-menu-link--accent::after {
    color: #ffffff !important;
}

.site-menu-backdrop {
    position: fixed !important;
    z-index: 118 !important;
    inset: 0 !important;

    display: none !important;
    background: transparent !important;
}

.site-menu-backdrop.is-open {
    display: block !important;
}

body.admin-bar .site-menu-button {
    top: 50px !important;
}

body.admin-bar .site-menu-panel {
    top: 100px !important;
}

@media (max-width: 430px) {
    .site-menu-button {
        left: auto !important;
        right: 16px !important;
    }
}

/* Cookie consent banner */

.cookie-consent-banner {
    position: fixed !important;
    z-index: 300 !important;

    left: 50% !important;
    bottom: 118px !important;
    transform: translateX(-50%) translateY(16px) !important;

    width: min(398px, calc(100vw - 32px)) !important;
    box-sizing: border-box !important;

    padding: 14px 14px 13px !important;

    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 34px rgba(241, 97, 119, 0.30) !important;
    border: 1px solid rgba(241, 97, 119, 0.18) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
}

.cookie-consent-banner.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.cookie-consent-banner__title {
    margin: 0 0 6px !important;
    color: #5a1630 !important;
    font-size: 13.5px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

.cookie-consent-banner__text {
    margin: 0 0 11px !important;
    color: #1a0000 !important;
    font-size: 11.73px !important;
    line-height: 1.32 !important;
    font-weight: 400 !important;
}

.cookie-consent-banner__text a {
    color: #f16177 !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
}

.cookie-consent-banner__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
}

.cookie-consent-banner__button {
    min-height: 38px !important;
    padding: 0 12px !important;

    border-radius: 999px !important;
    border: 2px solid #f16177 !important;

    font-size: 12.5px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;

    cursor: pointer !important;
}

.cookie-consent-banner__button--reject {
    background: #ffffff !important;
    color: #f16177 !important;
}

.cookie-consent-banner__button--accept {
    background: #f16177 !important;
    color: #ffffff !important;
}

@media (max-height: 700px) {
    .cookie-consent-banner {
        bottom: 92px !important;
    }
}