@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
    --primary: #009ca6;
    --primary-dark: #00838c;
    --text: #072b45;
    --muted: #617083;
    --bg: #f7fbfc;
    --success: #22c55e;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background: var(--bg);
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
}

/* =========================================================
   TOAST
========================================================= */

.toast-notification {
    position: fixed;
    left: 50%;
    top: 24px;
    width: calc(100% - 40px);
    max-width: 390px;
    transform: translateX(-50%) translateY(-120%);
    background: #fff;
    border: 1px solid #ffd1d1;
    border-left: 5px solid #ef4444;
    border-radius: 16px;
    padding: 16px 42px 16px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 12px 35px rgba(7, 43, 69, .18);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    min-width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toast-content strong {
    color: #072b45;
    font-size: 14px;
}

.toast-content span {
    color: #617083;
    font-size: 13px;
    line-height: 1.4;
}

.toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
}

/* =========================================================
   FORMULÁRIO / FLUXO
========================================================= */

.sev-container {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    background: #f8fbfd;
    padding-bottom: 30px;
}

.sev-header {
    background: #fff;
    padding: 22px 20px 14px;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

.logo {
    text-align: center;
    color: var(--primary);
    font-size: 34px;
    letter-spacing: 7px;
    font-weight: 400;
    line-height: 1;
}

.logo small {
    display: block;
    margin-top: 5px;
    letter-spacing: 0;
    font-size: 10px;
    color: #5f6f7d;
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 22px;
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.progress {
    flex: 1;
    height: 6px;
    background: #e9eef2;
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: var(--primary);
    border-radius: 20px;
    transition: .3s;
}

.sev-content {
    padding: 24px 20px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 28px;
    color: var(--text);
    margin: 0 0 12px;
}

.description {
    text-align: center;
    color: #617083;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 28px;
}

.measure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.unit-switch {
    width: 125px;
    height: 36px;
    background: #eef2f5;
    border-radius: 30px;
    padding: 3px;
    margin: 0 auto 18px;
    display: flex;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, .12);
}

.unit-switch span {
    flex: 1;
    border-radius: 30px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d8994;
    cursor: pointer;
}

.unit-switch .active {
    background: linear-gradient(135deg, #12b9c1, #008d98);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 156, 166, .35);
}

.value-display {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.value-display small {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
    margin-left: 3px;
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .07);
}

.form-control-custom {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: 1px solid #e0e6eb;
    padding: 0 16px;
    font-size: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.form-control-custom:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-main {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 13px;
    background: linear-gradient(135deg, #13bac3, #008d98);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
    box-shadow: 0 8px 18px rgba(0, 156, 166, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    cursor: pointer;
}

.option-btn {
    width: 100%;
    border: none;
    border-radius: 13px;
    padding: 15px;
    margin-top: 10px;
    background: linear-gradient(135deg, #13bac3, #008d98);
    color: #fff;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.terms-box {
    border: 1px solid #e0e6eb;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.terms-box a {
    color: #006f86;
    text-decoration: underline;
}

.security {
    margin-top: 18px;
    text-align: center;
    font-size: 10px;
    color: #7b8794;
}

/* =========================================================
   RÉGUA IMC
========================================================= */

.range-wrapper {
    margin-top: 16px;
    position: relative;
    height: 78px;
    overflow: hidden;
    touch-action: none;
    cursor: grab;
}

.range-wrapper:active {
    cursor: grabbing;
}

.range-ruler-track {
    position: absolute;
    top: 0;
    left: 50%;
    height: 60px;
    display: flex;
    align-items: flex-start;
    will-change: transform;
}

.ruler-mark {
    position: relative;
    width: 8px;
    height: 38px;
    flex: 0 0 8px;
}

.ruler-mark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: #c6d0d8;
}

.ruler-mark.small::before {
    height: 14px;
}

.ruler-mark.medium::before {
    height: 22px;
}

.ruler-mark.large::before {
    height: 34px;
    background: #9caab5;
}

.ruler-number {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #718092;
    white-space: nowrap;
}

.range-fixed-pointer {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 0 0 4px rgba(0, 156, 166, .08);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 18px solid var(--primary);
    margin: 0 auto 8px;
}

.hint {
    text-align: center;
    font-size: 11px;
    color: #adb6c0;
}

/* =========================================================
   IMC CARD
========================================================= */

.imc-card {
    margin-top: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .07);
}

.imc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.imc-bar {
    position: relative;
    height: 10px;
    border-radius: 20px;
    background: linear-gradient(to right,
            #2eaee5 0%,
            #4caf50 35%,
            #ffd54f 65%,
            #ff2d55 100%);
}

.imc-marker {
    position: absolute;
    top: -7px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid #fff;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.imc-bubble {
    position: absolute;
    top: -40px;
    transform: translateX(-50%);
    background: #06324f;
    color: #fff;
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.imc-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-top: 17px;
    color: #07314c;
}

/* =========================================================
   CHECKOUT
========================================================= */

.checkout-page {
    min-height: 100vh;
    background: #fff;
}



.brand-logo {
    font-size: 34px;
    letter-spacing: 6px;
    color: var(--primary);
    font-weight: 500;
}

.payment-logo {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 700;
}

.checkout-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 416px;
    gap: 48px;
    align-items: flex-start;
}

.checkout-page {
    min-height: 100vh;
    background: #fff;
}

.checkout-header {
    border-top: 4px solid var(--text);
    border-bottom: 1px solid #e5eaf0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: #fff;
}

.brand-logo img {
    width: 150px;
}

.payment-logo {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 700;
}

.checkout-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 20px 40px;
    display: grid;
    grid-template-columns: 1fr 416px;
    gap: 48px;
    align-items: flex-start;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text);
    font-size: 14px;
}

.google-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-weight: 800;
    color: #4285f4;
    font-size: 22px;
}

.stars {
    color: #f5b400;
    letter-spacing: 1px;
    font-size: 16px;
}

.checkout-title {
    font-size: 30px;
    line-height: 1.22;
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--text);
    max-width: 700px;
}

