* {
  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-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.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;
  }
}
.contact-page .page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}
.contact-page h1 {
  font-size: 32px;
  margin: 0 0 24px;
  color: #3f3a34;
}
.contact-page h2 {
  font-size: 24px;
  margin: 32px 0 20px;
  color: #3f3a34;
}
.contact-page .contact-info {
  background: #f8f8f8;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #3f3a34;
  margin-bottom: 32px;
}
.contact-page .contact-info p {
  margin: 12px 0;
  line-height: 1.6;
}
.contact-page .shops-section {
  margin-bottom: 48px;
}
.contact-page .table-container {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.contact-page .shops-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}
.contact-page .shops-table th {
  background: #3f3a34;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-page .shops-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.contact-page .shops-table tr:hover {
  background: #f9f9f9;
}
.contact-page .shops-table tr:last-child td {
  border-bottom: none;
}
.contact-page .map-section {
  margin-top: 48px;
}
.contact-page .map-container {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.contact-page .map-iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 500px;
}
@media (max-width: 768px) {
  .contact-page .map-iframe {
    height: 400px;
  }
}





@media (max-width: 768px) {
  .contact-page .page-container {
    padding: 16px 12px;
  }
  .contact-page h1 {
    font-size: 26px;
  }
  .contact-page h2 {
    font-size: 20px;
  }
  .contact-page .contact-info {
    padding: 18px;
  }
  .contact-page .shops-table {
    font-size: 14px;
  }
  .contact-page .shops-table th, .contact-page .shops-table td {
    padding: 10px 12px;
  }
}



.header-right {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
        }

.youtube-link img {
    width: 40px;
    height: 40px;
    display: block;
    margin-right:5px;
    object-fit: contain;
}

        .cart-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            flex: 0 0 30px;
        }

        .cart-link img {
            width: 50px;
            height: 50px;
            margin-right:15px;
            display: block;
            object-fit: contain;
        }

        .cart-badge {
            position: absolute;
            top: -7px;
            right: -12px;
            min-width: 20px;
            height: 20px;
            padding: 0 5px;
            border-radius: 999px;
            background: #097969;
            color: #fff;
            font-size: 12px;
            line-height: 20px;
            text-align: center;
            font-weight: 700;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 350px));
            justify-content: center;
            gap: 16px;
            align-items: start;
        }

        .product-card {
            width: 350px;
            max-width: 100%;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 5px;
            overflow: hidden;
        }

        .product-image-wrap {
            display: block;
            padding: 14px 12px 8px;
        }

        .product-image-wrap img {
            width: 100%;
            display: block;
            object-fit: contain;
            border: 3px solid #000;
            box-sizing: border-box;
        }

        .product-content {
            padding: 0 12px 14px;
            text-align: center;
        }

        .product-name {
            font-weight: 700;
        
        }

        .product-buy-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            margin: 0;
        }

        .add-to-cart-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            border: 1px solid black;
            border-radius: 4px;
            background: #fff;
            color: #fff;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }
        .add-to-cart-btn img {
    width: 50px;
    height: 50px;
    display: block;
    object-fit: contain;
}

        .add-to-cart-btn:hover {
            opacity: 0.92;
        }

        .qty-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .qty-input {
            width: 64px;
            height: 36px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            border-radius: 4px;
            text-align: center;
            font-weight: 700;
            background: #fff;
        }

        .qty-btn {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(0, 0, 0, 0.25);
            border-radius: 4px;
            background: #f4f4f4;
            color: #111;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            line-height: 1;
        }

        .qty-btn:hover {
            background: #eaeaea;
        }

        .qty-btn:active {
            transform: translateY(1px);
        }
.products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 350px));
            justify-content: center;
            gap: 16px;
            align-items: start;
        }

        .product-card {
            width: 350px;
            max-width: 100%;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 5px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .product-image-wrap {
            display: block;
            padding: 14px 12px 8px;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-image-wrap img {
            width: 100%;
            max-width: 300px;
            height: auto;
            display: block;
            object-fit: contain;
            border: 3px solid #000;
            box-sizing: border-box;
        }

        .product-content {
            padding: 0 12px 14px;
            text-align: center;
            flex-grow: 0;
        }

        .product-name {
            font-weight: 700;
            margin: 0;
            padding: 12px 0;
        }

        .products-section {
            max-width: 1400px;
            margin: 28px auto;
            padding: 0 16px;
        }

        .products-section h2 {
            text-align: center;
            font-size: 28px;
            margin-bottom: 32px;
            color: #3f3a34;
            font-weight: 800;
        }
        
        
        
        .contact-page {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .page-container {
            gap: 40px;
        }

        .contact-section, .shops-section, .map-section {
            margin-bottom: 40px;
        }

        .contact-section h1, .shops-section h2, .map-section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 24px;
            color: #3f3a34;
            font-weight: 800;
        }

        .contact-info {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            line-height: 1.6;
        }

        .contact-info h2 {
            font-size: 24px;
            color: #d40000;
            margin-bottom: 16px;
        }

        .table-container {
            overflow-x: auto;
            margin-top: 20px;
        }

        .shops-table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .shops-table th {
            background: #3f3a34;
            color: #fff;
            padding: 16px 12px;
            text-align: left;
            font-weight: 700;
        }

        .shops-table td {
            padding: 14px 12px;
            border-bottom: 1px solid #eee;
        }

        .shops-table tr:hover {
            background: #f8f9fa;
        }

        .map-container {
            margin-top: 20px;
        }

        .map-iframe {
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
/*# sourceMappingURL=styles.css.map */
