.category-tabs-section {
    margin: 60px 0 0 0;
  }
  .category-tabs-layout {
    display: flex;
    gap: 30px;
  }
  .category-tabs-sidebar {
    flex: 0 0 300px;
    display: flex;
    align-items: flex-start;
  }
  .category-tabs-sidebar img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 16px #e0e0e0;
  }
  .category-tabs-main {
    flex: 1 1 0%;
  }
  .category-tabs-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 20px;
  }
  .category-tabs-title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .category-tabs-title h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0 0;
    line-height: 1.1;
  }
  .category-tabs-title .category-tabs-underline {
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 60px;
    height: 4px;
    background: #e43c74;
    border-radius: 2px;
    margin: 0;
    z-index: 2;
  }
  body.rtl .category-tabs-title .category-tabs-underline {
    position: absolute;
    left: inherit;
    bottom: -18px;
    width: 60px;
    height: 4px;
    background: #e43c74;
    border-radius: 2px;
    margin: 0;
    z-index: 2;
}
  .tabs-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
  }
  .tab-btn {
    padding: 10px 28px;
    border: none;
    background: #2d2d7f;
    color: #fff;
    cursor: pointer;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    outline: none;
  }
  .tab-btn.active,
  .tab-btn:hover {
    background: #e43c74;
    color: #fff;
  }
  .tabs-content .tab-content {
    display: none;
  }
  .tabs-content .tab-content.active {
    display: block;
  }
  .products-grid {
    display: grid;
    gap: 20px;
  }
  .products-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .products-grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .products-grid-cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px #eee;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-title {
    font-weight: bold;
    margin: 10px 0 5px;
    font-size: 1rem;
  }
  .two-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
    max-height: 2.6em;
    line-height: 1.3em;
  }
  .product-price {
    color: #2d2dff;
    font-weight: 600;
    margin-top: 4px;
  }
  .product-price .regular-price {
    color: #888;
    font-weight: 400;
    margin-left: 6px;
    font-size: 0.95em;
  }
  .product-price .sale-price {
    color: #e91e63;
    font-weight: 700;
  }
  @media (max-width: 1200px) {
    .products-grid-cols-6 { grid-template-columns: repeat(4, 1fr); }
    .products-grid-cols-5 { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 900px) {
    .products-grid,
    .products-grid-cols-3,
    .products-grid-cols-4,
    .products-grid-cols-5,
    .products-grid-cols-6 {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .category-tabs-layout {
      flex-direction: column;
      gap: 20px;
    }
    .category-tabs-main {
      order: 1;
    }
    .category-tabs-sidebar {
      order: 2;
      max-width: 100%;
      margin-bottom: 0;
      margin-top: 20px;
    }
    .category-tabs-header-row {
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    .category-tabs-header-row .category-tabs-title {
      align-items: flex-end;
      width: 100%;
    }
    .category-tabs-title .category-tabs-underline {
      right: 0;
      left: 0;
      margin-left: 0;
      margin-right: 0;
    }
    .category-tabs-header-row .tabs-menu {
        margin-left: 0;
        margin-right: 0;
        margin-top: -22px;
        justify-content: left;
        width: 100%;
        margin-bottom: 10px;
    }
.rt-product-box.layout-6 {
    border-radius: 13px;
    display: inline-block;
}
.rt-product-box .item-content .product-name {
    margin-top: 15px;
}
  }
  @media (max-width: 600px) {
    .products-grid,
    .products-grid-cols-3,
    .products-grid-cols-4,
    .products-grid-cols-5,
    .products-grid-cols-6 {
      //grid-template-columns: 1fr !important;
		grid-template-columns: repeat(2, 1fr) !important;
    }
.rt-product-box.layout-6 {
    border-radius: 13px;
    display: inline-block;
}
.rt-product-box .item-content .product-name {
    margin-top: 15px;
}
  }
  .category-tabs-section .product-name {
    text-align: left;
  }
  .category-tabs-section .item-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .category-tabs-section .item-img img {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .category-tabs-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
  }
  .category-tabs-header-row .category-tabs-title {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .category-tabs-header-row .tabs-menu {
    margin-left: auto;
    display: flex;
  }
  body.rtl .category-tabs-header-row .tabs-menu {
    margin-left: inherit;
    display: flow;
    gap: 20px;
}
body.rtl .tab-btn, .tab-btn {
	margin-left: 10px;
}
body.rtl .tab-btn.active, .tab-btn:hover {
    background: #e43c74;
    color: #fff;
}

body.rtl .category-tabs-section .product-name {
    text-align: right;
}
  .category-tabs-section .category-tabs-header-row {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 18px;
    margin-bottom: 18px;
  } 