

:root {
  --blue-main:#0055A5;
  --green-main:#6C994A;

  --blue-dark:#00335f;
  --green-dark:#4b7a32;

  --grad-main:linear-gradient(135deg,#00335f,#0055A5,#6C994A);
  --grad-btn:linear-gradient(135deg,#0055A5,#6C994A);
  --grad-btn-hover:linear-gradient(135deg,#6C994A,#0055A5);

  --radius-lg:32px;
  --radius-md:20px;
}
html{
  scroll-behavior: smooth;
}
body{
  min-width: 320px !important;
  font-family: "Regular";

}

@font-face {
	font-family: "Light";
	src: url("../fonts/Acrom-Light.ttf");
	src: url("../fonts/Acrom-Light.ttf") format("truetype");
	font-style: normal;
	font-weight: normal
}

@font-face {
	font-family: "Regular";
	src: url("../fonts/Acrom-Regular.ttf");
	src: url("../fonts/Acrom-Regular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal
}

@font-face {
	font-family: "Bold";
	src: url("../fonts/Acrom-Bold.ttf");
	src: url("../fonts/Acrom-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal
}

@font-face {
	font-family: "Black";
	src: url("../fonts/Acrom-ExtraBold.ttf");
	src: url("../fonts/Acrom-ExtraBold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal
}

@font-face {
	font-family: "Title";
	src: url("../fonts/Acrom-Bold.ttf");
	src: url("../fonts/Acrom-Bold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal
}

a {
  text-decoration: none;
  color:#000
}



@media only screen and (min-width: 992px) {
  .wrapper {
      padding: 0 60px;
  }
}
@media only screen and (min-width: 768px) {
  .wrapper {
      padding: 0 24px;
  }
}
.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}


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

.header {
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 15;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.header.is-open {
  border-radius: 0;
}
.header.is-open::before {
  position: fixed;
  left: 0;
  top: 100px;
  content: "";
  width: 100%;
  z-index: -1;
  height: 100vh;
  background-color: rgba(92, 105, 64, 0.4);
  backdrop-filter: blur(3px);
}
@media only screen and (min-width: 992px) {
  .header {
    border-radius: 0 0 50px 50px;
  }
}
.header__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media only screen and (min-width: 1361px) {
  .header__row {
    height: 90px;
  }
}
.header__logo {
  order: 2;
}
@media only screen and (min-width: 992px) {
  .header__logo {
    order: 1;
  }
}
/* .header__logo a {
  display: block;
} */
.header__logo img {
  height: 60px;
  width: 60px;
  display: block;
}
@media only screen and (min-width: 1361px) {
  .header__logo img {
    height: 70px;
    width: 70px;
  }
}



.main-menu-flex{
  order: 1;
  display: flex;
  gap:30px
}

.cart-header {
  order: 1;
  position: relative;
}
@media only screen and (min-width: 992px) {

  .main-menu-flex{
    order: 3;
    display: flex;
    gap:30px
  }
  .cart-header {
    order: 3;
  }
}
.cart-header__icon {
  display: block;
  position: relative;
}
.cart-header__icon span {
  text-align: center;
  position: absolute;
  height: 28px;
  top: -14px;
  right: -14px;
  font-size: 12px;
  width: 28px;
  display: flex;
  flex-direction: row;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #fed001;
}
.cart-header__icon svg {
  fill: #5c6940;
  height: 40px;
  width: 40px;
}

.main-menu {
  order: 3;
}
@media only screen and (min-width: 992px) {
  .main-menu {
    order: 2;
  }
}
.main-menu--open .main-menu__navigation {
  display: block;
}
.main-menu__burger {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .main-menu__burger {
    display: none;
  }
}
.main-menu__burger::before {
  width: 32px;
  height: 2px;
  background-color: #5c6940;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: -4px;
  content: "";
  transition: 0.2s;
}
.main-menu__burger::after {
  width: 32px;
  height: 2px;
  background-color: #5c6940;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: 4px;
  content: "";
  transition: 0.2s;
}
.main-menu__burger.is-active::before {
  transform: rotate(45deg);
  margin-top: -1px;
}
.main-menu__burger.is-active::after {
  transform: rotate(-45deg);
  margin-top: -1px;
}
.main-menu__navigation {
  display: none;
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  max-height: calc(100vh - 80px);
  overflow: auto;
  background-color: #ffffff;
  padding: 10px 16px;
  border-radius: 0 0 20px 20px;
}
@media only screen and (min-width: 992px) {
  .main-menu__navigation {
    position: relative;
    left: initial;
    top: initial;
    padding: 0;
    border-radius: initial;
    width: fit-content;
    overflow: initial;
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .main-menu__list {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.main-menu__item {
  padding: 10px 0;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .main-menu__item {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 992px) {
  .main-menu__item + .main-menu__item {
    margin-left: 40px;
  }
}
.main-menu__item > a {
  color: #5c6940;
  font-weight: 600;
  font-size: 18px;
}
.no-touch .main-menu__item:hover .main-menu__child {
  display: block;
}
.main-menu__child {
  display: block;
  margin-top: 20px;
  padding-left: 16px;
}
@media only screen and (min-width: 992px) {
  .main-menu__child {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(92, 105, 64, 0.4);
    width: fit-content;
    min-width: calc(100% + 150px);
    left: -20px;
    padding: 20px;
    margin-top: 0;
    border-radius: 10px;
    top: 90%;
  }
}
.main-menu__child li + li {
  margin-top: 15px;
}
.main-menu__child li > a {
  color: #5c6940;
  font-weight: 600;
  font-size: 16px;
}

.now_cart {
  position: absolute;
  right: 0px;
  top: 115%;
  width: max-content;
  z-index: 3;
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 10px rgba(150, 150, 150, 0.2);
  border-radius: 15px;
  pointer-events: none;
  opacity: 0;
  transition: 0.5s;
  display: none;
}
@media only screen and (min-width: 1361px) {
  .now_cart {
    display: flex;
  }
}

.now_cart.add_cart_now_ac {
  opacity: 1;
}

.card_img_now {
  height: 50px;
  width: 50px;
  display: block;
  object-position: center;
  object-fit: contain;
  margin-right: 10px;
  border-radius: 10px;
}

.info_now_cart {
  display: flex;
  height: 50px;
  width: max-content;
  padding-right: 10px;
}

.midlles {
  margin: auto;
}

.name_now_cart {
  color: #000;
  white-space: nowrap;
  font-size: 16px;
}

.name_now_cart_add {
  color: #000;
  font-size: 13px;
}


@media only screen and (min-width: 992px) {
}
.footer__row {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .footer__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer__logo {
  display: none;
}
@media only screen and (min-width: 992px) {
  .footer__logo {
    display: block;
  }
}
.footer__logo img {
  height: 60px;
}
@media only screen and (min-width: 992px) {
  .footer__right {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
body .main-menu__item > a{
  font-size: 18px;
}

.footer {
  background-color: #00335f;
  z-index: 10;
  -webkit-box-shadow: 0 0 10px rgba(92, 105, 64, 0.4);
  box-shadow: 0 0 10px rgba(92, 105, 64, 0.4);
}




.footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.catalog-sec .card__heading {
  color: #ffffff;
  background-color: rgb(112 158 75 / 90%);
  border-radius: 4px;
  padding: 10px 10px;
  box-shadow: 1px 1px 5px rgb(187, 187, 187, 0.4);
  font-size: 1.2rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}
@media only screen and (min-width: 992px) {
  .footer__social {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
body .footer__social a {
  height: 40px;
  background: none;
  width: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
}
.no-touch .footer__social a:hover {
  background-color: #9e7e60;
}
.no-touch .footer__social a:hover svg {
  fill: #ffffff;
}
.footer__social a svg {
  width: 24px;
  height: 24px;
  fill: #5c6940;
  transition: 0.2s;
}
.footer__social a + a {
  margin-left: 5px;
}
.footer__contacts a {
  font-size: 20px;
  color: #ffffff;
  transition: 0.2s;
}
.no-touch .footer__contacts a:hover {
  color: #9e7e60;
}





.catalog-sec h1{
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-top: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}


@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:none}
}
.animate{opacity:0;animation:fadeUp 1s ease forwards}
.d1{animation-delay:.15s}
.d2{animation-delay:.35s}
.d3{animation-delay:.55s}
.d4{animation-delay:.75s}

.hero{
  padding:100px 50px;
  background:var(--grad-main);
  position:relative;
  overflow:hidden;
  color:#fff;
}

.hero::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 30%,rgba(108,153,74,.35),transparent 40%),
    radial-gradient(circle at 80% 70%,rgba(0,85,165,.35),transparent 45%);
  z-index:0;
}

.hero-inner{
  position:relative;
  z-index:1;
  max-width:1400px;
  margin:auto;
  padding:26px;
  border-radius:40px;
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:26px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.hero-left{display:flex;flex-direction:column;gap:22px}

.hero-title{
  padding:30px 34px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg,var(--blue-dark),var(--blue-main));
  box-shadow:
    0 0 40px rgba(0,85,165,.35),
    inset 0 0 20px rgba(255,255,255,.08);
}


p {
	padding-bottom: 15px;
	padding-top: 0px;
	margin: 0
}

p a {
	color: red;
	text-decoration: none;
	position: relative;
	transition: 0.5s
}

p a:after {
	width: 100%;
	content: "";
	height: 1px;
	position: absolute;
	bottom: 1px;
	left: 0;
	background: red
}

p a:hover {
	color: red
}

p ul {
	padding: 0;
	margin: 0
}

p ul li {
	list-style: none;
	position: relative;
	padding-left: 25px;
	padding-bottom: 15px
}

p ul li:before {
	content: "—";
	top: 0;
	position: absolute;
	left: 0;
	color: red
}

p ul li a {
	color: red;
	text-decoration: none;
	position: relative;
	transition: 0.5s
}

p ul li a:after {
	width: 100%;
	content: "";
	height: 1px;
	position: absolute;
	bottom: 1px;
	left: 0;
	background: red
}

p ul li a:hover {
	color: red
}

h1 {
	display: block;
	font-size: 40px;
	margin: 0;
	text-align: left;
	/* font-family: "Title"; */
	position: relative
}

.content h2,
.content h3,
.content h4,
.content h5 {
	margin-top: 50px
}

h2 {
	display: block;
	font-size: 37px;
	margin: 0;
	text-align: left;
	font-family: "Title";
	position: relative
}

h3 {
	display: block;
	font-size: 35px;
	margin: 0;
	text-align: left;
	font-family: "Title";
	position: relative
}

h4 {
	display: block;
	font-size: 25px;
	margin-top: 0;
	text-align: left;
	padding-left: 60px;
	text-transform: uppercase;
	color: red;
	font-family: "Bold";
	position: relative
}

h5 {
	display: block;
	font-size: 20px;
	text-align: left;
	margin-top: 0;
	padding-left: 60px;
	text-transform: uppercase;
	color: red;
	font-family: "Bold";
	position: relative
}

.hero-title h1{
  font-size:42px;
  font-weight:800;
  letter-spacing:.5px;
  text-shadow:0 0 25px rgba(255,255,255,.25);


    font-family: "Title"; 

}



.main-menu__navigation a {
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.main-menu__navigation ul {
list-style: none;
}

.main-menu__navigation a:hover {
  color: var(--green-main);
}

.hero-title p{
  font-size:20px;
  margin-top:10px;
  opacity:.9;
}

.hero-benefits{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.benefit{
  padding:18px;
  border-radius:var(--radius-md);
  background:rgba(0,0,0,.55);
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:inset 0 0 20px rgba(255,255,255,.04);
}

.benefit::after{content:"↗";opacity:.6}

.hero-cta{
  padding:28px;
  border-radius:var(--radius-lg);
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(10px);
}

.hero-cta p{
  font-size:18px;
  margin-bottom:18px;
  opacity:.95;
}

.hero-buttons{
  display:flex;
  gap:14px;
}

.btn{
  position:relative;
  overflow:hidden;
  flex:1;
  padding:16px;
  border-radius:16px;
  border:none;
  font-weight:700;
  cursor:pointer;
  transition:.35s ease;
}

.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.35) 50%,
    transparent 100%
  );
  transform:skewX(-20deg);
  animation:btnShine 5s ease-in-out infinite;
  pointer-events:none;
}

.btn-primary::before{animation-delay:0s}
.btn-secondary::before{animation-delay:1.8s}

@keyframes btnShine{
  0%{left:-120%}
  40%{left:120%}
  100%{left:120%}
}

.btn:hover::before{
  animation-duration:2.5s;
}

.btn-primary{
  background:var(--grad-btn);
  color:#fff;
  box-shadow:0 0 25px rgba(108,153,74,.55);
}

.btn-primary:hover{
  background:var(--grad-btn-hover);
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 0 45px rgba(108,153,74,.85);
}

.btn-secondary{
  background:linear-gradient(135deg,var(--green-dark),var(--green-main));
  color:#fff;
}

.btn-secondary:hover{
  transform:translateY(-3px);
  box-shadow:0 0 35px rgba(108,153,74,.65);
}

.hero-right{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-lg);
}

.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.15) translateY(-5%);
  transition:transform 6s ease;
}

.hero-right:hover .hero-image{
  transform:scale(1.05) translateY(0);
}

.hero-badge{
  position:absolute;
  right:24px;
  bottom:24px;
  width:260px;
  padding:22px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--green-dark),var(--green-main));
}

.hero-badge strong{font-size:18px}
.hero-badge span{font-size:14px;opacity:.9}

/* ================= MOBILE ================= */
@media(max-width:1100px){
  .hero-inner{grid-template-columns:1fr}
}

@media(max-width:640px){
  .hero{padding:20px}
  .hero-inner{padding:18px;border-radius:26px}
  .hero-title h1{font-size:30px}
  .hero-title p{font-size:16px}
  .hero-benefits{grid-template-columns:1fr}
  .hero-buttons{flex-direction:column}
  .hero-badge{position:static;width:100%;margin-top:14px;text-align:center}
  .hero-image{height:260px;transform:none}
}




    .types-section {
      padding: 80px 20px 100px;
      background: #ffffff;
      position: relative;
    }

    .container { max-width: 1440px; margin: 0 auto; }

    .types-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .types-header h2 {
	  text-align: center;
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
      color: var(--blue-dark);
    }

    .types-header p {
      font-size: 20px;
      color: #555;
      opacity: 0.9;
    }

    .types-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 40px;
    }

    .types-tab {
      padding: 12px 24px;
      border-radius: 30px;
      background: rgba(0,51,95,0.12);
      border: 1px solid rgba(0,51,95,0.25);
      color: #00335f;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.35s ease;
      backdrop-filter: blur(6px);
    }

    .types-tab.active,
    .types-tab:hover {
      background: var(--grad-btn);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(108,153,74,0.5);
      border-color: transparent;
    }

    .types-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px 24px;
    }

    .type-card {
      background: rgba(0,0,0,0.48);
      backdrop-filter: blur(14px);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 12px 36px rgba(0,0,0,0.45);
      transition: all 0.45s ease;
      text-align: center;
      padding: 20px;
      opacity: 0;
      transform: translateY(50px);
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
    }

    .type-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .type-card:hover {
      transform: translateY(-14px);
      box-shadow: 0 24px 70px rgba(0,0,0,0.65);
    }

    .type-image {
      width: 100%;
      height: 220px;
      overflow: hidden;
      border-radius: var(--radius-md);
      margin-bottom: 20px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    .type-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .type-card:hover .type-image img {
      transform: scale(1.08);
    }

    .type-name {
      font-size: 18px;
      font-weight: normal;
      margin-bottom: 20px;
      min-height: 2.6em;
      line-height: 1.3;
      color: #fff;
    }

    .type-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 16px;
      margin-bottom: 24px;
      width: 100%;
      font-size: 15px;
    }

    .type-spec {
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,0.08);
      padding: 5px;
      border-radius: 12px;
    }

    .type-spec span:first-child {
      opacity: 0.8;
      font-size: 12px;
      color: #fff;
    }

    .type-spec span:last-child {
      color: #fff;
      font-weight: 600;
	  font-size: 13px;
    }

    .type-price-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: auto;
    }

    .type-price {
      font-size: 22px;
      font-weight: 900;
      color: #fff;
    }

    .type-btn-order {
      padding: 14px 25px;
      border-radius: 30px;
      background: var(--grad-btn);
      color: #fff;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.35s ease;
      box-shadow: 0 8px 25px rgba(108,153,74,0.4);
    }

    .type-btn-order:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 16px 45px rgba(108,153,74,0.7);
      background: var(--grad-btn-hover);
    }
 

    @media (max-width: 768px) {
      .types-section { padding: 50px 16px; }
      .types-header h2 { font-size: 32px; margin-bottom: 40px; }
      .types-tabs { gap: 10px; }
      .types-tab { padding: 10px 18px; font-size: 14px; }
      .type-specs { grid-template-columns: 1fr; gap: 10px; }
      .type-price { font-size: 24px; }
      .type-price-actions { flex-direction: column; gap: 16px; }
    }
    @media (max-width: 768px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);  
    gap: 10px 6px;                        
  }

  .type-card {
    padding: 10px;               
  }

  .type-image {
    height: 160px;  
  }

  .type-name {
    font-size: 12px;   
    font-weight: normal;
     min-height: 2em;
  }

  .type-specs {
    font-size: 10px;
    gap: 2px;
  }

  .type-spec {
    padding: 4px;
  }

  .type-price {
    font-size: 18px;
  }

  .type-btn-order {
    padding: 12px 26px;
    font-size: 15px;
  }

  .type-price-actions {
    gap: 16px;
  }
}
    .modal-price-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.modal-price {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--green-main), var(--blue-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-buy-btn {
  padding: 14px 38px;
  border-radius: 30px;
  background: var(--grad-btn);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(108,153,74,0.4);
}

.modal-buy-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(108,153,74,0.7);
  background: var(--grad-btn-hover);
}

