:root {
    --pf2-purple: #6842b8;
    --pf2-purple-dark: #4f2b99;
    --pf2-purple-soft: #f2edfb;
    --pf2-pink: #e996c6;
    --pf2-pink-soft: #fff2f8;
    --pf2-ink: #1c1730;
    --pf2-slate: #615d6e;
    --pf2-muted: #858091;
    --pf2-line: #e5e1eb;
    --pf2-surface: #ffffff;
    --pf2-canvas: #ffffff;
    --pf2-success: #16845b;
    --pf2-danger: #c43b4d;
    --pf2-warning: #a56410;
    --pf2-shadow: 0 20px 55px rgba(47, 32, 77, .09);
}

body.pf2-body {
    background: #ffffff;
    color: var(--pf2-ink);
}

.pf2-body .navbar {
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(104, 66, 184, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pf2-page,
.pf2-page * {
    box-sizing: border-box;
}

.pf2-page {
    min-height: 100vh;
    padding-top: 84px;
    background: #ffffff;
}

.pf2-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.pf2-trust-strip {
    border-bottom: 1px solid rgba(104, 66, 184, .09);
    background: #ffffff;
}

.pf2-trust-strip__inner {
    min-height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    color: var(--pf2-slate);
    font-size: .82rem;
    font-weight: 700;
}

.pf2-trust-strip__inner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pf2-trust-strip__inner i {
    color: var(--pf2-purple);
}

.pf2-shell {
    padding: 48px 0 72px;
}

.pf2-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 35px;
}

.pf2-intro h1 {
    max-width: 720px;
    margin: 0;
    color: var(--pf2-ink);
    font-size: clamp(2.15rem, 4.2vw, 3.45rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.pf2-intro h1 span {
    color: var(--pf2-purple);
}

.pf2-intro p {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--pf2-slate);
    font-size: 1.05rem;
    line-height: 1.55;
}

.pf2-progress {
    position: relative;
    width: 100%;
    margin: 0 0 30px;
}

.pf2-progress ol {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pf2-progress li {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    color: var(--pf2-muted);
    font-size: .83rem;
    font-weight: 800;
}

.pf2-progress li::after {
    position: absolute;
    z-index: 0;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--pf2-line);
    content: '';
    transition: background-color .25s ease;
}

.pf2-progress li.is-complete::after {
    background: var(--pf2-purple);
}

.pf2-progress li:last-child::after {
    display: none;
}

.pf2-progress__number {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pf2-line);
    border-radius: 50%;
    background: var(--pf2-canvas);
    color: var(--pf2-muted);
    transition: all .25s ease;
}

.pf2-progress__number i {
    display: none;
    font-size: .72rem;
}

.pf2-progress__label {
    position: relative;
    z-index: 2;
    padding: 0;
    background: transparent;
    text-align: center;
}

.pf2-progress li.is-active,
.pf2-progress li.is-complete {
    color: var(--pf2-purple-dark);
}

.pf2-progress li.is-active .pf2-progress__number {
    border-color: var(--pf2-purple);
    background: var(--pf2-surface);
    color: var(--pf2-purple);
    box-shadow: 0 0 0 5px rgba(104, 66, 184, .08);
}

.pf2-progress li.is-complete .pf2-progress__number {
    border-color: var(--pf2-purple);
    background: var(--pf2-purple);
    color: #fff;
}

.pf2-progress li.is-complete .pf2-progress__number span {
    display: none;
}

.pf2-progress li.is-complete .pf2-progress__number i {
    display: block;
}

.pf2-progress__bar {
    display: none;
}

.pf2-progress__bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--pf2-purple);
    transition: width .3s ease;
}

.pf2-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: start;
}

.pf2-main-column {
    min-width: 0;
}

.pf2-form-card,
.pf2-summary__card {
    border: 1px solid rgba(49, 31, 77, .08);
    background: var(--pf2-surface);
    box-shadow: var(--pf2-shadow);
}

.pf2-form-card {
    padding: clamp(26px, 4vw, 48px);
    border-radius: 26px;
}

.pf2-step__heading {
    margin-bottom: 30px;
}

