html:has(.header-product) {
  background: #e9f5f2;
}

#header.header-product {
  padding-bottom: 1.5em;
}

#header.header-product .left .visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  flex: 4;
  aspect-ratio: 4/3;
}

#header.header-product .left .visual img {
  position: absolute;
  display: block;
  width: auto;
  height: 100%;
  max-height: 70%;
}

#header.header-product .left .visualslider {
  position: relative;
  width: 100%;
  background: var(--white);
  flex: 4;
  aspect-ratio: 4/3;
}

#header.header-product .left .visualslider .swiper-wrapper {
  position: absolute;
}

#header.header-product .left .visualslider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header.header-product .left .visualslider .swiper-slide.productimage img {
  position: absolute;
  display: block;
  width: auto;
  height: 100%;
  max-height: 70%;
}

#header.header-product .left .visualslider .swiper-slide:not(.productimage) img {
  display: block;
  width: auto;
  height: 85%;
}

#header.header-product .left .visualslider .swiper-arrow {
  position: absolute;
  aspect-ratio: 1;
  width: 50px;
  top: calc(50% - 25px);
  z-index: 10;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.2s ease-in-out;
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#header.header-product .left .visualslider:hover .swiper-arrow {
  opacity: 1;
}

#header.header-product .left .visualslider .swiper-arrow svg {
  display: block;
  width: auto;
  height: 30px;
  fill: var(--darkgreen);
}

#header.header-product .left .visualslider .swiper-arrow.arrow-left {
  left: 20px;
}

#header.header-product .left .visualslider .swiper-arrow.arrow-right {
  right: 20px;
  justify-content: flex-end;
}

#header.header-product .left .galleryslider {
  width: 100%;
  background: var(--color_hc);
  flex: 1;
  box-sizing: border-box;
  border-width: 1em;
  border-color: var(--color_hc);
  border-style: solid;
}

#header.header-product .left .galleryslider .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}

#header.header-product .left .galleryslider .swiper-slide:not(.swiper-slide-thumb-active) {
  filter: brightness(0.7);
  transition: filter 0.2s ease-in-out;
}

#header.header-product .left .galleryslider .swiper-slide.productimage {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color_lc);
}

#header.header-product .left .galleryslider .swiper-slide.productimage img {
  position: absolute;
  display: block;
  width: auto;
  height: 100%;
  max-height: 80%;
}

#header.header-product .left .galleryslider .swiper-slide:not(.productimage) img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#header.header-product .right .header-item {
  background: #DCEFEA;
}

#header.header-product .right .header-item h1 {
  font-size: clamp(20px, 3.5vw, 40px);
  text-wrap: balance;
}

#header.header-product .right .header-item p {
  margin: 0;
  font-size: clamp(14px, 1.25vw, 20px);
  line-height: 1.4em;
  color: var(--darkgreen);
  text-wrap: balance;
}

#header.header-product .right .header-item p:nth-last-child(2) {
  margin-bottom: 1.5em;
}

#header.header-product .right .header-item ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}

#header.header-product .right .header-item ul:nth-last-child(2) {
  margin-bottom: 1.5em;
}

#header.header-product .right .header-item ul li {
  border-radius: 10px;
  line-height: 1.4em;
  background: var(--white);
  box-sizing: border-box;
}

#header.header-product .right .header-item .btn {
  align-self: flex-start;
  margin-top: auto;
}

#header.header-product .right .header-item small {
  display: flex;
  gap: 1em;
  padding: 15px;
  border-radius: var(--border-radius);
  text-wrap: balance;
  font-size: 14px;
  line-height: 1.4em;
  border: 1px solid var(--darkgreen);
  box-sizing: border-box;
  color: var(--darkgreen);
}

#header.header-product .right .header-item small svg {
  display: block;
  width: 24px;
  min-width: 24px;
  height: auto;
  fill: var(--darkgreen);
}

#content.content-product .tabcontent .inner {
  border-radius: var(--border-radius);
  border: 1px solid var(--color_hc);
}

#content.content-product .tabcontent .inner .tabs {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 3em;
}

#content.content-product .tabcontent .inner .tabs li {
  display: block;
  background: var(--color_lc);
  color: var(--darkgreen);
  font-family: "rubik";
  font-weight: 500;
  border-radius: 50px;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
  box-sizing: border-box;
}

#content.content-product .tabcontent .inner .tabs li.active,
#content.content-product .tabcontent .inner .tabs li:hover {
  background: var(--darkgreen);
  color: var(--white);
}

#content.content-product .tabcontent .inner .contents .content {
  text-wrap: balance;
}

#content.content-product .tabcontent .inner .contents .content:not(.active) {
  display: none;
}

#content.content-product .tabcontent .inner .contents .content h3 {
  margin-bottom: 1em;
}

#content.content-product .tabcontent .inner .contents .content .specifications {
  display: grid;
  border-top: 1px solid var(--color_lc);
  border-left: 1px solid var(--color_lc);
  box-sizing: border-box;
}

