*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Manrope',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:#1b1b1b;
  background:#f5f3f0;
}
a{text-decoration:none;color:inherit}
button{font:inherit}

.container{
  width:min(100%,calc(100% - 28px));
  margin:0 auto;
}

.header{
  background:rgba(245,243,240,.96);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  color:#111;
}
.burger{
  width:38px;
  height:38px;
  border:0;
  background:transparent;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  padding:0;
}
.burger span{
  display:block;
  width:24px;
  height:2px;
  background:#222;
  border-radius:2px;
  margin-left:auto;
}

.hero-mobile{
  padding-bottom:22px;
}
.hero-mobile__image{
  position:relative;
  min-height:760px;
  overflow:hidden;
  background:#ece8e3;
}
.hero-mobile__image img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.hero-mobile__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(245,243,240,.08) 0%,rgba(245,243,240,.16) 26%,rgba(245,243,240,.28) 50%,rgba(245,243,240,.58) 74%,rgba(245,243,240,.86) 100%),
    linear-gradient(90deg,rgba(245,243,240,.68) 0%,rgba(245,243,240,.28) 34%,rgba(245,243,240,.08) 58%,rgba(245,243,240,.02) 100%);
}
.hero-mobile__content{
  position:relative;
  z-index:2;
  padding:28px 14px 0;
}
.hero-mobile__content h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.06;
  font-weight:500;
  letter-spacing:-1.2px;
  color:#111;
  max-width:320px;
}
.hero-mobile__subtitle{
  font-size:21px;
  line-height:1.15;
  color:#2f2f2f;
  margin-bottom:290px;
}

.hero-mobile__actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.btn{
  width:100%;
  height:58px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px 0 26px;
  font-size:17px;
  font-weight:500;
  border:1.5px solid #404040;
}
.btn--dark{
  background:#4a4a4a;
  color:#fff;
  border-color:#4a4a4a;
}
.btn--light{
  background:rgba(255,255,255,.30);
  color:#222;
}
.btn span{
  font-size:28px;
  line-height:1;
  font-weight:400;
}

.hero__features{
  list-style:none;
  padding:14px 0 0;
  margin:0;
  display:grid;
  gap:14px;
}
.hero__features li{
  position:relative;
  padding-left:38px;
  font-size:16px;
  line-height:1.35;
  color:#2b2b2b;
}
.hero__features li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#666;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
}

@media (min-width:861px){
  .container{width:min(1280px,calc(100% - 48px))}
  .header__inner{min-height:86px}
  .logo{font-size:34px}
  .hero-mobile__image{min-height:720px}
  .hero-mobile__content{padding:70px 40px 0}
  .hero-mobile__content h1{
    font-size:68px;
    line-height:1.04;
    max-width:640px;
  }
  .hero-mobile__subtitle{
    font-size:34px;
    margin-bottom:34px;
  }
  .hero-mobile__actions{
    flex-direction:row;
    gap:18px;
    max-width:560px;
  }
  .btn{
    width:auto;
    min-width:260px;
    height:64px;
    font-size:18px;
  }
  .hero__features{
    max-width:760px;
    padding-top:24px;
    gap:18px;
  }
  .hero__features li{
    font-size:22px;
    padding-left:46px;
  }
  .hero__features li::before{
    width:30px;
    height:30px;
    font-size:18px;
  }
}

.hero-mobile__content{
  padding:95px 14px 0!important;
}

.hero-mobile__subtitle{
  margin-bottom:240px!important;
}

.hero-mobile__image{
  min-height:620px!important;
}
.hero-mobile__image img{
  object-position:74% center!important;
}
.hero-mobile__content{
  padding:88px 14px 0!important;
}
.hero-mobile__subtitle{
  margin-bottom:200px!important;
}

.benefits{
  padding:28px 0 34px;
  background:#f5f3f0;
}
.benefits__head{
  margin-bottom:18px;
}
.benefits__eyebrow{
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:8px;
}
.benefits h2{
  margin:0;
  font-size:28px;
  line-height:1.08;
  letter-spacing:-.8px;
  color:#171717;
}
.benefits__grid{
  display:grid;
  gap:14px;
}
.benefit-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:18px 18px 18px 16px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}
.benefit-card__icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#565656;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  margin-bottom:14px;
}
.benefit-card h3{
  margin:0 0 8px;
  font-size:21px;
  line-height:1.15;
  color:#1d1d1d;
}
.benefit-card p{
  margin:0;
  font-size:15px;
  line-height:1.45;
  color:#4a4a4a;
}

@media (min-width:861px){
  .benefits{
    padding:56px 0 70px;
  }
  .benefits__head{
    margin-bottom:28px;
  }
  .benefits h2{
    font-size:48px;
    letter-spacing:-1.6px;
  }
  .benefits__grid{
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }
  .benefit-card{
    min-height:250px;
    padding:24px;
    border-radius:28px;
  }
  .benefit-card__icon{
    width:40px;
    height:40px;
    font-size:20px;
    margin-bottom:18px;
  }
  .benefit-card h3{
    font-size:28px;
    margin-bottom:12px;
  }
  .benefit-card p{
    font-size:17px;
    line-height:1.55;
  }
}

.benefits{
  padding:22px 0 28px!important;
}
.benefits__head{
  margin-bottom:14px!important;
}
.benefits__eyebrow{
  font-size:12px!important;
  margin-bottom:6px!important;
}
.benefits h2{
  font-size:24px!important;
  line-height:1.05!important;
  letter-spacing:-.6px!important;
}
.benefits__grid{
  gap:12px!important;
}
.benefit-card{
  padding:16px 16px 16px 14px!important;
  border-radius:22px!important;
}
.benefit-card__icon{
  width:30px!important;
  height:30px!important;
  font-size:16px!important;
  margin-bottom:12px!important;
}
.benefit-card h3{
  font-size:19px!important;
  margin-bottom:8px!important;
}
.benefit-card p{
  font-size:14px!important;
  line-height:1.42!important;
}

.decor{
  padding:8px 0 38px;
  background:#f5f3f0;
}
.decor__head{
  margin-bottom:16px;
}
.decor__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:6px;
}
.decor h2{
  margin:0;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.6px;
  color:#171717;
}
.decor__grid{
  display:grid;
  gap:14px;
}
.decor-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}
.decor-card img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:center center;
}
.decor-card__body{
  padding:16px;
}
.decor-card__title{
  font-size:20px;
  line-height:1.12;
  font-weight:700;
  color:#1d1d1d;
  margin-bottom:6px;
}
.decor-card__meta{
  font-size:14px;
  line-height:1.42;
  color:#555;
}
.decor__more{
  margin-top:16px;
  height:56px;
  width:100%;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
  background:#4b4b4b;
  color:#fff;
  font-size:16px;
  font-weight:500;
}
.decor__more span{
  font-size:28px;
  line-height:1;
}

@media (min-width:861px){
  .decor{
    padding:10px 0 70px;
  }
  .decor__head{
    margin-bottom:24px;
  }
  .decor h2{
    font-size:48px;
    letter-spacing:-1.6px;
  }
  .decor__grid{
    grid-template-columns:repeat(2,1fr);
    gap:22px;
  }
  .decor-card{
    border-radius:28px;
  }
  .decor-card img{
    height:360px;
  }
  .decor-card__body{
    padding:22px;
  }
  .decor-card__title{
    font-size:28px;
    margin-bottom:10px;
  }
  .decor-card__meta{
    font-size:17px;
    line-height:1.5;
  }
  .decor__more{
    width:320px;
    margin-top:22px;
    height:62px;
    font-size:18px;
  }
}

.decor{
  padding:26px 0 38px!important;
}
.decor__head{
  margin-bottom:16px!important;
}

.header__inner--catalog{
  gap:20px;
}
.catalog-topnav{
  display:none;
}
.catalog-topbar-right{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}
.catalog-phone{
  font-size:17px;
  color:#222;
}

.catalog-page{
  padding:18px 0 40px;
  background:#f5f3f0;
}

.catalog-shell{
  display:block;
}

.catalog-sidebar{
  display:none;
}

.catalog-mobile-filters{
  display:flex;
  gap:10px;
  margin-bottom:14px;
}

.pill-btn{
  height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.1);
  background:#4c4c4c;
  color:#fff;
  font-size:15px;
  font-weight:500;
}
.pill-btn--light{
  background:#fff;
  color:#222;
}

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.catalog-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.catalog-card img{
  display:block;
  width:100%;
  height:118px;
  object-fit:cover;
  object-position:center center;
}
.catalog-card__body{padding:18px 18px 20px;}
.catalog-card h3{
  margin:0 0 4px;
  font-size:17px;
  line-height:1.12;
  color:#1b1b1b;
}
.catalog-card__meta{
  font-size:12px;
  line-height:1.3;
  color:#707070;
  margin-bottom:10px;
}
.catalog-card__actions{display:grid;grid-template-columns:1fr;gap:10px;}
.mini-btn{
  height:38px;
  border-radius:999px;
  background:#4a4a4a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 12px;
  font-size:13px;
  font-weight:500;
}
.mini-btn--ghost{
  background:#efefef;
  color:#1f1f1f;
}

.filter-block{
  padding:0 0 24px;
  border-bottom:1px solid rgba(0,0,0,.08);
  margin-bottom:22px;
}
.filter-title{
  font-size:18px;
  font-weight:700;
  margin-bottom:14px;
  color:#1c1c1c;
}
.check-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  font-size:15px;
  color:#333;
}
.check-row input{
  width:18px;
  height:18px;
}
.fake-range{
  padding-top:8px;
}
.fake-range__line{
  height:4px;
  border-radius:999px;
  background:#dedede;
  position:relative;
}
.fake-range__dots{
  position:relative;
  height:0;
}
.fake-range__dots span{
  position:absolute;
  top:-10px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#4a4a4a;
}
.fake-range__dots span:first-child{left:12%}
.fake-range__dots span:last-child{right:8%}
.fake-range__labels{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  font-size:14px;
  color:#575757;
}

@media (min-width:861px){
  .catalog-topnav{
    display:flex;
    align-items:center;
    gap:26px;
    margin-left:10px;
  }
  .catalog-topnav a{
    font-size:17px;
    color:#2a2a2a;
  }
  .catalog-topnav .is-active{
    font-weight:700;
  }
  .desktop-only-phone{
    display:block;
  }
  .catalog-page{
    padding:26px 0 60px;
  }
  .catalog-shell{
    display:grid;
    grid-template-columns:240px 1fr;
    gap:24px;
    align-items:start;
  }
  .catalog-sidebar{
    display:block;
    background:#f2efeb;
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    padding:24px 20px;
    position:sticky;
    top:100px;
  }
  .catalog-mobile-filters{
    display:none;
  }
  .catalog-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
  }
  .catalog-card{
    border-radius:24px;
  }
  .catalog-card img{
    height:190px;
  }
  .catalog-card__body{
    padding:16px 16px 18px;
  }
  .catalog-card h3{
    font-size:28px;
    margin-bottom:8px;
    letter-spacing:-.6px;
  }
  .catalog-card__meta{
    font-size:15px;
    margin-bottom:14px;
  }
  .catalog-card__actions{
    flex-direction:row;
    gap:10px;
  }
  .mini-btn{
    height:42px;
    font-size:14px;
    padding:0 14px;
  }
}

@media (max-width:860px){
  .desktop-only-nav,
  .desktop-only-phone{
    display:none!important;
  }
}

@media (max-width:860px){
  .catalog-grid{
    gap:10px!important;
  }
  .catalog-card{
    border-radius:18px!important;
  }
  .catalog-card img{
    height:112px!important;
  }
  .catalog-card__body{
    padding:10px!important;
  }
  .catalog-card h3{
    font-size:15px!important;
    line-height:1.1!important;
    min-height:34px!important;
    margin-bottom:4px!important;
  }
  .catalog-card__meta{
    font-size:11px!important;
    margin-bottom:8px!important;
  }
  .catalog-card__actions{
    gap:6px!important;
  }
  .mini-btn{
    height:34px!important;
    font-size:12px!important;
    padding:0 10px!important;
  }
}

.product-page{
  padding:18px 0 38px;
  background:#f5f3f0;
}
.breadcrumbs{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:13px;
  color:#777;
  margin-bottom:14px;
}
.breadcrumbs a{
  color:#666;
}

