:root {
    --np-black: #000;
    --np-text: #060606;
    --np-blue: #5fc1f4;
    --np-blue-dark: #073b91;
    --np-pale: #f1faff;
    --np-yellow: #fff8bd;
    --np-green: #1cba44;
    --np-red: #e91605;
    --np-line: #d9d9d9;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--np-text);
    background: #fff;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.45;
    overflow-x: clip;
}

body.np-menu-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.np-page {
    min-height: 100vh;
    background: #fff;
    overflow-x: clip;
}

.np-shell {
    width: min(100% - 48px, 1160px);
    margin: 0 auto;
}

.pe-sale-bar {
    position: relative;
    z-index: 50;
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px 20px;
    color: #fff;
    background: #000;
    text-align: center;
    text-transform: uppercase;
}

.pe-sale-copy {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.pe-sale-copy strong {
    font-size: 18px;
    font-weight: 900;
    line-height: 20px;
}

.pe-sale-copy em {
    color: #fff200;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
    line-height: 16px;
}

.pe-sale-sparkles {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.pe-sale-sparkles i,
.pe-sale-sparkles::before,
.pe-sale-sparkles::after {
    position: absolute;
    display: block;
    background: #fff;
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
    content: "";
}

.pe-sale-sparkles i:first-child {
    left: 2px;
    top: 8px;
    width: 12px;
    height: 12px;
}

.pe-sale-sparkles i:last-child {
    right: 2px;
    top: 1px;
    width: 9px;
    height: 9px;
}

.pe-sale-sparkles::after {
    right: 4px;
    bottom: 4px;
    width: 7px;
    height: 7px;
}

.pe-countdown {
    display: flex;
    gap: 4px;
}

.pe-time-box {
    display: grid;
    width: 38px;
    height: 42px;
    place-items: center;
    padding: 3px 2px;
    border-radius: 4px;
    color: #000;
    background: #fff;
}

.pe-time-box b {
    font-size: 18px;
    font-weight: 900;
    line-height: 17px;
}

.pe-time-box small {
    font-size: 8px;
    font-weight: 800;
    line-height: 9px;
}

.np-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto;
    min-height: 72px;
    align-items: center;
    padding: 0 max(18px, calc((100vw - 1184px) / 2));
    border-bottom: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.88);
    box-shadow: 0 1px 14px rgba(0,0,0,.08);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    backdrop-filter: blur(18px) saturate(170%);
}

.np-logo {
    display: block;
    justify-self: start;
    width: clamp(116px, 16vw, 154px);
    min-height: 42px;
    border-radius: 10px;
}

.np-logo:focus-visible,
.np-nav__cart:focus-visible,
.np-menu-toggle:focus-visible,
.np-menu-panel__head button:focus-visible,
.np-menu-panel__links a:focus-visible {
    outline: 2px solid var(--np-blue);
    outline-offset: 3px;
}

.np-nav__actions {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 8px;
}

.np-nav__cart,
.np-menu-toggle,
.np-menu-panel__head button {
    position: relative;
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(17,24,39,.16);
    border-radius: 50%;
    color: #121417;
    background: rgba(255,255,255,.9);
    box-shadow: 0 1px 2px rgba(16,24,40,.08), inset 0 1px 0 rgba(255,255,255,.86);
    cursor: pointer;
}

.np-nav__cart:hover,
.np-menu-toggle:hover,
.np-menu-panel__head button:hover {
    border-color: rgba(17,24,39,.24);
    background: #fff;
    box-shadow: 0 1px 4px rgba(16,24,40,.1), inset 0 1px 0 rgba(255,255,255,.9);
}

.np-nav__cart svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.85;
}

.np-nav__cart span {
    position: absolute;
    top: -3px;
    left: -2px;
    display: grid;
    min-width: 15px;
    height: 15px;
    place-items: center;
    padding: 0 3px;
    border: 1.5px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: var(--np-red);
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
}

.np-menu-toggle svg {
    width: 22px;
    height: 22px;
    overflow: visible;
}

.np-menu-toggle__line {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform .18s ease;
}

.np-page.is-menu-open .np-menu-toggle__line--top {
    transform: translateY(3.5px) rotate(45deg);
}

.np-page.is-menu-open .np-menu-toggle__line--bottom {
    transform: translateY(-3.5px) rotate(-45deg);
}

.np-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    visibility: hidden;
    background: rgba(0,0,0,.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.np-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: max(12px, calc((100vw - 1184px) / 2));
    z-index: 80;
    width: min(360px, calc(100vw - 24px));
    padding: 8px;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 28px;
    background: rgba(248,249,252,.96);
    box-shadow: 0 24px 60px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.96);
    transform-origin: top right;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    visibility: hidden;
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    backdrop-filter: blur(26px) saturate(180%);
}

.np-page.is-menu-open .np-menu-overlay,
.np-page.is-menu-open .np-menu-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.np-page.is-menu-open .np-menu-panel {
    transform: translateY(0) scale(1);
}