.checkout-subtitle {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 620px;
}

.product-banner {
    width: 100%;
    max-width: 650px;
    height: 320px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #bceff3, #06324f);
    position: relative;
    box-shadow: 0 12px 30px rgba(7, 43, 69, .12);
}

.product-vial {
    position: absolute;
    left: 50px;
    bottom: 0;
    width: 210px;
    height: 285px;
    border-radius: 28px 28px 8px 8px;
    background: linear-gradient(to right, #d8dde2, #fff, #aeb7bf);
    box-shadow: 20px 0 45px rgba(0, 0, 0, .25);
}

.product-cap {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 170px;
    height: 32px;
    background: #111;
    border-radius: 8px 8px 3px 3px;
}

.product-label {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    padding: 22px;
    background: #082f4d;
    color: #fff;
}

.product-label strong {
    display: block;
    font-size: 26px;
}

.product-label span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

.doctor-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 360px;
    height: 185px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card-content {
    text-align: center;
    color: var(--text);
}

.doctor-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8fbfd, #9ce1e7);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.doctor-card-content strong {
    display: block;
    font-size: 17px;
}

.doctor-card-content small {
    color: var(--muted);
}

.benefits {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 650px;
}

.benefit {
    background: #f7fbfc;
    border: 1px solid #e1eef1;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text);
    font-size: 14px;
}

.benefit-icon {
    color: var(--primary);
    font-weight: 800;
}

.checkout-side {
    padding-top: 8px;
}

.protocol-card {
    border: 2px solid var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(7, 43, 69, .12);
}

.protocol-header {
    background: var(--primary-dark);
    color: #fff;
    padding: 10px 16px;
    font-weight: 800;
    font-size: 14px;
}

.protocol-body {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
}

.protocol-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.protocol-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.protocol-price {
    text-align: right;
    color: var(--text);
    white-space: nowrap;
}

.protocol-price strong {
    display: block;
    font-size: 16px;
    color: var(--primary-dark);
}

.protocol-price span {
    display: block;
    font-size: 12px;
    color: #16a34a;
    font-weight: 700;
    margin-top: 3px;
}

.more-months {
    text-align: center;
    margin: 18px 0 26px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.checkout-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 11px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 156, 166, .22);
}

.checkout-btn:hover {
    background: #007680;
}

.whatsapp-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 11px;
    background: var(--success);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-top: 20px;
    cursor: pointer;
}

.secure-box {
    margin-top: 24px;
    background: #f7fbfc;
    border: 1px solid #e1eef1;
    border-radius: 12px;
    padding: 16px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.secure-box strong {
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .checkout-header {
        padding: 0 20px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 32px;
    }

    .checkout-title {
        font-size: 26px;
    }

    .product-banner {
        height: 270px;
    }

    .product-vial {
        left: 25px;
        width: 160px;
        height: 240px;
    }

    .product-cap {
        width: 130px;
    }

    .doctor-card {
        right: 12px;
        width: 230px;
        height: 150px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }
}

.payment-page {
    min-height: 100vh;
    background: #f7fbfc;
}

.payment-header {
    height: 64px;
    background: #fff;
    border-bottom: 1px solid #e5eaf0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.payment-secure {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
}

.payment-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 38px 20px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

.payment-form-card,
.order-summary,
.payment-options-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(7, 43, 69, .08);
    padding: 28px;
}