.pf2-step__heading--with-action {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.pf2-step__count {
    display: block;
    margin-bottom: 7px;
    color: var(--pf2-purple);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pf2-step__heading h2,
.pf2-summary__body h2 {
    margin: 0;
    color: var(--pf2-ink);
    font-size: clamp(1.55rem, 2.7vw, 2.05rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.pf2-step__heading p {
    max-width: 650px;
    margin: 9px 0 0;
    color: var(--pf2-slate);
    font-size: .96rem;
    line-height: 1.5;
}

.pf2-debug-link,
.pf2-text-button,
.pf2-review-section__heading button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pf2-purple);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pf2-debug-link {
    white-space: nowrap;
    font-size: .8rem;
}

.pf2-error-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 12px 14px;
    border: 1px solid rgba(196, 59, 77, .25);
    border-radius: 12px;
    background: #fff5f6;
    color: var(--pf2-danger);
    font-size: .88rem;
    font-weight: 800;
}

.pf2-quantity-block {
    width: min(390px, 100%);
    margin: 0 auto 34px;
    text-align: center;
}

.pf2-quantity-block > label {
    display: block;
    margin-bottom: 12px;
    color: var(--pf2-ink);
    font-size: .9rem;
    font-weight: 800;
}

.pf2-quantity-control {
    display: grid;
    grid-template-columns: 62px 1fr 62px;
    overflow: hidden;
    border: 2px solid var(--pf2-line);
    border-radius: 18px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.pf2-quantity-control:focus-within {
    border-color: var(--pf2-purple);
    box-shadow: 0 0 0 4px rgba(104, 66, 184, .1);
}

.pf2-quantity-control button {
    min-height: 64px;
    border: 0;
    background: var(--pf2-purple-soft);
    color: var(--pf2-purple);
    font-size: 1rem;
    transition: background .2s ease;
}

.pf2-quantity-control button:hover {
    background: #e8ddfa;
}

.pf2-quantity-control input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--pf2-ink);
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}

.pf2-quantity-control input::-webkit-inner-spin-button,
.pf2-quantity-control input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.pf2-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

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

.pf2-field label,
.pf2-pet-card label {
    display: block;
    margin-bottom: 7px;
    color: var(--pf2-ink);
    font-size: .86rem;
    font-weight: 800;
}

.pf2-field label span,
.pf2-pet-card label span {
    color: var(--pf2-muted);
    font-weight: 600;
}

.pf2-field input,
.pf2-field select,
.pf2-pet-card input,
.pf2-pet-card select {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #d9d4e1;
    border-radius: 12px;
    outline: 0;
    background: #fff;
    color: var(--pf2-ink);
    font-size: .94rem;
    font-weight: 600;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.pf2-field select,
.pf2-pet-card select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='m1 1 6 6 6-6' fill='none' stroke='%231c1730' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.pf2-field input::placeholder,
.pf2-pet-card input::placeholder {
    color: #aaa5b1;
    font-weight: 500;
}

.pf2-field input:focus,
.pf2-field select:focus,
.pf2-pet-card input:focus,
.pf2-pet-card select:focus {
    border-color: var(--pf2-purple);
    box-shadow: 0 0 0 4px rgba(104, 66, 184, .09);
}

.pf2-field input.is-invalid,
.pf2-field select.is-invalid,
.pf2-pet-card input.is-invalid,
.pf2-pet-card select.is-invalid,
.pf2-quantity-control input.is-invalid {
    border-color: var(--pf2-danger);
    background-image: none;
}

.pf2-field-hint,
.pf2-field-error {
    display: block;
    margin-top: 5px;
    font-size: .75rem;
    line-height: 1.35;
}

.pf2-field-hint {
    color: var(--pf2-muted);
}

.pf2-field-error {
    color: var(--pf2-danger);
    font-weight: 700;
}

.pf2-address {
    position: relative;
}

.pf2-address__commune-label {
    margin-top: 14px;
}

.pf2-address__status {
    min-height: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 5px;
    color: var(--pf2-muted);
    font-size: .76rem;
    font-weight: 650;
}

#addressSuccess {
    color: var(--pf2-success);
}

#addressFallback {
    color: var(--pf2-warning);
}

.pf2-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 34px;
}

.pf2-actions--end {
    justify-content: flex-end;
}

.pf2-actions--quantity {
    justify-content: center;
    margin-top: 24px;
}

.pf2-actions--quantity .pf2-btn {
    width: min(100%, 360px);
    min-height: 60px;
    font-size: 1rem;
}