.np-menu-panel__handle {
    display: block;
    width: 44px;
    height: 5px;
    margin: 6px auto 10px;
    border-radius: 999px;
    background: rgba(60,60,67,.22);
}

.np-menu-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 8px 12px;
}

.np-menu-panel__head strong {
    color: rgba(60,60,67,.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 18px;
    text-transform: uppercase;
}

.np-menu-panel__head button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(230,231,235,.9);
}

.np-menu-panel__head svg {
    width: 22px;
    height: 22px;
}

.np-menu-panel__links {
    display: grid;
    gap: 7px;
    padding: 4px;
    border-radius: 22px;
    background: rgba(255,255,255,.72);
}

.np-menu-panel__links a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px 0 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    box-shadow: inset 0 -1px 0 rgba(60,60,67,.08);
    color: #111;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
}

.np-menu-panel__links a span {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-top: 2px solid rgba(60,60,67,.46);
    border-right: 2px solid rgba(60,60,67,.46);
    transform: rotate(45deg);
}

#meet,
#how-to-use,
#features,
#reviews,
#faq,
#pupvilo-pdp-packages {
    scroll-margin-top: 94px;
}

.np-product {
    padding: 55px 0 60px;
    background: var(--np-pale);
}

.np-product h1,
.np-section h2 {
    margin: 0 auto;
    color: #000;
    font-size: 45px;
    font-weight: 800;
    line-height: 52px;
    text-align: center;
}

.np-product h1 {
    max-width: 1160px;
}

.np-product h1 span,
.np-eyebrow {
    color: var(--np-blue);
}

.np-product__grid {
    display: grid;
    grid-template-columns: 564px 532px;
    gap: 64px;
    align-items: start;
    margin-top: 37px;
}

.np-gallery {
    position: sticky;
    top: 88px;
}

.np-gallery__stage {
    width: 100%;
    border: 3px solid #111;
    border-radius: 10px;
    background: #e8eef2;
    cursor: grab;
    overflow: hidden;
    touch-action: pan-y;
}

.np-gallery__stage:active {
    cursor: grabbing;
}

.np-gallery__track {
    display: flex;
    width: 100%;
    transition: transform 0.28s ease;
    will-change: transform;
}

.np-gallery__slide {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.np-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    padding: 0 2px 5px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.np-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.np-gallery__thumbs button {
    flex: 0 0 100px;
    width: 100px;
    aspect-ratio: 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.np-gallery__thumbs button.is-active {
    border-color: #111;
}

.np-gallery__thumbs img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.np-buy {
    position: relative;
}

.np-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    line-height: 20px;
}

.np-rating span,
.np-review-stars {
    color: #ff8a00;
    letter-spacing: 0;
}

.np-sold {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 14px;
    border-radius: 999px;
    color: #187a55;
    background: #dcffef;
    font-size: 13px;
    line-height: 15px;
}

.np-buy h2 {
    margin: 10px 0;
    font-size: 36px;
    font-weight: 800;
    line-height: 42px;
}

.np-buy__lede {
    max-width: 520px;
    margin: 15px 0 0;
    font-size: 18px;
    line-height: 26px;
}

.np-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 28px 0 24px;
}

.np-stats div {
    text-align: center;
}

.np-stats div + div {
    border-left: 1px solid rgba(0,0,0,.18);
}

.np-stats dt {
    font-size: 33px;
    font-weight: 700;
    line-height: 36px;
}

.np-stats dd {
    margin: 5px 0 0;
    font-size: 15px;
    line-height: 20px;
}

.np-bullets {
    display: grid;
    gap: 9px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 26px;
}

.np-bullets li {
    position: relative;
    padding-left: 19px;
}

.np-bullets li::before {
    position: absolute;
    left: 0;
    top: .58em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--np-blue);
    content: "";
}

.np-bullets strong {
    font-weight: 700;
}

.np-buy h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 35px 0 16px;
    font-size: 24px;
    font-weight: 800;
    line-height: 24px;
}

.np-buy h3::after {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: transparent;
    content: "";
}

.np-packages {
    display: grid;
    gap: 22px;
}

.np-package {
    position: relative;
    display: grid;
    grid-template-columns: 22px minmax(0,1fr) 120px;
    gap: 12px;
    min-height: 165px;
    align-items: center;
    padding: 16px 14px 14px 12px;
    border: 2px solid #111;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 2px 0 #000;
    text-align: left;
    cursor: pointer;
}

.np-package.is-active,
.np-package.is-highlight {
    background: var(--np-yellow);
}

.np-radio {
    width: 19px;
    height: 19px;
    border: 2px solid #111;
    border-radius: 50%;
}

.np-package.is-active .np-radio {
    background: #111;
    box-shadow: inset 0 0 0 4px #fff;
}

.np-package__copy {
    display: block;
    min-width: 0;
}

.np-package__copy strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
}

.np-package__copy em {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    font-style: normal;
    line-height: 20px;
}

.np-package__copy b {
    display: block;
    margin-top: 12px;
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    white-space: nowrap;
}

.np-package__copy s {
    color: #8f4444;
    font-size: 14px;
}

.np-package__copy i {
    color: #e43939;
    font-size: 13px;
    font-style: normal;
}

.np-package__copy small {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.np-package__copy small span {
    display: inline-flex;
    padding: 6px 12px 5px;
    border-radius: 999px;
    background: #fff8bd;
    font-size: 10px;
    font-weight: 800;
    line-height: 12px;
    text-transform: uppercase;
    white-space: nowrap;
}

.np-package.is-active .np-package__copy small span {
    background: #fff;
}

.np-package__badge {
    position: absolute;
    top: -12px;
    right: 16px;
    padding: 6px 12px 4px;
    border-radius: 7px;
    color: #fff;
    background: var(--np-blue);
    font-size: 10px;
    font-weight: 800;
    line-height: 12px;
    text-transform: uppercase;
}

.np-package__badge--orange {
    background: #ff8a12;
}

.np-package__badge--green {
    background: #1bbd95;
}

.np-package__image {
    width: 118px;
    max-height: 128px;
    align-self: center;
    justify-self: end;
    object-fit: contain;
}

.np-pad-stack {
    position: relative;
    display: block;
    justify-self: end;
    width: 88px;
    height: 88px;
    border-radius: 10px;
    background:
        repeating-linear-gradient(45deg, rgba(255,255,255,.24) 0 5px, transparent 5px 12px),
        #85858b;
    box-shadow: 0 2px 4px rgba(0,0,0,.18);
    transform: rotate(-22deg);
}

.np-pad-stack--six,
.np-pad-stack--three {
    width: 102px;
    height: 92px;
}

.np-pad-stack--six::before,
.np-pad-stack--three::before {
    position: absolute;
    right: 28px;
    bottom: -24px;
    width: 78px;
    height: 70px;
    border-radius: 10px;
    background: inherit;
    box-shadow: 0 2px 4px rgba(0,0,0,.18);
    content: "";
    transform: rotate(18deg);
}

.np-pad-stack--six::after,
.np-pad-stack--three::after {
    position: absolute;
    right: -4px;
    bottom: -16px;
    z-index: 2;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #ff1616;
    content: "FREE";
    font-size: 9px;
    font-weight: 800;
    line-height: 10px;
}

.np-stock,
.np-cta__stock {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 26px auto 10px;
    font-size: 13px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

.np-stock::before,
.np-cta__stock::before {
    width: 8px;
    height: 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: #bff3c4;
    content: "";
}

.np-cart-button,
.np-cta a {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 3px solid #111;
    border-radius: 8px;
    color: #fff;
    background: var(--np-blue);
    box-shadow: 2px 4px 0 #000;
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
}

.np-cart-button s,
.np-cart-button strong {
    font-size: 16px;
}

.np-guarantee,
.np-cta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 18px 0 0;
    text-align: center;
    font-size: 14px;
}

.np-guarantee::before,
.np-cta span::before {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: transparent;
    content: "";
}

.np-mini-faq {
    display: grid;
    gap: 7px;
    margin-top: 30px;
}

.np-mini-faq article,
.np-faq__list article {
    border: 2px solid #111;
    border-radius: 8px;
    background: #fff;
}

.np-mini-faq button,
.np-faq__list button {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 0;
    background: transparent;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.np-mini-faq button {
    gap: 10px;
    justify-content: flex-start;
}

.np-mini-faq button img {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    object-fit: contain;
}

.np-mini-faq button span {
    flex: 1;
}

.np-mini-faq button b {
    margin-left: auto;
}

.np-mini-faq p,
.np-faq__list p {
    margin: 0;
    padding: 0 15px 15px;
}

.np-ticker {
    overflow: hidden;
    color: #fff;
    background: #3ba8e0;
}

.np-ticker div {
    display: flex;
    width: max-content;
    gap: 34px;
    padding: 13px 0;
    animation: np-marquee 30s linear infinite;
}

.np-ticker span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.np-ticker img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

@keyframes np-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.np-section {
    padding: 60px 0 90px;
}

.np-section h2 {
    max-width: 980px;
    font-size: 40px;
    line-height: 48px;
}

.np-eyebrow {
    margin: 0 0 7px;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
}

.np-eyebrow--red {
    color: var(--np-red);
}

.np-section-lede {
    max-width: 860px;
    margin: 18px auto 42px;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

.np-pain {
    background: #fff;
}

.np-pain__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 44px;
}

.np-pain article {
    padding: 16px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background: #fafafa;
    text-align: center;
}

.np-icon-card {
    display: grid;
    height: 108px;
    place-items: center;
    border-radius: 10px;
    background:
        radial-gradient(circle at center, rgba(95,193,244,.22), transparent 48%),
        #f4f4f4;
}

.np-icon-card img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.np-pain h3,
.np-how h3,
.np-feature-cards h3 {
    margin: 14px 0 8px;
    font-size: 20px;
    font-weight: 800;
    line-height: 25px;
}

.np-pain p,
.np-how p,
.np-feature-cards p {
    margin: 0;
    font-size: 15px;
    line-height: 22px;
}

.np-pain strong {
    display: inline-flex;
    margin-top: 12px;
    padding: 7px 14px;
    border: 1px solid var(--np-red);
    border-radius: 999px;
    color: var(--np-red);
    font-size: 12px;
}

.np-insight {
    max-width: 585px;
    margin: 34px auto 0;
    padding: 18px 20px;
    border: 1.5px solid #111;
    border-radius: 8px;
    background: var(--np-yellow);
    text-align: center;
}

.np-insight span,
.np-insight strong {
    display: block;
}

.np-insight span {
    font-size: 17px;
    font-weight: 700;
}

.np-insight strong {
    margin: 8px 0;
    font-size: 30px;
    font-weight: 800;
    line-height: 36px;
}

.np-insight p {
    margin: 0;
    font-size: 15px;
    line-height: 22px;
}

.np-meet,
.np-life,
.np-reviews {
    background: var(--np-pale);
}

.np-meet__grid,
.np-life__grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 56px;
    align-items: center;
    margin-top: 42px;
}

.np-meet__image {
    position: relative;
}

.np-meet__image img,
.np-how img,
.np-feature-cards img,
.np-life__photos img,
.np-review-slide > img {
    width: 100%;
    border: 3px solid #111;
    border-radius: 12px;
    background: #e8eef2;
    object-fit: cover;
}

.np-meet__image img {
    aspect-ratio: 1.28;
}

.np-meet__image span {
    position: absolute;
    top: 16px;
    right: 12%;
    padding: 8px 12px;
    border: 2px solid #111;
    border-radius: 50%;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 17px;
    text-align: center;
}

.np-meet__points {
    display: grid;
    gap: 16px;
}

.np-meet__points article {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #111;
}

.np-meet__points article img {
    grid-row: span 2;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.np-meet__points h3 {
    margin: 0 0 7px;
    font-size: 22px;
    font-weight: 800;
    line-height: 26px;
}

.np-meet__points p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.np-cta {
    display: grid;
    max-width: 470px;
    justify-items: center;
    gap: 12px;
    margin: 34px auto 0;
}

.np-how {
    background: #fff;
}

.np-how__mobile-break {
    display: none;
}

.np-how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.np-how article {
    text-align: center;
}

.np-how img {
    aspect-ratio: 1.45;
}

.np-how__copy {
    display: grid;
}

.np-how__copy span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    order: 2;
    margin: -25px auto 14px;
    border-radius: 50%;
    color: #fff;
    background: var(--np-blue);
    font-size: 24px;
    font-weight: 800;
}

.np-how__media {
    order: 1;
}

.np-how h3,
.np-how p {
    order: 3;
}

.np-features,
.np-versus {
    background: var(--np-yellow);
}

.np-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.np-feature-cards article {
    display: grid;
    align-content: start;
    padding: 16px;
    border: 2px solid #111;
    border-radius: 14px;
    background: #fff;
}

.np-feature-card__image img {
    aspect-ratio: 1.25;
}

.np-feature-cards h3 {
    text-align: center;
}

.np-feature-cards p {
    text-align: center;
}

.np-feature-cards ul {
    margin: 16px 0 0;
    padding-left: 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
}

.np-wallet {
    position: relative;
    padding: 115px 0 72px;
    background: #fff;
    overflow: clip;
}

.np-wallet::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1440' height='34' fill='%23fff8bd'/%3E%3Cpath d='M0 34C120 70 240 70 360 34C480-2 600-2 720 34C840 70 960 70 1080 34C1200-2 1320-2 1440 34V120H0Z' fill='%23fff'/%3E%3C/svg%3E")
        center top / 100% 120px no-repeat;
    content: "";
    pointer-events: none;
}

