:root {
    --bg: #fffaf2;
    --soft: #f4ead8;
    --cream: #fff6e8;
    --green: #2f6b35;
    --green2: #1f4f29;
    --orange: #f27a1a;
    --orange2: #d95f00;
    --brown: #3b2416;
    --text: #25180f;
    --muted: #756454;
    --white: #fff;
    --gold: #f5b84b;
    --line: rgba(59, 36, 22, 0.12);
    --shadow: 0 18px 44px rgba(90, 54, 25, 0.18);
    --r: 26px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: #e9e1d7
}

body {
    margin: 0;
    background: #e9e1d7;
    color: var(--text);
    font-family: "Montserrat", sans-serif, Arial, Helvetica, sans-serif;
}

body,
button,
input {
    font-family: "Montserrat", sans-serif, Arial, Helvetica, sans-serif
}

img {
    display: block;
    width: 100%;
    height: auto
}

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

button,
input {
    -webkit-user-select: auto;
    user-select: auto
}

.site {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    margin: 0 auto;
    /* padding-bottom: 88px; */
    overflow: hidden;
    background: var(--bg);
    box-shadow: 0 0 36px rgba(0, 0, 0, .18)
}

.topbar {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    background: var(--orange);
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px
}

.topbar b {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--brown);
    color: #fff
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1 {
    margin: 16px 0 12px;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -1.2px;
    text-transform: uppercase;
    text-align: center;
}
h2 {
    margin: 10px 0 12px;
    font-size: 29px;
    line-height: 1.2;
    /* letter-spacing: -1px; */
    text-transform: uppercase;
    font-weight: 800;   
}

h3 {
    margin: 0 0 7px;
    font-size: 20px
}

.lead,
.section-title p,
.benefits p,
.gift-card p,
.reviews p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5
}

.hero {
    padding: 0 0 18px;
    background: linear-gradient(180deg, #fff0d7 0%, #fffaf2 100%)
}

.hero-gallery {
    display: grid;
    width: 100%
}

.hero-img {
    width: 100%;
    background: #fff1d6
}

.hero-img img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center
}

.hero-card {
    position: relative;
    z-index: 2;
    margin: 14px 18px 0;
    padding: 20px;
    border-radius: var(--r);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px)
}

.section {
    padding: 24px 18px
}

.section-title {
    margin-bottom: 18px;
    text-align: left
}

.section-title h2,
.section-title p {
    text-align: center;
}
.section-title h2 {
    text-wrap: balance;
}

.soft {
    background: linear-gradient(180deg, #fffaf2 0%, #f4ead8 100%)
}

.photo {
    overflow: hidden;
    width: 100%;
    border-radius: var(--r);
    background: #fff;
    box-shadow: var(--shadow)
}

.photo img {
    width: 100%;
    object-fit: cover
}

.mt {
    margin-top: 16px
}

.badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .2px;
    text-transform: uppercase
}

.badge i,
.eyebrow::before {
    content: "";
    display: block;
    width: 7px;
    min-width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--gold)
}

.eyebrow-white {
    background: rgba(255, 255, 255, .16)
}

.rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: #f4a000;
    font-size: 14px;
    font-weight: 900
}

.rating span {
    color: var(--muted);
    font-weight: 700
}

.price-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 16px 0;
    padding: 16px;
    border-radius: 24px;
    background: var(--brown);
    color: #fff
}

.old {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, .52);
    font-size: 15px;
    text-decoration: line-through
}

.price-card strong {
    display: block;
    color: #ffd98b;
    font-size: 40px;
    line-height: 1
}

.sale {
    display: grid;
    place-items: center;
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe1a3, var(--gold));
    color: var(--brown);
    font-size: 22px;
    font-weight: 900
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase
}

.btn-main {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9b35, #f27a1a, #cf5a00);
    color: #fff;
    box-shadow: 0 16px 32px rgba(242, 122, 26, .35);
    animation: pulse 2.2s infinite ease-in-out
}

.btn-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .38), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite
}

@keyframes pulse {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-1px)
    }
}

@keyframes shine {
    0% {
        left: -80%
    }

    45%,
    100% {
        left: 130%
    }
}

.trust-line {
    /* gap: 7px; */
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    text-wrap: balance;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr 1fr;
}
.trust-line span {
    display: grid;
}

.trust-line span::before,
.mini-list span::before {
    content: "✓";
    margin-right: 7px;
    color: var(--green);
    font-weight: 900
}

.intro {
    padding-top: 42px
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
}

.stats div {
    padding: 15px 8px;
    border-radius: 18px;
    background: #fff;
    text-align: left;
    box-shadow: 0 9px 20px rgba(90, 54, 25, .08)
}

.stats strong {
    display: block;
    color: var(--orange2);
    font-size: 20px;
    line-height: 1.1
}

.stats span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25
}

.visual-section .photo {
    margin-bottom: 16px
}

