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

.con-row-flex {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFBF0;
    color: #2D2420;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    line-height: 1.15
}

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

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

/* HEADER */
.hdr {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 251, 240, .96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #F2DDD0
}

.hdr-in {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 10px
}

.logo {
    height: 70%;
    margin-left: -10px;
}

.hdr-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center
}

.hdr-nav a {
    font-size: .78rem;
    font-weight: 500;
    color: #7A5840;
    white-space: nowrap
}

.hdr-nav a:active {
    color: #7C4D2A
}

.cart-btn {
    flex-shrink: 0;
    background: #3D2215;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .78rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    white-space: nowrap
}

.cbadge {
    background: #C75B39;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: .63rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center
}

.cbadge.on {
    display: flex
}

/* HERO */
.hero {
    position: relative;
    padding: 44px 20px 36px;
    display: flex;
    justify-content: center;
    background-color: #f1e9db;
}

.hero-img {
    position: absolute;
    max-width: 600px;
    height: 100%;
    top: 0;
    width: 100%;
}

.hero-in {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgb(255, 222, 197);
    color: #633a1a;
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 18px
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 8vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 14px
}

.hero h1 em {
    font-style: italic;
    color: #facf8c
}

.hero-desc {
    color: #fff2de;
    font-size: .97rem;
    line-height: 1.75;
    margin-bottom: 26px
}

.cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px
}

.btn-main {
    background: #fff5e5;
    color: #6a3f29;
    border: none;
    border-radius: 14px;
    padding: 15px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px
}

.price-from {
    font-size: .87rem;
    color: #f1c99b
}

.price-from b {
    color: #ffaa00;
    font-size: 1.05rem
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: .88rem;
    color: #fff0e6;
    margin-top: 4px
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500
}

.hero-trust svg {
    color: #ffaa00;
    flex-shrink: 0
}

/* CATALOG */
.catalog {
    background: #F5EDE0;
    padding: 48px 15px
}

.catalog-in {
    max-width: 480px;
    margin: 0 auto
}

.sec-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 7vw, 2rem);
    color: #3D2215;
    margin-bottom: 3px
}

.sec-p {
    color: #7A5840;
    font-size: .86rem;
    margin-bottom: 24px
}

.sec-pr {
    color: #7A5840;
    font-size: .6rem;
    font-style: italic;
    margin-bottom: 3px
}

.cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.pcard {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: border-color .2s
}

.pcard.active {
    border-color: #D4920B
}

.pcard-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #FFFBF0;
    padding: 10px
}

.pbadge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: .59rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .03em;
    z-index: 2
}

.b-try {
    background: #F2DDD0;
    color: #7C4D2A
}

.b-hit {
    background: #C75B39;
    color: #fff
}

.b-gift {
    background: #7C4D2A;
    color: #fff
}

.b-sale {
    background: #A8B5A0;
    color: #fff
}

.b-max {
    background: #3D2215;
    color: #fff
}

.pcard-body {
    padding: 12px 12px 14px
}

.pname {
    font-family: 'Fraunces', serif;
    font-size: .93rem;
    font-weight: 700;
    color: #3D2215;
    margin-bottom: 2px
}

.pdesc {
    font-size: .71rem;
    color: #7A5840;
    margin-bottom: 8px;
    line-height: 1.4
}

.ppr-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2px
}

.pprice {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #7C4D2A
}

.pper {
    font-size: .69rem;
    color: #D4920B;
    font-weight: 600
}

.psave {
    display: inline-block;
    background: #4A7C59;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 50px;
    margin-bottom: 10px;
    letter-spacing: .02em
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    background: #F5EDE0;
    border-radius: 50px;
    overflow: hidden;
    flex-shrink: 0
}

.qty-btn {
    background: transparent;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #7C4D2A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    line-height: 1
}

.qty-btn:disabled {
    opacity: .35;
    cursor: default
}

.qty-btn.plus {
    background: #7C4D2A;
    color: #fff;
    border-radius: 0 50px 50px 0
}

.qty-btn.minus {
    border-radius: 50px 0 0 50px
}

.qty-n {
    min-width: 26px;
    text-align: center;
    font-weight: 700;
    font-size: .88rem;
    color: #3D2215
}

.qty-total {
    font-size: .7rem;
    font-weight: 700;
    color: #7C4D2A;
    white-space: nowrap
}

/* WHY */
.why {
    background: #FFFBF0;
    padding: 48px 20px
}

.why-in {
    max-width: 480px;
    margin: 0 auto
}

.why-lbl {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #D4920B;
    margin-bottom: 12px
}