.np-wallet .np-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1060px);
}

.np-wallet h2 {
    max-width: none;
    font-size: 37px;
    line-height: 45px;
    white-space: nowrap;
}

.np-wallet__compare {
    position: relative;
    display: grid;
    grid-template-columns: 310px 310px;
    gap: 78px;
    width: 698px;
    max-width: 100%;
    align-items: start;
    margin: 52px auto 0;
}

.np-wallet__compare > strong {
    position: absolute;
    top: 251px;
    left: 50%;
    z-index: 4;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--np-blue-dark);
    font-size: 15px;
    font-weight: 800;
    transform: translateX(-50%);
}

.np-wallet__col {
    position: relative;
}

.np-wallet__col::before {
    position: absolute;
    top: 210px;
    left: 25px;
    bottom: 0;
    border-left: 1px solid #d7d7d7;
    content: "";
}

.np-wallet__product {
    display: grid;
    min-height: 202px;
    justify-items: center;
    align-content: start;
    text-align: center;
}

.np-wallet__product--pads span {
    position: relative;
    width: 210px;
    height: 126px;
}

.np-wallet__product--pads span::before {
    position: absolute;
    left: 22px;
    top: 48px;
    width: 118px;
    height: 60px;
    border-radius: 4px;
    background:
        repeating-linear-gradient(to bottom, rgba(83,191,244,.9) 0 7px, rgba(255,255,255,.7) 7px 10px),
        #b7e8ff;
    box-shadow: -8px 7px 0 #9edaf6, -16px 14px 0 #86cbea, -24px 21px 0 #74bfe2;
    content: "";
    transform: skewY(-4deg);
}

