/** Shopify CDN: Minification failed

Line 103:10 Expected identifier but found whitespace
Line 103:12 Unexpected "{"
Line 103:22 Expected ":"

**/
.mega_col_product_list {
  position: absolute;
  background: white;
  z-index: 100;
  padding: 15px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  width: 100%;
  left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.mega_col_title_name {
  font-size: 13px !important;
  font-weight: unset !important;
  color: inherit !important;
  text-decoration: none !important;
}

.mega-sections-container {
  display: flex;
  gap: 30px;
}

.mega-collection-section {
  flex: 1;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.mega-section-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 5px;
  /* border-bottom: 1px solid #eee; */
}

.mega-section-collections-wrapper {
  display: flex;
  gap: 20px;
}

.mega-section-collections {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}

.mega_col_product_list_item {
  position: relative;
  white-space: nowrap;
}

.advance-mega-menu-collection .product-grid .advance-mega-menu-content{
  padding-top:unset !important;
  padding-bottom:unset !important;
}

.advance-mega-menu-collection .product-grid .advance-mega-menu-content .mega_col_product_list_item, .advance-mega-menu-collection .product-grid .advance-mega-menu-content .mega_header{
  margin-bottom:unset!important;
}

/* Make all links inherit the theme color */
.advance-mega-menu-collection a {
  color: inherit;
  text-decoration: none;
}
  .advance-mega-menu-collection .mega_col_title.active{
    color:black;
    background:white;
  }
  .advance-mega-menu-collection .product-grid .advance-mega-menu-content .mega_header{
    border-bottom:unset !important;
  }
  .advance-mega-menu.mega-menu__list {
    border-right: 1px solid #d7d7d7;
}
  .advance-mega-menu-collection .mega_col_title{
    text-transform:unset !important;
  }

  .mega_col_product_list_item .mega_header {
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
  }

  .mega_col_product_list_item .mega_header:hover {
    background-color: rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(5px);
    color: {{ settings.colors_accent_1 }};
  }

  .mega_col_product_list_item .mega_header a:hover {
    color: #000 !important; /* Darker text on hover */
  }

  /* Image hover effect */
  .mega_col_product_list_item .mega_header img {
    transition: transform 0.3s ease;
  }

  .mega_col_product_list_item .mega_header:hover img {
    transform: scale(1.1); /* Slight zoom effect on the image */
  }

  /* Section title hover effect */
  .mega-section-title {
    position: relative;
    display: inline-block;
  }

  .mega-section-title:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transition: width 0.3s ease;
  }

  /* .mega-section-title:hover:after {
    width: 100%;
  } */