/** Shopify CDN: Minification failed

Line 12:21 Expected identifier but found "{"
Line 12:22 Unexpected "{"
Line 12:31 Expected ":"

**/
.product-tabs-section {
    padding: 20px;
    /* max-width: 1400px; */
    margin: 0 auto;
    background-color:{{ section.settings.tabs_bg }};
  }
  
  .product-tabs__header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .product-tabs__title {
    /* font-size: 32px; */
    margin-bottom: 30px;
    color: #333;
  }
  
  .product-tabs__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
  }
  
  .product-tabs__nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 6px;
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
  }

  .product-tabs__nav-item .icon-img{
    display: flex;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
  }
  .product-tabs__nav-item .icon-img img{
    width: 100%;
    height: auto;
  }
  .product-tabs__nav-item .icon-name{
    margin:0;
    color:#999;
    margin-bottom:4px;
    font-weight: 400;
    font-size:14px;
  }
 
  .product-tabs__nav-item:hover {
    /* border-color: #333; */
    border-bottom:1px solid #111;
    /* transform: translateY(-2px); */
  }
  
  .product-tabs__nav-item.active {
    /* border-color: #333; */
    /* background-color: #333; */
    /* color: white; */
    border-bottom:2px solid #111;
  }
.product-tabs__nav-item.active .icon-name{
    margin:0;
    color:#111;

  }
  
  
  .product-tabs__nav-name {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }
  
  .product-tabs__content-container {
    position: relative;
    min-height: 400px;
  }
  
  .product-tabs__content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .product-tabs__content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .product-tabs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .product-card-custom {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
  }
  .product-card-custom .product-card__image{
    height: 200px;
    overflow: hidden;
    display: block;
  }
  .product-card-custom a img{
    position: relative;
    height: auto;
    object-fit: contain;
  }
  .product-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .product-card__info .cur-total,
  .product-card__info .tag{
    color:#aaa;
    font-size:13px;
  }
  .product-card__info .info-tag{
    display:flex;
    justify-content: space-between;
    align-items: center;
  }
  .product-card__info .info-tag h5{
    margin-top:4px;
    margin-bottom:0;
  }
  
  .product-card__info .cur-total .cur-tag{
    font-size: 12px;
    display: inline-block;
    background: #a2efa2;
    padding: 4px 12px;
    color: #199419;
    margin-left: 10px;
    border-radius: 14px;
  }
  .hr{
    margin:6px 0;
    height:1px;
    display:block !important;
    width:100%;
    background:#ddd;
  }
  .product-card__image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
  }
  
  .product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-card-custom:hover .product-card__image {
    transform: scale(1.05);
  }
  
  .product-card__info {
    padding: 20px;
  }
  .product-card__info .product-title{
    height: 64px;
  }
  .product-card__info .cur-prive{
    display:flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
  }
  .link-btn{
    margin:1.5em auto;
    display:block;
    text-align: center;
  }
  .product-card__price {
    display: flex;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    margin: 20px 0;
  }
  
  .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    /* margin-bottom: 20px; */
  }
  
  .quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.2s ease;
    color: #333;
  }
  
  .quantity-btn:hover:not(:disabled) {
    border-color: #333;
    background: #f5f5f5;
  }
  
  .quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .quantity-input {
    width: 40px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    /* border-radius: 8px; */
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
  }
  
  .quantity-input::-webkit-outer-spin-button,
  .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .add-to-cart-btn:hover:not(:disabled) {
    background-color: #555;
    transform: translateY(-2px);
  }
  
  .add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  
  .add-to-cart-btn.added {
    background-color: #27ae60;
  }
  
  .no-products {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
  }
  
  
  .product-tabs__header .scrolling-button .btn-swiper-left{
    transform: rotate(180deg);
  }
  .product-tabs__header .scrolling-button{
    /* position: absolute; */
    /* width: 100%;
    height:100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:2;
  }
  .product-tabs__header .scrolling-button .btn-swiper{
    display: flex;
    align-items: center;
  }

  .product-tabs__header .scrolling-button{
    display:none;
  }
  @media (max-width: 768px) {
    .product-card__info .product-title{
        height: auto;
    }
    .product-tabs__nav {
      gap: 10px;
    }
    
    .product-tabs__nav-item {
      padding: 12px 20px;
      min-width: 90px;
    }
    
    .product-tabs__grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .product-tabs__nav {
      flex-direction: column;
      align-items: center;
    }
    
    .product-tabs__nav-item {
      width: 200px;
    }
    
    .product-tabs__grid {
      grid-template-columns: 1fr;
    }
  }