.benefits {
    display: grid;
    gap: 12px
}

.benefits article {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    text-align: left;
    box-shadow: 0 10px 25px rgba(90, 54, 25, .08)
}

.benefits b {
    display: block;
    font-size: 18px;
    color: var(--brown)
}

.benefits p {
    margin: 7px 0 0
}

.compare {
    background: radial-gradient(circle at top right, rgba(242, 122, 26, .22), transparent 42%), var(--brown);
    color: #fff
}

.compare .section-title h2 {
    color: #fff
}

.compare .section-title p {
    color: rgba(255, 255, 255, .75)
}

.compare-grid {
    display: grid;
    gap: 12px
}

.compare-grid div {
    padding: 18px;
    border-radius: 22px;
    text-align: left
}

.bad {
    background: rgba(255, 255, 255, .1)
}

.good {
    background: #fff;
    color: var(--brown)
}

.compare-grid p {
    margin: 0;
    color: inherit;
    line-height: 1.45
}

.mini-list {
    display: grid;
    gap: 9px;
    margin-top: 16px
}

.mini-list span {
    display: block;
    padding: 14px 15px;
    border-radius: 18px;
    background: #fff;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    box-shadow: 0 8px 20px rgba(90, 54, 25, .07)
}

.gift {
    padding: 46px 18px;
    background: linear-gradient(180deg, #3b2416 0%, #201309 100%)
}

.gift-card {
    padding: 22px 18px;
    border-radius: var(--r);
    background: radial-gradient(circle at top right, rgba(244, 191, 103, .22), transparent 45%), #fff;
    color: var(--text);
    text-align: left;
    box-shadow: var(--shadow)
}

.gift-label {
    display: inline-flex;
    width: fit-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe1a3, var(--gold));
    color: var(--brown);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase
}

.gift-card .photo {
    margin-top: 16px
}

.reviews-section {
    background: linear-gradient(180deg, #fffaf2, #f4ead8)
}

.reviews {
    display: grid;
    gap: 12px
}

.reviews article {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    text-align: left;
    box-shadow: 0 10px 25px rgba(90, 54, 25, .08)
}

.avatar {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--brown));
    color: #fff;
    font-size: 14px;
    font-weight: 900
}

.reviews span {
    display: block;
    margin: 6px 0;
    color: #f4a000;
    letter-spacing: 2px
}

.reviews p {
    margin-bottom: 0
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.step-grid div {
    min-height: 118px;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    text-align: left;
    box-shadow: 0 10px 24px rgba(90, 54, 25, .08)
}

.step-grid b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--green);
    color: #ffd98b
}

.step-grid span {
    font-weight: 800;
    line-height: 1.25
}

.order {
    padding: 46px 18px;
    background: radial-gradient(circle at top left, rgba(242, 122, 26, .25), transparent 42%), var(--brown)
}

.order-card {
    padding: 22px 18px;
    border-radius: var(--r);
    background: #fff;
    text-align: left;
    box-shadow: var(--shadow)
}

.order-card .photo {
    margin: 14px 0
}

.order-price {
    margin: 14px 0 18px
}

.form {
    display: grid;
    gap: 14px
}

.form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 900
}

.form input {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 17px;
    outline: none;
    background: #fffaf2;
    color: var(--text);
    font-size: 16px
}

.form input:focus {
    border-color: var(--orange)
}

.footer {
    padding: 28px 18px 34px;
    background: var(--bg);
    text-align: center;
}

.footer-links {

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer a {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800
}

.footer p {
    color: var(--muted);
    font-size: 12px
}

.sticky {
    position: fixed;
    z-index: 100;
    
    margin-inline: auto;
    inset-inline: 0;
    /* transform: translateX(-50%); */
    bottom: 12px;
    width: calc(100% - 24px);
    max-width: 456px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(59, 36, 22, .96);
    color: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px)
}

.sticky span {
    display: block;
    color: rgba(255, 255, 255, .66);
    font-size: 12px
}

.sticky strong {
    display: block;
    color: #ffd98b;
    font-size: 22px;
    line-height: 1
}

.sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9b35, #f27a1a);
    color: #fff;
    font-weight: 800;
    animation: pulse 2s infinite ease-in-out
}

@media (max-width:380px) {
    h1 {
        font-size: 31px
    }

    h2 {
        font-size: 27px
    }

    .section,
    .order,
    .gift,
    .footer {
        padding-left: 14px;
        padding-right: 14px
    }

    .hero-card {
        margin-left: 14px;
        margin-right: 14px
    }

    .price-card strong {
        font-size: 36px
    }

    .sale {
        min-width: 64px;
        width: 64px;
        height: 64px;
        font-size: 20px
    }

    .sticky a {
        padding: 0 20px
    }
}


.sticky {
    transition: all 0.3s ease;
  }


span.currency_small {
    font-size: .6em;
    opacity: .5;
    font-weight: normal;
  }