:root{
  --bg: #FBF8F0;
  --bg-alt: #EFE4C8;
  --ink: #202B1A;
  --ink-soft: #52603F;
  --leaf-1: #2F7A3E;
  --leaf-2: #4FA24F;
  --leaf-3: #144A26;
  --rose: #E0596B;
  --rose-dark: #C23350;
  --clay: #C97A3E;
  --clay-dark: #A85E2A;
  --sage-line: #DCCE9E;
  --cream: #FFFFFF;
  --shadow: rgba(20,74,38,0.16);
  --radius: 4px;
  --arch: 200px 200px 6px 6px;
  --maxw: 1180px;
  font-size: 16px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:'Prata', serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.65;
  font-weight:400;
}
h1,h2,h3{
  font-family:'Prata', serif;
  font-weight:400;
  color:var(--leaf-3);
  margin:0 0 .4em;
  line-height:1.15;
  letter-spacing:0;
}
h1{font-size:clamp(2.2rem,4.4vw,3.6rem);}
h2{font-size:clamp(1.6rem,3vw,2.3rem);}
h3{font-size:1.2rem;}
p{margin:0 0 1em; color:var(--ink-soft);}
a{color:inherit;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.72rem;
  color:var(--rose-dark);
  font-weight:700;
  margin-bottom:.7em;
}

/* Blog */
.blog{padding:84px 0;}
.blog-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.blog-card{
  background:var(--cream); border:1px solid var(--sage-line); border-radius:var(--radius);
  overflow:hidden; display:flex; gap:0; cursor:pointer; transition:transform .2s ease, box-shadow .2s ease;
  text-decoration:none; color:inherit;
}
.blog-card:hover{transform:translateY(-4px); box-shadow:0 18px 34px -18px var(--shadow);}
.blog-card__img{
  width:38%; flex-shrink:0; background:linear-gradient(160deg,var(--bg-alt),#DED2B4);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.blog-card__img img{width:100%; height:100%; object-fit:cover;}
.blog-card__img svg{width:34%; height:34%; color:var(--leaf-2);}
.blog-card__body{padding:20px 22px; display:flex; flex-direction:column; gap:6px;}
.blog-card__date{font-size:.74rem; color:var(--rose-dark); text-transform:uppercase; letter-spacing:.06em;}
.blog-card__title{font-family:'Prata',serif; color:var(--leaf-3); font-size:1.05rem;}
.blog-card__excerpt{font-size:.86rem; margin:0;}
.blog-modal__img{aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden; background:linear-gradient(160deg,var(--bg-alt),#DED2B4); margin-bottom:16px; display:flex; align-items:center; justify-content:center;}
.blog-modal__img img{width:100%; height:100%; object-fit:cover;}
.blog-modal__img svg{width:30%; height:30%; color:var(--leaf-2);}
.blog-modal__date{font-size:.76rem; color:var(--rose-dark); text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px;}
.blog-modal__content{font-size:.92rem; color:var(--ink); white-space:pre-line;}

/* Section dividers — фирменная деталь */
.divider{line-height:0; margin-top:-1px;}
.divider svg{width:100%; height:44px; display:block;}

/* Scroll-reveal */
.reveal{opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease;}
.reveal.is-visible{opacity:1; transform:translateY(0);}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:13px 26px;
  border-radius:var(--radius);
  font-weight:600;
  font-size:.94rem;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform:translateY(1px);}
.btn--primary{background:var(--leaf-3); color:var(--cream);}
.btn--primary:hover{background:#152719;}
.btn--ghost{background:transparent; color:var(--leaf-3); border-color:var(--leaf-3);}
.btn--ghost:hover{background:rgba(30,51,32,.06);}
.btn--full{width:100%;}
.btn:disabled{opacity:.45; cursor:not-allowed;}

/* Social icons — в фирменных цветах самих соцсетей, без перекраски под бренд */
.social-icon{
  width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; flex-shrink:0; transition:transform .15s ease, filter .15s ease;
}
.social-icon--vk{background:#0077FF;}
.social-icon--tg{background:#26A5E4;}
.social-icon svg{width:17px; height:17px;}
.social-icon:hover{transform:translateY(-1px); filter:brightness(1.08);}
.social-icon--lg{width:44px; height:44px;}
.social-icon--lg svg{width:20px; height:20px;}

/* Hamburger */
.hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; border-radius:50%; border:1px solid var(--sage-line); background:var(--cream);
  cursor:pointer; padding:0;
}
.hamburger span{display:block; width:16px; height:1.6px; background:var(--leaf-3); margin:0 auto; transition:transform .2s ease, opacity .2s ease;}
.hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(6.6px) rotate(45deg);}
.hamburger[aria-expanded="true"] span:nth-child(2){opacity:0;}
.hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.6px) rotate(-45deg);}

.mobile-nav{
  position:fixed; inset:0 0 0 auto; width:min(320px,84vw); z-index:60;
  background:var(--cream); box-shadow:-16px 0 40px rgba(0,0,0,.18);
  padding:96px 28px 28px; transform:translateX(100%); transition:transform .25s ease;
  display:flex; flex-direction:column; gap:28px;
}
.mobile-nav.is-open{transform:translateX(0);}
.mobile-nav__links{display:flex; flex-direction:column; gap:20px;}
.mobile-nav__links a{text-decoration:none; font-family:'Prata',serif; font-size:1.15rem; color:var(--leaf-3);}
.mobile-nav__phone{text-decoration:none; font-weight:600; color:var(--leaf-3); font-size:1rem;}
.mobile-nav__social{display:flex; gap:12px;}
.nav-backdrop{position:fixed; inset:0; background:rgba(20,26,17,.45); z-index:55; opacity:0; pointer-events:none; transition:opacity .2s ease;}
.nav-backdrop.is-open{opacity:1; pointer-events:auto;}

/* Topbar */
.topbar{position:sticky; top:0; z-index:40; background:rgba(246,241,231,.92); backdrop-filter:blur(6px); border-bottom:1px solid var(--sage-line);}
.topbar__row{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; min-height:60px;}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--leaf-3); flex-shrink:0;}
.brand__mark{width:44px; height:44px; flex-shrink:0; border-radius:50%; overflow:hidden;}
.brand__mark svg, .brand__mark img{width:100%; height:100%; object-fit:cover; display:block;}
.brand__text{display:flex; flex-direction:column; line-height:1.1;}
.brand__name{font-family:'Prata',serif; font-size:1.25rem; font-weight:400; letter-spacing:.02em;}
.brand__slogan{font-size:.68rem; color:var(--rose-dark); font-style:italic; font-family:'Prata',serif;}

