/** Shopify CDN: Minification failed

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

**/
  .tab-wrapper{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 80px;
  }
    .tabs {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
      align-items: center;
      justify-content: center;
    }
    .tab {
      padding: 10px 0px;
      border-radius: 10px;
      font-family: Outfit, sans-serif;
      font-size: 22px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      display: flex;
      flex-basis: 100%;
      justify-content: center;
      padding: 10px 0px;
      cursor: pointer;
    }
    .tab:hover{
      background-color: white;
    }
    .tab.active {
      background: black;
      color: white;
    }
    .tab-content {
      display: none;
    }
    .tab-content.active {
      display: block;
    }
    .blocks {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      align-items: center;
      justify-content: center;
    }
    .block img {
      width: 150px;
      height: auto;
      border-radius: 6px;
    }
    .set-block{
      text-align: center;
      margin-top: 30px;
      margin-bottom: 30px;
  }
  .set-block a{
    color:#000;
  }
    .set-block h2{
      color: var(--Black, #000);
      text-align: center;
      font-family: Outfit;
      font-size: 20px;
      font-style: normal;
      font-weight: 600;
      cursor: pointer;
    }
    .women-sets{
      display: flex;
      flex-wrap: wrap;
      gap: 2%;
      align-items: flex-start;
      justify-content: center;
    }
  .swatches{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .swatch{
    width: 40px;
    cursor: pointer;
  }
  .swatch.selected{
    border: 2px solid
  }
  .main-image{
    width:100%;
    cursor: pointer;
    position: relative;
  }
  .image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* black with some transparency */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  .main-image-wrapper{
    position: relative;
    display: flex;
  }
  .set-block{
    width:32%;
  }
  .main-img-link{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    z-index: 2;
  }
  .main-img-link:hover{
     background-color: rgba(255, 255, 255, 1);
  }
  .main-image-wrapper:hover .main-img-link {
    display: block;
  }
  .main-image-wrapper:hover .image-overlay {
    opacity: 1;
  }
  .main-image-wrapper div:empty{
    display:block !important;
  }
 .tab-wrapper .sub_heading{
    color: #fff;
    text-align: center;
    font-family: Outfit;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    margin: 30px auto 10px;
    background-color: #000000ad;
    border-radius: 6px;
    padding: 8px 0;
  }
  @media screen and (max-width: 1050px) {
    .tab {
      padding: 8px 40px;
    }
   .tab-wrapper .sub_heading{
      font-size: 18px;
    }
    .tab-wrapper{
      width: 90%;
    }
@media screen and (max-width: 600px) {
  .women-sets {
    display: flex;
    flex-direction: column;
  }
    .set-block {
      width: 100%;
      margin-top:10px;
      margin-bottom:10px;
    }
}