:root{
    /* === Brand === */
    --brand: #9bde7f;       /* твой бренд-цвет */
    --brandHover: #86cf68;
    --brandDark: #2c6a2a;

    /* === Background / base === */
    --bg1: #2a1436;
    --bg2: #a45bb0;

    --card: rgba(255,255,255,.92);
    --text: #1f1a23;
    --muted: rgba(31,26,35,.72);

    --shadow: 0 14px 40px rgba(0,0,0,.22);
    --shadow2: 0 10px 24px rgba(0,0,0,.18);

    --radiusXL: 26px;
    --radiusL: 18px;
    --radiusM: 14px;
    --container: 1120px;
}

*{ box-sizing: border-box; }

.container{
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #fff;

    /* мягкий бежево-розовый фон без сирени */
    background:
            radial-gradient(900px 600px at 18% 12%, rgba(255, 240, 210, .85), transparent 60%),
            radial-gradient(900px 650px at 78% 18%, rgba(255, 214, 225, .60), transparent 58%),
            radial-gradient(700px 500px at 70% 78%, rgba(255, 245, 220, .75), transparent 60%),
            linear-gradient(180deg, #fff7ea 0%, #ffeef2 55%, #fff7ea 100%);

    overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
.container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 28px 18px;
}

/* ===== HERO ===== */

.hero{
    position: relative;
    padding: 28px 0 14px;
}

.hero__top{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 26px;
    align-items: center;
}

@media (max-width: 920px){
    .hero__top{ grid-template-columns: 1fr; }
}

.badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    width: fit-content;
}

.badge__icon{
    width: 34px; height: 34px;
    border-radius: 50%;
    display: grid; place-items: center;
    background:
            radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(255,255,255,.10));
    border: 1px solid rgba(255,255,255,.22);
    font-size: 18px;
    position: relative;
}
/* зелёный намёк бренда в бейдже */
.badge__icon::after{
    content:"";
    position:absolute;
    inset: -6px;
    border-radius: 999px;
    border: 2px solid rgba(155,222,127,.35);
    filter: blur(.2px);
}


.hero, .hero h1, .hero .sub, .badge{
    color: #2a2a2a;
}
.badge{
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(0,0,0,.06);
}
.sub{ opacity: .85; }


h1{
    margin: 14px 0 10px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: .2px;
}

.sub{
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.35;
    opacity: .95;
    max-width: 46ch;
}

.hero__side{
    position: relative;
    border-radius: var(--radiusXL);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 240px;
    display: grid;
    place-items: center;
    padding: 20px;
}

.hero__side::before{
    content:"";
    position:absolute;
    inset:-40%;
    background:
            radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 55%),
            radial-gradient(circle at 70% 50%, rgba(155,222,127,.22), transparent 55%),
            radial-gradient(circle at 55% 70%, rgba(255,255,255,.12), transparent 55%);
    transform: rotate(12deg);
}

.hero__sideContent{
    position: relative;
    text-align: center;
    padding: 18px;
}
.hero__sideTitle{
    font-weight: 900;
    font-size: 18px;
    margin: 0 0 8px;
}
.hero__sideText{
    margin: 0;
    opacity: .92;
    line-height: 1.4;
}

/* ===== PRODUCT CARDS ===== */
.cards{
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 820px){
    .cards{ grid-template-columns: 1fr; }
}

.card{
    background: var(--card);
    color: var(--text);
    border-radius: var(--radiusXL);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.55);
}

.card__media{
    position: relative;
    height: 290px;
    background:
            linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.12)),
            radial-gradient(circle at 30% 25%, rgba(155,222,127,.35), rgba(255,255,255,.0) 60%),
            #f6eaf7;
    display: grid;
    place-items: center;
}

.card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card__mediaLabel{
    position: absolute;
    top: 14px; left: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: var(--brandDark);
    border: 1px solid rgba(155,222,127,.55);
    font-weight: 900;
    box-shadow: var(--shadow2);
    font-size: 13px;
    letter-spacing: .2px;
}

.card__body{
    padding: 18px 18px 16px;
    display: grid;
    gap: 10px;
}