.product-hero{
  display:grid;
  gap:16px;
}
.product-gallery__main{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.product-gallery__main img{
  display:block;
  width:100%;
  height:280px;
  object-fit:cover;
  object-position:center center;
}
.product-gallery__thumbs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin-top:8px;
}
.thumb{
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  padding:0;
  height:78px;
}
.thumb.is-active{
  border-color:#4c4c4c;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-info{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.product-badge{
  display:inline-flex;
  align-items:center;
  height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#efefef;
  color:#222;
  font-size:14px;
  font-weight:600;
  margin-bottom:12px;
}
.product-info h1{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.04;
  letter-spacing:-1px;
  color:#151515;
}
.product-subtitle{
  font-size:17px;
  line-height:1.4;
  color:#4d4d4d;
  margin-bottom:16px;
}
.product-pricebox{
  background:#f3f1ee;
  border-radius:20px;
  padding:14px 16px;
  margin-bottom:16px;
}
.product-pricebox__label{
  font-size:13px;
  color:#757575;
  margin-bottom:6px;
}
.product-pricebox__value{
  font-size:30px;
  line-height:1;
  font-weight:700;
  color:#181818;
  margin-bottom:6px;
}
.product-pricebox__note{
  font-size:13px;
  color:#666;
}
.product-specs{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}
.spec-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.spec-row span{
  font-size:15px;
  color:#666;
}
.spec-row strong{
  font-size:15px;
  color:#1c1c1c;
  text-align:right;
}
.product-actions{
  display:grid;
  gap:10px;
  margin-bottom:16px;
}
.product-points{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.product-points li{
  position:relative;
  padding-left:34px;
  font-size:15px;
  line-height:1.35;
  color:#2f2f2f;
}
.product-points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#666;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
}

.product-desc{
  padding-top:18px;
}
.product-desc__grid{
  display:grid;
  gap:14px;
}
.info-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.info-card h2{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.6px;
  color:#171717;
}
.info-card p{
  margin:0;
  font-size:15px;
  line-height:1.55;
  color:#4b4b4b;
}

@media (min-width:861px){
  .product-page{
    padding:26px 0 60px;
  }
  .breadcrumbs{
    font-size:14px;
    margin-bottom:18px;
  }
  .product-hero{
    grid-template-columns:1.02fr .98fr;
    gap:24px;
    align-items:start;
  }
  .product-gallery__main img{
    height:520px;
  }
  .product-gallery__thumbs{
    gap:10px;
    margin-top:10px;
  }
  .thumb{
    height:110px;
    border-radius:18px;
  }
  .product-info{
    padding:24px;
    border-radius:28px;
  }
  .product-badge{
    height:38px;
    font-size:15px;
    margin-bottom:14px;
  }
  .product-info h1{
    font-size:56px;
    letter-spacing:-1.6px;
    margin-bottom:10px;
  }
  .product-subtitle{
    font-size:20px;
    margin-bottom:20px;
  }
  .product-pricebox{
    border-radius:22px;
    padding:18px 20px;
    margin-bottom:20px;
  }
  .product-pricebox__label{
    font-size:14px;
  }
  .product-pricebox__value{
    font-size:44px;
  }
  .product-pricebox__note{
    font-size:14px;
  }
  .product-specs{
    gap:12px;
    margin-bottom:20px;
  }
  .spec-row span,
  .spec-row strong{
    font-size:17px;
  }
  .product-actions{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-bottom:20px;
  }
  .product-points li{
    font-size:17px;
    padding-left:40px;
  }
  .product-points li::before{
    width:26px;
    height:26px;
    font-size:15px;
  }
  .product-desc{
    padding-top:24px;
  }
  .product-desc__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
  }
  .info-card{
    padding:24px;
    border-radius:28px;
  }
  .info-card h2{
    font-size:34px;
    letter-spacing:-1px;
    margin-bottom:12px;
  }
  .info-card p{
    font-size:17px;
  }
}

.body-lock{
  overflow:hidden;
}

.modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:none;
}
.modal.is-open{
  display:block;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,15,15,.42);
  backdrop-filter:blur(3px);
}
.modal__dialog{
  position:relative;
  z-index:2;
  width:min(100% - 28px,560px);
  margin:80px auto 0;
  background:#f8f6f3;
  border-radius:26px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  overflow:hidden;
}
.modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#ece8e3;
  color:#222;
  font-size:28px;
  line-height:1;
}
.modal__content{
  padding:22px 18px 18px;
}
.modal__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7b7b7b;
  margin-bottom:8px;
}
.modal__content h2{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.04;
  letter-spacing:-.8px;
  color:#171717;
}
.modal__text{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.5;
  color:#525252;
}

.request-form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:7px;
}
.field span{
  font-size:14px;
  color:#4d4d4d;
}
.field input,
.field textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.1);
  background:#fff;
  border-radius:18px;
  padding:15px 16px;
  font:inherit;
  color:#191919;
  outline:none;
}
.field textarea{
  resize:vertical;
  min-height:110px;
}
.request-form__submit{
  width:100%;
}
.request-success{
  display:none;
  padding:14px 16px;
  border-radius:18px;
  background:#e9f5eb;
  color:#1f6a31;
  font-size:14px;
  line-height:1.4;
}

@media (min-width:861px){
  .modal__dialog{
    width:min(100% - 40px,620px);
    margin:90px auto 0;
    border-radius:30px;
  }
  .modal__content{
    padding:28px 24px 24px;
  }
  .modal__content h2{
    font-size:42px;
    letter-spacing:-1.2px;
  }
  .modal__text{
    font-size:17px;
  }
  .field input,
  .field textarea{
    padding:16px 18px;
    border-radius:20px;
  }
}

.contact-methods{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.choice-pill{
  position:relative;
  display:inline-flex;
}
.choice-pill input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.choice-pill span{
  height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.1);
  background:#fff;
  color:#1f1f1f;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:500;
}
.choice-pill input:checked + span{
  background:#4b4b4b;
  color:#fff;
  border-color:#4b4b4b;
}

.file-box{
  display:grid;
  gap:8px;
  border:1px dashed rgba(0,0,0,.18);
  border-radius:20px;
  padding:16px;
  background:#fff;
  cursor:pointer;
}
.file-box input{
  display:none;
}
.file-box strong{
  font-size:16px;
  color:#202020;
}
.file-box small{
  font-size:13px;
  line-height:1.4;
  color:#767676;
}

@media (min-width:861px){
  .choice-pill span{
    height:42px;
    padding:0 16px;
    font-size:15px;
  }
  .file-box{
    padding:18px;
    border-radius:22px;
  }
}

.modal{
  overflow-y:auto!important;
  -webkit-overflow-scrolling:touch!important;
}
.modal__dialog{
  max-height:calc(100vh - 32px)!important;
  overflow-y:auto!important;
  -webkit-overflow-scrolling:touch!important;
}

@media (max-width:860px){
  .modal__dialog{
    width:min(100% - 20px,560px)!important;
    margin:16px auto 0!important;
    max-height:calc(100vh - 16px)!important;
    border-radius:22px!important;
  }
  .modal__content{
    padding:18px 14px 14px!important;
  }
  .modal__content h2{
    font-size:26px!important;
    margin:0 0 6px!important;
    line-height:1.02!important;
  }
  .modal__text{
    font-size:14px!important;
    line-height:1.4!important;
    margin:0 0 12px!important;
  }
  .request-form{
    gap:10px!important;
  }
  .field{
    gap:6px!important;
  }
  .field span{
    font-size:13px!important;
  }
  .field input,
  .field textarea{
    padding:12px 14px!important;
    border-radius:16px!important;
    font-size:15px!important;
  }
  .field textarea{
    min-height:92px!important;
  }
  .choice-pill span{
    height:36px!important;
    padding:0 12px!important;
    font-size:13px!important;
  }
  .file-box{
    padding:12px!important;
    border-radius:16px!important;
    gap:6px!important;
  }
  .file-box strong{
    font-size:14px!important;
  }
  .file-box small{
    font-size:12px!important;
  }
  .request-form__submit{
    height:52px!important;
    font-size:16px!important;
  }
  .modal__close{
    width:38px!important;
    height:38px!important;
    font-size:24px!important;
    top:10px!important;
    right:10px!important;
  }
}

@media (max-width:860px){
  .modal__close{
    width:34px!important;
    height:34px!important;
    font-size:22px!important;
    background:#eee9e3!important;
  }
  .field textarea{
    min-height:84px!important;
  }
  .contact-methods{
    gap:7px!important;
  }
  .choice-pill{
    flex:0 0 auto!important;
  }
  .choice-pill span{
    min-width:0!important;
    padding:0 13px!important;
    font-size:12px!important;
  }
  .request-form__submit{
    height:54px!important;
    border-radius:999px!important;
    box-shadow:0 10px 24px rgba(0,0,0,.08)!important;
  }
}

.site-footer{
  background:#ece8e3;
  padding:28px 0 20px;
  border-top:1px solid rgba(0,0,0,.05);
}
.site-footer__top{
  display:grid;
  gap:20px;
}
.site-footer__brand{
  display:grid;
  gap:10px;
}
.site-footer__logo{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  color:#111;
}
.site-footer__brand p{
  margin:0;
  font-size:14px;
  line-height:1.5;
  color:#535353;
}
.site-footer__col{
  display:grid;
  gap:10px;
}
.site-footer__title{
  font-size:15px;
  font-weight:700;
  color:#1f1f1f;
}
.site-footer__col a,
.site-footer__col span{
  font-size:14px;
  line-height:1.4;
  color:#4b4b4b;
}
.site-footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  color:#6a6a6a;
}

.menu-drawer{
  position:fixed;
  inset:0;
  z-index:1100;
  display:none;
}
.menu-drawer.is-open{
  display:block;
}
.menu-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,15,15,.42);
  backdrop-filter:blur(3px);
}
.menu-drawer__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(88vw,380px);
  height:100%;
  background:#f8f6f3;
  box-shadow:-16px 0 40px rgba(0,0,0,.14);
  padding:18px 16px 22px;
  display:flex;
  flex-direction:column;
}
.menu-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:22px;
}
.menu-drawer__logo{
  font-family:Georgia,"Times New Roman",serif;
  font-size:26px;
  color:#111;
}
.menu-drawer__close{
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#ece8e3;
  color:#202020;
  font-size:24px;
  line-height:1;
}
.menu-drawer__nav{
  display:grid;
  gap:8px;
}
.menu-drawer__nav a{
  min-height:48px;
  padding:0 14px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  font-size:16px;
  color:#212121;
}
.menu-drawer__contacts{
  margin-top:auto;
  display:grid;
  gap:10px;
  padding-top:22px;
}
.menu-drawer__contacts a,
.menu-drawer__contacts span{
  font-size:14px;
  color:#4b4b4b;
}

@media (min-width:861px){
  .site-footer{
    padding:46px 0 26px;
  }
  .site-footer__top{
    grid-template-columns:1.2fr .8fr .8fr;
    gap:28px;
  }
  .site-footer__logo{
    font-size:34px;
  }
  .site-footer__brand p{
    font-size:16px;
    max-width:480px;
  }
  .site-footer__title{
    font-size:17px;
  }
  .site-footer__col a,
  .site-footer__col span{
    font-size:15px;
  }
  .site-footer__bottom{
    margin-top:24px;
    padding-top:16px;
    flex-direction:row;
    justify-content:space-between;
    gap:20px;
    font-size:14px;
  }
  .menu-drawer__panel{
    width:min(420px,34vw);
    padding:22px 20px 26px;
  }
  .menu-drawer__logo{
    font-size:30px;
  }
  .menu-drawer__nav a{
    min-height:52px;
    font-size:17px;
  }
}

.stub-page{
  padding:20px 0 40px;
  background:#f5f3f0;
}
.stub-hero{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  padding:24px 18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.stub-hero__content{
  max-width:760px;
}
.stub-hero__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:8px;
}
.stub-title{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.04;
  letter-spacing:-1px;
  color:#171717;
}
.stub-text{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.55;
  color:#4f4f4f;
}
.stub-actions{
  display:grid;
  gap:10px;
}

@media (min-width:861px){
  .stub-page{
    padding:28px 0 60px;
  }
  .stub-hero{
    padding:36px 30px;
    border-radius:32px;
  }
  .stub-title{
    font-size:56px;
    letter-spacing:-1.6px;
  }
  .stub-text{
    font-size:19px;
    max-width:720px;
  }
  .stub-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
}

.contacts-page{
  padding-top:6px;
}
.contacts-page__grid{
  display:grid;
  gap:16px;
}
.contacts-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  padding:22px 18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.contacts-title{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.08;
  letter-spacing:-.8px;
  color:#171717;
}
.contacts-text{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.5;
  color:#555;
}
.contact-list{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.contact-list a,
.contact-list span{
  font-size:18px;
  line-height:1.4;
  color:#222;
}

@media (min-width:861px){
  .contacts-page__grid{
    grid-template-columns:1fr 1fr;
    gap:22px;
  }
  .contacts-card{
    padding:28px 24px;
    border-radius:30px;
  }
  .contacts-title{
    font-size:40px;
    letter-spacing:-1.2px;
  }
  .contacts-text{
    font-size:17px;
  }
}

.stub-page{
  background:
    linear-gradient(180deg,rgba(245,243,240,.86) 0%,rgba(245,243,240,.92) 100%),
    linear-gradient(90deg,rgba(255,255,255,.55) 0 18%,rgba(255,255,255,0) 18% 100%),
    linear-gradient(90deg,transparent 0 62%,rgba(255,255,255,.18) 62% 64%,transparent 64% 100%),
    linear-gradient(180deg,#ece8e3 0%,#f5f3f0 48%,#ece8e3 100%);
  position:relative;
  overflow:hidden;
}

.stub-page::before{
  content:"";
  position:absolute;
  right:0;
  top:70px;
  width:46vw;
  height:420px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.42),rgba(255,255,255,.08)),
    linear-gradient(90deg,rgba(255,255,255,.14) 0 32%,rgba(255,255,255,.04) 32% 66%,rgba(255,255,255,.14) 66% 100%);
  border-top-left-radius:34px;
  border-bottom-left-radius:34px;
  filter:blur(.2px);
  opacity:.9;
  pointer-events:none;
}

