@charset "UTF-8";
.product-info {
  display: grid;
  gap: 25px;
  max-width: 585px;
}

@media (max-width: 992px) {
  .product-info {
    margin-inline: auto;
  }
}

@media (max-width: 800px) {
  .product-info {
    margin-inline: auto;
  }
}

@media (min-width: 480px) and (max-width: 800px) {
  .engineering {
    font-size: 30px !important;
  }
}

.product-info__title {
  text-transform: uppercase;
}

.product-info__title span {
  white-space: nowrap;
}

.product-info__warranty {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
}

.product-info__warranty:before {
  content: "";
  background-color: var(--c-green);
  display: block;
  mask-image: var(--i-ft-warranty);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  min-width: 50px;
  height: 50px;
  aspect-ratio: 1;
}

@media (max-width: 600px) {
  .product-info__warranty {
    font-size: 20px;
  }
}

.product-info__description {
  font-size: 14px;
  font-weight: 300;
}
.price__title {
  color: white;
  font-family: "Playfair Display";
  margin-top: "20px" !important;
}

.product-info__price {
  font-family: var(--ff-secondary);
  font-size: 40px;
}

.product-info__actions {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
}

@media (max-width: 480px) {
  .product-info__actions {
    display: grid;
  }
}

.cart-controls__quantity {
  display: flex;
  align-items: center;
}

.cart-controls__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid var(--c-gray);
  min-width: 30px;
  height: 30px;
  transition: 0.3s ease-in-out;
}

.cart-controls__btn:before {
  content: "";
  background-color: var(--c-black);
  display: block;
  mask-image: var(--i-minus);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  min-width: 18px;
  height: 18px;
  aspect-ratio: 1;
}

.cart-controls__btn:before {
  transition: 0.3s ease-in-out;
}

.cart-controls__btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.cart-controls__btn[data-action="increase"]:before {
  mask-image: var(--i-plus);
}

@media (hover: hover) and (pointer: fine) {
  .cart-controls__btn:hover:before {
    background-color: var(--c-green);
  }
}

.cart-controls__input {
  width: 40px;
  text-align: center;
  outline: 0;
}

.cart-controls__add {
  padding-block: 17px !important;
  width: 100% !important;
  font-size: 20px;
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .cart-controls__add:hover {
    background-color: var(--c-green);
    box-shadow: inset 100px 100px 100px #0000001a;
  }
}

.product-sliders {
  display: flex;
  gap: 20px;
}

.product-sliders .swiper-slide {
  height: 100%;
}

.product-sliders .swiper-slide picture {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .product-sliders {
    flex-direction: column-reverse;
  }
}

.product-sliders .product-label {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 10px 20px;
  background-color: var(--c-green);
  border-radius: 5px;
}

.thumbs-slider {
  width: 120px;
  height: 464px;
  padding-bottom: 4px !important;
}

@media (max-width: 1200px) {
  .thumbs-slider {
    width: 470px;
    height: 105px;
    padding-bottom: 5px !important;
  }
}

@media (max-width: 600px) {
  .thumbs-slider {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .thumbs-slider .swiper-slide {
    min-width: 120px;
    width: 120px;
  }
}

.thumbs-slider .swiper-slide picture {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: 4px solid transparent;
  outline-offset: -4px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .thumbs-slider .swiper-slide:hover picture {
    border-color: transparent;
    outline-color: var(--c-green);
  }
}

.main-slider {
  width: 525px;
  height: 460px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #fff;
}

@media (max-width: 1200px) {
  .main-slider {
    width: 470px;
  }
}

@media (max-width: 600px) {
  .main-slider {
    width: 100%;
    max-width: calc(100vw - 30px);
    height: 250px;
  }
}

.main-slider .swiper-slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .main-slider .swiper-slide:hover picture {
    border-color: var(--c-green);
  }
}

.main-slider .swiper-pagination {
  display: block;
}