.priceRow{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.weight{
    font-size: 28px;
    font-weight: 950;
    color: var(--brandDark);
    letter-spacing: .2px;
}

.price{
    font-size: 24px;
    font-weight: 950;
    color: #0f7b2b;
}

.desc{
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 15px;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    padding: 13px 16px;
    border-radius: 14px;
    font-weight: 950;
    font-size: 15px;
    background: var(--brand);
    color: #173018;
    box-shadow: 0 14px 26px rgba(155,222,127,.28);
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
    width: 100%;
}
.btn:hover{
    filter: brightness(0.97);
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(155,222,127,.35);
    background: var(--brandHover);
}
.btn:active{ transform: translateY(0); }

/* ===== INFO SECTION ===== */
.info{
    margin-top: 28px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: var(--radiusXL);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.info__grid{
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 0;
}
@media (max-width: 920px){
    .info__grid{ grid-template-columns: 1fr; }
}

.info__left{
    padding: 22px 22px 24px;
}

.info__title{
    margin: 0 0 12px;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 950;
    color: #fff;
}

.bullets{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.bullets li{
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.heart{
    width: 28px; height: 28px;
    border-radius: 10px;
    display: grid; place-items: center;
    background: rgba(155,222,127,.22);
    border: 1px solid rgba(155,222,127,.38);
    font-size: 16px;
    color: #173018;
    font-weight: 900;
}

.bullets p{
    margin: 0;
    line-height: 1.4;
    opacity: 1;
}

.info__right{
    position: relative;
    min-height: 280px;
    display: grid;
    place-items: end;
    padding: 18px;
    background:
            radial-gradient(circle at 70% 25%, rgba(155,222,127,.25), transparent 55%),
            radial-gradient(circle at 30% 65%, rgba(255,255,255,.18), transparent 55%),
            rgba(255,255,255,.06);
    border-left: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 920px){
    .info__right{ border-left: none; border-top: 1px solid rgba(255,255,255,.14); }
}

.info,
.info__left,
.info__title,
.bullets p{
    color: #2a2a2a;
}

.bullets p{
    opacity: 1;
}

.mockPhoto{
    width: min(360px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow2);
    border: 1px solid rgba(255,255,255,.25);
    background:
            linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.16)),
            radial-gradient(circle at 30% 30%, rgba(155,222,127,.35), transparent 60%),
            #f7e9f7;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.92);
    font-weight: 900;
    text-align: center;
    padding: 16px;
}
.mockPhoto small{
    display: block;
    opacity: .85;
    font-weight: 800;
    margin-top: 6px;
}

/* ===== CTA STRIP ===== */
.ctaStrip{
    margin-top: 22px;
    border-radius: var(--radiusXL);
    background: linear-gradient(90deg, rgba(155,222,127,.92), rgba(155,222,127,.55));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: var(--shadow);
    padding: 18px 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    color: #1a2b1a;
}
@media (max-width: 820px){
    .ctaStrip{ grid-template-columns: 1fr; }
}

.ctaStrip__text{
    margin: 0;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.25;
}

.ctaStrip__btn{
    width: auto;
    padding: 13px 18px;
    border-radius: 14px;
    /* background: rgba(255,255,255,.26); */
border: 1px solid rgba(255,255,255,.38);
    box-shadow: none;
    /* color: #173018; */

    background: #ffffff;
    color: #2c6a2a;
    font-weight: 900;
}
.ctaStrip__btn:hover{
    /* background: rgba(255,255,255,.34); */
    transform: translateY(-1px);
    background: #f4fff0;
}

/* ===== FOOTER ===== */
.footer{
    margin-top: 26px;
    opacity: .95;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}
@media (max-width: 820px){
    .footer{ grid-template-columns: 1fr; }
}

.footCard{
    border-radius: 18px;
    /* background: rgba(255,255,255,.10); */
    /* border: 1px solid rgba(255,255,255,.16); */
    padding: 14px 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(0,0,0,.06);
    color: #2a2a2a;
}
.footCard b{ display:block; margin-bottom: 6px; }
.footCard p{ margin:0; line-height:1.4; opacity:.85; }

.divider{
    height: 1px;
    background: rgba(255,255,255,.16);
    margin: 18px 0 0;
}
