/** Shopify CDN: Minification failed

Line 130:1 Expected "}" to go with "{"

**/
.m-mega-menu {
  margin-top: 30px !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

.fr-mega-menu a,
.fr-mega-menu button,
.fr-mega-menu [role="button"] {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 10000 !important;
}

.fr-mega-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
.fr-mega-menu-content1 {
    width: 100% !important;
}
.fr-mega-left {
        width: 23%;
        padding-top: 5rem;
        padding-left: 5rem;
    }

  .fr-mega-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .fr-mega-left li {
    margin: 10px 0;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .fr-mega-left a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
  }
  /* Divider between left & right */
  .fr-mega-divider {
    width: 1px;
    background: #eee;
    margin: 10px 0;
  }

  /* Right side (image groups) */
       .fr-mega-right {
        width: 60%;
        display: flex;
        height: 100%;
        padding: 5rem 0;
    }
    .fr-mega-col {
    width: 28% !important;
}

  /* Each category group */
  .fr-mega-images {
    display: none;
    width: 85%;
    justify-content: center;
    column-gap: 40px;
  }
.fr-custom-simple-mega-menu-images-container {
    display: flex;
    width: 85%;
    justify-content: center;
    column-gap: 40px;
}
  /* Show first group by default */
  .fr-mega-images:first-child {
    display: flex;
  }

  /* Individual image box */
 .fr-mega-col {
    flex: unset;
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
    /* transition: transform .3s; */
    margin: 0 8px;
}

  /* .fr-mega-col:hover {
    transform: translateY(-5px);
  } */

  .fr-mega-col img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    height:230px;
  }

.fr-mega-col:hover img {
    transform: scale(1.05);
  }
.img-caption {
    font-size: 16px;
    color: #333;
    padding-top: 1.5rem;
}
.fr-custom-menu-heading h3 {
    font-size: 18px;
    font-weight: 700;
}
.fr-custom-menu-heading
 {
    padding-bottom: 2rem;
}
.fr-mega-left a:hover {
    opacity: 0.7;
}