@media (max-width: 768px) {
  .modal-price-buy {
    flex-direction: column;
    gap: 18px;
  }
  .modal-price {
    font-size: 26px;
  }
  .modal-buy-btn {
    padding: 13px 34px;
    font-size: 16px;
  }
}
    .modal-left {
  flex: 1;
  padding: 40px 36px 40px;
  overflow-y: auto;               
  max-height: 85vh;               
  scrollbar-width: thin;          
  scrollbar-color: rgba(108,153,74,0.6) transparent; 
}

.modal-left::-webkit-scrollbar {
  width: 8px;
}

.modal-left::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

.modal-left::-webkit-scrollbar-thumb {
  background: var(--green-main);
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,0.3);
}

.modal-left::-webkit-scrollbar-thumb:hover {
  background: var(--blue-main);
}

.modal-left {
  -ms-overflow-style: none;  
  scrollbar-width: thin;     
}

.modal-left {
  scroll-behavior: smooth;
}

.about-advantages-section {
  padding: 80px 20px 100px;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.about-advantages-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 20%, rgba(108,153,74,0.25), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,85,165,0.25), transparent 40%);
  opacity: 0.7;
  pointer-events: none;
}
.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 50px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
}
.about-company {
  max-width: 1440px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
.about-company.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.about-company:hover .about-image img {
  transform: scale(1.05);
}
.about-text {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}
.about-text h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--green-main);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.fact-item {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.18);
}
.fact-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--green-main);
  margin-bottom: 8px;
}
.fact-desc {
  font-size: 16px;
  opacity: 0.9;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.advantage-card {
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  transition: all 0.45s ease;
  text-align: center;
  padding: 32px 20px 36px;
  opacity: 0;
  transform: translateY(50px);
}
.advantage-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.advantage-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.65);
}
.advantage-icon-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(108,153,74,0.35);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 12px rgba(0,0,0,0.4);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-icon-inner {
  width: 80px;
  height: 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.advantage-card:hover .advantage-icon-wrapper {
  transform: scale(1.14) rotate(5deg);
  border-color: rgba(108,153,74,0.75);
  box-shadow: 0 0 40px rgba(108,153,74,0.55);
}
.advantage-card:hover .advantage-icon-inner {
  transform: scale(1.15);
}
.advantage-text {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.3;
  min-height: 2.8em;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .advantages-section {
    padding: 50px 16px;
  }
  .advantages-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
  .advantage-card {
    padding: 24px 16px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .advantage-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
  }
  .advantage-icon-inner {
    width: 70px;
    height: 70px;
  }
  .advantage-text {
    font-size: 18px;
    line-height: 1.3;
    min-height: auto;
    margin-top: 8px;
  }
}
@media (max-width: 768px) {

  .about-company {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .about-facts {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .fact-number {
    font-size: 18px;
  }

  .fact-desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {

  .about-company {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
  }

  .about-facts {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .fact-number {
    font-size: 18px;
  }

  .fact-desc {
    font-size: 14px;
  }
}

.team-collage {
  position: relative;
  height: 620px;
}

.team-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

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

.team-photo.p1 {
  width: 60%;
  height: 65%;
  top: 0;
  left: 0;
  z-index: 3;
}

.team-photo.p2 {
  width: 53%;
  height: 58%;
  top: 10%;
  right: 0;
  z-index: 2;
}

.team-photo.p3 {
  width: 55%;
  height: 63%;
  bottom: -20%;
  left: 10%;
  z-index: 1;
}

.team-photo.p4 {
  width: 47%;
  height: 55%;
  bottom: -10%;
  right: -5%;
  z-index: 4;
}

.team-collage:hover .team-photo {
  transform: translateY(-6px);
}

@media (max-width: 768px) {
  .team-collage {
    height: 320px;
  }

  .team-photo {
    border-radius: var(--radius-md);
  }
}
@media (max-width: 768px) {

  .team-collage {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .team-photo {
    position: relative;
    width: 100% !important;
    height: 160px !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 769px) {

  .team-collage {
    isolation: isolate;
  }

  .team-photo {
    cursor: pointer;
    transition:
      transform 0.6s cubic-bezier(.22,1,.36,1),
      box-shadow 0.6s cubic-bezier(.22,1,.36,1),
      z-index 0s;
    will-change: transform;
  }

  .team-photo img {
    transition: transform 0.6s cubic-bezier(.22,1,.36,1);
    object-fit: cover; /* ❗ убираем чёрные полосы */
  }

  .team-photo:hover {
    z-index: 10;
    transform: scale(1.12);
    box-shadow: 0 30px 90px rgba(0,0,0,0.65);
  }

  .team-collage:hover .team-photo:not(:hover) {
    transform: scale(0.96);
    opacity: 0.75;
  }
}


.comparison-section {
  padding: 80px 20px 100px;
  background: #ffffff;
  position: relative;
  color: #333;
}

.comparison-container {
  max-width: 1440px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-header h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.comparison-header p {
  font-size: 20px;
  color: #555;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px 32px;
}

.comparison-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  transition: all 0.45s ease;
  opacity: 0;
  transform: translateY(50px);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.comparison-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); 
  z-index: 1;
}

.comparison-card > * {
  position: relative;
  z-index: 2;
}

.comparison-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison-card.bad {
  background-image: url('/userfiles/images/yama.jpg');
  border: 2px solid #dc3545;
  box-shadow: 0 16px 50px rgba(220,53,69,0.35);
}

.comparison-card.good {
  background-image: url('/userfiles/images/septik.jpeg');
  border: 2px solid var(--green-main);
  box-shadow: 0 16px 50px rgba(108,153,74,0.45);
}

.comparison-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.65);
}

.card-header {
  padding: 28px 32px;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  border-bottom: 2px solid rgba(255,255,255,0.18);
}

.card.good .card-header {
  background: var(--grad-btn);
}

.card.bad .card-header {
  background: linear-gradient(135deg, #721c24, #dc3545);
}

.card-content {
  padding: 28px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.5;
}

.feature-icon {
  font-size: 28px;
  min-width: 40px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}

.feature.bad .feature-icon  { color: #ff4d4d; }
.feature.good .feature-icon { color: var(--green-main); }

.price-block {
  margin-top: auto;
  margin-bottom: 20px;
  padding: 24px;
  background: rgba(0,0,0,0.4); 
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.18);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.price-total {
  font-size: 32px;
  font-weight: 900;
  margin: 16px 0;
}

.price-total.good {
  color: #ffffff;
  opacity: 0.95;
}

.price-total.bad {
  color: #ff4d4d;
}

.price-details {
  font-size: 15px;
  opacity: 0.9;
  color: #fff;
}

@media (max-width: 980px) {
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-header h2 { font-size: 36px; }
}

@media (max-width: 640px) {
  .comparison-section { padding: 60px 16px; }
  .comparison-header h2 { font-size: 30px; }
  .comparison-header p { font-size: 18px; }
  .card-header { font-size: 24px; padding: 24px 20px; }
  .card-content { padding: 24px 20px; }
  .price-total { font-size: 28px; }
  .price-block { min-height: 140px; padding: 20px; }
}

.steps-section {
  padding: 60px 50px;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.steps-section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(108,153,74,.25), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(0,85,165,.25), transparent 50%);
  z-index: 0;
}

.steps-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: auto;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}

.steps-title {
  text-align: center;
  margin-bottom: 50px;
}

.steps-title h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,255,255,.3);
  text-align: center;
}

.steps-title p {
  font-size: 20px;
  opacity: 0.9;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green-main), var(--blue-main));
  border-radius: 3px;
  overflow: hidden;
}