@media (min-width: 601px) {
  .main-slider .swiper-pagination {
    display: none !important;
  }
}

.main-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--c-green);
}

.product-tabs {
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .product-tabs {
    width: 100vw;
  }
}

.product-tabs__nav {
  margin-left: -15px;
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--c-gray);
}

@media (max-width: 992px) {
  .product-tabs__nav {
    justify-content: center;
    width: 100vw;
  }
}

.product-tabs__btn {
  padding: 20px 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.product-tabs__btn--active {
  color: var(--c-green);
}

.product-tabs__content {
  display: none;
  padding: 24px 0;
}

.product-tabs__content--active {
  display: block;
}

.specs-table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
}

.specs-table__row {
  border-bottom: 1px solid var(--c-gray);
}

.specs-table__row:last-child {
  border-bottom: none;
}

.specs-table__cell {
  padding: 15px 0;
  color: var(--c-gray);
  font-size: 18px;
  line-height: 1.2;
  font-family: var(--ff-secondary);
  text-align: right;
}

.specs-table__label {
  color: var(--c-black);
  width: 200px;
  text-align: left;
}

.product-tabs__inner {
  display: grid;
  gap: 60px;
  grid-template-columns: 54.5% auto;
}

@media (max-width: 992px) {
  .product-tabs__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.product-tabs__info {
  display: grid;
  gap: 20px;
}

.product-tabs__description {
  max-width: 685px;
}

@media (max-width: 992px) {
  .product-tabs__picture {
    display: none;
  }
}

.applications__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 680px;
  gap: 50px;
}

@media (max-width: 600px) {
  .applications__grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

.applications__grid img {
  height: 55px;
}

.system-features__title,
.applications__title {
  text-transform: uppercase;
  margin-bottom: 15px;
}

.system-features__list {
  display: grid;
  gap: 15px;
  max-width: 460px;
  font-size: 16px;
  font-weight: 300;
}

.system-features__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-features__item:before {
  content: "";
  background-color: var(--c-green);
  display: block;
  mask-image: var(--i-check);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  min-width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.product-page-head__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-bottom: 90px;
}

@media (max-width: 1200px) {
  .product-page-head__inner {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .product-page-head__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-page .breadcrumbs-wrapper {
    padding-bottom: 25px;
  }
}

.buy_now_btn {
  background-color: white;
  color: black !important;
}
.buy_now_btn:hover {
  background-color: #56ab2f !important;
  color: white !important;
}

@media (max-width: 500px) {
  .product__button {
    padding-block: 12px;
    padding-inline: 20px;
    position: relative;
    z-index: 10;
    text-align: center !important;
  }

  .btn {
    display: block;
    width: fit-content;
    background-color: var(--c-green);
    color: var(--c-black);
    border-radius: 10px;
    padding-block: 10px;
    padding-inline: 10px !important;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transition: 0.3s ease-in-out;
  }
  .buy_now_btn {
    background-color: white;
    color: black !important;
  }
  .buy_now_btn:hover {
    background-color: #56ab2f !important;
    color: white !important;
  }
}
.separator {
  height: 20px;
  display: block; /* Span'ı blok seviyesinde yapar */
  width: 300px; /* Çizginin genişliği */
  border-top: 1px solid black; /* Üstten 2px kırmızı çizgi */
  margin: 10px auto; /* Üst ve alt boşluk, ortalama */
}

.comparison__title {
  text-align: center;
  text-transform: uppercase;
  color: var(--c-black);
  margin-bottom: 20px !important;
  font-family: "Roboto";
  font-size: 50px;
  font-weight: 700;
  margin-top: 0px;
}
.comparison__title__2 {
  text-align: center;
  font-size: 35px;
  color: var(--c-black);
  font-family: "Playfair Display";
}

.comparison__desktop {
  display: block;
}

.comparison__container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 5px;
}

.comparison__table {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--c-white);
}

.comparison__row {
  display: flex;
  justify-content: space-between;
}