/* Мобильная версия шапки по умолчанию: логотип, компактный телефон, корзина, гамбургер */
.topbar__nav, .topbar__contact, .topbar .social-icon{display:none;}
.topbar__actions{display:flex; align-items:center; gap:8px; flex-shrink:0;}
.hamburger{display:flex;}
.topbar__phone-icon{
  display:flex; align-items:center; justify-content:center; width:38px; height:38px;
  border-radius:50%; background:var(--leaf-3); color:var(--cream); flex-shrink:0;
}
.topbar__phone-icon svg{width:16px; height:16px;}

@media (min-width:1100px){
  .topbar__nav{display:flex; gap:18px; font-size:.85rem; flex-wrap:wrap;}
  .topbar__contact{display:flex; flex-direction:column; align-items:flex-end; gap:5px;}
  .topbar__phone-icon{display:none;}
  .topbar .social-icon{display:flex;}
  .hamburger{display:none !important;}
}
.topbar__phone{font-size:.88rem; font-weight:600; text-decoration:none; color:var(--leaf-3);}
.topbar__nav a{text-decoration:none; color:var(--ink-soft);}
.topbar__nav a:hover{color:var(--leaf-3);}
.cart-btn{position:relative; width:40px; height:40px; border-radius:50%; border:1px solid var(--sage-line); background:var(--cream); display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--leaf-3);}
.cart-btn svg{width:19px; height:19px;}
.cart-btn__count{position:absolute; top:-6px; right:-6px; background:var(--rose); color:#fff; font-size:.65rem; font-weight:700; border-radius:999px; min-width:18px; height:18px; display:flex; align-items:center; justify-content:center; padding:0 4px;}

/* Full-screen hero */
.hero-full{
  position:relative; min-height:88vh; display:flex; align-items:flex-end;
  background:
    linear-gradient(180deg, rgba(30,42,26,.08) 0%, rgba(24,34,20,.58) 82%),
    radial-gradient(120% 90% at 15% 10%, #5A7A54 0%, #35502F 55%, #24361F 100%);
  background-size:cover; background-position:center;
  color:var(--cream); overflow:hidden;
}
.hero-full__bg{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;}
.hero-full__overlay{
  position:absolute; inset:0; z-index:1;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M200 400C200 250 130 180 40 160C40 280 100 360 200 400Z' fill='%23ffffff' opacity='0.05'/%3E%3Cpath d='M200 400C200 220 290 140 380 120C382 260 300 350 200 400Z' fill='%23ffffff' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:bottom right; background-size:60% auto;
  pointer-events:none;
}
.hero-full__content{
  position:relative; z-index:2; padding:44px 40px; margin:120px 24px 90px; max-width:640px;
  background:rgba(15,22,12,.42); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  border-radius:8px; border:1px solid rgba(255,255,255,.12);
}
.eyebrow--light{color:#F0C9BC; text-shadow:0 1px 6px rgba(0,0,0,.5);}
.hero-full__title{color:#fff; font-size:clamp(2.1rem,4.6vw,3.4rem); margin-bottom:.3em; text-shadow:0 3px 18px rgba(0,0,0,.55);}
.hero-full__slogan{font-family:'Prata',serif; font-style:italic; color:#F0C9BC; font-size:1.25rem; margin:0 0 16px; text-shadow:0 2px 10px rgba(0,0,0,.5);}
.hero-full__lead{color:#F3F1E6; max-width:48ch; font-size:1.05rem; text-shadow:0 2px 10px rgba(0,0,0,.5);}
.hero__cta{display:flex; gap:14px; margin-top:14px; flex-wrap:wrap;}
.btn--outline-light{background:transparent; color:#fff; border-color:rgba(255,255,255,.6);}
.btn--outline-light:hover{background:rgba(255,255,255,.1); border-color:#fff;}
.hero-full__scroll{
  position:absolute; left:50%; bottom:22px; transform:translateX(-50%);
  color:#fff; opacity:.75; animation:bob 2.2s ease-in-out infinite;
}
.hero-full__scroll svg{width:22px; height:22px;}
@keyframes bob{0%,100%{transform:translateX(-50%) translateY(0);}50%{transform:translateX(-50%) translateY(6px);}}

.arch-frame{
  background:linear-gradient(160deg,var(--bg-alt),#DED2B4);
  border-radius:var(--arch);
  display:flex; align-items:flex-end; justify-content:center;
  padding:36px 30px 0;
  box-shadow:0 24px 48px -20px var(--shadow);
}

/* Trust strip */
.trust{border-top:1px solid var(--sage-line); border-bottom:1px solid var(--sage-line); background:var(--bg-alt);}
.trust__row{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding:28px 24px;}
.trust__item{display:flex; flex-direction:column; gap:2px; font-size:.86rem;}
.trust__item strong{font-family:'Prata',serif; font-size:1rem; color:var(--leaf-3); font-weight:400;}

/* Catalog */
.catalog{padding:92px 0;}
.section-head{max-width:60ch; margin-bottom:36px;}
.filters{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px;}
.range-filters{display:flex; flex-wrap:wrap; gap:20px 32px; margin-bottom:36px;}
.price-filter{display:flex; align-items:center; gap:14px; font-size:.88rem; color:var(--ink-soft); flex:1 1 240px; max-width:340px;}
.price-filter label{white-space:nowrap; display:flex; gap:6px; align-items:baseline;}
.price-filter strong{color:var(--leaf-3); font-weight:600;}
.price-filter input[type=range]{flex:1; accent-color:var(--leaf-3); cursor:pointer;}
.filter{
  padding:9px 16px; border-radius:999px; border:1px solid var(--sage-line);
  background:var(--cream); color:var(--ink-soft); font-size:.84rem; cursor:pointer; font-family:inherit;
}
.filter.is-active{background:var(--leaf-3); border-color:var(--leaf-3); color:var(--cream);}

.carousel{position:relative; display:flex; align-items:center; gap:8px;}
.carousel__arrow{
  flex-shrink:0; width:44px; height:44px; border-radius:50%; border:1px solid var(--sage-line);
  background:var(--cream); color:var(--leaf-3); cursor:pointer; display:flex; align-items:center; justify-content:center;
  z-index:2; transition:background .15s ease;
}
.carousel__arrow svg{width:18px; height:18px;}
.carousel__arrow:hover{background:var(--bg-alt);}

.grid{
  display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x proximity; scroll-behavior:smooth;
  padding:6px 2px 14px; flex:1;
  scrollbar-width:thin; scrollbar-color:var(--sage-line) transparent;
}
.grid::-webkit-scrollbar{height:6px;}
.grid::-webkit-scrollbar-thumb{background:var(--sage-line); border-radius:3px;}
.grid__empty{color:var(--ink-soft); padding:20px 0;}
.card{
  background:var(--cream); border:1px solid var(--sage-line); border-radius:var(--radius);
  overflow:hidden; display:flex; flex-direction:column;
  flex:0 0 280px; scroll-snap-align:start;
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-5px); box-shadow:0 18px 34px -18px var(--shadow);}
.card__img{
  aspect-ratio:4/3; background:linear-gradient(160deg,var(--bg-alt),#DED2B4);
  display:flex; align-items:center; justify-content:center; position:relative;
  border-radius:110px 110px 0 0;
  margin:14px 14px 0;
  overflow:hidden;
}
.card__img img{width:100%; height:100%; object-fit:cover;}
.card__img svg{width:46%; height:46%; color:var(--leaf-2);}
.card__body{padding:16px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1;}
.card__name{font-family:'Prata',serif; font-size:1.08rem; color:var(--leaf-3); font-weight:400;}
.card__desc{font-size:.85rem; margin:0; flex:1;}
.card__row{display:flex; align-items:center; justify-content:space-between; margin-top:6px;}
.card__price{font-weight:700; color:var(--ink); font-size:1.05rem;}
.card__buy{
  background:var(--leaf-3); color:var(--cream); border:none; border-radius:var(--radius);
  padding:9px 16px; font-size:.82rem; font-weight:600; cursor:pointer; font-family:inherit;
}
.card__buy:hover{background:#152719;}
.card__stepper{display:flex; align-items:center; border:1px solid var(--leaf-3); border-radius:var(--radius); overflow:hidden;}
.card__stepper button{width:30px; height:32px; border:none; background:var(--bg-alt); font-size:1.1rem; cursor:pointer; color:var(--leaf-3); font-family:inherit;}
.card__stepper-num{width:28px; text-align:center; font-size:.9rem; font-weight:600; color:var(--leaf-3);}

/* Business */
.business{background:var(--bg-alt); color:var(--ink); padding:92px 0;}
.business .eyebrow{color:var(--rose-dark);}
.business h2{color:var(--leaf-3);}
.business__row{display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:start;}
.business__lead{color:var(--ink-soft); max-width:48ch;}
.business__list{list-style:none; padding:0; margin:0 0 28px; display:flex; flex-direction:column; gap:10px; color:var(--ink); font-size:.94rem;}
.business__list li{padding-left:22px; position:relative;}
.business__list li::before{content:"—"; position:absolute; left:0; color:var(--rose);}
.business__card{background:var(--cream); border:1px solid var(--sage-line); border-radius:var(--radius); padding:28px;}
.business__card-title{font-weight:600; color:var(--leaf-3); margin-bottom:14px;}
.business__card dt{font-weight:600; color:var(--leaf-3); margin-top:14px; font-size:.92rem;}
.business__card dt:first-child{margin-top:0;}
.business__card dd{margin:4px 0 0; color:var(--ink-soft); font-size:.88rem;}

/* Delivery */
.delivery{padding:84px 0;}
.delivery__row{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.delivery__card{background:var(--cream); border:1px solid var(--sage-line); border-radius:var(--radius); padding:26px; box-shadow:0 8px 20px -14px var(--shadow);}
.delivery__card h3{color:var(--leaf-3); margin-bottom:10px;}
.delivery__card p{color:var(--ink); font-size:.92rem;}

/* Care */
.care{padding:84px 0; background:var(--bg-alt);}
.care__row{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.care__card{background:var(--cream); border:1px solid var(--sage-line); border-radius:var(--radius); padding:26px;}

/* FAQ */
.faq{padding:84px 0;}
.faq__list{display:flex; flex-direction:column; gap:2px; max-width:760px;}
.faq__item{border-bottom:1px solid var(--sage-line); padding:16px 0;}
.faq__item summary{cursor:pointer; font-family:'Prata',serif; font-weight:400; color:var(--leaf-3); font-size:1.02rem; list-style:none;}
.faq__item summary::-webkit-details-marker{display:none;}
.faq__item summary::before{content:"+"; display:inline-block; width:1.2em; color:var(--rose);}
.faq__item[open] summary::before{content:"–";}
.faq__item p{margin:10px 0 0 1.2em; font-size:.92rem;}

/* Contacts map */
.contacts__map{position:relative; border-radius:var(--radius); overflow:hidden; border:1px solid var(--sage-line);}
.map-pin{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-100%); z-index:2;
  display:flex; flex-direction:column; align-items:center; pointer-events:none;
}
.map-pin img{
  width:46px; height:46px; border-radius:50%; object-fit:cover;
  border:3px solid #fff; box-shadow:0 6px 16px rgba(0,0,0,.35);
}
.map-pin::after{
  content:""; width:0; height:0; margin-top:-3px;
  border-left:7px solid transparent; border-right:7px solid transparent;
  border-top:13px solid #fff; filter:drop-shadow(0 3px 3px rgba(0,0,0,.25));
}
.contacts__map iframe{display:block; width:100%; height:360px;}
.contacts{background:var(--bg-alt); padding:76px 0;}
.contacts__row{display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;}
.contacts__address{font-family:'Prata',serif; font-size:1.05rem; color:var(--leaf-3); margin:2px 0 14px;}
.contacts__social{display:flex; gap:16px; margin-top:6px; margin-bottom:22px;}
.contacts__social a{text-decoration:none; font-weight:600; font-size:.88rem; color:var(--leaf-3); border-bottom:1px solid var(--rose);}
.contacts__buttons{display:flex; gap:14px; flex-wrap:wrap;}

/* Footer */
.footer{padding:32px 0 0; border-top:1px solid var(--sage-line);}
.footer__row{display:flex; justify-content:space-between; align-items:center; font-size:.82rem; color:var(--ink-soft); flex-wrap:wrap; gap:14px;}
.footer__brand{display:flex; align-items:center; gap:10px;}
.footer__mark{width:34px; height:34px; border-radius:50%; object-fit:cover; flex-shrink:0;}
.footer__brand > div{display:flex; flex-direction:column;}
.footer__name{font-family:'Prata',serif; font-weight:400; color:var(--leaf-3);}
.footer__slogan{font-style:italic; font-size:.78rem; color:var(--rose-dark);}
.footer__links{display:flex; align-items:center; gap:14px;}
.footer__links a{text-decoration:none; color:var(--ink-soft);}
.footer__credit{padding:16px 0; margin-top:20px; border-top:1px solid var(--sage-line); font-size:.76rem; color:var(--ink-soft); text-align:center;}
.footer__credit a{color:var(--leaf-3); font-weight:600; text-decoration:none; border-bottom:1px solid var(--rose);}

/* Modal */
.modal{position:fixed; inset:0; z-index:100; display:none;}
.modal.is-open{display:block;}
.modal__backdrop{position:absolute; inset:0; background:rgba(20,26,17,.5);}
.modal__panel{
  position:relative; z-index:1; background:var(--cream); max-width:480px; margin:6vh auto; border-radius:var(--radius);
  padding:32px; max-height:88vh; overflow-y:auto;
}
.modal__panel--sm{max-width:440px;}
.modal__panel--drawer{margin:0 0 0 auto; max-width:400px; height:100vh; border-radius:0; max-height:none;}
.modal__close{position:absolute; top:14px; right:16px; background:none; border:none; font-size:1.6rem; line-height:1; cursor:pointer; color:var(--ink-soft);}
.modal__price{color:var(--rose-dark); font-weight:600; margin:0 0 16px;}
.order-form{display:flex; flex-direction:column; gap:14px;}
.order-form label{display:flex; flex-direction:column; gap:6px; font-size:.85rem; color:var(--ink-soft); font-weight:500;}
.order-form input[type=text], .order-form input[type=tel], .order-form input[type=email], .order-form textarea{
  border:1px solid var(--sage-line); border-radius:var(--radius); padding:10px 12px; font-family:inherit; font-size:.95rem; color:var(--ink); background:var(--bg);
}
.order-form textarea{resize:vertical;}
.delivery-choice{display:flex; gap:20px; border:none; padding:0; margin:0; font-size:.9rem;}
.delivery-choice label{flex-direction:row; align-items:center; gap:6px;}
.modal__note{font-size:.75rem; color:var(--ink-soft); text-align:center; margin:0;}
.consent-check{flex-direction:row !important; align-items:flex-start; gap:8px; font-size:.78rem !important; color:var(--ink-soft);}
.consent-check input{margin-top:3px; accent-color:var(--leaf-3); flex-shrink:0;}
.consent-check a{color:var(--leaf-3); text-decoration:underline; text-decoration-color:var(--rose);}
.modal__success{text-align:center; padding:12px 0;}

/* Cart drawer */
.cart-items{display:flex; flex-direction:column; gap:16px; margin:20px 0;}
.cart-item{display:flex; gap:12px; align-items:center; border-bottom:1px solid var(--sage-line); padding-bottom:14px;}
.cart-item__img{width:52px; height:52px; border-radius:50%; background:var(--bg-alt); flex-shrink:0; display:flex; align-items:center; justify-content:center; overflow:hidden;}
.cart-item__img img{width:100%; height:100%; object-fit:cover;}
.cart-item__img svg{width:55%; height:55%; color:var(--leaf-2);}
.cart-item__info{flex:1; min-width:0;}
.cart-item__name{font-weight:600; font-size:.92rem; color:var(--leaf-3);}
.cart-item__price{font-size:.82rem; color:var(--ink-soft);}
.cart-item__stepper{display:flex; align-items:center; border:1px solid var(--sage-line); border-radius:var(--radius); overflow:hidden;}
.cart-item__stepper button{width:26px; height:26px; border:none; background:var(--bg-alt); font-size:1rem; cursor:pointer; color:var(--leaf-3);}
.cart-item__stepper span{width:30px; text-align:center; font-size:.85rem;}
.cart-item__remove{background:none; border:none; color:var(--rose-dark); font-size:.78rem; cursor:pointer; margin-left:8px; text-decoration:underline;}
.cart-empty{color:var(--ink-soft); font-size:.9rem;}
.cart-total{display:flex; justify-content:space-between; align-items:center; padding:14px 0; border-top:1px solid var(--sage-line); margin-bottom:14px; font-family:'Prata',serif;}
.cart-total strong{color:var(--leaf-3); font-size:1.15rem;}

@media (max-width:860px){
  .business__row, .contacts__row{grid-template-columns:1fr;}
  .trust__row{grid-template-columns:repeat(2,1fr);}
  .card{flex:0 0 240px;}
  .delivery__row, .care__row{grid-template-columns:1fr;}
  .blog-grid{grid-template-columns:1fr;}
  .blog-card{flex-direction:column;}
  .blog-card__img{width:100%; aspect-ratio:16/9;}
  .hero-full{min-height:82vh;}
  .hero-full__content{padding:28px 24px; margin:100px 16px 70px;}
  .carousel__arrow{width:36px; height:36px;}
}
@media (max-width:520px){
  .trust__row{grid-template-columns:1fr;}
  .modal__panel--drawer{max-width:100%;}
  .hero-full{min-height:78vh;}
  .hero-full__title{font-size:2rem;}
  .hero__cta{flex-direction:column; align-items:stretch;}
  .hero__cta .btn{width:100%;}
  .price-filter{max-width:100%;}
  .card{flex:0 0 78vw;}
  .carousel__arrow{display:none;}
}

/* Cookie banner */
.cookie-banner{
  position:fixed; left:20px; bottom:20px; z-index:200; max-width:360px;
  background:var(--leaf-3); color:var(--cream); border-radius:8px; padding:18px 20px;
  box-shadow:0 20px 40px -12px rgba(0,0,0,.35); display:flex; flex-direction:column; gap:12px;
}
.cookie-banner p{color:#E8E4D8; font-size:.82rem; margin:0;}
.cookie-banner a{color:#F0C9BC; text-decoration:underline;}
.cookie-banner .btn{align-self:flex-start; padding:8px 18px;}
@media (max-width:480px){
  .cookie-banner{left:12px; right:12px; max-width:none;}
}

/* Callback button */
.topbar__callback{
  background:transparent; border:1px solid var(--leaf-3); color:var(--leaf-3);
  border-radius:999px; padding:4px 12px; font-size:.74rem; font-weight:600; cursor:pointer; font-family:inherit;
}
.topbar__callback:hover{background:rgba(30,51,32,.06);}

/* How to order */
.howto{padding:84px 0;}
.howto__row{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.howto__step{position:relative; padding-top:12px;}
.howto__num{
  display:flex; align-items:center; justify-content:center; width:38px; height:38px;
  border-radius:50%; background:var(--leaf-3); color:var(--cream); font-family:'Prata',serif;
  font-size:1rem; margin-bottom:14px;
}
.howto__step h3{font-size:1.02rem; margin-bottom:6px;}
.howto__step p{font-size:.86rem;}
@media (max-width:860px){
  .howto__row{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:520px){
  .howto__row{grid-template-columns:1fr;}
}

/* Catalog category sections */
.cat-section{margin-bottom:52px;}
.cat-section:last-child{margin-bottom:0;}
.cat-section__head{display:flex; align-items:baseline; justify-content:space-between; margin-bottom:18px; gap:12px;}
.cat-section__title{font-family:'Prata',serif; color:var(--leaf-3); font-size:1.3rem;}
.cat-section__count{font-size:.8rem; color:var(--ink-soft);}
.cat-empty{color:var(--ink-soft); font-size:.9rem; padding:12px 0 32px;}
.card__meta{font-size:.74rem; color:var(--ink-soft); display:flex; gap:10px; margin-top:-2px;}

/* Teaser cards — переход на отдельные страницы */
.teaser{padding:60px 0;}
.teaser__row{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.teaser__card{
  display:block; background:var(--cream); border:1px solid var(--sage-line); border-radius:var(--radius);
  padding:28px 30px; text-decoration:none; color:var(--ink); transition:transform .2s ease, box-shadow .2s ease;
}
.teaser__card:hover{transform:translateY(-3px); box-shadow:0 18px 34px -18px var(--shadow);}
.teaser__card h3{color:var(--leaf-3); font-size:1.15rem; margin-bottom:6px;}
.teaser__card p{margin:0; font-size:.88rem;}
@media (max-width:600px){
  .teaser__row{grid-template-columns:1fr;}
}

/* Sidebar widget — используется на страницах блога и доставки */
.page-layout{display:grid; grid-template-columns:1fr 300px; gap:44px; align-items:start;}
.page-sidebar{position:sticky; top:100px; display:flex; flex-direction:column; gap:28px;}
.side-widget{background:var(--cream); border:1px solid var(--sage-line); border-radius:var(--radius); padding:22px;}
.side-widget h4{font-family:'Prata',serif; color:var(--leaf-3); font-size:1rem; margin:0 0 16px; text-transform:uppercase; letter-spacing:.04em; font-size:.8rem;}
.side-list{display:flex; flex-direction:column; gap:14px;}
.side-list a{display:flex; gap:6px; flex-direction:column; text-decoration:none; color:var(--ink); font-size:.86rem; padding-bottom:12px; border-bottom:1px solid var(--sage-line);}
.side-list a:last-child{border-bottom:none; padding-bottom:0;}
.side-list a:hover{color:var(--leaf-3);}
.side-list .side-date{font-size:.72rem; color:var(--ink-soft);}
.side-product{display:flex; gap:12px; align-items:center; text-decoration:none; color:var(--ink); padding-bottom:14px; border-bottom:1px solid var(--sage-line);}
.side-product:last-child{border-bottom:none; padding-bottom:0;}
.side-product__img{width:52px; height:52px; border-radius:8px; background:linear-gradient(160deg,var(--bg-alt),#DED2B4); flex-shrink:0; display:flex; align-items:center; justify-content:center; overflow:hidden;}
.side-product__img img{width:100%; height:100%; object-fit:cover;}
.side-product__img svg{width:55%; height:55%; color:var(--leaf-2);}
.side-product__name{font-size:.85rem; color:var(--leaf-3); font-weight:600;}
.side-product__price{font-size:.8rem; color:var(--ink-soft);}
@media (max-width:900px){
  .page-layout{grid-template-columns:1fr;}
  .page-sidebar{position:static; flex-direction:row; overflow-x:auto; gap:16px;}
  .side-widget{min-width:260px;}
}

/* Отдельная страница статьи блога */
.post-image{
  aspect-ratio:16/9; border-radius:var(--radius); overflow:hidden; margin-bottom:28px;
  background:linear-gradient(160deg,var(--bg-alt),#DED2B4); display:flex; align-items:center; justify-content:center;
}
.post-image img{width:100%; height:100%; object-fit:cover;}
.post-image svg{width:26%; height:26%; color:var(--leaf-2);}
.post-content{font-size:1rem; color:var(--ink); line-height:1.85; white-space:pre-line;}