.timeline-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: shineLine 8s linear infinite;
}

@keyframes shineLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.steps-list {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideRight 0.9s ease forwards;
}

.step.d1 { animation-delay: 0.2s; }
.step.d2 { animation-delay: 0.4s; }
.step.d3 { animation-delay: 0.6s; }
.step.d4 { animation-delay: 0.8s; }
.step.d5 { animation-delay: 1.0s; }
.step.d6 { animation-delay: 1.2s; }
.step.d7 { animation-delay: 1.4s; }

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--grad-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(108,153,74,.5);
  position: relative;
  z-index: 2;
}

.step-icon {
  font-size: 56px;
  margin-bottom: 12px;
  color: var(--green-main);
  filter: drop-shadow(0 0 10px rgba(108,153,74,.6));
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.step p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.4;
}

/* Мобильная адаптация */
@media (max-width: 1100px) {
  .steps-list {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-line {
    display: none;
  }
  .step-icon {
    display: none;
  }

  .step {
    transform: translateY(40px);
  }

  @keyframes slideRight {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 640px) {
  .steps-section { padding: 40px 20px; }
  .steps-container { padding: 30px 20px; }
  .steps-title h2 { font-size: 30px; }
  .step-number { width: 50px; height: 50px; font-size: 24px; }
}


.adv-main {
  padding: 80px 50px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  color: #333;
}

.adv-main::before,
.adv-main::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18; 
  background-size: contain;
  background-repeat: no-repeat;
}

.adv-main::before {
  top: 2%;
  left: -11%;
  width: 40%;
  height: 50%;
  background-image: url('/userfiles/images/fon-prem.webp');
  transform: rotate(-8deg) scale(1.1);
  background-position: center;
}

.adv-main::after {
  bottom: -5%;
  right: -5%;
  width: 60%;
  height: 70%;
  background-image: url('/userfiles/images/fon-prem-2.webp');
  background-position: bottom right;
  transform: scale(1.05);
}

.adv-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: auto;
}

.adv-heading {
  text-align: center;
  margin-bottom: 60px;
  color: var(--blue-dark);
}

.adv-heading h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,.1);
  text-align: center;
}

.adv-heading p {
  font-size: 20px;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.adv-card {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08),
              inset 0 0 20px rgba(255,255,255,.6);
  transition: all .4s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: advFadeUp 1s ease forwards;
  position: relative;
  overflow: hidden;
}

.adv-card:nth-child(1) { animation-delay: .2s; }
.adv-card:nth-child(2) { animation-delay: .4s; }
.adv-card:nth-child(3) { animation-delay: .6s; }
.adv-card:nth-child(4) { animation-delay: .8s; }

@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:none}
}
.animate{opacity:0;animation:fadeUp 1s ease forwards}
.d1{animation-delay:.15s}
.d2{animation-delay:.35s}
.d3{animation-delay:.55s}
.d4{animation-delay:.75s}


@keyframes advFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.adv-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,85,165,.18),
              0 0 0 1px rgba(108,153,74,.15);
}

.adv-icon {
  font-size: 48px;
  margin-bottom: 20px;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(108,153,74,.4));
}

.adv-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--blue-dark);
}

.adv-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

.adv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-btn);
  opacity: 0.7;
}

@media (max-width: 1100px) {
  .adv-main { padding: 60px 30px; }
  .adv-main::before,
  .adv-main::after {
    opacity: 0.12;
    width: 70%;
    height: 50%;
  }
  .adv-main::before { top: -5%; left: -20%; }
  .adv-main::after { bottom: -10%; right: -20%; }
}

@media (max-width: 640px) {
  .adv-heading h2 { font-size: 32px; }
  .adv-heading p { font-size: 18px; }
  .adv-card { padding: 28px 20px; }
  .adv-main::before,
  .adv-main::after { display: none; } 
}

.reviews-section {
  padding: 80px 50px;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(108,153,74,.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,85,165,.25), transparent 50%);
  z-index: 0;
}

.reviews-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: auto;
}

.reviews-title {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(255,255,255,.3);
  text-align: center;
}

.reviews-title p {
  font-size: 20px;
  opacity: 0.9;
}

.reviews-swiper {
  padding: 20px 0 60px;
}

.review-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
  text-align: center;
  height: 100%; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  min-height: 80px; 
  justify-content: flex-end;
}

.review-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.review-stars {
  font-size: 24px;
  color: #ffd700; 
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 17px;
  line-height: 1.55;
  opacity: 0.95;
  flex-grow: 1;
}

.swiper-pagination-bullet {
  background: rgba(255,255,255,.6);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--green-main);
  width: 12px;
  height: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

@media (max-width: 1100px) {
  .reviews-section { padding: 60px 30px; }
}

@media (max-width: 640px) {
  .reviews-title h2 { font-size: 32px; }
  .review-photo { height: 160px; }
  .review-name { font-size: 18px; }
  .review-stars { font-size: 20px; }
}

/* Swiper растягивает слайды */
.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.reviews-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.review-card {
  height: 100%;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 5; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.faq-section {
  padding: 90px 50px;
  background:
    radial-gradient(800px 300px at 10% 0%, rgba(0,85,165,.06), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(108,153,74,.08), transparent 60%),
    #ffffff;
  position: relative;
  color: #333;
}

.faq-wrapper {
  max-width: 1440px;
  margin: auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 64px;
}

.faq-title h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.faq-title p {
  font-size: 20px;
  max-width: 720px;
  margin: 0 auto;
  opacity: .85;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.faq-item {
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,85,165,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: box-shadow .35s ease, border-color .35s ease;
  opacity: 0;
  transform: translateY(32px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  box-shadow: 0 18px 50px rgba(0,85,165,.14);
  border-color: rgba(108,153,74,.35);
}

.faq-item summary {
  padding: 22px 64px 22px 28px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-main);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 28px 26px;
  font-size: 16.5px;
  line-height: 1.65;
  color: #555;
}

@media (max-width: 1100px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-section {
    padding: 70px 30px;
  }
}

@media (max-width: 640px) {
  .faq-title h2 { font-size: 32px; }
  .faq-title p { font-size: 18px; }

  .faq-item summary {
    font-size: 16px;
    padding: 20px 56px 20px 22px;
  }

  .faq-item p {
    font-size: 16px;
    padding: 0 22px 22px;
  }
}
.faq-item {
  display: block !important;
}

.faq-item > summary {
  display: block !important;
  width: 100%;
}

.faq-item > p {
  display: block !important;
  width: 100%;
}

.faq-item,
.faq-item * {
  flex-direction: column !important;
  align-items: stretch !important;
}

@media (max-width: 640px) {
  .faq-item[open] summary {
    margin-bottom: 0;
  }

  .faq-item p {
    margin-top: 0;
  }
}


.contacts-section {
  padding: 80px 20px 100px;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.contacts-section::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 20%, rgba(108,153,74,0.25), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,85,165,0.25), transparent 40%);
  opacity: 0.6;
  pointer-events: none;
}