.stub-page::after{
  content:"";
  position:absolute;
  right:8%;
  top:170px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.65) 0%,rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.stub-page .container{
  position:relative;
  z-index:2;
}

@media (max-width:860px){
  .stub-page::before{
    top:110px;
    width:62vw;
    height:250px;
    border-top-left-radius:24px;
    border-bottom-left-radius:24px;
    opacity:.75;
  }
  .stub-page::after{
    right:2%;
    top:150px;
    width:120px;
    height:120px;
  }
}

.about-page{
  background:
    linear-gradient(180deg,rgba(245,243,240,.70) 0%,rgba(245,243,240,.84) 100%),
    linear-gradient(90deg,rgba(255,255,255,.34) 0 24%,rgba(255,255,255,0) 24% 100%),
    linear-gradient(90deg,transparent 0 58%,rgba(255,255,255,.24) 58% 60%,transparent 60% 100%),
    linear-gradient(180deg,#e9e4de 0%,#f5f3f0 44%,#ebe6e0 100%)!important;
}
.about-page::before{
  content:"";
  position:absolute;
  right:0;
  top:110px;
  width:58vw;
  height:460px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.46),rgba(255,255,255,.10)),
    linear-gradient(90deg,rgba(255,255,255,.18) 0 30%,rgba(255,255,255,.05) 30% 64%,rgba(255,255,255,.18) 64% 100%);
  border-top-left-radius:36px;
  border-bottom-left-radius:36px;
  opacity:1;
  pointer-events:none;
}
.about-page::after{
  content:"";
  position:absolute;
  right:7%;
  top:190px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.75) 0%,rgba(255,255,255,0) 72%);
  pointer-events:none;
}

@media (max-width:860px){
  .about-page::before{
    top:120px;
    width:70vw;
    height:280px;
    opacity:.95;
  }
  .about-page::after{
    right:3%;
    top:160px;
    width:120px;
    height:120px;
  }
}

.lines-block{
  padding:8px 0 34px;
  background:#f5f3f0;
}
.lines-block__head{
  margin-bottom:16px;
}
.lines-block__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:6px;
}
.lines-block h2{
  margin:0;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.6px;
  color:#171717;
}
.lines-grid{
  display:grid;
  gap:12px;
}
.line-card{
  display:grid;
  gap:10px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:18px 18px 16px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}
.line-card__title{
  font-size:22px;
  line-height:1.08;
  font-weight:700;
  color:#1b1b1b;
}
.line-card__text{
  font-size:15px;
  line-height:1.45;
  color:#555;
}
.line-card__arrow{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#4c4c4c;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
}

@media (min-width:861px){
  .lines-block{
    padding:14px 0 56px;
  }
  .lines-block__head{
    margin-bottom:24px;
  }
  .lines-block h2{
    font-size:48px;
    letter-spacing:-1.6px;
  }
  .lines-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
  }
  .line-card{
    min-height:210px;
    padding:24px 24px 20px;
    border-radius:28px;
  }
  .line-card__title{
    font-size:30px;
    letter-spacing:-.8px;
  }
  .line-card__text{
    font-size:17px;
    line-height:1.55;
    max-width:90%;
  }
  .line-card__arrow{
    width:48px;
    height:48px;
    font-size:24px;
  }
}

@media (max-width:860px){
  .line-card{
    gap:8px!important;
    padding:16px 16px 14px!important;
  }
  .line-card__title{
    font-size:20px!important;
    line-height:1.08!important;
  }
  .line-card__text{
    font-size:14px!important;
    line-height:1.4!important;
  }
  .line-card__arrow{
    width:38px!important;
    height:38px!important;
    font-size:20px!important;
    margin-top:2px!important;
  }
}

.cta-block{
  padding:8px 0 30px;
  background:#f5f3f0;
}
.cta-card{
  background:#ece8e3;
  border:1px solid rgba(0,0,0,.05);
  border-radius:28px;
  padding:22px 18px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}
.cta-card__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:8px;
}
.cta-card h2{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.04;
  letter-spacing:-.8px;
  color:#171717;
}
.cta-card p{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.5;
  color:#555;
  max-width:760px;
}
.cta-card__actions{
  display:grid;
  gap:10px;
}

@media (min-width:861px){
  .cta-block{
    padding:12px 0 48px;
  }
  .cta-card{
    padding:30px 26px;
    border-radius:32px;
  }
  .cta-card h2{
    font-size:52px;
    letter-spacing:-1.6px;
  }
  .cta-card p{
    font-size:18px;
    margin-bottom:20px;
  }
  .cta-card__actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
}

.hero-mobile__image{
  position:relative;
}

.hero-mobile__image img{
  filter:contrast(1.06) saturate(1.02) drop-shadow(0 18px 28px rgba(0,0,0,.10)) !important;
}

.hero-mobile__image::after{
  content:"";
  position:absolute;
  left:52%;
  bottom:120px;
  width:44%;
  height:56px;
  transform:translateX(-50%);
  background:radial-gradient(ellipse at center, rgba(0,0,0,.12) 0%, rgba(0,0,0,.05) 38%, rgba(0,0,0,0) 75%);
  filter:blur(10px);
  pointer-events:none;
  z-index:1;
}

.hero-mobile__content{
  position:relative;
  z-index:3;
}

@media (max-width:860px){
  .hero-mobile__content h1{
    max-width:320px !important;
  }
  .hero-mobile__subtitle{
    line-height:1.2 !important;
  }
  .hero-mobile__image img{
    filter:contrast(1.08) saturate(1.02) drop-shadow(0 12px 22px rgba(0,0,0,.10)) !important;
  }
  .hero-mobile__image::after{
    left:69%;
    bottom:132px;
    width:42%;
    height:42px;
    filter:blur(8px);
    opacity:.9;
  }
}

.visual-page{
  padding:20px 0 40px;
  background:#f5f3f0;
}
.visual-hero{
  display:grid;
  gap:16px;
  margin-bottom:18px;
}
.visual-hero__content{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  padding:22px 18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.visual-hero__eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:8px;
}
.visual-hero__content h1{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.04;
  letter-spacing:-1px;
  color:#171717;
}
.visual-hero__content p{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.55;
  color:#555;
}
.visual-hero__actions{
  display:grid;
  gap:10px;
}

.visual-preview{
  position:relative;
  min-height:320px;
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(245,243,240,.72) 0%,rgba(245,243,240,.86) 100%),
    linear-gradient(90deg,rgba(255,255,255,.22) 0 26%,rgba(255,255,255,.04) 26% 68%,rgba(255,255,255,.18) 68% 100%),
    linear-gradient(180deg,#ebe6e0 0%,#f5f3f0 48%,#ebe6e0 100%);
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.visual-preview__window{
  position:absolute;
  inset:22px 18px 82px 18px;
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.34),rgba(255,255,255,.10)),
    linear-gradient(90deg,rgba(255,255,255,.14) 0 30%,rgba(255,255,255,.04) 30% 60%,rgba(255,255,255,.14) 60% 100%);
}
.visual-preview__room{
  position:absolute;
  left:12%;
  right:12%;
  bottom:34px;
  height:54px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(210,205,198,.40),rgba(220,214,206,.72));
}
.visual-preview__product{
  position:absolute;
  right:10%;
  bottom:58px;
  width:min(62%,270px);
  filter:contrast(1.06) drop-shadow(0 16px 24px rgba(0,0,0,.12));
}
.visual-preview__badge{
  position:absolute;
  left:18px;
  bottom:18px;
  height:38px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#222;
  display:inline-flex;
  align-items:center;
  font-size:14px;
  font-weight:600;
}

.visual-features{
  display:grid;
  gap:12px;
}
.visual-feature-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.visual-feature-card__num{
  font-size:14px;
  font-weight:700;
  color:#7a7a7a;
  margin-bottom:10px;
}
.visual-feature-card h2{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.6px;
  color:#171717;
}
.visual-feature-card p{
  margin:0;
  font-size:15px;
  line-height:1.5;
  color:#555;
}

@media (min-width:861px){
  .visual-page{
    padding:28px 0 60px;
  }
  .visual-hero{
    grid-template-columns:1fr 1fr;
    gap:22px;
    align-items:stretch;
    margin-bottom:24px;
  }
  .visual-hero__content,
  .visual-preview{
    border-radius:32px;
  }
  .visual-hero__content{
    padding:30px 26px;
  }
  .visual-hero__content h1{
    font-size:56px;
    letter-spacing:-1.6px;
  }
  .visual-hero__content p{
    font-size:18px;
    max-width:680px;
  }
  .visual-hero__actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .visual-preview{
    min-height:460px;
  }
  .visual-preview__window{
    inset:28px 24px 108px 24px;
    border-radius:28px;
  }
  .visual-preview__room{
    left:14%;
    right:14%;
    bottom:40px;
    height:72px;
  }
  .visual-preview__product{
    right:10%;
    bottom:74px;
    width:min(60%,340px);
  }
  .visual-preview__badge{
    left:24px;
    bottom:24px;
    height:42px;
    padding:0 18px;
    font-size:15px;
  }
  .visual-features{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
  }
  .visual-feature-card{
    padding:24px;
    border-radius:28px;
  }
  .visual-feature-card h2{
    font-size:32px;
    letter-spacing:-1px;
  }
  .visual-feature-card p{
    font-size:17px;
  }
}

.line-page{
  padding:20px 0 40px;
  background:#f5f3f0;
}
.line-hero{
  display:grid;
  gap:16px;
  margin-bottom:18px;
}
.line-hero__content{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  padding:22px 18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.line-hero__eyebrow,
.line-section-eyebrow{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7a7a7a;
  margin-bottom:8px;
}
.line-hero__content h1,
.line-section-head h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.04;
  letter-spacing:-1px;
  color:#171717;
}
.line-hero__content p{
  margin:0 0 16px;
  font-size:15px;
  line-height:1.55;
  color:#555;
}
.line-hero__actions{
  display:grid;
  gap:10px;
}

.line-hero__visual{
  position:relative;
  min-height:320px;
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(180deg,rgba(245,243,240,.72) 0%,rgba(245,243,240,.86) 100%),
    linear-gradient(90deg,rgba(255,255,255,.22) 0 26%,rgba(255,255,255,.04) 26% 68%,rgba(255,255,255,.18) 68% 100%),
    linear-gradient(180deg,#ebe6e0 0%,#f5f3f0 48%,#ebe6e0 100%);
  border:1px solid rgba(0,0,0,.05);
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.line-hero__window{
  position:absolute;
  inset:22px 18px 82px 18px;
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.34),rgba(255,255,255,.10)),
    linear-gradient(90deg,rgba(255,255,255,.14) 0 30%,rgba(255,255,255,.04) 30% 60%,rgba(255,255,255,.14) 60% 100%);
}
.line-hero__product{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:min(74%,760px);max-width:none;max-height:78%;object-fit:contain;z-index:2;filter:drop-shadow(0 26px 44px rgba(20,20,20,.14));}
.line-hero__badge{
  position:absolute;
  left:18px;
  bottom:18px;
  height:38px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#222;
  display:inline-flex;
  align-items:center;
  font-size:14px;
  font-weight:600;
}

.line-section-head{
  margin-bottom:16px;
}
.line-benefits,
.line-decor,
.line-cta{
  margin-top:18px;
}
.line-benefits__grid,
.line-decor__grid{
  display:grid;
  gap:12px;
}
.line-benefit-card,
.line-decor-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  padding:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.line-benefit-card__num{
  font-size:14px;
  font-weight:700;
  color:#7a7a7a;
  margin-bottom:10px;
}
.line-benefit-card h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.6px;
  color:#171717;
}
.line-benefit-card p{
  margin:0;
  font-size:15px;
  line-height:1.5;
  color:#555;
}
.line-decor-card{
  padding:0;
  overflow:hidden;
}
.line-decor-card img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
}
.line-decor-card__body{
  padding:16px;
}
.line-decor-card__title{
  font-size:22px;
  line-height:1.1;
  font-weight:700;
  color:#171717;
  margin-bottom:6px;
}
.line-decor-card__meta{
  font-size:14px;
  line-height:1.45;
  color:#555;
}

