:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.product-page-info-tabs-desktop .product-info-tabs-nav {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  border-bottom: 0.1rem solid var(--red-30, #f4b2c1);
  margin-bottom: 3rem;
  padding-bottom: 1.2rem;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn {
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 0 !important;
  padding-right: 0.6rem !important;
  padding-left: 1.3rem !important;
  color: var(--black-main, #333032);
  font-family: Simpler;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 130%;
  text-align: right;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-direction: row;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn::before {
  content: "";
  height: 0.3rem;
  position: absolute;
  width: 100%;
  max-width: 0px;
  bottom: -1.2rem;
  right: 0;
  background-color: var(--red-main, #db0032);
  transition: max-width 0.3s ease;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn:hover {
  color: var(--red-main, #db0032);
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn:hover::before {
  max-width: 100%;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn.active {
  color: var(--red-main, #db0032);
  font-weight: 700;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn.active::before {
  max-width: 100%;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn.active .tab-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn.active .tab-arrow-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn.active .tab-arrow-icon svg * {
  stroke: var(--red-main, #db0032) !important;
}
.product-page-info-tabs-desktop .product-info-tabs-nav .product-info-tab-btn .tab-arrow-icon {
  display: none;
}
.product-page-info-tabs-desktop .product-info-sections {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
}
.product-page-info-tabs-desktop .product-info-sections .product-info-section {
  scroll-margin-top: 10rem;
}
.product-page-info-tabs-desktop .product-info-sections .product-info-section#product-info-section-usage {
  scroll-margin-top: 8rem;
}