.pf2-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 900;
    line-height: 1;
    transition: background .18s ease, border-color .18s ease;
}

.pf2-btn:hover {
    transform: none;
}

.pf2-btn--primary {
    background: var(--pf2-purple);
    color: #fff;
    box-shadow: 4px 4px 0 #e99acb;
}

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

.pf2-btn--secondary {
    border-color: var(--pf2-line);
    background: #fff;
    color: var(--pf2-slate);
}

.pf2-btn--secondary:hover,
.pf2-btn--secondary:focus {
    border-color: #c5bdcf;
    color: var(--pf2-ink);
}

.pf2-btn:disabled {
    cursor: wait;
    opacity: .72;
}

.pf2-pet-card {
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid var(--pf2-line);
    border-radius: 18px;
    background: #fff;
}

.pf2-pet-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 20px;
    border-bottom: 1px solid var(--pf2-line);
    background: linear-gradient(135deg, var(--pf2-purple-soft), #fff8fc);
}

.pf2-pet-card__identity {
    display: flex;
    align-items: center;
    gap: 11px;
}

.pf2-pet-card__number {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--pf2-purple);
    color: #fff;
    font-weight: 900;
}

.pf2-pet-card__header h3 {
    margin: 0;
    color: var(--pf2-ink);
    font-size: 1rem;
    font-weight: 900;
}

.pf2-pet-card__header p {
    margin: 1px 0 0;
    color: var(--pf2-muted);
    font-size: .73rem;
}

.pf2-pet-card__body {
    padding: 22px 20px 24px;
}

.pf2-copy-field {
    max-width: 340px;
}

.pf2-field-group {
    margin-top: 26px;
    padding-top: 23px;
    border-top: 1px solid var(--pf2-line);
}

.pf2-field-group:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.pf2-field-group__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.pf2-field-group__heading h4 {
    margin: 0;
    color: var(--pf2-ink);
    font-size: .9rem;
    font-weight: 900;
}

.pf2-field-group__heading p {
    margin: 2px 0 0;
    color: var(--pf2-muted);
    font-size: .74rem;
}

.pf2-copy-contact {
    padding: 7px 10px;
    border: 1px solid rgba(104, 66, 184, .2);
    border-radius: 9px;
    background: var(--pf2-purple-soft);
    color: var(--pf2-purple);
    font-size: .74rem;
    font-weight: 800;
}

.pf2-inline-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 7px;
    color: var(--pf2-slate);
    font-size: .78rem;
    font-weight: 650;
}

.pf2-inline-check input {
    width: 17px;
    min-height: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--pf2-purple);
}

.pf2-photo-upload {
    position: relative;
    min-height: 165px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 22px;
    border: 2px dashed #cfc7da;
    border-radius: 15px;
    background: #fcfbfd;
    cursor: pointer;
    text-align: center;
    transition: border-color .2s ease, background .2s ease;
}

.pf2-photo-upload:hover,
.pf2-photo-upload:focus {
    border-color: var(--pf2-purple);
    background: var(--pf2-purple-soft);
    outline: 0;
}

.pf2-photo-upload.is-invalid {
    border-color: var(--pf2-danger);
    background: #fff8f8;
}

.pf2-photo-upload__placeholder i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 50%;
    background: var(--pf2-purple-soft);
    color: var(--pf2-purple);
}

.pf2-photo-upload__placeholder strong,
.pf2-photo-upload__placeholder span {
    display: block;
}

.pf2-photo-upload__placeholder strong {
    color: var(--pf2-ink);
    font-size: .88rem;
}

.pf2-photo-upload__placeholder span {
    margin-top: 3px;
    color: var(--pf2-muted);
    font-size: .73rem;
}

.pf2-photo-preview {
    width: 100%;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    text-align: left;
}

.pf2-photo-preview img {
    width: 92px;
    height: 92px;
    border-radius: 13px;
    object-fit: cover;
}

.pf2-photo-preview strong,
.pf2-photo-preview span {
    display: block;
}

.pf2-photo-preview strong {
    color: var(--pf2-success);
    font-size: .86rem;
}

