.content .tabsProduct.pvTabs {
  margin: 36px 0 28px 0;
  clear: both;
}
.content .tabsProduct.pvTabs .tabsList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  float: none;
  margin: 0 0 20px 0;
  padding: 5px;
  border-radius: 999px;
  background: #f4f5f7;
  border: 1px solid #eceef2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.content .tabsProduct.pvTabs .tabsList::before,
.content .tabsProduct.pvTabs .tabsList::after { display: none }
.content .tabsProduct.pvTabs .tabsList a {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cc-bx-muted);
  font-family: var(--cc-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.content .tabsProduct.pvTabs .tabsList a:hover {
  color: #111;
  text-decoration: none;
}
.content .tabsProduct.pvTabs .tabsList a.active {
  color: #111;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}
.content .tabsProduct.pvTabs .tabsContent {
  padding: 8px 0 0 0;
  line-height: 165%;
}
.content .tabsProduct.pvTabs .tabsContent .tab { display: none }
.content .tabsProduct.pvTabs .tabsContent .tab.active {
  display: block;
  animation: pvTabIn 0.22s ease-out;
}
@keyframes pvTabIn {
  from { opacity: 0; transform: translateY(6px) }
  to { opacity: 1; transform: translateY(0) }
}
@media screen and (max-width: 55em) {
  .content .tabsProduct.pvTabs { margin-top: 24px; padding: 0 }
  .content .tabsProduct.pvTabs .tabsList {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 16px;
    padding: 4px;
  }
  .content .tabsProduct.pvTabs .tabsList::-webkit-scrollbar { display: none }
  .content .tabsProduct.pvTabs .tabsList a {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 10px;
    opacity: 1;
  }
  .content .tabsProduct.pvTabs .tabsContent { margin-top: 0; padding-top: 4px }
}