@media (min-width:861px){
  .line-page{
    padding:28px 0 60px;
  }
  .line-hero{
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-bottom:24px;
    align-items:stretch;
  }
  .line-hero__content,
  .line-hero__visual{
    border-radius:32px;
  }
  .line-hero__content{
    padding:30px 26px;
  }
  .line-hero__content h1,
  .line-section-head h2{
    font-size:56px;
    letter-spacing:-1.6px;
  }
  .line-hero__content p{
    font-size:18px;
  }
  .line-hero__actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .line-hero__visual{
    min-height:460px;
  }
  .line-hero__window{
    inset:28px 24px 108px 24px;
    border-radius:28px;
  }
  .line-hero__product{
    right:10%;
    bottom:74px;
    width:min(60%,340px);
  }
  .line-hero__badge{
    left:24px;
    bottom:24px;
    height:42px;
    padding:0 18px;
    font-size:15px;
  }
  .line-benefits__grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
  }
  .line-decor__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
  }
  .line-benefit-card,
  .line-decor-card{
    border-radius:28px;
  }
  .line-benefit-card{
    padding:24px;
  }
  .line-benefit-card h3{
    font-size:32px;
    letter-spacing:-1px;
  }
  .line-benefit-card p{
    font-size:17px;
  }
  .line-decor-card img{
    height:320px;
  }
  .line-decor-card__body{
    padding:20px;
  }
  .line-decor-card__title{
    font-size:30px;
    letter-spacing:-.8px;
  }
  .line-decor-card__meta{
    font-size:16px;
  }
}

.catalog-card{
  overflow:hidden;
  border-radius:24px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.05)!important;
  box-shadow:0 10px 28px rgba(0,0,0,.05)!important;
}

.catalog-card img{
  display:block!important;
  width:100%!important;
  height:160px!important;
  object-fit:cover!important;
  background:#f3f1ee!important;
}

.catalog-card__body{
  padding:14px 14px 16px!important;
}

.catalog-card__body h3{
  margin:0 0 6px!important;
  font-size:18px!important;
  line-height:1.1!important;
  letter-spacing:-.2px!important;
}

.catalog-card__meta{
  margin-bottom:12px!important;
  font-size:13px!important;
  color:#7a7a7a!important;
}

.catalog-card__actions{
  display:grid!important;
  gap:8px!important;
}

.mini-btn{
  min-height:38px!important;
  padding:0 14px!important;
  border-radius:999px!important;
  font-size:13px!important;
}

.mini-btn--ghost{
  background:#f3f3f3!important;
  color:#222!important;
  border:none!important;
}

@media (min-width:861px){
  .catalog-card img{
    height:210px!important;
  }
  .catalog-card__body{
    padding:16px 16px 18px!important;
  }
  .catalog-card__body h3{
    font-size:22px!important;
  }
  .catalog-card__meta{
    font-size:14px!important;
  }
}

@media (max-width:860px){
  .catalog-sidebar{
    position:fixed!important;
    left:12px;
    right:12px;
    top:88px;
    z-index:1200;
    background:#f8f6f3!important;
    border:1px solid rgba(0,0,0,.06)!important;
    border-radius:24px!important;
    padding:16px!important;
    box-shadow:0 20px 40px rgba(0,0,0,.14)!important;
    display:none!important;
    max-height:calc(100vh - 120px);
    overflow:auto;
  }
  .catalog-sidebar.is-open{
    display:block!important;
  }
  body.catalog-filter-lock::before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.22);
    z-index:1190;
  }
}

@media (max-width:860px){
  .catalog-sort-panel{
    position:fixed!important;
    left:12px;
    right:12px;
    top:88px;
    z-index:1210;
    background:#f8f6f3!important;
    border:1px solid rgba(0,0,0,.06)!important;
    border-radius:24px!important;
    padding:16px!important;
    box-shadow:0 20px 40px rgba(0,0,0,.14)!important;
    display:none!important;
    max-height:calc(100vh - 120px);
    overflow:auto;
  }
  .catalog-sort-panel.is-open{
    display:block!important;
  }
}

@media (max-width:860px){
  .mini-btn{
    min-height:34px!important;
    font-size:12px!important;
    padding:0 10px!important;
    white-space:nowrap!important;
  }
}

.catalog-card{
  position:relative!important;
  overflow:hidden!important;
}

.catalog-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:190px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.16) 0%,rgba(255,255,255,.06) 100%),
    url("img/card-bg.png") center/cover no-repeat;
  z-index:0;
}

.catalog-card::after{
  content:"";
  position:absolute;
  left:12%;
  right:12%;
  top:138px;
  height:18px;
  border-radius:999px;
  background:radial-gradient(ellipse at center, rgba(0,0,0,.14) 0%, rgba(0,0,0,.06) 42%, rgba(0,0,0,0) 78%);
  filter:blur(6px);
  z-index:1;
  pointer-events:none;
}

.catalog-card img{
  position:relative!important;
  z-index:2!important;
  width:86%!important;
  height:150px!important;
  object-fit:contain!important;
  margin:18px auto 0!important;
  background:transparent!important;
  filter:contrast(1.04) drop-shadow(0 8px 16px rgba(0,0,0,.10))!important;
}

.catalog-card__body{
  position:relative!important;
  z-index:3!important;
  margin-top:8px!important;
  background:#fff!important;
}

@media (max-width:860px){
  .catalog-card::before{
    height:168px;
  }
  .catalog-card::after{
    top:124px;
    left:10%;
    right:10%;
  }
  .catalog-card img{
    width:88%!important;
    height:132px!important;
    margin-top:16px!important;
  }
}

@media (min-width:861px){
  .catalog-card::before{
    height:230px;
  }
  .catalog-card::after{
    top:170px;
    height:22px;
  }
  .catalog-card img{
    width:88%!important;
    height:185px!important;
    margin-top:22px!important;
  }
}

.catalog-mobile-filters .pill-btn{
  background:#f3f1ee!important;
  color:#222!important;
  border:1px solid rgba(0,0,0,.08)!important;
}

.catalog-mobile-filters .pill-btn.is-active{
  background:#555!important;
  color:#fff!important;
  border-color:#555!important;
}

.catalog-line-tabs{
  display:flex;
  gap:10px;
  overflow:auto;
  padding:0 0 10px;
  margin:6px 0 18px;
  -webkit-overflow-scrolling:touch;
}

.catalog-line-tabs::-webkit-scrollbar{
  display:none;
}

.catalog-line-tab{
  flex:0 0 auto;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:#f3f1ee;
  color:#222;
  font:inherit;
}

.catalog-line-tab.is-active{
  background:#555;
  color:#fff;
  border-color:#555;
}

.catalog-empty-state{
  padding:20px 18px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(0,0,0,.05);
  color:#666;
  margin-bottom:16px;
}


.catalog-line-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  overflow:visible;
  padding:0 0 10px;
  margin:6px 0 18px;
}

.catalog-line-tab{
  flex:1 1 calc(50% - 5px);
  min-height:44px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:#f3f1ee;
  color:#222;
  font:inherit;
  text-align:center;
}

@media (min-width:861px){
  .catalog-line-tabs{
    flex-wrap:nowrap;
    overflow:auto;
  }
  .catalog-line-tab{
    flex:0 0 auto;
  }
}

.catalog-switcher{
  margin:6px 0 18px;
}