.comparison__row:nth-child(2n) {
  background-color: white !important;
}

.comparison__row:nth-child(2n) .comparison__header:before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff08;
}

@media (hover: hover) and (pointer: fine) {
  .comparison__row:hover:not(:first-of-type) {
    background-color: var(--c-green) !important;
  }
}

.visible__comparison {
  background-color: #f5f5f5 !important;
}

.comparison__desc {
  height: 85px !important;
  font-size: 17px;
}

.comparison__header {
  min-width: 200px;
  width: 100%;
  max-width: 350px;
  white-space: nowrap;
  padding-block: 20px;
  padding-inline: 20px;
  text-align: left;
  font-weight: 600;
  position: sticky;
  left: 0;
  color: black;

  z-index: 100;
}

.comparison__cell {
  width: 180px;
  padding-block: 18px;
  text-align: center;
  z-index: 0;
  color: black;
  font-size: 17px;
}

.comparison__cell:has(.product) {
  position: relative;
}

.comparison__cell:has(.product):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  border: 1px solid transparent;
  height: 970px;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .comparison__cell:has(.product):hover:before {
    border-color: var(--c-green);
    height: 1120px;
  }
}
.placeholder {
  height: 100vh;
}

.comparison__mobile {
  display: none;
}

.price__cell {
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: larger;
  font-size: 24px;
}

.comparison__selector {
  position: relative;
  max-width: 470px;
  margin-inline: auto;
  margin-bottom: 30px;
}

.comparison__select-btn {
  width: 100%;
  padding-block: 20px;
  padding-inline: 50px;
  border: 1px solid var(--c-white);
  background-color: #5a5e63 !important;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comparison__select-btn:after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s;
}

.comparison__select-btn.active:after {
  transform: rotate(180deg);
}

.comparison__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #757575;
  border-radius: 10px;
  margin-top: 0.5rem;
  border: 1px solid white;
  display: none;
  z-index: 100;
  padding-block: 40px;
  padding-inline: 50px;
  gap: 20px;
  color: #fff;
}

.comparison__options.active {
  display: grid;
}

.comparison__option {
  cursor: pointer;
}

.comparison__option:hover {
  background: var(--c-green);
}

.comparison__option.selected {
  color: var(--c-green);
}

.comparison__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 20px;
  overflow-x: auto;
}

@media (max-width: 600px) {
  .comparison__products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding-block: 20px; */
  gap: 15px;
  color: var(--c-white);
}

@media (max-width: 992px) {
  .product {
    height: 100%;
  }
}

.product__picture {
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

.product__title {
  max-width: 180px;
  margin-inline: auto;
  order: 0;
  color: black;
  text-align: center;
  font-size: 20px;
  height: 38px;
}

@media (max-width: 992px) {
  .product__title {
    max-width: auto;
  }
}

.product__value {
  text-align: center;
  align-self: flex-end;
}

.product__button {
  padding-block: 12px;
  padding-inline: 30px;
  position: relative;
  z-index: 10;
  margin: 0 !important;
  width: 95% !important;
  font-size: 14px !important;
}

.product__link {
  display: grid;
  gap: 15px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  height: 100%;
}

.comparison__mobile .product {
  border: 1px solid var(--c-white);
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  height: 100%;
  max-height: 390px;
  padding: 10px 0px;
}

@media (hover: hover) and (pointer: fine) {
  .comparison__mobile .product:hover {
    border-color: var(--c-green);
  }
}

.comparison__container::-webkit-scrollbar {
  height: 8px;
}

.comparison__container::-webkit-scrollbar-track {
  background: #333;
  border-radius: 4px;
}

.comparison__container::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 4px;
}

.comparison__container::-webkit-scrollbar-thumb:hover {
  background: #888;
}

@media (max-width: 1024px) {
  .comparison__desktop {
    display: none;
  }

  .comparison__mobile {
    display: block;
  }
}

.comparison {
  padding-block: 100px;
}