.why-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 7vw, 2.3rem);
    color: #3D2215;
    margin-bottom: 28px;
    line-height: 1.15
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.why-card {
    background: #F5EDE0;
    border-radius: 18px;
    padding: 26px 22px
}

.why-emoji {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block;
    line-height: 1
}

.why-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: #3D2215;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif
}

.why-card p {
    font-size: .84rem;
    color: #7A5840;
    line-height: 1.7
}

/* HOW */
.how {
    background: #F5EDE0;
    padding: 48px 20px;
    text-align: center
}

.how-in {
    max-width: 480px;
    margin: 0 auto
}

.how h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 7vw, 2rem);
    color: #3D2215;
    margin-bottom: 30px
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 26px
}

.hstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.hstep-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #F2DDD0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #7C4D2A
}

.hstep h3 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #3D2215;
    margin-bottom: 3px
}

.hstep p {
    font-size: .83rem;
    color: #7A5840;
    max-width: 280px;
    line-height: 1.6
}

/* REVIEWS */
.reviews {
    background: #FFFBF0;
    padding: 48px 20px
}

.reviews-in {
    max-width: 480px;
    margin: 0 auto
}

.reviews h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 7vw, 2rem);
    color: #3D2215;
    margin-bottom: 24px
}

.rev-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.rcard {
    background: #F5EDE0;
    border-radius: 16px;
    padding: 20px 18px
}

.rstars {
    color: #D4920B;
    font-size: .9rem;
    letter-spacing: 2px;
    margin-bottom: 8px
}

.rtext {
    font-size: .86rem;
    color: #2D2420;
    line-height: 1.65;
    margin-bottom: 14px;
    font-style: italic
}

.rauthor-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.ravatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #7C4D2A;
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: .95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.rname {
    font-weight: 700;
    font-size: .83rem;
    color: #3D2215
}

.rhandle {
    font-size: .72rem;
    color: #7A5840
}

/* CONTACT */
.contact {
    background: #3D2215;
    padding: 48px 20px;
    text-align: center
}

.contact-in {
    max-width: 480px;
    margin: 0 auto
}

.contact h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 7vw, 2rem);
    color: #fff;
    margin-bottom: 8px
}

.contact p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 32px;
    font-size: .9rem
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.soc-btn {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, transform .15s;
    -webkit-tap-highlight-color: transparent
}

.soc-btn:active {
    background: rgba(255, 255, 255, .2);
    transform: scale(.95)
}

.soc-btn svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

/* FOOTER */
footer {
    background: #3D2215;
    padding: 36px 20px 0;
    color: rgba(255, 255, 255, .6)
}

.foot-top {
    max-width: 560px;
    margin: 0 auto
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-vf {
    height: 54px;
    background: #fff;
    padding: 5px;
}

.foot-brand-name {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.foot-brand-sub {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 3px;
    line-height: 1.4
}

.foot-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px
}

.foot-col .pl {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px
}

.foot-col a,
.foot-col address,
.foot-col p {
    display: block;
    font-size: .78rem;
    color: rgba(255, 255, 255, .58);
    margin-bottom: 8px;
    line-height: 1.45;
    font-style: normal
}

.foot-col a:active {
    color: #fff
}

hr.fdiv {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.foot-copy-row {
    max-width: 560px;
    margin: 0 auto;
    padding: 14px 0;
    text-align: center;
    font-size: .69rem;
    color: rgba(255, 255, 255, .28)
}

/* STICKY */
.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #3D2215;
    padding: 12px 20px;
    transform: translateY(100%);
    transition: transform .3s;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .25)
}

.sticky.on {
    transform: translateY(0)
}

.sticky-in {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.sticky-info {
    color: rgba(255, 255, 255, .8);
    font-size: .86rem;
    font-weight: 500
}

.sticky-info b {
    color: #fff
}

.sticky-go {
    background: #C75B39;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 11px 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .86rem;
    cursor: pointer;
    min-height: 44px;
    white-space: nowrap
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.705);
    display: none;
    align-items: flex-end;
    justify-content: center
}

.overlay.on {
    display: flex
}

.panel {
    background: #fff;
    width: 100%;
    max-width: 540px;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    overflow-y: auto;
    padding: 24px 20px 32px;
    animation: panUp .3s ease;
    margin-top: 200px;
}

@keyframes panUp {
    from {
        transform: translateY(50px);
        opacity: 0
    }

    to {
        transform: none;
        opacity: 1
    }
}

.ph {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px
}

.ph h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: #3D2215
}

