/** Shopify CDN: Minification failed

Line 87:12 Unexpected "{"
Line 87:21 Expected ":"
Line 88:16 Expected identifier but found whitespace
Line 88:18 Unexpected "{"
Line 88:27 Expected ":"
Line 88:78 Expected ":"
Line 89:19 Expected identifier but found whitespace
Line 89:21 Unexpected "{"
Line 89:30 Expected ":"
Line 89:84 Expected ":"
... and 10 more hidden warnings

**/

.tab-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-buttons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
  }

  .tab-buttons button {
    background: gray;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: all 0.3s ease;
  }

  .tab-buttons button.active {
    border-bottom: 3px solid #000;
    background-color: black;
  }

  .tab-content {
    display: none;
    margin-top: 10px;
  }

  .tab-content.active {
    display: block;
  }

  .related-products {
    margin-top: 20px;

  }

  @media screen and (max-width: 768px) {
    .tab-buttons {
      flex-direction: column;
      align-items: stretch;
    }

    .tab-btn {
      width: 100%;
    }
  }
   .collection_wr-wrapper .product-grid {
    column-gap: 16px;
    row-gap: 30px;
  }
   .collection_wr-wrapper .product-grid li{
        max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
        background: linear-gradient(270.29deg, #20133e .33%, #142349 99.84%);
        overflow-y: hidden;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);

   }
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }
  .collection_wr-wrapper .card{
    background: transparent;
  }
  .collection_wr-wrapper .card .media{
    position: relative;
  }
  .collection_wr-wrapper .card__media .media img{
    position: relative;
  }
  .collection_wr-wrapper .card__media h3{
            font-size: 15px;
        margin: 0;
        line-height: 1.3;
        font-weight: 400;
        color: white;
        letter-spacing: 1px;
        height: 40px;
        max-height: 40px;
        overflow: hidden;
        text-align: left;
        margin-left: 15px;
        text-transform: uppercase;
  }
  .collection_wr-wrapper .add-to-wishlist{
    background: transparent !important;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: absolute;
    top: -50px;
    right: 7px;
    font-size: 0;
    width: 30px;
    height: 40px;
    z-index: 2;
    /* background: linear-gradient(90deg, rgba(15, 105, 220, 0.44) 0%, rgba(124, 29, 200, 0.44) 100%) !important; */
    /* backdrop-filter: blur(5px); */
    border-radius: 0 6px 6px 6px;
     display: flex;
    justify-content: center;
    align-items: center;
  }
  .collection_wr-wrapper .add-to-wishlist .wishlist-heart{
    width: 26px;
    height: 26px;
  }
  .collection_wr-wrapper .card .media::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, #0000 40.63%, #030537fc);
}
  .collection_wr-wrapper .quick-add__submit {
                background: linear-gradient(270deg, #ea811d 0%, #7c1dc8 100%);
        border-radius: 8px;
        padding: 0 5px;
        height: 34px;
        line-height: 15px;
        font-family: 'Outfit', sans-serif !important;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 1px;
        border: none;
        color: #fff !important;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
      padding: 15px;
      height: auto;
      min-height: auto;
      text-transform: uppercase;

  }
    .collection_wr-wrapper .quick-add__submit::after{
      display: none;
    }
     .collection_wr-wrapper .card-information>.price{
        color: #fff;
        text-align: center;
        font-weight: 900;
        letter-spacing: 1px;
        font-size: 15px;

     }
     .collection_wr-wrapper .collection__view-all .button{
      margin-top: 20px;
      background: transparent;
      text-decoration: underline;
     }



  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }