/* --- Стили для Футера --- */
  .site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, .08);
    margin-top: 40px;
    padding-top: 40px;
    font-family: system-ui, -apple-system, sans-serif;
    color: #0f172a;
  }

  .footer-container {
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* 3 колонки: широкая + 2 обычные */
    gap: 40px;
  }

  /* Колонка с брендом */
  .ft-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .ft-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(22,163,74,.1), rgba(2,132,199,.1));
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 16px;
  }
  .ft-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #475569;
    max-width: 300px;
  }

  /* Заголовки колонок */
  .ft-head {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0f172a;
  }

  /* Ссылки и списки */
  .ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .ft-links li {
    margin-bottom: 10px;
  }
  .ft-links a {
    text-decoration: none;
    color: #475569;
    font-size: 13px;
    transition: color 0.2s;
  }
  .ft-links a:hover {
    color: #16a34a; /* Зеленый при наведении */
  }

  /* Нижняя полоса */
  .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(15, 23, 42, .06);
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
  }
  .ft-sep {
    margin: 0 8px;
    opacity: 0.4;
  }

  /* Адаптив: на мобилках всё в одну колонку */
  @media(max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }







.warehouse-section {
  background-color: #f9fafb;
	    width: 80%;
    margin: auto;
	font-family: sans-serif;
}

.warehouse-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.warehouse-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.warehouse-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Статистика / Преимущества */
.warehouse-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  min-width: 200px;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00b894; /* Твой зеленый цвет с кнопок */
  margin-bottom: 5px;
}

.stat-text {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Галерея */
.warehouse-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Левая часть широкая, правая - колонка */
  grid-template-rows: 200px 200px; /* Две строки по высоте */
  gap: 15px;
  max-width: 1200px; /* Подстрой под ширину своего сайта */
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05); /* Легкое увеличение при наведении */
}

/* Расстановка фото в сетке */
.gallery-item.main-photo {
  grid-row: 1 / 3; /* Занимает всю высоту слева */
  grid-column: 1 / 2;
}

/* Адаптив для телефонов */
@media (max-width: 768px) {
  .warehouse-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.main-photo {
    grid-row: auto;
    height: 250px;
  }
  .gallery-item {
    height: 200px;
  }
  .warehouse-stats {
    gap: 15px;
  }
  .stat-item {
    width: 100%;
	margin: 25px;
    margin-top: 0;
    margin-bottom: 0;
  }
}




.axis-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}
	.axis-top {
        right: 16px;
        bottom: 84px;
        width: 44px;
        height: 44px;
    }
	.axis-top {
    position: fixed;
    right: 26px;
    bottom: 96px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(15, 23, 42, .25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: .3s;
    z-index:99;
}
	.axis-top svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
	
#axisTop {
    display: none; /* Или opacity: 0, если используете анимацию */
    position: fixed;
            bottom:85px;
        right: 20px;
    
    
}

#axisTop.show {
    display: block; /* Или opacity: 1 */
}
	
	.axis-top.show{
opacity:1;
pointer-events:auto;
}

.lang-switch--floating{position:fixed;right:12px;top:50%;transform:translateY(-50%);z-index:9999;box-shadow:0 10px 30px rgba(0,0,0,.2);}

@keyframes pop{from{transform:scale(.9);opacity:0;}to{transform:scale(1);opacity:1;}}
.mobile-contact-bar{position:fixed;left:12px;right:12px;bottom:0;z-index:99;display:grid;grid-template-columns:repeat(3,1fr);gap:10px;padding:10px;border-radius:22px;background:rgb(237 240 245);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);border:1px solid rgba(255,255,255,.08);box-shadow:0 18px 50px rgba(0,0,0,.28);transform:translateY(calc(100% + 24px));opacity:0;pointer-events:none;transition:transform .35s ease,opacity .35s ease;}
.mobile-contact-bar.is-visible{transform:translateY(0);opacity:1;pointer-events:auto;}
.mobile-contact-bar__item{min-height:56px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;border-radius:16px;text-decoration:none;color:#fff;font-size:11px;font-weight:700;letter-spacing:.02em;background:rgb(151 25 150 / 83%);border:1px solid rgba(255,255,255,.06);transition:transform .2s ease,background .2s ease;}
.mobile-contact-bar__item:active{transform:scale(.97);}
.mobile-contact-bar__item svg{width:21px;height:21px;fill:currentColor;display:block;}





@media (min-width: 1024px) {
  /* Стили для десктопа */
	.mobile-contact-bar, .m-header{display:none;}
}




@media (max-width: 768px) {
	.b2b-header,.menu-wrapper{display:none;}
	.kopt-hero{width:95%;padding:0;margin-top:15px;}
	.kopt-hero__left{padding:20px;}
	.kopt-hero .kopt-calcBtn{display:none;}
	.kopt-box{padding:0;}
	.kopt-hero__right{padding:0 20px 20px 20px;}
	.kopt-fine{display:none;}
	.seo-block, .catalog-block{width:90%;}
	.pc-thumb img{width:100%;height:100%;}
	.kopt-calcBtn{padding:0;min-height:0;background:#fe5b09;color:#fff;font-size:11px;font-weight:700;letter-spacing:.02em;gap:6px;flex-direction:column;border-radius:10px;justify-content:center;}
	.hbtn-phone{border-radius:10px;display:flex;align-items:center;justify-content:center;border:none;background:rgb(151 25 150 / 83%);color:white;cursor:pointer;transition: all .2s;flex-direction:column;font-size:11px;font-weight:700;letter-spacing: .02em;gap:6px;}
}
