* {
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-family: 'Outfit', sans-serif;
}

.item-price .item-price-through+.item-price-amount, .item-price .item-price-through {
  font-family: 'Outfit', sans-serif;
}

.item .item-content {
  position: relative;
  padding-bottom: 52px;
}

.item .free-support {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #16c784;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  padding: 4px 0;
  animation: freeSupportBlink 1.2s ease-in-out infinite;
  width: unset !important;
}

.item .free-support i {
  font-size: 0.85rem;
}

@keyframes freeSupportBlink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 1;
  }
}

section.section .item {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 20px;
}

section.section .item-title {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444;
}

section.section .item-title:hover {
  color: var(--primary-color);
}

section.section .item .item-content .row button, section.section .item .item-content .row a {
  width: 100%;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

section.section .item button i, section.section a i {
  font-size: 17px;
  margin-right: 5px;
}

section.section .item .item-badge {
  border-radius: 24px !important;
}

section.section .item .item-content {
  padding: 24px !important;
}

section.section .item .item-price {
  display: block;
}

section.section .item .easy-setup {
  border: 1px solid #dadada;
  border-radius: 2px;
  padding: 4px 8px;
  border-radius: 4px;
  width: 48%;
  background: #ffffff;
  font-size: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

section.section .item .responsive {
  border: 1px solid #dadada;
  border-radius: 2px;
  padding: 4px 8px;
  border-radius: 4px;
  width: 48%;
  background: #ffffff;
  font-size: 10px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

section.section .item .item-price .item-price-through+.item-price-amount, .item-price .item-price-through {
  display: block;
}


.product-detail.row {
  margin: 0px auto;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.product-detail .product-detail_text {
  margin: 0px 0px 10px 0px;
}

.product-detail .product-detail_text {
  padding: 12px;
}
.product-detail .product-detail_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 17px;
  border: 1px solid #cacaca;
  cursor: default;
  border-radius: 3px;
  color: linear-gradient(180deg, #FBE3A2 0%, rgba(53, 114, 241, 0.40625) 99.99%, rgba(51, 113, 242, 0.4) 100%);
  font-size: 14px;
}
.product-detail .product-detail_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px;
  border: 1px solid #cacaca;
  cursor: default;
  border-radius: 3px;
  color: linear-gradient(180deg, #FBE3A2 0%, rgba(53, 114, 241, 0.40625) 99.99%, rgba(51, 113, 242, 0.4) 100%);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-detail_text {
  gap: 10px;
}

.product-detail.row .col-md-6 {
  width: 48%;
  padding-right: 0px;
  padding-left: 0px;
  margin: 0px 0px;
}
@media (min-width: 768px) {
  .col-md-6 {
      flex: 0 0 auto;
      width: 50%;
  }
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #060f1f;
  color: #fff;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  min-height: 520px;
  min-width: 100%;
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .35));
  pointer-events: none;
  z-index: 2;
}

.hero-slide-bg.has-video::after {
  opacity: 1;
}

.hero-slide-bg:not(.has-video)::after {
  opacity: 0;
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
}

.hero-slide-html {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
}

.hero-slide-html img,
.hero-slide-html video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-slide-html iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-slider:hover .hero-slide-html iframe {
  pointer-events: auto;
}

.hero-slide-body {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-slide-content {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-slide-content-no-image {
  max-width: 800px;
  margin: 0 auto;
  justify-content: center;
}

.hero-slide-content-no-image .hero-slide-copy {
  flex: 1 1 100%;
  text-align: center;
}

.hero-slide-copy {
  flex: 1 1 320px;
  color: #fff;
}

.hero-slide-media {
  flex: 1 1 320px;
  text-align: center;
}

.hero-slide-media img {
  width: 100%;
  max-width: 520px;
}

.hero-slide-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-slide-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-slide-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-slide-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 500;
  background: rgb(var(--primary_color));
  color: #fff !important;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: none !important;
  min-width: 222px;
}


.hero-slide-button-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-slide-button:hover, .hero-slide-button-secondary:hover {
  transform: scale(1.05);
}



.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s;
}

.hero-slider-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-slider-nav-prev {
  left: 2%;
}

.hero-slider-nav-next {
  right: 2%;
}

.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.hero-slider-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.hero-slider-search {
  margin: -60px auto 40px;
  max-width: 800px;
  padding: 0 1rem;
  position: relative;
  z-index: 4;
}

@media (max-width: 768px) {
  .hero-slide {
    min-height: 460px;
  }

  .hero-slide-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-slide-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-slide-copy {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-slide-media {
    display: none;
  }

  .hero-slide-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .hero-slide-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-slide-cta {
    justify-content: center;
    flex-direction: row;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-slide-button {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
    min-width: 0;
  }

  .hero-slider-nav {
    display: none;
  }

  .hero-slider-dots {
    bottom: 16px;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 400px;
  }

  .hero-slide-body {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-slide-eyebrow {
    font-size: 0.75rem;
  }

  .hero-slide-title {
    font-size: clamp(1.25rem, 6vw, 2rem);
    margin-bottom: 1rem;
  }

  .hero-slide-text {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero-slide-cta {
    gap: 0.5rem;
  }

  .hero-slide-button {
    font-size: 0.85rem;
    padding: 10px 14px;
    flex: 1;
  }
}

.cta-button {
  clip-path: unset !important;
}

section.section .box {
  border: unset !important;
}

.bayi-bilgisi-alert {
  border: 1px solid #1a3362 !important;
}

form.add-to-cart-form .form-check.form-check-lg.mb-3 {
  border: 1px dashed #1a3362 !important;
  border-radius: 6px;
  padding: 35px 35px 25px 35px;
  position: relative;
}

form.add-to-cart-form .p-4.bg-light.mb-3.rounded-3 {
  border: 1px dashed #1a3362 !important;
  border-radius: 6px;
  padding: 35px 35px 25px 35px;
  position: relative;
  background-color: transparent !important;
}

form.add-to-cart-form .form-check.form-check-lg.mb-3 .form-check-input[type=radio] {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
  pointer-events: none;
  z-index: -9999;
}

form.add-to-cart-form .form-check-label.w-100.text-center h6 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

form.add-to-cart-form .form-check-label.w-100.text-center .item-price-through {
  color: #00000060;
  text-decoration: line-through;
}

.keyspeed {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  border: 1px solid #a7a7a770;
  justify-content: start;
  background: #292828;
  color: #ffffff;
  padding: 0px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 160px;
  margin-top: -44px;
  height: 24px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  left: calc(50% - 80px);
}

.keyspeed i.fa-solid.fa-key {
  background: #ffffff;
  color: rgb(var(--primary_color));
  width: 40px;
  height: 45px;
  border-radius: 50px 50px 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 6px;
  font-size: 15px;
  animation: swing 1.5s infinite ease-in-out;
  box-shadow: 0 4px 10px rgba(var(--primary-color), 0.5);
  transition: transform 0.3s ease;
}

.keyspeed p {
  margin: 0;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .product-single-buttons {
    max-width: 50%;
  }
}
.product-single-buttons {
  max-width: 100%;
  margin: 0 auto;
  margin-top: -40px !important;
  z-index: 1;
  position: relative;
  padding: 0px 15px;
}

.product-single-buttons .btn {
  font-size: 12px !important;
}

.product-tabs {
  margin-top: 2rem;
  border-bottom: 2px solid #ededed;
}

.product-tabs ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
  width: 100%;
}

.product-tabs li {
  flex: 1;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #666;
  font-weight: 500;
  position: relative;
  bottom: -2px;
}

.product-tabs li:hover {
  color: rgb(var(--primary_color));
}

.product-tabs li.active {
  color: rgb(var(--primary_color));
  border-bottom-color: rgb(var(--primary_color));
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-tabs li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #e0e0e0;
  color: #666;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.product-tabs li.active .icon {
  background-color: rgb(var(--primary_color));
  color: #fff;
}

.product-tabs li:hover .icon {
  background-color: rgba(var(--primary_color), 0.1);
  color: rgb(var(--primary_color));
}

.product-tabs li.active:hover .icon {
  background-color: rgb(var(--primary_color));
  color: #fff;
}

.product-tabs li .text {
  font-size: 0.95rem;
}

.product-tab-content {
  margin-top: 0;
}

.product-tab-content-item {
  display: none;
  animation: fadeIn 0.3s ease;
}

.product-tab-content-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .product-tabs ul {
    flex-direction: row;
  }

  .product-tabs li {
    padding: 0.875rem 0.75rem;
    border-bottom: 3px solid transparent;
    border-left: none;
    bottom: -2px;
  }

  .product-tabs li.active {
    border-bottom-color: rgb(var(--primary_color));
    border-left: none;
  }

  .product-tabs li .icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .product-tabs li .text {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .product-tabs li {
    padding: 0.75rem 0.5rem;
    gap: 0.5rem;
  }

  .product-tabs li .icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .product-tabs li .text {
    font-size: 0.8rem;
  }
}

.feature_boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 24px;
}

.feature_box {
  background: #f5f5f5;
  box-shadow: 4px 4px 11px rgba(0, 0, 0, .03);
  border-radius: 3px;
  padding: 24px 20px;
  text-align: center;
  font-size: 13px;
}