/** Shopify CDN: Minification failed

Line 172:0 All "@import" rules must come first

**/

.menu-drawer__banner-image {
  width: 100%;
  max-width: 420px;
  min-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}

.menu-drawer__banner-link {
  display: block;
  max-width: 420px;
  margin: 0 auto;
}

.menu-drawer__menu-item {
  background-color: #f2f2f2;
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 700;
}

.grey-back {
  background-color: #f2f2f2;
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 700;
}

/* Collection Layout */
.menu-drawer__collection {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px;
  background-color: #f2f2f2;
  border-radius: 8px;
  gap: 12px;
  transition: background-color 0.2s ease-in-out;
}

/* Hover effect */
.menu-drawer__collection:hover {
  background-color: #e6e6e6;
}

/* Collection Image */
.menu-drawer__collection-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.2s ease-in-out;
}

.menu-drawer__childlink-wrapper {
  display: flex;
  align-items: center;
  gap: 14px; /* increased gap slightly for visual balance */
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.menu-drawer__childlink-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Image hover effect */
.menu-drawer__collection:hover .menu-drawer__collection-image {
  transform: scale(1.05);
}

/* Collection Content */
.menu-drawer__collection-content {
  display: flex;
  flex-direction: column;
}

/* Collection Title */
.menu-drawer__collection-title {
  font-size: 1.5rem;
  font-weight: bold !important;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "RedHatDisplay", sans-serif;
  font-weight: 700;
}

/* Collection Description */
.menu-drawer__collection-desc {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 4px 0 0;
}

/* Move arrow slightly to the right on hover */
.menu-drawer__menu-item:hover .svg-wrapper {
  transform: translateX(5px) translateY(-50%);
  transition: transform 0.2s ease-in-out;
}

/* Ensure default positioning */
.menu-drawer__menu-item .svg-wrapper {
  width: 15px;
  position: absolute;
  right: 3rem;
  top: 55%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
}

/* 🟢 Mobile Adjustments */
@media screen and (max-width: 600px) {
  .menu-drawer__banner-image {
    max-width: 100%;
  }

  .menu-drawer__collection {
    padding: 8px;
    gap: 8px;
  }

  .menu-drawer__collection-image {
    width: 60px;
    height: 60px;
  }

  .menu-drawer__collection-title {
    font-size: 1.3rem;
  }

  .menu-drawer__collection-desc {
    font-size: 1rem;
  }
}

/* 🖥 Desktop Adjustments */
@media screen and (min-width: 1024px) {
  .menu-drawer__collection {
    padding: 16px;
    gap: 1rem;
  }

  .menu-drawer__collection-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
  }

  .menu-drawer__collection-title {
    font-size: 1.5rem;
  }

  .menu-drawer__collection-desc {
    font-size: 1.2rem;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