.contacts-wrapper {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.company-name {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.company-slogan {
  font-size: 24px;
  font-weight: 600;
  color: var(--green-main);
  margin-top: 12px;
  opacity: 0.95;
}

.contacts-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-block {
  padding: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.cta-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-block h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-block p {
  text-align: left;
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
}

.messengers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
}

.messenger-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  color: #fff;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  min-height: 120px;
  justify-content: center;
}

.messenger-btn:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 16px 40px rgba(108,153,74,0.4);
}

.messenger-icon {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.messenger-name {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.contacts-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.socials-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: left;
}

.socials-grid svg{
  width: 40px;
  height: 40px;
}

.social-link {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.15) translateY(-4px);
  background: var(--grad-btn);
  box-shadow: 0 16px 45px rgba(108,153,74,0.5);
}

.youtube-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  background: var(--grad-btn);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(108,153,74,0.4);
  transition: all 0.35s ease;
}

.youtube-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 50px rgba(108,153,74,0.7);
  background: var(--grad-btn-hover);
}

@media (max-width: 1100px) {
  .contacts-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contacts-section { padding: 60px 30px; }
}

@media (max-width: 640px) {
  .contacts-section { padding: 50px 16px; }

  .company-name { font-size: 36px; text-align: center; }
  .company-slogan { font-size: 20px; text-align: center; }

  .cta-block {
    padding: 32px 20px;
    text-align: center;
  }
  .cta-block h3 { font-size: 26px; }
  .cta-block p { font-size: 17px; margin-bottom: 28px; }

  .messengers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .messenger-btn {
    padding: 16px 8px;
    min-height: 110px;
    font-size: 14px;
  }
  .messenger-icon { width: 40px; height: 40px; }
  .messenger-name { font-size: 14px; }

  .socials-title { font-size: 24px; text-align: center; }
  .socials-grid {
    justify-content: center;
    gap: 16px;
  }
  .social-link { width: 56px; height: 56px; font-size: 24px; }

  .youtube-cta {
    padding: 16px 32px;
    font-size: 17px;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {

  .contacts-wrapper {
    display: block !important;
  }

  .contacts-wrapper > * {
    display: block !important;
    width: 100% !important;
  }

  .contacts-left,
  .contacts-right {
    display: block !important;
  }

  .contacts-left > *,
  .contacts-right > * {
    display: block !important;
    width: 100% !important;
  }

  .contacts-section * {
    flex-direction: column;
  }

  .socials-grid {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    gap: 14px;
  }

  .social-link {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
  }
}



.article-about {
  max-width: 1000px;

  padding: 20px;
  border-radius: 10px;
  margin: 0 auto;
}

.article-about a {
  text-align: center;
  display: block;
  margin-bottom: 15px;
}

.article-about img {
  margin: 0px auto;
  box-shadow: 0px 0px 1px #9d9797;
  border-radius: 5px;
  max-width: 1000px;
  width: 100%;
  height: auto !important;
}

.article-about h2 {
  display: block;
  text-align: center;
  font-size: 30px !important;
  font-weight: 600;
  margin: 40px auto 20px !important;
  color: #0b4163 !important;
}

.article-about h3 {
  margin: 15px auto 20px !important;
  text-align: center;
  color: #0e507a !important;
}

.table-h3.tableh3 {
  color: #fff !important;
}

.article-about > h2:nth-child(1) {
  margin: 0px auto 20px;
}

.article-about-shadow {
  height: 3px;
  background-color: #ff8c00;
  opacity: 0.2;
  margin-bottom: 50px;
  /*   box-shadow: 0px 0px 4px #bbb;
  height: 1px;
  background-color: #888; */
}

.article-about > hr {
  margin-top: 40px;
  background-color: #0f4d74;
  opacity: 0.2;
  border-radius: 2px;
  border: none;
  height: 4px;
  max-width: 200px;
  box-shadow: 0px 0px 0px 0px #fff;
}

.article-about p,
.article-about ul,
.article-about ol,
.article-about li,
.seo-sec p,
.seo-sec li {
  line-height: 32px !important;
  text-align: justify;
  color:#000;
  font-size: 18px;
}

.article-about ul{

  list-style:none;
}
.article-about li {
position: relative;
padding-left: 38px;}

.article-about li:before {
  content: "✓";
  color: #6b9948;
  font-weight: 900;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}

.strong-text {
  font-weight: 800;
}

.article-about .article-about ul {
  margin: 0px 0px 15px;
}

.article-about > div > ul {
  margin: 8px 0px 15px;
}

.article-about_list p {
  font-weight: 600;
  padding-bottom: 0px;
}



@media (max-width: 640px) {
  .hero {
      margin-top: 90px;
  }
  
body .catalog-item__image img{
  object-fit: contain;
}
}


.catalog-item {
  position: relative;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog-item__image {
  height: 200px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

.catalog-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.catalog-item__description {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.catalog-item__name {
  font-size: 22px;
  font-weight: 600;
}

.catalog-item__sostav {
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
}



.catalog-item__weight {
  font-size: 16px;
}

.catalog-item__price {
  font-size: 20px;
  text-align: center;
}

.catalog-item__variable {
  margin-top: 20px;
  width: 100%;
}

.catalog-item__detail {
  border: 2px solid #00335f;
  text-align: center;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #00335f;
  display: block;
  border-radius: 10px;
  margin-top: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.no-touch .catalog-item__detail:hover {
  border: 2px solid #9e7e60;
  color: #9e7e60;
}

.catalog-item__in-cart {
  background-color: #00335f;
  text-align: center;
  padding: 11px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.no-touch .catalog-item__in-cart:hover {
  background-color: #9e7e60;
}




.catalog-sec h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-top: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}


.item-a{
  position: absolute;
width: 100%;
height: 100%;
opacity: 0;
}

body .catalog-section {
margin-top: 0px;

}

body .bottom-tel{
  font-weight: 600;
  font-size: 36px;
  color:#fff;
  text-decoration: none;
}

.sort-section{
  padding-top: 90px;
  margin-top: 20px;
    margin-bottom: 20px;
}




.hero-section {
  margin: 50px 0 0;
  display: flex;
  min-height: 100%;
  justify-content: center;
}

@media (min-width: 992px) {
  body .card-grid {
      display: grid
;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1400px;
      width: 100%;
      padding: 0 16px;
  }
}

.card {
  list-style: none;
  position: relative;
  transition: 0.3s;
  
}

.card:hover{
transform: scale(1.04);
  
}
.card:before {
  content: '';
  display: block;
  padding-bottom: 50%;
  width: 100%;
}
.card__background {
  box-shadow: 0px 0px 10px rgb(85, 85, 85, 0.5);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  bottom: 0;
  filter: brightness(1.2);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform-origin: center;
  transform: scale(1) translateZ(0);
  transition: filter 200ms linear, transform 200ms linear;
}


.card__content {
  left: 0;
  padding: 24px;
  position: absolute;
  top: 0;
}

.catalog-sec .card__heading {
  color: #ffffff;
  background-color: rgb(112 158 75 / 90%);
  border-radius: 4px;
  padding: 10px 10px;
  box-shadow: 1px 1px 5px rgb(187, 187, 187, 0.4);
  font-size: 1.2rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}


.catalog-section__list {
  display: grid
;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}

.catalog-item__image {
  height: 200px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}


@media only screen and (min-width: 768px) {
  .catalog-section__list {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (min-width: 992px) {
  .catalog-item__image {
      height: 250px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 250px;
      flex: 0 0 250px;
  }
}


@media only screen and (min-width: 1200px) {
  .catalog-section {
      margin: 0px 0 100px;
  }
  .catalog-section__list {
    grid-template-columns: repeat(4, 1fr);
}
}



.catalog-item {
  position: relative;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.catalog-item__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.catalog-item__description {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.catalog-item__name {
  font-size: 22px;
  font-weight: 600;
}

.catalog-item__sostav {
  margin-top: 10px;
  font-size: 14px;
  line-height: 18px;
}

.catalog-item__variable {
  margin-top: 20px;
  width: 100%;
}


.item-a {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}



.catalog-item__type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}

.catalog-item__weight {
  font-size: 16px;
}
.catalog-item__price {
  font-size: 20px;
}

.catalog-item__detail {
  border: 2px solid #00335f;
  background-color: #4b7a32;
  text-align: center;
  padding: 15px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: block;
  border-radius: 10px;
  margin-top: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-decoration: none;
}

.catalog-item:hover  .catalog-item__detail{
  background-color: #fff;
  color: #00335f;
}

.catalog-item__in-cart-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.quant_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quant_block .minus, .quant_block .plus {
  height: 36px;
  width: 36px;
  background-color: #9e7e60;
  text-align: center;
  font-size: 27px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}


.quant_block .minus::before, .quant_block .plus::before {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -1px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}

.quant_block .cnt_val {
  width: 36px;
  height: 36px;
  border: 2px solid #00335f;
  text-align: center;
  border-radius: 10px;
  outline: none;
  margin: 0 5px;
}

.quant_block .minus, .quant_block .plus {
  height: 36px;
  width: 36px;
  background-color: #9e7e60;
  text-align: center;
  font-size: 27px;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.quant_block .minus::before, .quant_block .plus::before {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -1px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}
.quant_block .plus::after {
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -6px;
  margin-left: -1px;
  width: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}

.catalog-item__in-cart {
  background-color: #00335f;
  text-align: center;
  padding: 11px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}


.sort-section a{
  color: #4b7a32;
}


.sort-section a:hover{
color: #00335f;


}













  .footer__bottom {
    padding-top: 2vw;
    padding-bottom: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__bottom-item{
  color:#fff
}


.product-page {
  margin-bottom: 70px;
}





.pic-product a {
  width: 100%;
  display: block;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px;
}

.pic-product img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.product-page h1 {
  font-size: 30px;
}
.name-in {
  margin-bottom: 50px;
}

.price {
  margin-top: 50px;
}
.product-page .name {
  font-size: 20px;
  margin-bottom: 20px;
}


.product-page .prices-txt {
  font-size: 20px;
}

.product-page .plusing {
  width: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
}


.product-page .plusing .minus {
  height: 40px;
  display: inline-flex;
  border-radius: 50%;
  width: 40px;
  background-color: #00335f;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}



.page-content-product {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 50px;
}



.quant_block .minus::before, .quant_block .plus::before {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -1px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}

.quant_block .cnt_val {
  height: 25px;
  width: 60px;
  border-radius: 50px;
  text-align: center;
  border: 1px solid #333;
  margin-left: 2px;
  margin-right: 2px;
  display: inline-block;
  vertical-align: top;
  background: transparent;
  font-size: 20px;
}


.product-page .plusing .plus {
  height: 40px;
  display: inline-flex;
  border-radius: 50%;
  width: 40px;
  background-color: #00335f;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;

  text-align: center;
}

.product-page .plusing .minus:hover, .product-page .plusing .plus:hover, .product-page .chekset:hover {
  background-color: #4b7a32;
}



.quant_block .minus::before, .quant_block .plus::before {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -1px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}

.quant_block .plus::after {
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -6px;
  margin-left: -1px;
  width: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}

.product-page .all-price {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

.product-page .all-price span {
  font-size: inherit;
}

.product-page .chekset {
  padding: 12px 20px;
  color: #fff;
  border-radius: 50px;
  background-color: #00335f;
  display: inline-block;
  transition: 0.3s;
}

.btn-one-click {
  margin-top: 50px ;
  padding: 20px 32px ;
  border-radius: 10px !important;
  cursor: pointer ;
  color: #ffffff ;
  display: block ;
  text-transform: uppercase ;
  font-size: 18px ;
  width: fit-content;
  background-color: #890b09 ;
  -webkit-transition: 0.2s ;
  transition: 0.2s ;
}

.btn-one-click:hover{
  color: #0055A5 ;
  background-color: #fff ;
}

.sr-only{
  display: none;
}



@media (min-width: 992px) {
  .page-content-product {

      grid-template-columns: 600px 1fr;
      gap: 50px;
  }
}



.shadow-sec {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100vw;
  height: 100vh;
  z-index: 97;
  flex-direction: row;
  display: none;
  align-items: center;
  justify-content: center;
}

.shadow-sec .window {
  background-color: #ffffff;
  box-shadow: 0 0 15px #cddae7;
  border-radius: 16px;
  padding: 8px;
  max-width: 375px;
  position: relative;
}
.shadow-sec .btn-sec {
  text-align: center;
  margin: 30px auto 20px;
  width: fit-content;
}

.wd-content__close {
  cursor: pointer;
}


.one-punch-buy.is-open {
  display: flex;
}

.title-sec-scas {
  padding: 20px 32px;
  font-size: 18px;
  background-color: #00335f;
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
}
.wd-content .window-content {
  padding: 0 24px
}

.shadow-sec .inputs [type=text] {
  height: 54px;
  line-height: 54px;
  padding: 0 20px;
  font-size: 14px;
  text-align: center;
  width: 100%;
  outline: none;
  border-radius: 12px;
  border: 1px solid #cddae7;
}


shadow-sec .btn-sec {
  text-align: center;
  margin: 30px auto 20px;
  width: fit-content;
}


.warning_red {
  font-size: 16px;
  color: #5c6940;
}
@media only screen and (min-width: 1361px) {
  .warning_red {
    margin-left: 20px;
    line-height: 36px;
  }
}

.cart-page__title {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1361px) {
  .cart-page__title {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }
}

.main-section {
  margin: 50px 0;
}
@media only screen and (min-width: 992px) {
  .main-section {
    margin: 100px 0;
  }
}
.main-section:last-child {
  margin-bottom: 0;
}

.line-item-cell {
  border-bottom: 1px solid rgba(92, 105, 64, 0.3);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .line-item-cell {
    grid-template-columns: 80px 1fr 170px 150px;
    padding-right: 50px;
  }
}
@media only screen and (min-width: 1361px) {
  .line-item-cell {
    grid-template-columns: 80px 1fr 170px 150px 130px;
    padding-right: 0;
  }
}
.line-item-cell--delivery {
  grid-template-columns: 80px 1fr 130px;
}
@media only screen and (min-width: 992px) {
  .line-item-cell--delivery {
    grid-template-columns: 80px 1fr 130px;
  }
}
.line-item-cell--delivery .pic_lazyload {
  display: none;
}
@media only screen and (min-width: 992px) {
  .line-item-cell--delivery .pic_lazyload {
    display: block;
  }
}
@media only screen and (min-width: 1361px) {
  .line-item-cell--delivery {
    grid-template-columns: 80px 1fr 130px;
  }
}
.line-item-cell img {
  display: block;
}
.line-item-cell .name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  grid-column: 2 span/auto;
}
@media only screen and (min-width: 992px) {
  .line-item-cell .name {
    grid-column: initial;
  }
}
.line-item-cell .drop-item {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 15px;
}
@media only screen and (min-width: 992px) {
  .line-item-cell .drop-item {
    margin-top: 38px;
  }
}
@media only screen and (min-width: 1361px) {
  .line-item-cell .drop-item {
    position: relative;
    top: initial;
    margin-top: initial;
  }
}
.line-item-cell .drop-item .drop {
  font-size: 0;
}
.line-item-cell .drop-item .drop img {
  height: 30px;
  width: 30px;
}
@media only screen and (min-width: 1361px) {
  .line-item-cell .drop-item .drop {
    padding: 12px 30px;
    border-radius: 10px;
    cursor: pointer;
    color: #ffffff;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    width: fit-content;
    background-color: #5c6940;
    transition: 0.2s;
  }
  .line-item-cell .drop-item .drop img {
    display: none;
  }
}
.no-touch .line-item-cell .drop-item .drop:hover {
  background-color: #000000;
}
.line-item-cell .one-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  margin-left: 10px;
}
.line-item-cell .drop-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
}
.line-item-cell .all-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  font-size: 20px;
}
.line-item-cell .pic_lazyload {
  background-color: #ffffff;
  height: 200px;
  width: 200px;
  padding: 8px;
  border-radius: 15px;
}
@media only screen and (min-width: 992px) {
  .line-item-cell .pic_lazyload {
    padding: 10px;
    height: 80px;
    width: 80px;
  }
}
.line-item-cell .pic_lazyload img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}
.line-item-cell .min-max-cell {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.line-item-cell .min-max-cell .middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.line-item-cell .min-max-cell .minus, .line-item-cell .min-max-cell .plus {
  height: 40px;
  width: 40px;
  background-color: #9e7e60;
  text-align: center;
  font-size: 30px;
  display: block;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
}
.no-touch .line-item-cell .min-max-cell .minus:hover, .no-touch .line-item-cell .min-max-cell .plus:hover {
  opacity: 0.7;
}
.line-item-cell .min-max-cell .minus::before, .line-item-cell .min-max-cell .plus::before {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -1px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}
.line-item-cell .min-max-cell .plus::after {
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -6px;
  margin-left: -1px;
  width: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  content: "";
}
.line-item-cell .min-max-cell .cnt_val {
  width: 70px;
  height: 50px;
  border: 2px solid #5c6940;
  text-align: center;
  border-radius: 10px;
  outline: none;
  margin: 0 5px;
}

.cart-form {
  margin-top: 50px;
}
.cart-form h3 {
  text-align: center;
}
@media only screen and (min-width: 768px) {



  .cart-form h3 {
    text-align: left;
  }
}
.cart-form .dasdasdwdqw {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cart-form .dasdasdwdqw {
    text-align: left;
  }
}

.form-zakaz {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) {
  .form-zakaz {
    padding: 30px;
  }
}
.form-zakaz .label {
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 10px;
}
.form-zakaz .justify-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
@media only screen and (min-width: 992px) {
  .form-zakaz .justify-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .form-zakaz .full {
    grid-column: 3 span/auto;
  }
}
@media only screen and (min-width: 992px) {
  .form-zakaz .full-input {
    grid-column: 2 span/auto;
  }
}
.form-zakaz [type=text] {
  padding: 0 20px;
  height: 56px;
  width: 100%;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #f7f5f0;
}
.form-zakaz textarea {
  padding: 15px 20px;
  min-height: 150px;
  resize: none;
  width: 100%;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #f7f5f0;
}

.all-price-information {
  margin-bottom: 150px;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .all-price-information {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.all-price-information .error {
  position: absolute;
  bottom: -40px;
}
.all-price-information .middle-span {
  font-size: 20px;
  margin-top: 30px;
}
@media only screen and (min-width: 992px) {
  .all-price-information .middle-span {
    font-size: 30px;
    margin-top: 0;
  }
}
.all-price-information .checkoutbutton {
  padding: 20px 32px;
  border-radius: 10px;
  cursor: pointer;
  color: #ffffff;
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  width: 100%;
  background-color: #5c6940;
  transition: 0.2s;
}
@media only screen and (min-width: 992px) {
  .all-price-information .checkoutbutton {
    width: fit-content;
  }
}
.no-touch .all-price-information .checkoutbutton:hover {
  background-color: #000000;
}

.dostavka {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 10px;
}
@media only screen and (min-width: 992px) {
  .dostavka {
    grid-column: 2 span/auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
.dostavka [type=radio] {
  display: none;
}
.dostavka [type=radio] + label {
  padding: 0 20px;
  height: 56px;
  width: 100%;
  border-radius: 20px;
  border: none;
  outline: none;
  background-color: #f7f5f0;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
  background-size: 20px;
  background-position: center right 20px;
  background-repeat: no-repeat;
  padding-right: 50px;
}


.wd-content__close {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 12px;
  display: flex;
  padding-bottom: 2px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transform: rotate(45deg);
  top: 12px;
}

.shadow-sec .btn-one-click {
  width: 100% !important;
}



@media (max-width: 720px) {

  .product-page h1 {
    font-size: 24px;
}
.btn-one-click {
  margin: 50px auto 0px ;
}

.article-about h2 {

  font-size: 22px !important;

}

  .hero-section {

    flex-direction: column;
    padding: 10px 15px;

  }


  .catalog-sec .card__heading {
    font-size: 1.1rem;}

  .catalog-sec h2{

    font-size: 22px;
  }


  .catalog-sec h1{

    font-size: 22px;
  }
  .bottom-tel{
    font-size: 22px;
    font-weight: 600;
  }

  .card-grid {
display: flex;
flex-direction: column;
gap:20px

  }

  .card{
    width: 100%;
  }



  .catalog-sec h2{

    font-size: 22px;
  }


  .catalog-sec h1{

    font-size: 22px;
  }

  .page-content-product{
    gap:5px
  }


  .sort-section {
    padding-top: 70px;}
    .article-about {
      padding: 5px};
}


.blog-cont{padding:160px 0;background:#fff;position:relative;overflow:hidden;isolation:isolate}
    .container-blog{max-width:1440px;width:100%;margin:0 auto;padding:0 60px;position:relative;z-index:2;box-sizing:border-box}
    .blog-cont a{text-decoration:none !important;color:inherit}

    .blog__header{
        display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:32px;align-items:start;margin-bottom:48px
    }
    .blog__title-wrap{
        grid-column:1 / 3;display:flex;flex-direction:column;align-items:flex-start
    }
    .blog__main-title{
        font-size:52px;font-weight:900;line-height:1.2;color:#000000;margin:0;
        opacity:0;transform:translateY(30px);
        animation:fadeUp 1.4s ease-out .4s forwards
    }
    .blog__subtitle{
        font-size:26px;line-height:1.5;color:#1e2a38;margin:20px 0 0;max-width:680px;
        opacity:0;transform:translateY(20px);
        animation:fadeUp 1.4s ease-out .8s forwards
    }
    .blog__main-btn{
        margin-top:32px;padding:18px 44px;font-size:18px;font-weight:800;color:#ffffff !important;
/*         background:linear-gradient(135deg,#2c5f7a,#46728a); */
        background-color:#1E88E5 ;
        
        border-radius:50px;
        box-shadow:0 10px 30px rgba(44,95,122,.35);
        display:flex;align-items:center;justify-content:center;
        opacity:0;transform:translateY(30px);
        animation:fadeUp 1.4s ease-out 1.1s forwards;transition:all .4s
    }
    .blog__main-btn:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(44,95,122,.5)}

    .blog__card{
        background:rgba(255,255,255,.88);backdrop-filter:blur(16px);
        border:4px solid transparent;border-radius:28px;overflow:hidden;display:flex;flex-direction:column;height:100%;
        background:linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.88)) padding-box,
                    linear-gradient(135deg,#2c5f7a,#46728a,#1E88E5,#FFC107) border-box;
        box-shadow:0 12px 40px rgba(0,0,0,.12);transition:all .45s;
        opacity:0;transform:translateY(30px);animation:fadeUp 1s ease-out forwards
    }
    .blog__card:hover{transform:translateY(-10px);box-shadow:0 24px 60px rgba(0,0,0,.2)}
    .blog__card-img{width:100%;height:180px;object-fit:cover;flex-shrink:0}
    .blog__card-content{padding:28px 24px;flex-grow:1;display:flex;flex-direction:column}
    .blog__card-title{font-size:18px;font-weight:800;color:#004c80;line-height:1.3;margin-bottom:12px}
    .blog__card-text{font-size:17px;line-height:1.6;color:#1e2a38;flex-grow:1;margin-bottom:20px}
    .blog__card-btn{
        margin-top:auto;padding:16px 20px;
        background-color: #FFC107;
      /*   background:linear-gradient(135deg,#ff8c38,#e63946,#a0522d,#8b4513); */
        color:#000000;font-weight:800;font-size:16px;text-align:center;border-radius:12px;
        transition:all .35s;display:flex;align-items:center;justify-content:center;
        text-decoration: none;
    }
    .blog__card:hover .blog__card-btn{transform:scale(1.05);box-shadow:0 8px 25px rgba(230,57,70,.5)}

    .blog__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}

    /* Анимации появления */
    .blog__header > .blog__card:nth-of-type(1){animation-delay:.9s}
    .blog__header > .blog__card:nth-of-type(2){animation-delay:1.1s}
    .blog__grid .blog__card:nth-child(1){animation-delay:1.3s}
    .blog__grid .blog__card:nth-child(2){animation-delay:1.5s}
    .blog__grid .blog__card:nth-child(3){animation-delay:1.7s}
    .blog__grid .blog__card:nth-child(4){animation-delay:1.9s}

    @keyframes fadeUp{to{opacity:1;transform:translateY(0)}}




    .blog-floating-img{
        position:absolute;top:50%;right:-220px;transform:translateY(-50%);
        width:820px;height:100%;background:url('') center/cover no-repeat;
        border-radius:32px;opacity:0;pointer-events:none;z-index:1;
        transition:all 2.2s cubic-bezier(.16,1,.3,1)
    }
    .blog-cont.animated .blog-floating-img{right:20px;opacity:.15}



    .header-but, .header-but-mob{
      background-color: #0055A5;
      color:#fff;
      font-weight: 600;
      margin-top: 3px;
      padding: 12px 17px;
      font-size: 18px;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
      border: #0055A5 2px solid;
      order:3;
    }




    .header-but:hover, .header-but-mob:hover{
      background-color: #6C994A;;

    }

    .header-tel, .header-tel-mob{
      background-color: var(--blue-dark) ;
      color:#fff;
      font-weight: 600;
     
      padding: 15px 20px;
      font-size: 20px;
      border-radius: 5px;


    }


  


    .header-but-mob, .header-tel-mob{
display: none;
    }

    /* Адаптив */
    @media(max-width:1200px){
        .container-blog{padding:0 40px}
        .blog__header{grid-template-columns:1fr 1fr;gap:32px}
        .blog__title-wrap{grid-column:1/-1;text-align:center;align-items:center}
        .blog__subtitle{font-size:19px;max-width:100%}
    }
    @media(max-width:900px){
        .container-blog{padding:0 30px}
        .blog__header{grid-template-columns:1fr}
        .blog__grid{grid-template-columns:1fr 1fr}
    }
    @media(max-width:768px){
      .header-tel, .header-but{
        display: none;
      }

      .header-but-mob{
        display: block;
        margin: 5px 0px 5px 12px;
              padding: 8px 10px;
              font-size: 16px;
              text-align: center;
              width:200px;
            }
        
      .header-tel-mob{
        display: block;
        padding-left: 16px;
        font-size: 22px;
      }

        .container-blog{padding:0 20px}
        .blog-cont{padding:90px 0}
        .blog__main-title{font-size:36px}
        .blog__subtitle{font-size:17px;margin:16px 0 0}
        .blog__main-btn{margin-top:28px;padding:16px 36px;font-size:17px}
        .blog__card-img{height:160px}
        .blog__card-content{padding:24px 20px}
        .blog__card-title{font-size:20px}
        .blog__card-text{font-size:16.5px}
    }
    @media(max-width:540px){
        .container-blog{padding:0 15px}
        .blog__grid{grid-template-columns:1fr}
        .blog__card-img{height:200px}
        .blog__main-btn{min-width:auto;width:100%;max-width:320px}
        .blog__subtitle{font-size:16px}
    }
	

    .milti-back-shadow-sec {
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100vw;
        height: 100vh;
        z-index: 9999;
        flex-direction: row;
        display: none;
        align-items: center;
        justify-content: center;
    }
    .milti-back-shadow-sec .milti-back-window {
        background-color: #ffffff;
        box-shadow: 0 0 15px #cddae7;
        border-radius: 16px;
        padding: 8px;
        max-width: 375px;
    }
    .milti-back-shadow-sec .milti-back-window {
        position: absolute;
        left: 50%;
        background: #fff;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 450px;
    }
    .milti-back-shadow-sec .milti-back-title-sec {
        background-color: var(--blue-main);
        padding: 8px 16px;
        color: #ffffff;
        border-radius: 10px;
        display: flex;
        flex-direction: row;
        font-size: 18px;
        align-items: center;
        justify-content: space-between;
        line-height: 28px;
        font-weight: 300;
        position: relative;
        background: var(--blue-main);
        font-family: sans-serif;
    }
    .milti-back-shadow-sec .milti-back-title-sec .milti-back-close {
        height: 27px;
        width: 27px;
        position: absolute;
        right: 25px;
        cursor: pointer;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .milti-back-shadow-sec .milti-back-close {
        transition: 0.2s;
    }
    .milti-back-shadow-sec .milti-back-title-sec .milti-back-close svg {
        height: 100%;
        width: 100%;
    }
    .milti-back-shadow-sec .milti-back-close svg {
        display: block;
    }
    .milti-back-shadow-sec .milti-back-window-content {
        padding: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .milti-back-shadow-sec .milti-back-window-content .milti-back-inputs {
        width: 100%;
    }
    .milti-back-shadow-sec .milti-back-window-content .milti-back-inputs .milti-back-inputs-forminputs {
        display: grid;
        grid-gap: 20px;
    }

    .milti-back-shadow-sec .milti-back-window-content .milti-back-inputs .milti-back-inputs-forminputs input {
        width: 100%;
        height: 50px;
        display: block;
        border: 1px solid #ccc;
        color: #ccc;
        font-family: sans-serif;
        padding-left: 20px;
    }
    .milti-back-shadow-sec .milti-back-title-form {
        line-height: 54px;
        padding: 0 20px;
        font-size: 14px;
        text-align: center;
        outline: none;
        border-radius: 12px;
    }
    .milti-back-shadow-sec .milti-back-inputs [type=text] {
        line-height: 54px;
        padding: 0 20px;
        font-size: 16px;
        text-align: center;
        outline: none;
        border-radius: 12px;
    }
    .milti-back-shadow-sec .politic {
        text-align: center;
        font-size: 12px;
        line-height: 16px;
        padding-left: 25px;
        white-space: pre-line;
        padding-right: 25px;
        font-family: sans-serif;
    }

    .milti-back-shadow-sec .politic a {
        text-decoration: none;
        border-bottom: 1px solid var(--blue-main);
        color: var(--blue-main);
        display: inline-block;
        width: fit-content;
        transition: 0.3s;
    }
    .milti-back-shadow-sec .multi-btn-sec {
        text-align: center;
        margin: 30px auto 20px;
        width: fit-content;
        padding-bottom: 10px;
    }
    .milti-back-btn {
        border-radius: 50px;
        padding: 15px 25px;
        color: #fff;
        background: var(--blue-main);
        font-family: sans-serif;
        font-weight: 500;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 15px;
        letter-spacing: 0.02em;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        display: inline-block;
    }
    .milti-back-shadow-sec .milti-back-modalmessage {
        padding-left: 25px;
        padding-right: 25px;
        font-size: 14px;
        height: 34px;
        color: red;
        text-align: center;
    }
   .ustanovka{   border: #00325e solid 2px;
    padding: 5px 5px;
    border-radius: 10px;
    font-weight: 600;
    color: #00325e;}

    .politic{
margin-top: 10px;
    }

    .politic a{
      text-decoration: underline;
      color: #00325e
    }


    .header__logo a, .footer__logo{
display: flex;

    }

.magazin{
    color: #6c9c43;
    font-size:22px;
    font-weight: 600;
}
.septic-logo{
    color: #0c5294;
    font-size: 22px;
    font-weight: 600;
}


@media (max-width:690px) {
    
    .septic-logo {
    font-size: 12px;
}

.header__logo img {
    width: 40px;
    height: 40px;
}
}

.catalog-item__image{
  position: relative;
}
.product-img{
  position: relative; 
}
.watermark{
position: absolute;
color:#fff;
font-weight: 600;
font-size: 20px;
opacity:0.20;
left:50%;
top:50%;
transform: translate(-50%);
text-align: center;
font-family: "Black";
}