.np-wallet__product--pads span::after {
    position: absolute;
    right: 19px;
    top: 28px;
    width: 48px;
    height: 92px;
    border-radius: 24px / 12px;
    background: linear-gradient(90deg, rgba(255,255,255,.55), transparent 45%), #dceaf2;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
    content: "";
}

.np-wallet__product img {
    width: 190px;
    height: 118px;
    object-fit: contain;
}

.np-wallet__product h3 {
    margin: 7px 0 0;
    font-size: 27px;
    font-weight: 800;
    line-height: 32px;
    white-space: nowrap;
}

.np-wallet__rows {
    display: grid;
    gap: 16px;
    padding-left: 48px;
}

.np-wallet__rows > div {
    display: flex;
    width: 260px;
    min-height: 49px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 10px;
    color: #fff;
    background: #f6cbc7;
    font-size: 16px;
    font-weight: 800;
    line-height: 18px;
}

.np-wallet__rows > div:nth-child(2) { background: #f39f98; }
.np-wallet__rows > div:nth-child(3) { background: #ef7368; }
.np-wallet__rows > div:nth-child(4) { background: var(--np-red); }
.np-wallet__col--good .np-wallet__rows > div { background: var(--np-green); }

.np-wallet__rows b {
    font-size: 22px;
}

.np-wallet__side-label {
    position: absolute;
    top: 282px;
    left: -5px;
    z-index: 2;
    margin: 0;
    color: var(--np-red);
    font-size: 15px;
    font-weight: 800;
    line-height: 17px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.np-wallet__col--good .np-wallet__side-label {
    color: #002681;
}

.np-wallet__savings {
    display: grid;
    justify-items: center;
    margin: 47px auto 0;
    text-align: center;
}

.np-wallet__savings span {
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
}

.np-wallet__savings strong {
    position: relative;
    margin-top: 14px;
    padding: 0 28px;
    color: #0daf36;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
}

.np-wallet__savings strong::before {
    position: absolute;
    inset: 0 -8px -2px;
    border: 2px solid var(--np-green);
    border-radius: 50%;
    content: "";
    transform: rotate(-5deg);
}

.np-wallet .np-insight {
    position: relative;
    max-width: 575px;
    margin: 40px auto 0;
    padding: 20px 62px 18px 18px;
    text-align: left;
}

.np-wallet .np-insight::after {
    position: absolute;
    top: 19px;
    right: 18px;
    color: #99cf19;
    content: "\267B";
    font-size: 42px;
    line-height: 1;
}

.np-life {
    background: var(--np-pale);
}

.np-life__grid {
    align-items: center;
}

.np-life h2,
.np-life .np-eyebrow,
.np-life__grid .np-section-lede,
.np-results h2,
.np-results .np-eyebrow,
.np-results .np-section-lede {
    margin-left: 0;
    text-align: left;
}

.np-life ul {
    display: grid;
    gap: 18px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.np-life li {
    position: relative;
    padding-left: 49px;
}

.np-life li::before {
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    background: transparent;
    content: "";
}

.np-life li h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    line-height: 24px;
}

.np-life li p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 20px;
}

.np-life__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.np-life__photos img {
    aspect-ratio: 1;
}

.np-results {
    background: #fff;
}

.np-results .np-shell {
    position: relative;
}

.np-results__seal {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 0 12px;
    object-fit: contain;
}

.np-results__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 34px;
    align-items: end;
    margin-top: 34px;
}

.np-results__media {
    margin: 0;
}

.np-results__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.np-results__subhead {
    margin: 18px 0 0;
    font-size: 27px;
    font-weight: 800;
    line-height: 32px;
}

.np-results__grid {
    display: grid;
    max-width: 640px;
    gap: 14px;
    margin-top: 30px;
}

.np-results__grid article {
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 3px solid #111;
    border-radius: 9px;
    background: #fff;
}

.np-results__grid strong {
    padding: 12px 8px;
    border-radius: 7px;
    background: var(--np-yellow);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}

.np-results__grid span {
    font-size: 17px;
    font-weight: 800;
}

.np-versus {
    padding-top: 70px;
}

.np-table {
    max-width: 760px;
    margin: 40px auto 0;
    border: 2px solid #111;
    border-radius: 9px;
    background: #fff;
    overflow: hidden;
}

.np-table div {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
}

.np-table div + div {
    border-top: 1px solid rgba(0,0,0,.18);
}

.np-table span,
.np-table b {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    gap: 8px;
    padding: 12px;
    font-size: 16px;
    line-height: 20px;
}

.np-table span {
    justify-content: flex-start;
    font-weight: 700;
}

.np-table b {
    text-align: center;
}

.np-table b:first-of-type {
    color: #fff;
    background: var(--np-blue);
}

.np-table__head b {
    display: grid;
    justify-items: center;
    align-content: center;
}

.np-table__head img {
    width: 72px;
    height: 45px;
    margin: 0 auto 5px;
    border-radius: 5px;
    object-fit: cover;
}

.np-table__icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    object-fit: contain;
}