.pf2-photo-preview span {
    max-width: 210px;
    overflow: hidden;
    margin-top: 4px;
    color: var(--pf2-muted);
    font-size: .74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pf2-photo-preview small {
    display: inline-block;
    margin-top: 7px;
    color: var(--pf2-purple);
    font-weight: 800;
}

.pf2-review-section,
.pf2-payment-section {
    margin-bottom: 17px;
    padding: 20px;
    border: 1px solid var(--pf2-line);
    border-radius: 16px;
    background: #fff;
}

.pf2-upsell-offer {
    position: relative;
    overflow: hidden;
    margin-bottom: 17px;
    padding: 24px 20px 21px;
    border: 0;
    border-radius: 18px;
    background: #7048bd;
    color: #fff;
    text-align: center;
}

.pf2-upsell-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/img/pattern.png');
    background-position: center;
    background-repeat: repeat;
    background-size: 520px auto;
    opacity: .15;
    pointer-events: none;
}

.pf2-upsell-offer > * {
    position: relative;
    z-index: 1;
}

.pf2-upsell-offer__copy {
    display: block;
}

.pf2-upsell-offer__icon {
    display: none;
}

.pf2-upsell-offer__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .76);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.pf2-upsell-offer h3 {
    margin: 0;
    color: #fff;
    font-size: 1.08rem;
    line-height: 1.2;
    font-weight: 900;
}

.pf2-upsell-offer p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: .84rem;
    line-height: 1.45;
}

.pf2-upsell-offer p strong {
    color: #fff;
    font-size: 1.05rem;
}

.pf2-upsell-offer p span {
    display: inline-block;
    margin-left: 3px;
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
}

.pf2-upsell-offer__actions,
.pf2-upsell-offer__accepted {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 15px;
}

.pf2-upsell-offer__actions .pf2-btn {
    min-height: 43px;
    padding: 10px 16px;
    border-color: #fff;
    background: #fff;
    color: var(--pf2-purple);
    box-shadow: 4px 4px 0 #e99acb;
    font-size: .79rem;
}

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

.pf2-upsell-offer__decline,
.pf2-upsell-offer__accepted button {
    padding: 4px 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: #fff;
    font-size: .76rem;
    font-weight: 800;
}

.pf2-upsell-offer__accepted {
    color: #fff;
    font-size: .81rem;
    font-weight: 800;
}

.pf2-upsell-offer__accepted span i {
    margin-right: 4px;
}

.pf2-review-section__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
}

.pf2-review-section__heading > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf2-review-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--pf2-purple-soft);
    color: var(--pf2-purple);
}

.pf2-review-section h3,
.pf2-payment-section h3 {
    margin: 0;
    color: var(--pf2-ink);
    font-size: .95rem;
    font-weight: 900;
}

.pf2-review-section__heading button {
    font-size: .76rem;
}

.pf2-review-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    color: var(--pf2-slate);
    font-size: .82rem;
}

.pf2-review-copy div:last-child {
    grid-column: 1 / -1;
}

.pf2-review-copy strong {
    color: var(--pf2-ink);
}

.pf2-review-pet {
    display: grid;
    grid-template-columns: 68px 1fr auto;
    gap: 13px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid var(--pf2-line);
}

.pf2-review-pet:first-child {
    padding-top: 0;
    border-top: 0;
}

.pf2-review-pet:last-child {
    padding-bottom: 0;
}

.pf2-review-pet__photo {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 13px;
    background: var(--pf2-purple-soft);
    color: var(--pf2-purple);
}

.pf2-review-pet__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf2-review-pet__body strong,
.pf2-review-pet__body span {
    display: block;
}

.pf2-review-pet__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    color: var(--pf2-slate);
    font-size: .84rem;
    line-height: 1.4;
}

.pf2-review-pet__body .pf2-review-pet__details span {
    margin: 0;
    color: var(--pf2-slate);
    font-size: inherit;
}

.pf2-review-pet__details strong {
    display: inline;
    color: var(--pf2-ink);
    font-size: inherit;
}

.pf2-review-pet__body strong {
    color: var(--pf2-ink);
    font-size: .88rem;
}

.pf2-review-pet__body span {
    margin-top: 2px;
    color: var(--pf2-muted);
    font-size: .74rem;
}

.pf2-review-pet__copies {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--pf2-purple-soft);
    color: var(--pf2-purple);
    font-size: .72rem;
    font-weight: 900;
}

.pf2-payment-section > h3 {
    margin-bottom: 13px;
}

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