.payment-form-card h1 {
    margin: 0 0 8px;
    font-size: 28px;
    color: var(--text);
}

.payment-form-card p {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 14px;
}

.payment-form-card h2,
.order-summary h2,
.payment-options-card h2 {
    margin: 0 0 16px;
    font-size: 18px;
    color: var(--text);
}

.payment-options-card {
    margin-top: 24px;
    border: 1px solid #e5eaf0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid.three {
    grid-template-columns: 1fr 1fr 1.3fr;
}

.payment-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.payment-tab {
    height: 48px;
    border: 1px solid #d7e5e8;
    background: #f8fbfd;
    color: var(--text);
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.payment-tab:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.payment-tab.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.payment-method {
    display: none;
    margin-top: 18px;
}

.payment-method.active {
    display: block;
}

.payment-info-box {
    border: 1px solid #d7e5e8;
    background: #f8fbfd;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-info-box strong {
    color: var(--text);
    font-size: 15px;
}

.payment-info-box span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.credit-card-preview {
    width: 100%;
    max-width: 380px;
    height: 220px;
    margin: 0 auto 24px;
    perspective: 1000px;
}

.credit-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform .6s ease;
    transform-style: preserve-3d;
}

.credit-card-preview.flipped .credit-card-inner {
    transform: rotateY(180deg);
}

.credit-card-front,
.credit-card-back {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 24px;
    backface-visibility: hidden;
    color: #fff;
    box-shadow: 0 16px 35px rgba(7, 43, 69, .22);
    background: linear-gradient(135deg, #13bac3, #06324f);
    overflow: hidden;
}

.credit-card-front::after,
.credit-card-back::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}

.credit-card-back {
    transform: rotateY(180deg);
}

.card-chip {
    width: 54px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f8e7a2, #c99b2e);
    margin-bottom: 38px;
}

.card-number {
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 28px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card-row small {
    display: block;
    font-size: 10px;
    opacity: .75;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-row strong {
    font-size: 13px;
    text-transform: uppercase;
}

.card-strip {
    height: 48px;
    background: #071d2d;
    margin: 12px -24px 34px;
}

.card-cvv-box {
    background: #fff;
    color: var(--text);
    border-radius: 8px;
    padding: 12px;
    text-align: right;
}

.card-cvv-box span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}

.card-cvv-box strong {
    font-size: 18px;
    letter-spacing: 3px;
}

.order-summary {
    position: sticky;
    top: 24px;
}

.summary-product {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5eaf0;
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #e6f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.summary-product strong {
    display: block;
    font-size: 14px;
    color: var(--text);
}

.summary-product span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid #e5eaf0;
}

.summary-total {
    font-size: 18px;
    border-bottom: none;
}

.summary-total strong {
    color: var(--primary-dark);
}

.finish-payment-btn {
    width: 100%;
    height: 58px;
    margin-top: 18px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #13bac3, #008d98);
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 156, 166, .25);
}

.summary-secure {
    margin-top: 18px;
    background: #f8fbfd;
    border-radius: 12px;
    padding: 14px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 850px) {
    .payment-header {
        padding: 0 20px;
    }

    .payment-container {
        grid-template-columns: 1fr;
    }

    .form-grid,
    .form-grid.three {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .credit-card-preview {
        height: 205px;
    }

    .card-number {
        font-size: 19px;
    }
}

.page-loader {
    position: fixed;
    inset: 0;
    /* background: rgba(247, 251, 252, .92); */
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.page-loader.show {
    display: flex;
}

.loader-card {
    width: calc(100% - 48px);
    max-width: 330px;
    /* background: #fff;
    border-radius: 24px; */
    padding: 34px 28px;
    text-align: center;
    /* box-shadow: 0 20px 50px rgba(7, 43, 69, .16); */
    animation: loaderCardIn .35s ease;
}

.loader-logo {
    color: var(--primary);
    font-size: 34px;
    letter-spacing: 7px;
    font-weight: 600;
    margin-bottom: 24px;
}

.loader-spinner {
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            var(--primary),
            var(--primary-dark),
            transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: loaderSpin .9s linear infinite;
}

.loader-spinner span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    display: block;
}

.loader-card strong {
    display: block;
    font-size: 17px;
    color: var(--text);
    margin-bottom: 6px;
}

.loader-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderCardIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.manual-input-wrapper {
    width: 100px;
    height: 44px;
    margin: 14px auto 10px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #d9e4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(7, 43, 69, .05);
}

.manual-value-input {
    width: 55px;
    border: none;
    background: transparent;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.manual-value-input::-webkit-outer-spin-button,
.manual-value-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.manual-unit {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}