.np-table__mark img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.np-risk {
    background: #fff;
}

.np-risk__card {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding: 34px 28px;
    border: 2px solid #111;
    border-radius: 12px;
    background: var(--np-pale);
    text-align: center;
}

.np-risk__seal {
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    margin: 0 auto 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.np-risk__seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.np-risk__card h2 {
    max-width: 510px;
    font-size: 27px;
    line-height: 34px;
}

.np-risk__card > p:not(.np-eyebrow) {
    max-width: 520px;
    margin: 14px auto;
    font-size: 15px;
    line-height: 22px;
}

.np-risk__card > div:not(.np-risk__seal) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.np-risk__card article {
    padding: 15px 10px;
    border: 2px solid #111;
    border-radius: 9px;
    background: #fff;
}

.np-risk__card article h3 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 19px;
}

.np-risk__card article p {
    margin: 0;
    font-size: 12px;
    line-height: 17px;
}

.np-reviews {
    background: var(--np-pale);
}

.np-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.np-review-slide {
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 10px;
    border: 2px solid #111;
    border-radius: 20px;
    background: #fff;
    box-shadow: 1px 1px 0 1px #000;
    overflow: hidden;
}

.np-review-slide:nth-child(n + 4) {
    display: none;
}

.np-review-slide > img {
    height: 210px;
    aspect-ratio: auto;
    border-width: 0;
}

.np-review-slide > div {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    padding: 18px 5px 8px;
}

.np-review-slide h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 25px;
}

.np-review-stars {
    display: flex;
    gap: 2px;
    margin: 10px 0 12px;
    font-size: 17px;
    line-height: 18px;
}

.np-review-stars img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.np-review-slide blockquote {
    margin: 0;
    font-size: 15px;
    line-height: 21px;
}

.np-review-slide figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff8bd;
}

.np-review-slide figcaption b,
.np-review-mini span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #fff;
    background: #2f93ff;
}

.np-review-slide figcaption span {
    display: grid;
    font-weight: 800;
    line-height: 20px;
}

.np-review-slide figcaption small {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #16a249;
    font-size: 12px;
    font-weight: 500;
}

.np-review-slide figcaption small img {
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.np-review-dots {
    display: none;
}

.np-review-mini {
    display: flex;
    max-width: 760px;
    align-items: center;
    gap: 12px;
    margin: 30px auto 0;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(219,232,239,.94);
    text-align: left;
}

.np-review-mini p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}

.np-review-mini strong {
    display: block;
}

.np-review-proof {
    display: none;
}

.np-faq {
    background: #fff;
}

.np-faq__list {
    display: grid;
    max-width: 760px;
    gap: 14px;
    margin: 38px auto 0;
}

.np-faq__list article {
    border-radius: 8px;
    background: var(--np-yellow);
}

.np-faq__list button {
    padding: 16px 18px;
    font-size: 17px;
    line-height: 23px;
}

.np-footer {
    padding: 38px 20px 50px;
    border-top: 1px solid #eee;
    background: #fff;
    color: #111;
    text-align: center;
}

.np-footer::before {
    display: block;
    margin: 0 auto 14px;
    color: #000;
    content: "PupVilo";
    font-size: 22px;
    font-weight: 900;
}

.np-footer a,
.np-footer span,
.np-footer p {
    display: inline-block;
    margin: 0 4px;
    color: #555;
    font-size: 12px;
}

.np-footer p {
    display: block;
    margin-top: 8px;
}