.pf2-payment-card {
    position: relative;
    min-height: 118px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 20px;
    border: 1px solid #dfe3e8;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.pf2-payment-card:hover,
.pf2-payment-card:focus {
    border-color: #8eb9ff;
    outline: 0;
}

.pf2-payment-card.is-selected {
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, .10);
}

.pf2-payment-card__radio {
    width: 32px;
    height: 32px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #dfe3e8;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.pf2-payment-card__radio:checked {
    border-color: #0d6efd;
    background: radial-gradient(circle, #fff 0, #fff 31%, #0d6efd 34%, #0d6efd 100%);
}

.pf2-payment-card strong,
.pf2-payment-card small {
    display: block;
}

.pf2-payment-card strong {
    color: var(--pf2-ink);
    font-size: 1.05rem;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.pf2-payment-card small {
    margin-top: 5px;
    color: #6c7783;
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.45;
}

.pf2-final-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
    padding: 17px 20px;
    border-radius: 14px;
    background: var(--pf2-ink);
    color: #fff;
}

.pf2-final-total span {
    font-size: .85rem;
    font-weight: 800;
}

.pf2-final-total strong {
    font-size: 1.3rem;
    font-weight: 900;
}

.pf2-actions--final {
    margin-top: 20px;
}

.pf2-btn--pay {
    min-width: 230px;
}

.pf2-secure-note {
    margin: 15px 0 0;
    color: var(--pf2-muted);
    font-size: .73rem;
    text-align: right;
}

.pf2-secure-note i {
    margin-right: 4px;
    color: var(--pf2-success);
}

.pf2-summary {
    position: sticky;
    top: 108px;
}

.pf2-summary__card {
    overflow: hidden;
    border-radius: 22px;
}

.pf2-mobile-summary-toggle {
    display: none;
}

.pf2-summary__body {
    padding: 23px;
}

.pf2-summary__body h2 {
    margin-bottom: 18px;
    font-size: 1.08rem;
}

.pf2-summary__product,
.pf2-summary__line,
.pf2-summary__total {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pf2-summary__product {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--pf2-line);
}

.pf2-summary__product > div strong,
.pf2-summary__product > div span {
    display: block;
}

.pf2-summary__product > div strong {
    color: var(--pf2-ink);
    font-size: .84rem;
}

.pf2-summary__product > div span {
    margin-top: 3px;
    color: var(--pf2-muted);
    font-size: .73rem;
}

.pf2-summary__product > strong,
.pf2-summary__line strong {
    color: var(--pf2-ink);
    font-size: .86rem;
    white-space: nowrap;
}

.pf2-summary__line {
    padding: 14px 0;
    border-bottom: 1px solid var(--pf2-line);
    color: var(--pf2-slate);
    font-size: .8rem;
}

.pf2-summary__total {
    align-items: center;
    padding-top: 16px;
    color: var(--pf2-ink);
    font-size: .95rem;
    font-weight: 900;
}

.pf2-summary__total strong {
    color: var(--pf2-purple);
    font-size: 1.35rem;
}

.pf2-summary__price-note {
    margin: 4px 0 14px;
    color: var(--pf2-success);
    font-size: .7rem;
    font-weight: 800;
    text-align: right;
}

.pf2-support {
    margin: 14px 0 0;
    color: var(--pf2-muted);
    font-size: .75rem;
    text-align: center;
}

.pf2-support--form {
    margin-top: 18px;
    line-height: 1.5;
}

.pf2-support a {
    color: var(--pf2-purple);
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .pf2-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 20px;
    }

    .pf2-form-card {
        padding: 30px 25px;
    }

}