#content.content-product .tabcontent .inner .contents .content .specifications li {
  display: block;
  padding: 1em;
  border-bottom: 1px solid var(--color_lc);
  border-right: 1px solid var(--color_lc);
  box-sizing: border-box;
}

#content.content-product .tabcontent .inner .contents .content .specifications span {
  display: block;
}

#content.content-product .tabcontent .inner .contents .content .specifications .label {
  font-weight: 600;
  color: var(--darkgreen);
}

#content.content-product .tabcontent .inner .contents .content .downloads {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

#content.content-product .tabcontent .inner .contents .content .downloads li {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  padding: 12px 20px;
  border-radius: 10px;
  color: var(--darkgreen);
  background: var(--color_lc);
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

#content.content-product .tabcontent .inner .contents .content .downloads svg {
  fill: var(--darkgreen);
  transition: fill 0.2s ease-in-out;
}

#content.content-product .tabcontent .inner .contents .content .downloads li:hover {
  background: var(--darkgreen);
  color: var(--white);
}

#content.content-product .tabcontent .inner .contents .content .downloads li:hover svg {
  fill: var(--white);
}

#content.content-product .tabcontent .inner .contents .content .ghs {
  margin-top: 3em;
}

#content.content-product .tabcontent .inner .contents .content .ghs ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#content.content-product .tabcontent .inner .contents .content .ghs ul li img {
  display: block;
  height: auto;
}

@media (min-width: 1025px) {
  #header.header-product .right .header-item {
    padding: 4em 3em;
  }
  #content.content-product .tabcontent .inner {
    padding: 4em;
  }
}
@media (max-width: 1024px) {
  #header.header-product .right .header-item {
    padding: 2em;
  }
  #content.content-product .tabcontent .inner {
    padding: 3em;
  }
}
@media (min-width: 801px) {
  #header.header-product .left {
    width: 45%;
  }
  #header.header-product .right {
    width: 55%;
    flex: 1;
  }
  #header.header-product .right .header-item {
    height: 100%;
  }
  #header.header-product .right .header-item:not(:has(ul)) p,
  #header.header-product .right .header-item ul {
    margin-bottom: 4em;
  }
  #header.header-product .right .header-item ul li {
    padding: 12px 20px;
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  #header.header-product .wrapper.flex-row {
    flex-direction: column;
  }
  #header.header-product .left, #header.header-product .right {
    width: 100%;
  }
  #header.header-product .galleryslider {
    display: none;
  }
  #header.header-product .right .header-item ul li {
    padding: 10px 14px;
    font-size: 12px;
  }
  #content.content-product .tabcontent .inner {
    padding: 2em;
  }
}
@media (min-width: 701px) {
  #content.content-product .tabcontent .inner .contents .content .specifications {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  #content.content-product .tabcontent .inner .tabs li {
    flex: 0 1 calc(50% - 8px);
    text-align: center;
  }
  #content.content-product .tabcontent .inner .contents .content .specifications {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #content.content-product .tabcontent .inner .contents .content .downloads li {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #header.header-product .btn {
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    text-wrap: auto;
    font-size: 14px;
    line-height: 14px;
    padding: 16px 55px 16px 18px;
  }
  #header.header-product .btn .icon {
    width: 28px;
  }
  #header.header-product .btn .icon svg {
    width: 16px;
  }
  #header.header-product .right .header-item ul li {
    width: 100%;
  }
}
@media (min-width: 481px) {
  #content.content-product .tabcontent .inner .tabs li {
    padding: 15px 24px;
    font-size: 15px;
    line-height: 16px;
  }
  #content.content-product .tabcontent .inner .contents .content .downloads li {
    font-size: 15px;
  }
  #content.content-product .tabcontent .inner .contents .content .downloads svg {
    width: 16px;
  }
  #content.content-product .tabcontent .inner .contents .content .ghs ul li img {
    width: 50px;
  }
}
@media (max-width: 480px) {
  #header.header-product .right .header-item {
    padding: 1em;
  }
  #header.header-product .right .header-item small {
    font-size: 10px;
    padding: 10px;
  }
  #header.header-product .right .header-item small svg {
    width: 18px;
    min-width: 18px;
  }
  #content.content-product .tabcontent .inner {
    padding: 1em;
  }
  #content.content-product .tabcontent .inner .tabs li {
    padding: 1em 0.5em;
    font-size: 13px;
    line-height: 14px;
  }
  #content.content-product .tabcontent .inner .contents .content .downloads li {
    font-size: 13px;
  }
  #content.content-product .tabcontent .inner .contents .content .downloads svg {
    width: 14px;
  }
  #content.content-product .tabcontent .inner .contents .content .ghs ul li img {
    width: 40px;
  }
}
@media (max-width: 380px) {
  #content.content-product .tabcontent .inner .contents .content .specifications {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}