/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 121:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.custom-nav-banner-wrapper {
  width: 100%;
  box-sizing: border-box;
}

.custom-nav-banner {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch; /* ← svarbu, kad menu gautų tokį pat aukštį kaip image */
  max-width: 1880px;
  margin: 0 auto;
  gap: 2rem;
}

/* Įvyniojame paveikslėlį į wrapper su kairiu padding */
.image-side-wrapper {
  flex: 1;
  padding-left: 2rem;
  box-sizing: border-box;
}

.image-side {
  width: 100%;
  aspect-ratio: 16 / 7.8;
  overflow: hidden;
  position: relative;
}

.image-side img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-side {
  width: 300px;
  background: #F4EBD8;
  padding: 2rem;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.category-item {
  cursor: pointer;
  padding: 1rem 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-item:hover {
  color: #000;
  font-weight: bold;
}

.arrow-icon {
  transition: transform 0.3s ease;
}
.rotate-90 {
  transform: rotate(90deg);
}

.subcategories {
  display: none;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.category-item.active + .subcategories {
  display: block;
}
.subcategories li {
  margin-bottom: 0.3rem;
}
.subcategories a {
  color: #555;
  text-decoration: none;
}
.subcategories a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .custom-nav-banner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: unset;
  }

  .image-side-wrapper {
    padding-left: 0;
  }

  .image-side,
  .menu-side {
    width: 100%;
    height: auto;
  }
}
</style>