* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

body {
  padding-top: 140px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.site-menu {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-header {
  top: 0;
  height: 70px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-logo img {
  height: calc(70px / 2);
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.header-right img {
  width: 22px;
  height: 22px;
}

.site-menu {
  top: 70px;
  background: #3f3a34;
  color: #ffffff;
}

.menu-desktop {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}

.menu-item {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.burger {
  display: none;
  cursor: pointer;
  padding: 14px 16px;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #ffffff;
  border-radius: 2px;
}

.menu-mobile-links {
  display: none;
  flex-direction: column;
  background: #3f3a34;
}

.menu-mobile-links a {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.slider-section,
.description-section,
.products-section,
.footer-section {
  width: 100%;
}

.slider-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 16px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 16px;
  align-items: stretch;
}

.splide {
  border-radius: 5px;
  overflow: hidden;
}

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

.side-stack {
  display: grid;
  gap: 10px;
}

.side-item {
  width: 350px;
  min-height: 200px;
  border-radius: 3px;
  overflow: hidden;
  background: #ddd;
  position: relative;
}

.side-item video,
.side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.description-strip {
  max-width: 1400px;
  margin: 16px auto 0;
  padding: 14px;
  background: #3f3a34;
  color: #ffffff;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.desc-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.desc-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.products-section {
  max-width: 1400px;
  margin: 28px auto;
  padding: 0 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 350px));
  justify-content: center;
  gap: 16px;
}

.product-box {
  width: 350px;
  max-width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-box img {
  width: 100%;
  max-width: 330px;
  margin: 14px auto 8px;
  display: block;
  object-fit: contain;
}

.product-name {
  text-align: center;
  padding: 0 12px 14px;
  font-weight: 700;
}

.site-footer {
  background: #3f3a34;
  color: #ffffff;
  padding: 28px 16px 12px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr 320px;
  gap: 18px;
  align-items: start;
}

.footer-logo img {
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.footer-map {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-text {
  white-space: pre-line;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  opacity: 0.95;
}

@media (max-width: 1100px) {
  .slider-wrap {
    grid-template-columns: 1fr;
  }
  .side-stack {
    grid-template-columns: repeat(3, 1fr);
  }
  .side-item {
    width: 100%;
    min-height: 200px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 110px;
  }
  .menu-desktop {
    display: none;
  }
  .burger {
    display: block;
  }
  .site-menu.open .menu-mobile-links {
    display: flex;
  }
  .slider-wrap {
    padding-top: 16px;
  }
  .side-stack {
    grid-template-columns: 1fr;
  }
  .description-strip {
    grid-template-columns: 1fr;
  }
  .header-right {
    font-size: 12px;
    gap: 8px;
  }
}

/*# sourceMappingURL=styles.css.map */