@media (max-width: 767.98px) {
    .pf2-page {
        padding-top: 80px;
    }

    .pf2-container {
        width: min(calc(100% - 24px), 680px);
    }

    .pf2-trust-strip__inner {
        width: 100%;
        min-height: 38px;
        justify-content: center;
        gap: 22px;
        font-size: .72rem;
    }

    .pf2-shell {
        padding: 30px 0 50px;
    }

    .pf2-intro {
        display: block;
        margin-bottom: 26px;
        text-align: center;
    }

    .pf2-intro h1 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .pf2-intro p {
        margin-top: 13px;
        font-size: .94rem;
    }

    .pf2-progress {
        margin-bottom: 20px;
    }

    .pf2-progress li {
        justify-content: center;
    }

    .pf2-progress__label {
        display: block;
        font-size: .68rem;
    }

    .pf2-layout {
        display: flex;
        flex-direction: column;
    }

    .pf2-form-card {
        width: 100%;
        min-height: 0;
        padding: 25px 18px;
        border-radius: 20px;
        box-shadow: 0 14px 35px rgba(47, 32, 77, .08);
    }

    .pf2-summary {
        position: static;
        width: 100%;
        order: -1;
    }

    .pf2-summary.is-hidden-on-step-one {
        display: none;
    }

    /* Safari/iOS amplía la página al enfocar controles con texto menor a 16px. */
    .pf2-field input,
    .pf2-field select,
    .pf2-pet-card input,
    .pf2-pet-card select,
    .pf2-quantity-control input {
        font-size: 16px;
    }

    .pf2-summary__card {
        border-radius: 17px;
        box-shadow: none;
    }

    .pf2-summary__body {
        display: none;
        padding: 0 16px 16px;
    }

    .pf2-summary__card.is-expanded .pf2-summary__body {
        display: block;
    }

    .pf2-mobile-summary-toggle {
        width: 100%;
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 16px;
        border: 0;
        background: #fff;
        color: var(--pf2-ink);
        text-align: left;
    }

    .pf2-mobile-summary-toggle > span {
        display: grid;
        gap: 2px;
    }

    .pf2-mobile-summary-toggle small {
        color: var(--pf2-muted);
        font-size: .72rem;
        font-weight: 700;
    }

    .pf2-mobile-summary-toggle strong {
        color: var(--pf2-purple);
        font-size: 1.18rem;
        line-height: 1.1;
    }

    .pf2-mobile-summary-toggle > i {
        color: var(--pf2-purple);
        transition: transform .2s ease;
    }

    .pf2-summary__card.is-expanded .pf2-mobile-summary-toggle > i {
        transform: rotate(180deg);
    }

    .pf2-summary__body h2 {
        display: none;
    }

    .pf2-summary__total {
        display: none;
    }

    .pf2-summary__price-note {
        display: none;
    }

    .pf2-step__heading {
        margin-bottom: 24px;
    }

    .pf2-step__heading h2 {
        font-size: 1.5rem;
    }

    .pf2-step__heading--with-action {
        display: block;
    }

    .pf2-debug-link {
        margin-top: 7px;
    }

    .pf2-fields,
    .pf2-payment-grid {
        grid-template-columns: 1fr;
    }

    .pf2-payment-card {
        min-height: 0;
        padding: 17px;
        border-radius: 15px;
    }

    .pf2-payment-card strong {
        font-size: 1rem;
    }

    .pf2-payment-card small {
        font-size: .8rem;
    }

    .pf2-field--full {
        grid-column: auto;
    }

    .pf2-actions {
        align-items: stretch;
    }

    .pf2-actions .pf2-btn--primary {
        flex: 1;
    }

    .pf2-pet-card__header {
        align-items: flex-start;
        padding: 15px;
    }

    .pf2-pet-card__body {
        padding: 18px 15px 20px;
    }

    .pf2-field-group__heading {
        align-items: flex-start;
    }

    .pf2-copy-contact {
        max-width: 132px;
    }

    .pf2-review-copy {
        grid-template-columns: 1fr;
    }

    .pf2-review-copy div:last-child {
        grid-column: auto;
    }


    .pf2-actions--final {
        flex-wrap: wrap-reverse;
    }

    .pf2-actions--final .pf2-btn--pay {
        width: 100%;
        order: 2;
    }

    .pf2-actions--final .pf2-btn--secondary {
        width: 100%;
    }

    .pf2-secure-note {
        text-align: center;
    }
}

@media (max-width: 419.98px) {
    .pf2-trust-strip__inner {
        gap: 14px;
        font-size: .66rem;
    }

    .pf2-actions:not(.pf2-actions--final) {
        flex-wrap: wrap-reverse;
    }

    .pf2-actions:not(.pf2-actions--final) .pf2-btn {
        width: 100%;
    }

    .pf2-review-pet {
        grid-template-columns: 56px 1fr;
    }

    .pf2-review-pet__photo {
        width: 56px;
        height: 56px;
    }

    .pf2-review-pet__copies {
        grid-column: 2;
        justify-self: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pf2-page *,
    .pf2-page *::before,
    .pf2-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