.xbtn {
    background: #FFFBF0;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1rem;
    cursor: pointer;
    color: #7A5840;
    display: flex;
    align-items: center;
    justify-content: center
}

.sdots {
    display: flex;
    gap: 5px;
    margin-bottom: 20px
}

.sdot {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: #F2DDD0
}

.sdot.on {
    background: #7C4D2A
}

.ci {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #FFFBF0
}

.ci-name {
    font-weight: 600;
    font-size: .86rem;
    color: #3D2215
}

.ci-qty {
    font-size: .73rem;
    color: #7A5840
}

.ci-price {
    font-weight: 700;
    font-size: .9rem;
    color: #7C4D2A
}

.trow {
    display: flex;
    justify-content: space-between;
    font-size: .83rem;
    color: #7A5840;
    padding: 4px 0
}

.trow.big {
    font-size: .96rem;
    font-weight: 700;
    color: #3D2215;
    border-top: 2px solid #F2DDD0;
    padding-top: 10px;
    margin-top: 5px
}

.empty {
    text-align: center;
    padding: 28px 0;
    color: #7A5840
}

.empty-ico {
    font-size: 2.2rem;
    margin-bottom: 8px
}

.fg {
    margin-bottom: 12px
}

.fg label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: #7A5840;
    margin-bottom: 4px
}

.fg input,
.fg textarea {
    width: 100%;
    border: 2px solid #F2DDD0;
    border-radius: 12px;
    padding: 10px 12px;
    font-family: 'Inter', sans-serif;
    font-size: .86rem;
    color: #2D2420;
    background: #FFFBF0;
    outline: none
}

.button {
    position: relative;
    height: 100%;
    aspect-ratio: 1/1;
    border: 2px solid #F2DDD0;
    background: #FFFBF0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
}

.fg input:focus,
.fg textarea:focus {
    border-color: #7C4D2A
}

.fg textarea {
    resize: none;
    height: 64px
}

.fg.err input {
    border-color: #c0392b
}

.hint {
    font-size: .67rem;
    color: #7A5840;
    margin-top: 3px
}

.errmsg {
    font-size: .69rem;
    color: #c0392b;
    margin-top: 3px;
    display: none
}

.fg.err .errmsg {
    display: block
}

.courier-note {
    font-size: .72rem;
    color: #7A5840;
    margin: -2px 0 10px
}

.btn-full {
    width: 100%;
    background: #7C4D2A;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .91rem;
    cursor: pointer;
    margin-top: 14px;
    min-height: 48px;
}

.btn-full-m {
    width: 100%;
    background: #7C4D2A;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .91rem;
    cursor: pointer;
    margin-top: 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back {
    background: transparent;
    border: 2px solid #F2DDD0;
    color: #7A5840;
    margin-top: 8px
}

.confirm-box {
    background: #FFFBF0;
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 12px;
    font-size: .81rem
}

.confirm-box div {
    margin-bottom: 4px;
    color: #7A5840
}

.confirm-box b {
    color: #3D2215
}

.success {
    text-align: center;
    padding: 12px 0
}

.sico {
    width: 68px;
    height: 68px;
    background: rgba(212, 146, 11, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.9rem
}

.success h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: #3D2215;
    margin-bottom: 10px
}

.success p {
    color: #7A5840;
    font-size: .87rem;
    line-height: 1.7;
    margin-bottom: 4px
}

.toast {
    position: fixed;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #3D2215;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .79rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s, transform .3s;
    z-index: 400;
    white-space: nowrap;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px
}

.toast.on {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}


.map-popup {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 0;
    top: 0;
    z-index: 1100;
    background-color: #000000ba;
}

.map-box {
    height: fit-content;
    width: 400px;
    max-width: 90%;
    background-color: #fff6e2;
    padding: 10px;
    border-radius: 20px;
}

.mapboxgl-map {
    width: 100%;
    border-radius: 10px;
}

.static-map {
    border-radius: 10px;
    display: none;
    width: 100%;
    height: 200px;
    margin-top: 10px;
}

.button-m {
    position: relative;
    width: 100%;
    border: 2px solid #F2DDD0;
    border-radius: 12px;
    padding: 10px 12px;
    font-family: 'Inter', sans-serif;
    font-size: .86rem;
    color: #2D2420;
    background: #FFFBF0;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;

}

.c {
    display: flex;
    align-items: center;
}

.pin {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 9999;
    pointer-events: none;
    height: 50px;
    width: 50px;
}

#promoBtn {
    background: #7C4D2A;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: .91rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}