.catalog-switcher__row{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.catalog-switcher__btn{
  flex:1 1 0;
  min-height:44px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:#f3f1ee;
  color:#222;
  font:inherit;
  text-align:center;
}

.catalog-switcher__btn.is-active{
  background:#555;
  color:#fff;
  border-color:#555;
}

@media (min-width:861px){
  .catalog-switcher{
    max-width:720px;
  }
}
.catalog-phone{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  font-size:14px;
  line-height:1;
  color:#222;
  text-decoration:none;
  margin-right:12px;
}
@media (max-width:860px){
  .catalog-phone{
    font-size:12px;
    max-width:145px;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

.catalog-topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.catalog-phone{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  font-size:14px;
  line-height:1;
  color:#222;
  text-decoration:none;
}

@media (max-width:860px){
  .catalog-phone{
    font-size:12px;
    max-width:140px;
    overflow:hidden;
    text-overflow:ellipsis;
  }
}

.site-header,
.catalog-header{
  position:sticky;
  top:0;
  z-index:1200;
  background:rgba(248,246,243,.82);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

body{
  scroll-padding-top:90px;
}
.header{
  position:sticky;
  top:0;
  z-index:1200;
  background:rgba(248,246,243,.82);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.header-cart{
  width:36px;
  height:36px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#f3f1ee;
  border:1px solid rgba(0,0,0,.08);
  color:#222;
  text-decoration:none;
  font-size:17px;
  line-height:1;
  flex:0 0 auto;
}

@media (max-width:860px){
  .header-cart{
    width:34px;
    height:34px;
    font-size:16px;
  }
}

.header-cart{
  padding:0;
}

.header-cart svg{
  width:18px;
  height:18px;
  display:block;
  stroke:currentColor;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.catalog-topbar-right{
  gap:8px;
}

@media (max-width:860px){
  .catalog-topbar-right{
    gap:7px;
  }
  .header-cart svg{
    width:17px;
    height:17px;
  }
}

.product-price-table-wrap{
  overflow:hidden;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
}

.product-price-table{
  width:100%;
  border-collapse:collapse;
}

.product-price-table th{
  text-align:left;
  padding:16px 18px;
  font-size:15px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.product-price-table td{
  padding:14px 18px;
  font-size:15px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.product-price-table tbody tr:last-child td{
  border-bottom:none;
}

.product-price-table td:last-child,
.product-price-table th:last-child{
  text-align:right;
  white-space:nowrap;
}

@media (max-width:860px){
  .product-price-table th{
    padding:13px 14px;
    font-size:14px;
  }

  .product-price-table td{
    padding:12px 14px;
    font-size:14px;
  }
}

.product-hero-visual{
  padding-bottom:18px;
}

.product-main-image{
  position:relative;
}

.product-thumbs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:14px 0 18px;
}

.product-thumb{
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  border-radius:18px;
  padding:8px;
}

.product-thumb.is-active{
  border-color:#555;
}

.product-thumb img{
  width:100%;
  height:88px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

.product-main-actions{
  margin:0 0 20px;
}

.modal{
  padding-top:96px;
  align-items:flex-start;
  overflow:auto;
}

.modal__dialog{
  margin:0 auto 24px;
  max-height:calc(100vh - 120px);
  overflow:auto;
}

@media (max-width:860px){
  .product-thumb img{
    height:74px;
  }

  .modal{
    padding-top:88px;
  }

  .modal__dialog{
    max-height:calc(100vh - 104px);
  }
}

.product-hero-visual{
  padding:0!important;
  overflow:hidden;
  min-height:320px;
  display:flex;
  align-items:stretch;
  justify-content:stretch;
}

.product-main-image{
  position:static!important;
  width:100%!important;
  height:100%!important;
  min-height:320px;
  object-fit:cover;
  display:block;
}

@media (max-width:860px){
  .product-hero-visual{
    min-height:260px;
  }

  .product-main-image{
    min-height:260px;
  }
}

.product-thumb{
  cursor:pointer;
  transition:.2s ease;
}

.product-thumb:active{
  transform:scale(.98);
}

.product-thumbs{
  position:relative;
  z-index:5;
}

.product-thumb{
  position:relative;
  z-index:6;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}

.product-thumb{
  cursor:default!important;
}

.product-thumb.is-active{
  border-color:rgba(0,0,0,.08)!important;
}

.product-price-table th:nth-child(2),
.product-price-table td:nth-child(2),
.product-price-table th:nth-child(3),
.product-price-table td:nth-child(3){
  text-align:right;
  white-space:nowrap;
}

@media (max-width:860px){
  .product-price-table th{
    font-size:13px;
    padding:12px 10px;
  }
  .product-price-table td{
    font-size:13px;
    padding:11px 10px;
  }
}
.product-back-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:8px 0 14px;
  color:#555;
  text-decoration:none;
  font-size:14px;
  line-height:1.2;
}
.product-back-link:hover{
  color:#222;
}

.header{
  background:rgba(248,246,243,.72)!important;
  backdrop-filter:blur(14px)!important;
  -webkit-backdrop-filter:blur(14px)!important;
}

.line-hero__content h1{
  font-size:56px;
  line-height:.96;
}

@media (max-width:860px){
  .line-hero__content h1{
    font-size:42px;
    line-height:.98;
  }
}

.product-page h1,
.line-page h1,
.line-hero h1,
.line-hero__content h1{
  font-size:34px!important;
  line-height:1.02!important;
  letter-spacing:-0.02em;
}

@media (min-width:861px){
  .product-page h1,
  .line-page h1,
  .line-hero h1,
  .line-hero__content h1{
    font-size:46px!important;
  }
}

.line-benefit-card__num{
  display:none!important;
}

.menu-drawer__group{
  padding:10px 0 14px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.menu-drawer__group:last-child{
  border-bottom:none;
}

.menu-drawer__group-title{
  font-size:12px;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#8a847d;
  margin:0 0 10px;
}

.menu-drawer__group a{
  display:block;
}

.menu-acc{
  margin:0 0 12px;
}

.menu-acc__toggle{
  width:100%;
  min-height:64px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  background:#fff;
  color:#222;
  font:inherit;
  text-align:left;
  padding:0 28px;
  position:relative;
}

.menu-acc__toggle::after{
  content:'+';
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  font-size:24px;
  line-height:1;
  color:#8a847d;
}

.menu-acc.is-open .menu-acc__toggle::after{
  content:'−';
}

.menu-acc__content{
  display:none;
  padding:10px 8px 0;
}

.menu-acc.is-open .menu-acc__content{
  display:block;
}

.menu-acc__content a{
  display:block;
  padding:14px 20px;
  border-radius:22px;
  color:#222;
  text-decoration:none;
}

.menu-drawer__nav > a,
.menu-acc__toggle{
  min-height:64px!important;
  height:64px!important;
  display:flex!important;
  align-items:center!important;
  padding:0 28px!important;
  box-sizing:border-box;
}

.menu-acc__toggle{
  justify-content:flex-start!important;
}

.menu-drawer__nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.menu-acc{
  margin:0;
}

.menu-acc__toggle,
.menu-drawer__nav > a{
  width:100%;
  min-height:56px!important;
  height:56px!important;
  border:1px solid rgba(0,0,0,.06);
  border-radius:24px;
  background:#fff;
  color:#222;
  font:inherit;
  text-align:left;
  display:flex!important;
  align-items:center!important;
  padding:0 22px!important;
  box-sizing:border-box;
  text-decoration:none;
}

.menu-acc__toggle{
  position:relative;
}

.menu-acc__toggle::after{
  content:'+';
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  line-height:1;
  color:#8a847d;
}

.menu-acc.is-open .menu-acc__toggle::after{
  content:'−';
}

.menu-acc__content{
  display:none;
  margin-top:8px;
  padding:0 8px;
}

.menu-acc.is-open .menu-acc__content{
  display:grid!important;
  gap:8px;
}

.menu-acc__content a{
  display:flex!important;
  align-items:center;
  min-height:48px;
  padding:0 18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  color:#222;
  text-decoration:none;
}


.product-gallery__radio{position:absolute;opacity:0;pointer-events:none;}
.product-gallery__stage{position:relative;min-height:420px;}
.product-gallery__image{position:absolute;inset:0;margin:auto;max-width:min(88%,460px);max-height:420px;object-fit:contain;opacity:0;pointer-events:none;transition:opacity .18s ease;}
#antracit-g1:checked ~ .line-hero__visual .product-gallery__image--1,
#antracit-g2:checked ~ .line-hero__visual .product-gallery__image--2,
#antracit-g3:checked ~ .line-hero__visual .product-gallery__image--3{opacity:1;}
#antracit-g1:checked ~ .product-thumbs label[for="antracit-g1"],
#antracit-g2:checked ~ .product-thumbs label[for="antracit-g2"],
#antracit-g3:checked ~ .product-thumbs label[for="antracit-g3"]{border-color:#545454;box-shadow:0 0 0 2px rgba(84,84,84,.12);}
.product-thumbs .product-thumb{cursor:pointer;}

.product-thumbs .product-thumb{appearance:none;-webkit-appearance:none;border:1px solid #e2ddd6;background:#fff;padding:8px;cursor:pointer;border-radius:18px;display:flex;align-items:center;justify-content:center;}
.product-thumbs .product-thumb.is-active{border-color:#545454;box-shadow:0 0 0 2px rgba(84,84,84,.10);}
.product-thumbs .product-thumb img{display:block;width:100%;height:110px;object-fit:cover;border-radius:12px;}
@media (max-width:767px){.product-thumbs .product-thumb img{height:78px;}}



/* product pages main gallery fix */
.product-hero-visual{
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.product-hero-visual .line-hero__product.product-main-image,
.product-hero-visual #productMainImage{
  position:static !important;
  left:auto !important;
  top:auto !important;
  right:auto !important;
  bottom:auto !important;
  transform:none !important;
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  max-height:420px !important;
  object-fit:contain !important;
  margin:0 auto !important;
  filter:none !important;
}
@media (max-width: 767px){
  .product-hero-visual{
    min-height:280px;
  }
  .product-hero-visual .line-hero__product.product-main-image,
  .product-hero-visual #productMainImage{
    max-height:280px !important;
  }
}




/* consent checkbox */
.form-consent{
  margin-top:14px;
  font-size:14px;
  line-height:1.5;
  color:#5f5a54;
}
.form-consent label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  cursor:pointer;
}
.form-consent input[type="checkbox"]{
  margin-top:3px;
  width:16px;
  height:16px;
  flex:0 0 16px;
}
.form-consent a{
  color:inherit;
  text-decoration:underline;
}




.catalog-card__price{
  margin-top:18px;
  margin-bottom:14px;
  font-size:14px;
  line-height:1.35;
  color:#5f5a54;
  font-weight:600;
}




.line-specs{margin:42px 0;}
.line-specs__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;}
.line-spec-card{background:#fff;border:1px solid #e7e1d9;border-radius:22px;padding:18px;}
.line-spec-card__label{font-size:13px;line-height:1.35;color:#7a746d;margin-bottom:8px;}
.line-spec-card__value{font-size:16px;line-height:1.4;color:#2f2f2f;font-weight:600;}
@media (max-width: 991px){.line-specs__grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width: 767px){
  .line-specs{margin:34px 0;}
  .line-specs__grid{grid-template-columns:1fr;gap:10px;}
  .line-spec-card{border-radius:18px;padding:16px;}
}



.line-advantage-list{margin:34px 0 42px;}
.line-advantage-list__items{display:grid;gap:14px;}
.line-advantage-item{display:grid;grid-template-columns:72px 1fr;gap:16px;align-items:start;background:#fff;border:1px solid #e7e1d9;border-radius:24px;padding:18px 18px 18px 16px;}
.line-advantage-item__icon{width:56px;height:56px;border-radius:18px;background:#f3efe9;border:1px solid #e3dbd0;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;color:#545454;}
.line-advantage-item__content h3{margin:0 0 8px;font-size:24px;line-height:1.08;letter-spacing:-0.02em;}
.line-advantage-item__content p{margin:0;font-size:16px;line-height:1.5;color:#5f5a54;}
@media (max-width:767px){
  .line-advantage-list{margin:28px 0 34px;}
  .line-advantage-list .line-section-head{margin-bottom:14px;}
  .line-advantage-list .line-section-head h2{font-size:40px;line-height:.98;letter-spacing:-0.03em;margin:0;}
  .line-advantage-item{grid-template-columns:54px 1fr;gap:12px;border-radius:20px;padding:16px 14px;}
  .line-advantage-item__icon{width:42px;height:42px;border-radius:14px;font-size:15px;}
  .line-advantage-item__content h3{font-size:18px;line-height:1.14;margin:0 0 6px;}
  .line-advantage-item__content p{font-size:14px;line-height:1.45;}
}


.line-techspecs{margin:34px 0 42px;}
.line-techspecs__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;}
.line-techspec{background:#fff;border:1px solid #e7e1d9;border-radius:22px;padding:18px;}
.line-techspec--wide{grid-column:1 / -1;}
.line-techspec__label{font-size:13px;line-height:1.35;color:#7a746d;margin-bottom:8px;}
.line-techspec__value{font-size:18px;line-height:1.35;color:#2f2f2f;font-weight:700;}
@media (max-width:767px){
  .line-techspecs{margin:28px 0 34px;}
  .line-techspecs .line-section-head{margin-bottom:14px;}
  .line-techspecs .line-section-head h2{font-size:40px;line-height:.98;letter-spacing:-0.03em;margin:0;}
  .line-techspecs__grid{grid-template-columns:1fr;gap:10px;}
  .line-techspec{border-radius:18px;padding:16px;}
  .line-techspec__value{font-size:16px;}
}


.line-certs{margin:28px 0 38px;}
.line-certs .line-section-head{margin-bottom:14px;}
.line-certs .line-section-head h2{
  font-size:44px;
  line-height:.98;
  letter-spacing:-0.03em;
  margin:0;
}
.line-certs__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.line-cert-card{
  display:block;
  background:#fff;
  border:1px solid #e7e1d9;
  border-radius:20px;
  padding:10px;
  text-decoration:none;
  color:#2f2f2f;
}
.line-cert-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:top center;
  border-radius:14px;
  display:block;
  background:#f6f3ee;
}
.line-cert-card span{
  display:block;
  margin-top:8px;
  font-size:14px;
  line-height:1.3;
  font-weight:600;
}
.line-certs__actions{margin-top:14px;}
@media (max-width:767px){
  .line-certs{margin:24px 0 30px;}
  .line-certs .line-section-head h2{
    font-size:34px;
    line-height:1;
    margin:0;
  }
  .line-certs__grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }
  .line-cert-card{
    border-radius:16px;
    padding:8px;
  }
  .line-cert-card img{
    height:150px;
    border-radius:12px;
  }
  .line-cert-card span{
    font-size:13px;
    margin-top:6px;
  }
}


.line-certs{margin:0 0 42px;}
.line-certs__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.line-certs__grid--two{grid-template-columns:repeat(2,1fr);}
.line-cert-card{display:block;background:#fff;border:1px solid #e7e1d9;border-radius:20px;padding:10px;text-decoration:none;color:#2f2f2f;}
.line-cert-card img{width:100%;height:220px;object-fit:cover;object-position:top center;border-radius:14px;display:block;background:#f6f3ee;}
.line-cert-card span{display:block;margin-top:8px;font-size:14px;line-height:1.3;font-weight:600;}
@media (max-width:767px){
  .line-certs{margin:0 0 34px;}
  .line-certs .line-section-head{margin-bottom:14px;}
  .line-certs .line-section-head h2{font-size:34px;line-height:1;margin:0;}
  .line-certs__grid,.line-certs__grid--two{grid-template-columns:1fr 1fr;gap:10px;}
  .line-cert-card{border-radius:16px;padding:8px;}
  .line-cert-card img{height:150px;border-radius:12px;}
  .line-cert-card span{font-size:13px;margin-top:6px;}
}



.line-certs .line-cert-card{
  display:block;
  background:#fff;
  border:1px solid #e7e1d9;
  border-radius:20px;
  padding:10px;
  text-decoration:none;
  color:#2f2f2f;
}
.line-certs .line-cert-card img{
  width:100%;
  height:auto !important;
  max-height:none !important;
  aspect-ratio:auto !important;
  object-fit:contain !important;
  object-position:center !important;
  display:block;
  border-radius:12px;
  background:#fff;
}
.line-certs .line-cert-card span{
  display:none !important;
}
@media (max-width:767px){
  .line-certs .line-cert-card img{
    height:auto !important;
    max-height:none !important;
  }
}



.home-choose-crystallit{margin:34px 0 36px;}
.home-choose-crystallit .line-section-head{margin-bottom:18px;}
.home-choose-crystallit__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.home-choose-crystallit__card{
  background:#f6f4f1;
  border:1px solid #e7e1d9;
  border-radius:28px;
  padding:22px 24px;
}
.home-choose-crystallit__card h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-0.02em;
  color:#171717;
}
.home-choose-crystallit__card p{
  margin:0;
  font-size:18px;
  line-height:1.55;
  color:#5f5a54;
}
@media (max-width:767px){
  .home-choose-crystallit{margin:28px 0 30px;}
  .home-choose-crystallit__grid{grid-template-columns:1fr;gap:12px;}
  .home-choose-crystallit__card{
    border-radius:24px;
    padding:20px;
  }
  .home-choose-crystallit__card h3{
    font-size:21px;
    margin-bottom:6px;
  }
  .home-choose-crystallit__card p{
    font-size:17px;
    line-height:1.5;
  }
}


.home-icon-benefits{margin:34px 0 36px;}
.home-icon-benefits__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;}
.home-icon-benefits__card{background:#f6f4f1;border:1px solid #e7e1d9;border-radius:28px;padding:22px 20px 20px;}
.home-icon-benefits__icon{width:58px;height:58px;border-radius:50%;background:#efebe6;color:#4f4c49;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.home-icon-benefits__icon svg{width:28px;height:28px;}
.home-icon-benefits__card h3{margin:0 0 8px;font-size:24px;line-height:1.08;letter-spacing:-0.02em;color:#171717;}
.home-icon-benefits__card p{margin:0;font-size:17px;line-height:1.5;color:#5f5a54;}
@media (max-width:767px){
  .home-icon-benefits{margin:28px 0 30px;}
  .home-icon-benefits__grid{grid-template-columns:repeat(2,1fr);gap:10px;}
  .home-icon-benefits__card{border-radius:24px;padding:18px 16px 16px;min-height:186px;}
  .home-icon-benefits__icon{width:50px;height:50px;margin-bottom:14px;}
  .home-icon-benefits__icon svg{width:24px;height:24px;}
  .home-icon-benefits__card h3{font-size:18px;margin-bottom:6px;line-height:1.1;}
  .home-icon-benefits__card p{font-size:15px;line-height:1.42;}
}



/* softer text on home */
.home-page h1,
.home-page h2,
.home-page h3,
.home-page .section-title,
.home-page .line-section-head h2,
.home-page .cta-card h2,
.home-page .catalog-card h3,
.home-page .home-icon-benefits__card h3{
  color:#2b2b2b !important;
}
.home-page p,
.home-page li,
.home-page .catalog-card p,
.home-page .cta-card p,
.home-page .home-icon-benefits__card p,
.home-page .line-techspecs p,
.home-page .line-certs p{
  color:#5f5a54 !important;
}
.home-page .line-section-eyebrow,
.home-page .cta-card__eyebrow{
  color:#8a837b !important;
}


/* softer text on index blocks */
.home-icon-benefits .line-section-head h2,
.home-icon-benefits__card h3,
.cta-card h2,
.line-certs .line-section-head h2,
.index-advantages h2,
.advantages h2,
.colors-section h2,
.catalog-section h2{
  color:#2b2b2b !important;
}

.home-icon-benefits__card p,
.cta-card p,
.line-certs p,
.index-advantages p,
.advantages p,
.colors-section p,
.catalog-section p{
  color:#5f5a54 !important;
}

.line-section-eyebrow,
.cta-card__eyebrow{
  color:#8a837b !important;
}

/* unify section headings on home */
.home-page .line-section-head h2,
.home-page .home-icon-benefits .line-section-head h2,
.home-page .line-certs .line-section-head h2,
.home-page .advantages h2,
.home-page .index-advantages h2,
.home-page .colors-section h2,
.home-page .catalog-section h2{
  font-size:56px !important;
  line-height:0.98 !important;
  letter-spacing:-0.03em !important;
  font-weight:700 !important;
  color:#2b2b2b !important;
}

@media (max-width:767px){
  .home-page .line-section-head h2,
  .home-page .home-icon-benefits .line-section-head h2,
  .home-page .line-certs .line-section-head h2,
  .home-page .advantages h2,
  .home-page .index-advantages h2,
  .home-page .colors-section h2,
  .home-page .catalog-section h2{
    font-size:40px !important;
    line-height:0.98 !important;
    letter-spacing:-0.03em !important;
    font-weight:700 !important;
  }
}

/* home section headings smaller override */
.home-page .line-section-head h2,
.home-page .home-icon-benefits .line-section-head h2,
.home-page .line-certs .line-section-head h2,
.home-page .advantages h2,
.home-page .index-advantages h2,
.home-page .colors-section h2,
.home-page .catalog-section h2{
  font-size:44px !important;
  line-height:1.02 !important;
  letter-spacing:-0.025em !important;
  font-weight:700 !important;
}

@media (max-width:767px){
  .home-page .line-section-head h2,
  .home-page .home-icon-benefits .line-section-head h2,
  .home-page .line-certs .line-section-head h2,
  .home-page .advantages h2,
  .home-page .index-advantages h2,
  .home-page .colors-section h2,
  .home-page .catalog-section h2{
    font-size:30px !important;
    line-height:1.04 !important;
    letter-spacing:-0.02em !important;
    font-weight:700 !important;
  }
}

/* FINAL HOME TYPOGRAPHY FIX */
.home-page .benefits h2,
.home-page .decor h2,
.home-page .home-icon-benefits .line-section-head h2,
.home-page .line-certs .line-section-head h2,
.home-page .cta-card h2{
  font-size:28px !important;
  line-height:1.04 !important;
  letter-spacing:-0.02em !important;
  font-weight:700 !important;
  color:#2b2b2b !important;
  margin:0 !important;
}

.home-page .benefit-card h3,
.home-page .home-icon-benefits__card h3{
  color:#2b2b2b !important;
}

.home-page .benefit-card p,
.home-page .decor-card__meta,
.home-page .home-icon-benefits__card p,
.home-page .cta-card p{
  color:#5f5a54 !important;
}

.home-page .benefits__eyebrow,
.home-page .decor__eyebrow,
.home-page .line-section-eyebrow,
.home-page .cta-card__eyebrow{
  color:#8a837b !important;
}

@media (min-width:861px){
  .home-page .benefits h2,
  .home-page .decor h2,
  .home-page .home-icon-benefits .line-section-head h2,
  .home-page .line-certs .line-section-head h2,
  .home-page .cta-card h2{
    font-size:44px !important;
    line-height:1.02 !important;
    letter-spacing:-0.03em !important;
  }
}


/* icons block white cards */
.home-icon-benefits__card{
  background:#ffffff !important;
}
.home-icon-benefits__icon{
  background:#f1ede8 !important;
  color:#4b4742 !important;
}

/* desktop hero polish */
@media (min-width: 861px){
  .home-page .hero-mobile{
    padding-bottom: 40px !important;
  }

  .home-page .hero-mobile__image{
    min-height: 760px !important;
  }

  .home-page .hero-mobile__image img{
    object-position: 72% center !important;
  }

  .home-page .hero-mobile__overlay{
    background:
      linear-gradient(180deg,rgba(245,243,240,.10) 0%,rgba(245,243,240,.18) 28%,rgba(245,243,240,.34) 54%,rgba(245,243,240,.62) 78%,rgba(245,243,240,.88) 100%),
      linear-gradient(90deg,rgba(245,243,240,.82) 0%,rgba(245,243,240,.52) 34%,rgba(245,243,240,.18) 58%,rgba(245,243,240,.04) 100%) !important;
  }

  .home-page .hero-mobile__content{
    padding: 92px 48px 0 !important;
    max-width: 760px !important;
  }

  .home-page .hero-mobile__content h1{
    font-size: 78px !important;
    line-height: .96 !important;
    letter-spacing: -0.045em !important;
    font-weight: 600 !important;
    max-width: 700px !important;
    margin: 0 0 18px !important;
    color: #2b2b2b !important;
  }

  .home-page .hero-mobile__subtitle{
    font-size: 36px !important;
    line-height: 1.08 !important;
    color: #4f4a45 !important;
    max-width: 560px !important;
    margin-bottom: 42px !important;
  }

  .home-page .hero-mobile__actions{
    flex-direction: row !important;
    gap: 16px !important;
    max-width: 640px !important;
  }

  .home-page .hero-mobile__actions .btn{
    width: auto !important;
    min-width: 280px !important;
    height: 68px !important;
    padding: 0 26px 0 28px !important;
    font-size: 20px !important;
    border-width: 1.5px !important;
  }

  .home-page .hero-mobile__actions .btn span{
    font-size: 30px !important;
  }
}

/* desktop header polish */
@media (min-width: 861px){
  .home-page .header{
    background: rgba(245,243,240,.92) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .home-page .header__inner{
    min-height: 92px !important;
    padding: 0 6px !important;
  }

  .home-page .logo{
    font-size: 30px !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    color: #2b2b2b !important;
  }

  .home-page .catalog-topbar-right{
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
  }

  .home-page .catalog-phone{
    font-size: 16px !important;
    line-height: 1 !important;
    color: #5c564f !important;
    font-weight: 500 !important;
  }

  .home-page .header-cart{
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(60,56,51,.10) !important;
    background: rgba(255,255,255,.55) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .home-page .header-cart svg{
    width: 18px !important;
    height: 18px !important;
    stroke: #4f4a45 !important;
  }

  .home-page .burger{
    width: 42px !important;
    height: 42px !important;
    gap: 5px !important;
  }

  .home-page .burger span{
    width: 22px !important;
    height: 2px !important;
    background: #4f4a45 !important;
  }
}

/* bigger desktop header controls */
@media (min-width: 861px){
  .home-page .catalog-topbar-right{
    gap: 22px !important;
  }

  .home-page .catalog-phone{
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #4f4a45 !important;
  }

  .home-page .header-cart{
    width: 48px !important;
    height: 48px !important;
  }

  .home-page .header-cart svg{
    width: 20px !important;
    height: 20px !important;
  }

  .home-page .burger{
    width: 48px !important;
    height: 48px !important;
    gap: 6px !important;
  }

  .home-page .burger span{
    width: 24px !important;
  }
}


.header-cart{position:relative;}
.cart-badge{
  position:absolute;
  right:-6px;
  top:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#4a4a4a;
  color:#fff;
  font-size:11px;
  font-weight:700;
  line-height:1;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,.12);
}
@media (min-width:861px){
  .cart-badge{
    min-width:22px;
    height:22px;
    font-size:12px;
    right:-7px;
    top:-7px;
  }
}


/* desktop benefits polish */
@media (min-width: 861px){
  .home-page .benefits{
    padding: 62px 0 78px !important;
  }

  .home-page .benefits__head{
    margin-bottom: 30px !important;
  }

  .home-page .benefits__grid{
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 22px !important;
  }

  .home-page .benefit-card{
    min-height: 290px !important;
    padding: 26px 24px 24px !important;
    border-radius: 30px !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.04) !important;
  }

  .home-page .benefit-card__icon{
    width: 42px !important;
    height: 42px !important;
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }

  .home-page .benefit-card h3{
    font-size: 30px !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 12px !important;
    color: #2b2b2b !important;
  }

  .home-page .benefit-card p{
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: #5f5a54 !important;
  }
}

/* desktop certs polish */
@media (min-width: 861px){
  .home-page .line-certs{
    margin: 10px 0 54px !important;
  }

  .home-page .line-certs .line-section-head{
    margin-bottom: 20px !important;
  }

  .home-page .line-certs__grid,
  .home-page .line-certs__grid--two{
    gap: 16px !important;
    align-items: start !important;
  }

  .home-page .line-cert-card{
    padding: 10px !important;
    border-radius: 24px !important;
  }

  .home-page .line-cert-card img{
    width: 100% !important;
    height: 420px !important;
    object-fit: contain !important;
    border-radius: 16px !important;
    background: #fff !important;
  }
}

/* desktop certs tighten */
@media (min-width: 861px){
  .home-page .line-certs{
    margin: 0 0 40px !important;
  }

  .home-page .line-certs .line-section-head{
    margin-bottom: 14px !important;
  }

  .home-page .line-certs .line-section-head h2{
    font-size: 36px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.025em !important;
  }

  .home-page .line-certs__grid,
  .home-page .line-certs__grid--two{
    gap: 14px !important;
  }

  .home-page .line-cert-card{
    padding: 8px !important;
    border-radius: 22px !important;
  }

  .home-page .line-cert-card img{
    height: 360px !important;
    border-radius: 14px !important;
  }
}

/* desktop cert cards narrower feel */
@media (min-width: 861px){
  .home-page .line-certs__grid,
  .home-page .line-certs__grid--two{
    grid-template-columns: repeat(2, minmax(0, 460px)) !important;
    justify-content: start !important;
    gap: 18px !important;
  }

  .home-page .line-cert-card{
    max-width: 460px !important;
  }
}

/* desktop icon benefits polish */
@media (min-width: 861px){
  .home-page .home-icon-benefits{
    margin: 26px 0 54px !important;
  }

  .home-page .home-icon-benefits .line-section-head{
    margin-bottom: 22px !important;
  }

  .home-page .home-icon-benefits .line-section-head h2{
    font-size: 40px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03em !important;
  }

  .home-page .home-icon-benefits__grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .home-page .home-icon-benefits__card{
    background: #ffffff !important;
    min-height: 210px !important;
    padding: 24px 24px 22px !important;
    border-radius: 28px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,.035) !important;
  }

  .home-page .home-icon-benefits__icon{
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 16px !important;
    background: #f3eee8 !important;
    color: #4e4943 !important;
  }

  .home-page .home-icon-benefits__icon svg{
    width: 26px !important;
    height: 26px !important;
  }

  .home-page .home-icon-benefits__card h3{
    font-size: 28px !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 10px !important;
    color: #2b2b2b !important;
  }

  .home-page .home-icon-benefits__card p{
    font-size: 17px !important;
    line-height: 1.55 !important;
    color: #5f5a54 !important;
    max-width: 420px !important;
  }
}

/* desktop icon block final polish */
@media (min-width: 861px){
  .home-page .home-icon-benefits{
    margin: 28px 0 56px !important;
  }

  .home-page .home-icon-benefits .line-section-head{
    margin-bottom: 24px !important;
  }

  .home-page .home-icon-benefits .line-section-head h2{
    font-size: 42px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03em !important;
    color: #2b2b2b !important;
  }

  .home-page .home-icon-benefits__grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .home-page .home-icon-benefits__card{
    background: #ffffff !important;
    border: 1px solid #e3ddd5 !important;
    min-height: 230px !important;
    padding: 26px 26px 24px !important;
    border-radius: 30px !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.045) !important;
  }

  .home-page .home-icon-benefits__icon{
    width: 60px !important;
    height: 60px !important;
    margin-bottom: 18px !important;
    background: #ede7df !important;
    color: #46413b !important;
  }

  .home-page .home-icon-benefits__icon svg{
    width: 28px !important;
    height: 28px !important;
  }

  .home-page .home-icon-benefits__card h3{
    font-size: 30px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 10px !important;
    color: #2b2b2b !important;
  }

  .home-page .home-icon-benefits__card p{
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #59544d !important;
    max-width: 320px !important;
  }
}

/* hide weak icon block on desktop only */
@media (min-width: 861px){
  .home-page .home-icon-benefits{
    display:none !important;
  }
}

/* desktop popular colors polish */
@media (min-width: 861px){
  .home-page .decor{
    padding: 18px 0 42px !important;
  }

  .home-page .decor__head{
    margin-bottom: 20px !important;
  }

  .home-page .decor__grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .home-page .decor-card{
    border-radius: 28px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.035) !important;
  }

  .home-page .decor-card img{
    width: 100% !important;
    height: 360px !important;
    object-fit: cover !important;
    display: block !important;
  }

  .home-page .decor-card__body{
    padding: 20px 22px 22px !important;
  }

  .home-page .decor-card__title{
    font-size: 22px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
    color: #2b2b2b !important;
    margin-bottom: 8px !important;
  }

  .home-page .decor-card__meta{
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #5f5a54 !important;
    max-width: 480px !important;
  }

  .home-page .decor__more{
    margin-top: 18px !important;
    width: auto !important;
    min-width: 280px !important;
    height: 62px !important;
    padding: 0 24px 0 26px !important;
    font-size: 18px !important;
    border-radius: 999px !important;
  }
}

/* desktop decor button width fix */
@media (min-width: 861px){
  .home-page .decor__more{
    display:inline-flex !important;
    width:auto !important;
    min-width:320px !important;
    max-width:none !important;
    justify-content:space-between !important;
    padding:0 24px 0 26px !important;
  }
}


.line-cert-card--desktop-only{display:none;}
@media (min-width:861px){
  .home-page .line-cert-card--desktop-only{display:block !important;}
  .home-page .line-certs__grid--two{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}


/* desktop CTA polish */
@media (min-width: 861px){
  .home-page .cta-block{
    margin: 6px 0 42px !important;
  }

  .home-page .cta-card{
    padding: 34px 36px !important;
    border-radius: 30px !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.04) !important;
  }

  .home-page .cta-card__eyebrow{
    margin-bottom: 10px !important;
  }

  .home-page .cta-card h2{
    max-width: 760px !important;
    font-size: 42px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 12px !important;
    color: #2b2b2b !important;
  }

  .home-page .cta-card p{
    max-width: 720px !important;
    font-size: 18px !important;
    line-height: 1.58 !important;
    color: #5f5a54 !important;
    margin: 0 0 22px !important;
  }

  .home-page .cta-card__actions{
    display: flex !important;
    justify-content: flex-start !important;
  }

  .home-page .cta-card__actions .btn{
    width: auto !important;
    min-width: 300px !important;
    height: 66px !important;
    padding: 0 26px 0 28px !important;
    font-size: 19px !important;
    border-radius: 999px !important;
  }

  .home-page .cta-card__actions .btn span{
    font-size: 30px !important;
  }
}


.header-calc-link{
  display:none;
}
@media (min-width:861px){
  .header-calc-link{
    display:inline-flex;
    align-items:center;
    height:44px;
    padding:0 18px;
    border-radius:999px;
    border:1px solid rgba(60,56,51,.10);
    background:rgba(255,255,255,.55);
    color:#4f4a45;
    font-size:16px;
    font-weight:600;
    line-height:1;
  }
}



/* catalog sidebar sort on desktop */
.catalog-mobile-only-btn{display:block;}
@media (min-width:861px){
  .catalog-sort-panel{
    display:block !important;
    position:static !important;
    inset:auto !important;
    background:transparent !important;
    border:none !important;
    padding:0 !important;
    margin:0 0 14px !important;
    box-shadow:none !important;
  }
  .catalog-sort-panel .filter-block{
    margin-bottom:14px;
  }
  .catalog-sort-panel .filter-block:last-child{
    margin-bottom:0;
  }
  .catalog-mobile-filters{
    display:none !important;
  }
  .catalog-mobile-only-btn,
  #closeCatalogSort{
    display:none !important;
  }
}



/* product page top cleanup */
@media (min-width:861px){
  .line-page{
    padding-top: 18px !important;
  }

  .line-hero{
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
    gap: 20px !important;
    align-items: stretch !important;
    margin-bottom: 18px !important;
  }

  .line-hero__content{
    padding: 30px 28px !important;
    border-radius: 30px !important;
    min-height: 430px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .line-hero__content h1{
    font-size: 54px !important;
    line-height: 0.98 !important;
    letter-spacing: -0.04em !important;
    margin: 0 0 14px !important;
  }

  .line-hero__content p{
    font-size: 18px !important;
    line-height: 1.55 !important;
    max-width: 520px !important;
    margin: 0 !important;
  }

  .product-hero-visual{
    min-height: 430px !important;
    border-radius: 30px !important;
    padding: 24px !important;
  }

  .product-hero-visual .line-hero__product.product-main-image,
  .product-hero-visual #productMainImage{
    max-width: 90% !important;
    max-height: 88% !important;
  }

  .gallery-thumbs{
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-top: 6px !important;
  }

  .gallery-thumb{
    border-radius: 20px !important;
    padding: 10px !important;
    min-height: 112px !important;
  }

  .gallery-thumb img{
    height: 88px !important;
    object-fit: contain !important;
  }
}

@media (max-width:860px){
  .gallery-thumbs{
    margin-top: 12px !important;
  }
}



@media (max-width:860px){
  .home-page .line-cert-card--desktop-only{
    display:none !important;
  }
  .home-page .line-certs__grid--two{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}


.product-cert-desktop-only{display:none;}
@media (min-width:861px){
  .line-page .product-cert-desktop-only{display:block !important;}
  .line-page .line-certs__grid.line-certs__grid--two{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:12px;}
  .line-page .line-certs .line-cert-card{padding:8px;border-radius:18px;}
  .line-page .line-certs .line-cert-card img{height:180px !important;border-radius:12px;object-fit:cover;object-position:top center;}
  .line-page .line-certs .line-cert-card span{margin-top:6px;font-size:13px;}
}
@media (max-width:860px){
  .line-page .product-cert-desktop-only{display:none !important;}
}


/* product page desktop polish */
@media (min-width:861px){
  .line-page{
    padding-top:22px !important;
  }

  .line-page .header__inner{
    min-height:88px !important;
    padding-left:6px !important;
    padding-right:6px !important;
  }

  .line-page .catalog-topbar-right{
    display:flex !important;
    align-items:center !important;
    gap:18px !important;
  }

  .line-page .catalog-phone{
    font-size:16px !important;
    line-height:1 !important;
    color:#5c564f !important;
    font-weight:500 !important;
  }

  .line-page .header-cart{
    width:42px !important;
    height:42px !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.62) !important;
    border:1px solid rgba(60,56,51,.10) !important;
  }

  .line-page .header-cart svg{
    width:18px !important;
    height:18px !important;
  }

  .line-page .burger{
    width:42px !important;
    height:42px !important;
    gap:5px !important;
  }

  .line-page .burger span{
    width:22px !important;
    height:2px !important;
  }

  .line-page .line-hero,
  .line-page .line-benefits,
  .line-page .line-prices,
  .line-page .line-techspecs,
  .line-page .line-accessories,
  .line-page .line-certs{
    max-width:1180px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .line-page .line-benefits,
  .line-page .line-prices,
  .line-page .line-techspecs,
  .line-page .line-accessories,
  .line-page .line-certs{
    border-radius:30px !important;
    padding:22px !important;
  }

  .line-page .line-section-head{
    margin-bottom:16px !important;
  }

  .line-page .line-section-head h2{
    font-size:34px !important;
    line-height:1.02 !important;
    letter-spacing:-0.03em !important;
    margin:0 !important;
  }

  .line-page .line-benefits__grid{
    gap:14px !important;
  }

  .line-page .line-benefit{
    border-radius:22px !important;
    padding:18px 18px 16px !important;
  }

  .line-page .line-benefit h3{
    font-size:24px !important;
    line-height:1.02 !important;
    margin:0 0 10px !important;
  }

  .line-page .line-benefit p{
    font-size:15px !important;
    line-height:1.52 !important;
  }

  .line-page .line-price-table-wrap,
  .line-page .product-price-table-wrap{
    border-radius:24px !important;
    overflow:hidden !important;
  }

  .line-page .line-price-table th,
  .line-page .line-price-table td,
  .line-page .product-price-table th,
  .line-page .product-price-table td{
    padding:14px 18px !important;
    font-size:15px !important;
  }

  .line-page .line-price-note,
  .line-page .line-price-footnote,
  .line-page .line-prices p{
    max-width:920px !important;
    font-size:15px !important;
    line-height:1.55 !important;
    color:#5f5a54 !important;
  }

  .line-page .line-prices .btn,
  .line-page .line-accessories .btn{
    min-height:56px !important;
    padding:0 28px !important;
    border-radius:999px !important;
    font-size:17px !important;
  }

  .line-page .line-accessories{
    padding-top:18px !important;
  }

  .line-page .line-accessories .line-section-head{
    margin-bottom:14px !important;
  }

  .line-page .line-accessories .product-price-table-wrap{
    max-width:100% !important;
  }

  .line-page .line-techspecs__grid{
    gap:12px !important;
  }

  .line-page .line-techspec{
    border-radius:20px !important;
    padding:16px 18px !important;
  }

  .line-page .line-techspec__label{
    font-size:12px !important;
    margin-bottom:6px !important;
  }

  .line-page .line-techspec__value{
    font-size:16px !important;
    line-height:1.35 !important;
  }

  .line-page .line-certs{
    margin-top:28px !important;
  }
}
\n\n/* product desktop: benefits full width + prices/accessories side by side */
@media (min-width:861px){
  .line-page .line-benefits{
    max-width:1180px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .line-page .line-benefits__grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:18px !important;
  }

  .line-page .line-desktop-duo{
    max-width:1180px !important;
    margin:18px auto 0 !important;
    display:grid !important;
    grid-template-columns:minmax(0,1.38fr) minmax(340px,.82fr) !important;
    gap:18px !important;
    align-items:start !important;
  }

  .line-page .line-desktop-duo > .line-cta{
    margin-top:0 !important;
  }

  .line-page .line-cta--prices .cta-card,
  .line-page .line-cta--accessories .cta-card{
    height:100% !important;
  }

  .line-page .line-cta--prices .cta-card{
    padding:22px !important;
  }

  .line-page .line-cta--accessories .cta-card{
    padding:22px !important;
  }

  .line-page .line-cta--prices .product-price-table th,
  .line-page .line-cta--prices .product-price-table td{
    padding:13px 16px !important;
    font-size:15px !important;
  }

  .line-page .line-cta--accessories .product-price-table th,
  .line-page .line-cta--accessories .product-price-table td{
    padding:12px 14px !important;
    font-size:14px !important;
  }

  .line-page .line-cta--accessories .cta-card h2{
    font-size:28px !important;
    line-height:1.04 !important;
    letter-spacing:-0.03em !important;
    margin-bottom:14px !important;
  }

  .line-page .line-cta--prices .cta-card h2{
    font-size:30px !important;
    line-height:1.04 !important;
    letter-spacing:-0.03em !important;
    margin-bottom:14px !important;
  }

  .line-page .line-cta--prices .cta-card__actions{
    margin-top:16px !important;
  }

  .line-page .line-cta--prices .btn{
    min-height:54px !important;
    padding:0 24px !important;
  }
}

@media (max-width:860px){
  .line-page .line-desktop-duo{
    display:block !important;
    max-width:none !important;
    margin:0 !important;
  }
}\n
/* force desktop duo layout for product page */
@media (min-width: 861px){
  .line-page .line-benefits{
    max-width: 1180px !important;
    margin: 20px auto 0 !important;
    padding: 22px !important;
  }

  .line-page .line-benefits__grid{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .line-page .line-desktop-duo{
    max-width: 1180px !important;
    margin: 18px auto 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.85fr) !important;
    gap: 18px !important;
    align-items: start !important;
  }

  .line-page .line-desktop-duo > section{
    margin: 0 !important;
    width: 100% !important;
  }

  .line-page .line-cta--prices,
  .line-page .line-cta--accessories{
    max-width: none !important;
  }

  .line-page .line-cta--prices .cta-card,
  .line-page .line-cta--accessories .cta-card{
    height: 100% !important;
    padding: 22px !important;
    border-radius: 30px !important;
  }

  .line-page .line-cta--prices h2{
    font-size: 30px !important;
    line-height: 1.04 !important;
    margin-bottom: 14px !important;
  }

  .line-page .line-cta--accessories h2{
    font-size: 28px !important;
    line-height: 1.04 !important;
    margin-bottom: 14px !important;
  }

  .line-page .line-cta--prices .product-price-table th,
  .line-page .line-cta--prices .product-price-table td{
    padding: 13px 16px !important;
    font-size: 15px !important;
  }

  .line-page .line-cta--accessories .product-price-table th,
  .line-page .line-cta--accessories .product-price-table td{
    padding: 12px 14px !important;
    font-size: 14px !important;
  }

  .line-page .line-cta--prices .cta-card__actions{
    margin-top: 16px !important;
  }

  .line-page .line-cta--prices .btn{
    min-height: 54px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 860px){
  .line-page .line-desktop-duo{
    display: block !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .line-page .line-desktop-duo > section{
    margin-top: 18px !important;
  }
}



/* hide all product thumbs */
.gallery-thumbs{display:none !important;}

/* consultant quick lead form polish */
.cw-quicklead{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:10px !important;
}
.cw-quicklead .cw-input{
  width:100% !important;
  display:block !important;
  box-sizing:border-box !important;
}
.cw-quicklead .cw-textarea{
  grid-column:1 / -1 !important;
  min-height:88px !important;
}
@media (min-width:768px){
  .cw-quicklead{
    grid-template-columns:1fr 1fr !important;
  }
  .cw-quicklead .cw-textarea{
    grid-column:1 / -1 !important;
  }
}

/* consultant form bigger fields */
.cw-quicklead .cw-input{
  font-size:16px !important;
  padding:14px 16px !important;
  border-radius:16px !important;
}
.cw-quicklead .cw-textarea{
  min-height:96px !important;
}


/* cookie banner */
.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:9999;
  display:none;
}
.cookie-banner.is-visible{
  display:block;
}
.cookie-banner__inner{
  max-width:760px;
  margin:0 auto;
  background:rgba(255,255,255,.96);
  border:1px solid #ddd5cb;
  border-radius:24px;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
  padding:16px 18px;
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.cookie-banner__text{
  flex:1;
  font-size:14px;
  line-height:1.5;
  color:#2f2f2f;
}
.cookie-banner__text a{
  color:inherit;
  text-decoration:underline;
}
.cookie-banner__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.cookie-banner__btn,
.cookie-banner__close{
  appearance:none;
  border:1px solid #4f4f4f;
  background:#4f4f4f;
  color:#fff;
  border-radius:999px;
  cursor:pointer;
  font:inherit;
}
.cookie-banner__btn{
  padding:10px 18px;
  min-height:44px;
}
.cookie-banner__close{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  line-height:1;
}
@media (max-width: 767px){
  .cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
  }
  .cookie-banner__inner{
    padding:14px;
    border-radius:20px;
    flex-direction:column;
    gap:12px;
  }
  .cookie-banner__actions{
    width:100%;
    justify-content:space-between;
  }
  .cookie-banner__btn{
    flex:1;
  }
}


@media (max-width: 860px){
  .home-page .header__inner{
    gap: 8px !important;
  }
  .home-page .catalog-topbar-right{
    gap: 12px !important;
  }
  .home-page .catalog-phone{
    max-width: 132px !important;
    font-size: 12px !important;
    margin-right: 4px !important;
    letter-spacing: 0 !important;
  }
  .home-page .header-cart{
    margin-right: 2px !important;
  }
  .home-page .burger{
    margin-left: 4px !important;
  }
}

@media (max-width: 860px){
  .home-page .cta-card h2{
    margin-bottom: 16px !important;
  }
  .home-page .cta-card h2 + p{
    margin-top: 0 !important;
  }
}

/* seo text block */
.seo-text-block{padding:24px 0 40px}
.seo-text-card{background:#f5f2ed;border:1px solid #e7e1d9;border-radius:32px;padding:32px}
.seo-text-card h2{margin:0 0 16px;font-size:44px;line-height:1.02;letter-spacing:-.03em;color:#1f1f1f}
.seo-text-card p{margin:0 0 14px;font-size:20px;line-height:1.6;color:#4f4a45;max-width:1100px}
.seo-text-card p:last-child{margin-bottom:0}
@media (max-width: 767px){
  .seo-text-block{padding:18px 0 28px}
  .seo-text-card{border-radius:24px;padding:24px 20px}
  .seo-text-card h2{font-size:28px;line-height:1.06;margin-bottom:12px}
  .seo-text-card p{font-size:16px;line-height:1.6;margin-bottom:12px}
}

/* blog */
.blog-hero{padding:32px 0 18px}
.blog-hero__card{background:#f5f2ed;border:1px solid #e7e1d9;border-radius:32px;padding:32px}
.blog-hero__card h1{margin:0 0 14px;font-size:46px;line-height:1.02;letter-spacing:-.03em;color:#1f1f1f}
.blog-hero__card p{margin:0;max-width:960px;font-size:19px;line-height:1.6;color:#4f4a45}
.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;padding:10px 0 40px}
.blog-card{background:#fff;border:1px solid #e7e1d9;border-radius:28px;overflow:hidden;display:flex;flex-direction:column}
.blog-card img{width:100%;height:220px;object-fit:cover;display:block}
.blog-card__body{padding:22px 22px 24px}
.blog-card__body h2{margin:0 0 12px;font-size:28px;line-height:1.08;color:#1f1f1f}
.blog-card__body p{margin:0 0 18px;font-size:17px;line-height:1.6;color:#4f4a45}
.blog-card__body .btn{width:auto}
.article-wrap{padding:24px 0 42px}
.article-card{background:#fff;border:1px solid #e7e1d9;border-radius:32px;padding:34px}
.article-card h1{margin:0 0 16px;font-size:46px;line-height:1.02;letter-spacing:-.03em;color:#1f1f1f}
.article-card p{margin:0 0 16px;font-size:19px;line-height:1.7;color:#3f3a35;max-width:980px}
.article-card p:last-child{margin-bottom:0}
.article-actions{display:flex;gap:14px;flex-wrap:wrap;padding-top:10px}
@media (max-width: 860px){
  .blog-hero{padding:18px 0 10px}
  .blog-hero__card{border-radius:24px;padding:22px 18px}
  .blog-hero__card h1{font-size:30px;line-height:1.06;margin-bottom:10px}
  .blog-hero__card p{font-size:16px}
  .blog-grid{grid-template-columns:1fr;gap:16px;padding:8px 0 28px}
  .blog-card{border-radius:22px}
  .blog-card img{height:190px}
  .blog-card__body{padding:18px}
  .blog-card__body h2{font-size:24px}
  .blog-card__body p{font-size:16px}
  .article-wrap{padding:18px 0 28px}
  .article-card{border-radius:24px;padding:22px 18px}
  .article-card h1{font-size:30px;line-height:1.06}
  .article-card p{font-size:16px;line-height:1.7}
  .article-actions{flex-direction:column}
  .article-actions .btn{width:100%}
}

/* montazh */
.anchor-nav{position:sticky;top:76px;z-index:20;background:rgba(245,242,237,.92);backdrop-filter:blur(8px);border-bottom:1px solid #e7e1d9}
.anchor-nav__inner{display:flex;gap:10px;overflow:auto;padding:12px 0}
.anchor-nav__inner a{white-space:nowrap;text-decoration:none;border:1px solid #d7d0c7;border-radius:999px;padding:10px 16px;color:#2b2b2b;background:#fff}
.anchor-nav__inner a:hover{background:#f0ece6}
.montazh-hero{padding:28px 0 18px}
.montazh-hero__card{background:linear-gradient(135deg,#3b6f61,#5c9a88);color:#fff;border-radius:36px;padding:34px}
.montazh-hero__card h1{margin:0 0 14px;font-size:50px;line-height:1.02;letter-spacing:-.03em}
.montazh-hero__card p{margin:0;max-width:920px;font-size:20px;line-height:1.65;color:rgba(255,255,255,.92)}
.montazh-hero__actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px}
.montazh-hero__actions .btn--light{background:#fff;color:#1f1f1f}
.montazh-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;padding:16px 0 24px}
.montazh-mini{background:#fff;border:1px solid #e7e1d9;border-radius:28px;padding:24px}
.montazh-mini__num{font-size:14px;letter-spacing:.08em;text-transform:uppercase;color:#8a837b;margin-bottom:10px}
.montazh-mini h3{margin:0 0 10px;font-size:28px;line-height:1.08;color:#1f1f1f}
.montazh-mini p{margin:0;font-size:17px;line-height:1.6;color:#4f4a45}
.montazh-section{padding:10px 0 12px}
.montazh-card{background:#fff;border:1px solid #e7e1d9;border-radius:32px;padding:32px}
.montazh-card h2{margin:0 0 18px;font-size:42px;line-height:1.04;letter-spacing:-.03em;color:#1f1f1f}
.montazh-card h3{margin:22px 0 10px;font-size:28px;line-height:1.08;color:#1f1f1f}
.montazh-card p{margin:0 0 16px;font-size:19px;line-height:1.7;color:#3f3a35;max-width:980px}
.montazh-card ul{margin:0;padding-left:22px}
.montazh-card li{margin:0 0 12px;font-size:19px;line-height:1.7;color:#3f3a35}
.montazh-steps{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:10px}
.montazh-step{background:#f8f5f1;border:1px solid #ece4db;border-radius:24px;padding:22px}
.montazh-step b{display:block;font-size:24px;line-height:1.1;color:#1f1f1f;margin-bottom:10px}
.montazh-price{overflow:auto;margin-top:14px}
.montazh-price table{width:100%;border-collapse:separate;border-spacing:0;min-width:640px;background:#fff;border:1px solid #e7e1d9;border-radius:24px;overflow:hidden}
.montazh-price th,.montazh-price td{padding:16px 18px;border-bottom:1px solid #ece4db;text-align:left;font-size:18px}
.montazh-price tr:last-child td{border-bottom:0}
.montazh-price th{background:#c8aea4;color:#fff;font-weight:600}
.montazh-faq{display:grid;grid-template-columns:1fr;gap:14px}
.montazh-faq details{background:#fff;border:1px solid #e7e1d9;border-radius:22px;padding:18px 20px}
.montazh-faq summary{cursor:pointer;font-size:22px;line-height:1.25;font-weight:600;color:#1f1f1f;list-style:none}
.montazh-faq summary::-webkit-details-marker{display:none}
.montazh-faq p{margin:12px 0 0;font-size:18px;line-height:1.65;color:#4f4a45}
.montazh-cta{padding:16px 0 40px}
.montazh-cta__card{background:#f5f2ed;border:1px solid #e7e1d9;border-radius:32px;padding:30px;display:flex;justify-content:space-between;align-items:center;gap:20px}
.montazh-cta__card h2{margin:0 0 10px;font-size:40px;line-height:1.04;letter-spacing:-.03em;color:#1f1f1f}
.montazh-cta__card p{margin:0;max-width:760px;font-size:19px;line-height:1.65;color:#4f4a45}
@media (max-width: 860px){
  .anchor-nav{top:68px}
  .anchor-nav__inner{padding:10px 0}
  .anchor-nav__inner a{padding:9px 14px;font-size:15px}
  .montazh-hero{padding:18px 0 10px}
  .montazh-hero__card{border-radius:24px;padding:24px 20px}
  .montazh-hero__card h1{font-size:34px;line-height:1.05}
  .montazh-hero__card p{font-size:16px;line-height:1.65}
  .montazh-grid{grid-template-columns:1fr;gap:14px;padding:12px 0 18px}
  .montazh-mini{border-radius:22px;padding:18px}
  .montazh-mini h3{font-size:24px}
  .montazh-mini p{font-size:16px}
  .montazh-card{border-radius:24px;padding:22px 18px}
  .montazh-card h2{font-size:30px;line-height:1.06;margin-bottom:14px}
  .montazh-card h3{font-size:22px}
  .montazh-card p,.montazh-card li{font-size:16px;line-height:1.7}
  .montazh-steps{grid-template-columns:1fr;gap:14px}
  .montazh-step{border-radius:18px;padding:18px}
  .montazh-step b{font-size:20px}
  .montazh-price th,.montazh-price td{font-size:16px;padding:14px}
  .montazh-faq summary{font-size:18px}
  .montazh-faq p{font-size:16px}
  .montazh-cta{padding:14px 0 28px}
  .montazh-cta__card{border-radius:24px;padding:22px 18px;flex-direction:column;align-items:flex-start}
  .montazh-cta__card h2{font-size:28px;line-height:1.06}
  .montazh-cta__card p{font-size:16px}
  .montazh-cta__card .btn{width:100%}
}

/* montazh mobile fixes */
.montazh-price-cards{display:none}
@media (max-width: 860px){
  body.montazh-page .catalog-phone{display:none !important;}
  body.montazh-page .header__inner{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
  }
  body.montazh-page .logo{
    min-width:0 !important;
    flex:1 1 auto !important;
    font-size:26px !important;
    line-height:1 !important;
  }
  body.montazh-page .catalog-topbar-right{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    flex:0 0 auto !important;
  }
  body.montazh-page .header-cart{
    width:38px !important;
    height:38px !important;
    min-width:38px !important;
    min-height:38px !important;
    flex:0 0 38px !important;
  }
  body.montazh-page .catalog-topbar-right .btn{
    height:44px !important;
    padding:0 16px !important;
    font-size:15px !important;
    white-space:nowrap !important;
  }

  .montazh-price table{display:none}
  .montazh-price-cards{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    margin-top:14px;
  }
  .montazh-price-card{
    background:#fff;
    border:1px solid #e7e1d9;
    border-radius:18px;
    padding:16px 16px 14px;
  }
  .montazh-price-card__w{
    font-size:14px;
    color:#8a837b;
    margin-bottom:8px;
  }
  .montazh-price-card__p{
    font-size:24px;
    line-height:1.1;
    color:#1f1f1f;
    font-weight:700;
  }
}