@media (max-width: 1100px) and (min-width: 641px) {
    .np-product__grid {
        grid-template-columns: 1fr;
    }

    .np-gallery {
        position: static;
    }

    .np-wallet h2 {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .np-shell {
        width: min(100% - 30px, 400px);
    }

    .pe-sale-bar {
        min-height: 40px;
        gap: 5px;
        padding: 5px 6px;
    }

    .pe-sale-copy strong {
        font-size: 12px;
        line-height: 13px;
    }

    .pe-sale-copy em {
        font-size: 10px;
        line-height: 11px;
    }

    .pe-sale-sparkles {
        width: 20px;
        height: 22px;
        flex-basis: 20px;
    }

    .pe-time-box {
        width: 28px;
        height: 31px;
    }

    .pe-time-box b {
        font-size: 13px;
        line-height: 13px;
    }

    .pe-time-box small {
        font-size: 6px;
        line-height: 7px;
    }

    .np-nav {
        grid-template-columns: minmax(96px, 1fr) auto;
        min-height: 58px;
        padding: 0 12px;
    }

    .np-logo {
        width: 112px;
        min-height: 36px;
    }

    .np-nav__actions {
        gap: 7px;
    }

    .np-nav__cart,
    .np-menu-toggle {
        width: 37px;
        height: 37px;
    }

    .np-nav__cart svg {
        width: 21px;
        height: 21px;
    }

    .np-menu-panel {
        top: calc(100% + 8px);
        right: 10px;
        width: calc(100vw - 20px);
        padding: 7px;
        border-radius: 26px;
    }

    .np-menu-panel__links a {
        min-height: 48px;
        font-size: 16px;
        line-height: 21px;
    }

    #meet,
    #how-to-use,
    #features,
    #reviews,
    #faq,
    #pupvilo-pdp-packages {
        scroll-margin-top: 76px;
    }

    .np-product {
        padding: 21px 0 30px;
    }

    .np-product h1,
    .np-section h2 {
        font-size: 28px;
        line-height: 35px;
    }

    .np-product__grid {
        display: block;
        margin-top: 16px;
    }

    .np-gallery {
        position: static;
    }

    .np-gallery__stage {
        border-width: 2px;
    }

    .np-gallery__slide {
        aspect-ratio: 1.08;
    }

    .np-gallery__thumbs {
        gap: 10px;
        margin-top: 14px;
    }

    .np-gallery__thumbs button {
        flex-basis: 72px;
        width: 72px;
    }

    .np-rating {
        margin-top: 32px;
        font-size: 14px;
    }

    .np-sold {
        position: static;
        display: inline-flex;
        margin-top: 13px;
        padding: 7px 14px;
        font-weight: 800;
    }

    .np-buy h2 {
        margin-top: 15px;
        font-size: 31px;
        line-height: 37px;
    }

    .np-buy__lede {
        font-size: 18px;
        line-height: 26px;
    }

    .np-stats {
        margin: 28px 0 26px;
    }

    .np-stats dt {
        font-size: 36px;
    }

    .np-bullets {
        gap: 10px;
        font-size: 18px;
    }

    .np-packages {
        gap: 28px;
    }

    .np-package {
        grid-template-columns: 22px minmax(0, 1fr) 120px;
        min-height: 165px;
    }

    .np-package__image {
        width: 112px;
        max-height: 124px;
    }

    .np-package__copy b {
        font-size: 17px;
        line-height: 21px;
        white-space: normal;
    }

    .np-package__copy s,
    .np-package__copy i {
        font-size: 12px;
    }

    .np-section {
        padding: 30px 0 40px;
    }

    .np-eyebrow {
        font-size: 16px;
        line-height: 20px;
    }

    .np-section-lede {
        margin: 8px auto 20px;
        font-size: 16px;
        line-height: 24px;
    }

    .np-pain__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .np-pain__grid article:last-child {
        grid-column: 1 / -1;
    }

    .np-icon-card img {
        width: 80px;
        height: 80px;
    }

    .np-ticker img {
        width: 20px;
        height: 20px;
    }

    .np-meet__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .np-meet__points article {
        grid-template-columns: 44px 1fr;
        column-gap: 12px;
        text-align: left;
    }

    .np-meet__points article img {
        width: 40px;
        height: 40px;
    }

    .np-how__mobile-break {
        display: block;
    }

    .np-how__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .np-how article {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(128px, 160px);
        gap: 14px;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid #ccc;
        text-align: center;
        overflow: hidden;
    }

    .np-how article > .np-how__media {
        grid-column: 2;
        grid-row: 1;
    }

    .np-how article > .np-how__copy {
        grid-column: 1;
        grid-row: 1;
    }

    .np-how__copy span {
        order: 0;
        margin: 0 auto 14px;
    }

    .np-how img {
        height: 220px;
        aspect-ratio: auto;
    }

    .np-feature-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .np-wallet {
        padding: 86px 0 60px;
    }

    .np-wallet::before {
        height: 58px;
        background:
            url("data:image/svg+xml,%3Csvg viewBox='0 0 430 58' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H430V26C386 46 344 46 300 26C256 6 214 6 170 26C126 46 84 46 40 26C22 18 10 15 0 15V0Z' fill='%23fff8bd'/%3E%3Cpath d='M0 26C40 46 84 46 128 26C172 6 216 6 260 26C304 46 348 46 392 26C408 19 421 16 430 15V58H0Z' fill='%23fff'/%3E%3C/svg%3E")
            center top / 100% 58px no-repeat;
    }

    .np-wallet .np-shell,
    .np-life .np-shell,
    .np-results .np-shell,
    .np-versus .np-shell,
    .np-risk .np-shell,
    .np-reviews .np-shell,
    .np-faq .np-shell {
        width: min(100% - 30px, 385px);
    }

    .np-wallet h2 {
        white-space: normal;
    }

    .np-wallet__compare {
        grid-template-columns: 48% 48%;
        gap: 4%;
        width: 100%;
        margin-top: 15px;
    }

    .np-wallet__compare > strong {
        top: 119px;
        width: 36px;
        height: 36px;
    }

    .np-wallet__col::before {
        top: 154px;
    }

    .np-wallet__product {
        min-height: 155px;
    }

    .np-wallet__product--pads span {
        width: 120px;
        height: 82px;
    }

    .np-wallet__product--pads span::before {
        left: 8px;
        top: 18px;
        width: 76px;
        height: 45px;
    }

    .np-wallet__product--pads span::after {
        right: 8px;
        top: 8px;
        width: 36px;
        height: 66px;
    }

    .np-wallet__product img {
        width: 120px;
        height: 82px;
    }

    .np-wallet__product h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .np-wallet__rows {
        gap: 10px;
        padding-left: 30px;
    }

    .np-wallet__rows > div {
        width: 100%;
        min-height: 63px;
        flex-direction: column;
        justify-content: center;
        font-size: 14px;
        text-align: center;
    }

    .np-wallet__side-label {
        top: 220px;
        font-size: 12px;
    }

    .np-life__grid {
        display: flex;
        flex-direction: column;
    }

    .np-life__copy {
        display: contents;
    }

    .np-life__copy > .np-eyebrow,
    .np-life__copy > h2,
    .np-life__copy > .np-section-lede {
        order: 1;
        text-align: center;
    }

    .np-life__photos {
        display: flex;
        width: 100%;
        height: 210px;
        order: 2;
        gap: 15px;
        margin: 20px 0 0;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .np-life__photos::-webkit-scrollbar {
        display: none;
    }

    .np-life__photos img {
        width: 210px;
        height: 210px;
        flex: 0 0 210px;
        scroll-snap-align: start;
    }

    .np-life__copy > ul {
        order: 3;
    }

    .np-life .np-cta {
        order: 4;
    }

    .np-results h2,
    .np-results .np-eyebrow,
    .np-results .np-section-lede {
        text-align: left;
    }

    .np-results__layout {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 20px;
    }

    .np-results__media {
        order: -1;
        max-width: 270px;
        margin: 0 auto;
    }

    .np-results__grid article {
        grid-template-columns: 50px 1fr;
        border: 0;
    }

    .np-results__grid article::after {
        grid-column: 2;
        width: var(--score);
        height: 6px;
        border-radius: 999px;
        background: #6ec8f6;
        content: "";
    }

    .np-results__grid strong {
        padding: 8px 5px;
        font-size: 18px;
    }

    .np-results__grid span {
        font-size: 13px;
        line-height: 18px;
    }

    .np-table {
        margin-top: 35px;
    }

    .np-table span,
    .np-table b {
        min-height: 65px;
        padding: 8px 5px;
        font-size: 14px;
    }

    .np-risk__card {
        padding: 20px 15px 25px;
    }

    .np-risk__card > div:not(.np-risk__seal) {
        grid-template-columns: 1fr;
    }

    .np-reviews {
        padding: 30px 0 0;
        overflow-x: clip;
    }

    .np-reviews__grid {
        display: flex;
        width: 100%;
        gap: 15px;
        margin: 15px 0 0;
        padding: 0 10px;
        overflow-x: auto;
        overflow-y: hidden;
        overscroll-behavior-inline: contain;
        scroll-padding-left: 10px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .np-reviews__grid::-webkit-scrollbar {
        display: none;
    }

    .np-review-slide,
    .np-review-slide:nth-child(n + 4) {
        display: grid;
        width: 330px;
        min-height: 608px;
        flex: 0 0 330px;
        scroll-snap-align: start;
    }

    .np-review-slide > img {
        height: 202px;
    }

    .np-review-slide h3 {
        font-size: 19px;
        line-height: 24px;
    }

    .np-review-slide blockquote {
        font-size: 16px;
        line-height: 22px;
    }

    .np-review-dots {
        display: flex;
        justify-content: center;
        gap: 9px;
        margin: 18px auto 0;
    }

    .np-review-dots span {
        width: 12px;
        height: 12px;
        border: 1px solid #000;
        border-radius: 50%;
    }

    .np-review-dots .is-active {
        background: #000;
    }

    .np-review-mini {
        width: 100%;
        margin: 34px 0 0;
        font-size: 12px;
    }

    .np-faq__list {
        gap: 12px;
        margin-top: 15px;
        background: var(--np-yellow);
    }

    .np-faq__list button {
        padding: 15px 35px 15px 15px;
        font-size: 17px;
        line-height: 24px;
    }
}
