/* Gotham Font Family */

/* Gotham Regular */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Gotham Medium */
@font-face {
  font-family: "Gotham Medium";
  src: url("../fonts/gotham/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Gotham Light */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Gotham Thin */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Gotham Extra Light */
@font-face {
  font-family: "Gotham";
  src: url("../fonts/gotham/Gotham-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/* Gotham Ultra */
@font-face {
  font-family: "Gotham Ultra";
  src: url("../fonts/gotham/Gotham-Ultra.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Gotham Rounded */
@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Rounded";
  src: url("../fonts/gotham/gotham-rounded-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Gotham Narrow */
@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-XLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("../fonts/gotham/GothamNarrow-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Gotham Extra Narrow */
@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Extra Narrow";
  src: url("../fonts/gotham/gotham-extra-narrow-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #416ba9;
  --primary-lighter: #0072bb;
  --primary-rgba: rgba(65, 107, 169, 0.64);
  --primary-linear: linear-gradient(
    90deg,
    #416ba9 0%,
    rgba(0, 114, 187, 0) 100%
  );
  --primary-linear-reversed: linear-gradient(
    90deg,
    rgba(0, 114, 187, 0) 0%,
    #416ba9 100%
  );
  --white: #fff;
  --black: #000;
  --font: "Gotham", sans-serif;
  --youtube-red: #ff0000;
  --transition: all 0.2s ease-in-out;
  --hover-dark: #2f5183;

  --cookie-bg: #f1f1f1;
  --cookie-text: #1f2937; /* koyu gri */
  --cookie-blue: #2563eb; /* mavi */
  --cookie-blue-pressed: #1d4ed8;
  --cookie-ghost-bg: #e5e7eb;
  --radius: 14px;
  --modal-dur: 0.28s;
  --overlay-dur: 0.22s;
  --modal-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

body {
  font-family: "Gotham Medium", sans-serif;
  font-size: 1.6rem; /* 16px */
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol,
li {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 1px solid transparent;
}

input:focus {
  outline: none;
  border: 1px solid transparent;
}

.py-6 {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}
/* Header */
header {
  padding-top: 44px;
  padding-bottom: 6px;
  background-color: var(--white);
  box-shadow: 2px 5px 50.9px 0px rgba(0, 0, 0, 0.25);
}

header .container {
  display: flex;
  flex-direction: column;
}

header .top {
  display: flex;
  float: right;
  width: 100%;
  align-items: end;
  justify-content: end;
}

header .top .socials {
  font-size: 19px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

header .top .socials a {
  transition: var(--transition);
}

header .top .socials a:hover {
  color: var(--hover-dark);
}

header .middle {
  display: flex;
  align-items: center;
  gap: 24px;
}

header .logo {
  flex-shrink: 0;
  margin-top: -29px;
}

header .middle .search-input {
  position: relative;
  color: var(--primary);
  width: 100%;
}

header .middle .search-input input {
  border: 1px solid #416ba9;
  padding: 4px 12px;
  width: inherit;
}

header .middle .search-input .search-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

header .middle nav ul,
header .bottom nav ul {
  display: flex;
  align-items: center;
}

header .middle nav ul li a,
header .bottom nav ul li a {
  padding: 5px 10px;
  color: var(--primary-darker);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: flex;
  gap: 4px;
  white-space: nowrap;
}

header .middle nav ul li a.active,
header .middle nav ul li a:hover,
header .bottom nav ul li a.active,
header .bottom nav ul li a:hover {
  background-color: var(--primary);
  color: var(--white);
}

header .bottom {
  padding-top: 24px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .bottom li a {
  display: flex;
  gap: 4px;
}

header .bottom li a.location {
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
}

header .bottom li a img {
  object-fit: contain;
}

.youtube i {
  transition: var(--transition);
  color: var(--youtube-red);
}

.youtube:hover i {
  color: var(--white);
}
/* Header */

/* Footer */
footer {
  padding: 0 50px 50px 50px;
}

footer .top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

footer .top .item {
  background: #efefef;
  height: 67px;
}

footer .top .item-colored {
  background: var(--primary);
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .top .item-colored .socials {
  font-size: 32px;
  color: var(--white);
}

footer .top .item-colored .socials a {
  transition: var(--transition);
}

footer .top .item-colored .socials a:hover {
  color: #efefef;
}

footer .bottom {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  grid-gap: 30px;
}

footer .bottom .left {
  background-color: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

footer .bottom .right {
  background-color: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .bottom .right img {
  width: 100%;
}

footer .bottom .middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

footer .bottom .middle .box {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  color: var(--primary);
}

footer .bottom .middle .box .big-header {
  font-size: 28px;
  margin-bottom: 10px;
}

footer .bottom .middle .box .header {
  font-size: 24px;
  margin-bottom: 10px;
}

footer .bottom .middle .box li a {
  color: var(--primary);
  font-size: 18px;
  transition: var(--transition);
}

footer .bottom .middle .box li a:hover {
  color: var(--hover-dark);
}

footer .bottom .middle .box.bg-color {
  color: var(--white) !important;
}

.bg-color {
  background-color: var(--primary) !important;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 18px;
}

.contact a {
  transition: var(--transition);
}

.contact a:hover {
  color: #efefef;
}

.copyright {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  color: var(--primary);
  padding-bottom: 32px;
}

.beranet {
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 1200px) {
  .contact {
    font-size: 15px;
  }

  footer .bottom .middle .box li a {
    font-size: 15px;
  }

  footer .bottom .middle .box .header {
    font-size: 18px;
  }

  footer .bottom .middle .box .big-header {
    font-size: 22px;
  }

  footer .box p {
    font-size: 15px;
  }

  @media screen and (max-width: 576px) {
    footer .top {
      grid-template-columns: auto;
    }

    footer .top .item {
      display: none;
    }

    footer .bottom {
      grid-template-columns: 1fr;
    }

    footer .bottom .middle {
      display: flex;
      flex-direction: column;
    }

    footer .bottom .middle > *:nth-child(2) {
      order: 1;
    }

    footer .bottom .middle .box {
      padding-top: 12px;
      padding-bottom: 12px;
    }

    .copyright {
      grid-template-columns: 1fr;
    }
  }
}
/* Footer */

.page {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-header {
  padding-bottom: 25px;
  color: var(--primary);
  text-align: center;
  font-size: 40px;
}

.visual-tour {
  position: relative;
}

.visual-tour iframe {
  width: 100%;
  min-height: 600px;
}

.visual-tour .text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--white);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px;
}

.breadcrumbs {
  color: var(--primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding-top: 10px;
}

.products .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.products .header .left,
.products .header .right {
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.products .header .right {
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

/*  urunler */
.filters {
  width: 30%;
  position: sticky;
  top: 20px;
  height: fit-content;
}

.filter .title {
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
}

.checkboxes {
  display: flex;
  flex-direction: column;
  padding: 10px 0 10px 0;
  gap: 8px;
}

.checkboxes a {
  transition: var(--transition);
}

.checkboxes a.active-cat,
.checkboxes a:hover {
  color: var(--white) !important;
  background-color: var(--primary);
  padding: 4px 8px;
}

.checkboxes label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 8px !important;
  user-select: none;
}

.checkboxes input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.checkboxes input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkboxes input[type="checkbox"]:checked::after {
  content: "✓";
  font-size: 14px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkboxes input[type="checkbox"]:hover {
  border-color: var(--hover-dark);
}

.input {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}

.input input[name="min"],
.input input[name="max"] {
  width: 120px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 0;
  padding: 0 10px;
  font-size: 14px;
  color: var(--primary);
  background-color: white;
  outline: none;
  -moz-appearance: textfield;
  transition: var(--transition);
}

.input input[name="min"]::-webkit-outer-spin-button,
.input input[name="min"]::-webkit-inner-spin-button,
.input input[name="max"]::-webkit-outer-spin-button,
.input input[name="max"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input input[name="min"]:focus,
.input input[name="max"]:focus {
  border-color: var(--hover-dark);
  box-shadow: 0 0 0 1px var(--hover-dark);
}

.products .inner {
  display: flex;
  gap: 24px;
  min-height: 100vh;
}

.urunler {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}

.urunler img {
  width: 100% !important;
  height: 200px !important;
  object-fit: contain;
  border: 1px solid var(--primary);
}

.urun .urun-title {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  background-color: var(--primary);
  text-align: center;
}

.sort-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  border: 1px solid var(--primary);
  min-width: 180px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sort-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sort-option {
  padding: 10px 15px;
  color: var(--primary);
  font-size: 16px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-option:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

.products .header .right i {
  transition: transform 0.3s ease;
}

.products .header .right.active i.bi-chevron-up {
  transform: rotate(180deg);
}

.see-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  cursor: pointer;
}

.see-more .title {
  position: relative;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.see-more .title span {
  position: absolute;
  bottom: -4px;
  right: 0;
  font-size: 16px;
}

.detail {
  display: flex;
  padding: 48px 0;
}

.detail .left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 45%;
}

.main-image {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.main-image img {
}

.main-image .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
  min-height: 400px;
  padding: 20px;
}

.main-image img {
  width: 70%;
  height: auto;
  object-fit: contain;
  max-height: 100%;
}

.thumb-gallery {
  width: 100%;
}

.mainSwiper {
  border: 2px solid #efefef;
  border-radius: 4px;
  position: relative;
}

.mainSwiper .swiper-button-next,
.mainSwiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mainSwiper .swiper-button-next:hover,
.mainSwiper .swiper-button-prev:hover {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.mainSwiper .swiper-button-next::after,
.mainSwiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.thumbsSwiper {
  height: 100px;
}

.thumbsSwiper .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
  background-color: #efefef;
}

.thumbsSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #007bff;
}

.thumbsSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail .right {
  width: 55%;
  overflow: hidden;
}

.detail .right .product-title {
  text-align: center;
  font-size: 24px;
  color: var(--primary);
}

.detail .right .inner {
  padding-left: 24px;
  padding-top: 18px;
}

.detail .right .inner .colors {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 100px;
}

.detail .right .inner .colors .swiper-button-next {
  scale: 0.6;
  top: unset;
  bottom: 14px;
}

.detail .right .inner .colors .swiper-button-next::after {
  display: none;
}

.detail .right .inner .colors .color {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.detail .right .inner .colors .color .title {
  color: var(--primary);
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.detail .right .inner .colors .color .color-div {
  background-color: var(--primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.detail .right .inner .colors .color .color-div input[type="radio"] {
  display: none;
}

.detail .right .inner .colors .color .color-div {
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.detail .right .inner .colors .color .color-div.selected,
.detail
  .right
  .inner
  .colors
  .color
  .color-div:has(input[type="radio"]:checked) {
  transform: scale(1.15);
}

.detail
  .right
  .inner
  .colors
  .color
  label.color-div:has(input[type="radio"]:checked) {
  position: relative;
}

.features .feature .title {
  color: var(--primary);
  font-weight: 700;
}

.features .feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}

.features .feature .radio input {
  display: none;
}

.features .feature .radio label {
  background: var(--white);
  color: var(--primary);
  padding: 4px 12px;
  border: 1px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  font-size: 12px;
}

.features .feature .radio input[type="radio"]:checked + label {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
}

/* Div tabanlı variant seçici stilleri */
.features .feature .radio .option {
  background: var(--white);
  color: var(--primary);
  padding: 4px 12px;
  border: 1px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  font-size: 12px;
  display: inline-block;
  user-select: none;
}

.features .feature .radio .option:hover {
  background: rgba(65, 107, 169, 0.1);
}

.features .feature .radio .option.selected {
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
}

.price {
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  width: max-content;
  padding: 4px 8px;
}

.price span {
  font-weight: 900;
}

.ozellikler {
  padding: 32px 0 24px 0;
}

.ozellikler .title {
  padding-left: 24px;
  color: var(--primary);
  font-size: 25px;
  font-weight: 900;
}

.ozellik {
  display: flex;
  align-items: center;
  padding: 2px 0 2px 24px;
  font-size: 18px;
  gap: 6px;
}

.ozellik .paylas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ozellik:nth-child(odd) {
  background-color: rgba(65, 107, 169, 0.8);
  color: var(--white);
}

.ozellik:nth-child(even) {
  background-color: rgba(65, 107, 169, 0.4);
  color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .detail {
    flex-direction: column;
    padding: 24px 0;
  }

  .detail .left {
    width: 100%;
    margin-bottom: 30px;
  }

  .detail .right {
    width: 100%;
    padding: 0 15px;
  }

  .main-image .swiper-slide {
    min-height: 300px;
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .detail {
    padding: 15px 0;
  }

  .main-image .swiper-slide {
    min-height: 250px;
    padding: 10px;
  }

  .mainSwiper .swiper-button-next,
  .mainSwiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .mainSwiper .swiper-button-next::after,
  .mainSwiper .swiper-button-prev::after {
    font-size: 14px;
  }

  .thumbsSwiper {
    height: 80px;
  }

  .detail .right .inner {
    padding-left: 10px;
  }

  .features .feature .radio {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .ozellikler .title {
    padding-left: 10px;
    font-size: 20px;
  }

  .ozellik {
    padding: 2px 0 2px 10px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .main-image .swiper-slide {
    min-height: 200px;
    padding: 8px;
  }

  .mainSwiper .swiper-button-next,
  .mainSwiper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .mainSwiper .swiper-button-next::after,
  .mainSwiper .swiper-button-prev::after {
    font-size: 12px;
  }

  .thumbsSwiper {
    height: 60px;
  }

  .detail .right .product-title {
    font-size: 20px;
  }

  .detail .right .inner .colors .color .title {
    font-size: 12px;
  }

  .detail .right .inner .colors .color .color-div {
    width: 25px;
    height: 25px;
  }

  .features .feature .title {
    font-size: 14px;
  }

  .features .feature .radio label {
    padding: 3px 8px;
    font-size: 11px;
  }

  .features .feature .radio input[type="radio"]:checked + label {
    padding: 3px 8px;
  }

  /* Responsive div tabanlı stilleri */
  .features .feature .radio .option {
    padding: 3px 8px;
    font-size: 11px;
  }

  .features .feature .radio .option.selected {
    padding: 3px 8px;
  }

  .ozellik .icon img {
    width: 20px;
    height: 20px;
  }

  .ozellik {
    font-size: 14px;
  }

  .ozellik .paylas {
    gap: 5px;
  }

  .ozellik .paylas a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1200px) {
  .urunler {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .urunler {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .products .inner {
    flex-direction: column;
  }

  .filters {
    width: 100%;
    margin-bottom: 20px;
    position: unset;
  }

  .filter {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .filter .title {
    position: relative;
    cursor: pointer;
    padding: 8px 0;
    user-select: none;
  }

  .filter .title .toggle-indicator {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }

  .filter .title .toggle-indicator:after {
    content: "+";
    font-size: 18px;
    color: var(--primary);
  }

  .filter .title.collapsed .toggle-indicator:after {
    content: "-";
  }

  .urunler {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .urunler {
    grid-template-columns: 1fr;
  }

  .products .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .products .header .right {
    margin-top: 10px;
    align-self: flex-end;
  }

  .sort-dropdown {
    right: 0;
    left: auto;
    min-width: 160px;
  }
}

@media screen and (max-width: 992px) {
  header .middle {
    flex-wrap: wrap;
    gap: 16px;
  }

  header .logo {
    margin-top: -20px;
  }

  header .logo img {
    max-width: 180px;
  }

  header .middle .search-input {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }

  header .middle nav {
    margin-left: auto;
  }

  header .middle nav ul li a,
  header .bottom nav ul li a {
    padding: 5px 8px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  header .bottom {
    justify-content: end;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  header .container {
    padding: 0 15px;
    position: relative;
  }

  header .top {
    justify-content: center;
    margin-bottom: 15px;
  }

  header .middle {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /*  padding-right: 50px;  */
  }

  header .logo {
    margin: 0;
  }

  header .middle nav,
  header .bottom nav {
    display: none;
  }

  header .middle .search-input {
    width: 100%;
  }

  header .bottom {
    padding-top: 15px;
  }
}

@media screen and (max-width: 576px) {
  header {
    padding-top: 15px;
  }

  header .top {
    margin-bottom: 10px;
  }

  header .middle {
    gap: 12px;
  }

  header .logo img {
    max-width: 150px;
  }

  header .middle nav ul li a,
  header .bottom nav ul li a {
    padding: 4px 6px;
    font-size: 12px;
  }

  header .middle .search-input input {
    padding: 6px 10px;
    font-size: 14px;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  will-change: opacity, visibility;
}

.mobile-menu-container.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: white;
  padding: 80px 20px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-container.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu .mobile-nav-middle,
.mobile-menu .mobile-nav-bottom {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(65, 107, 169, 0.2);
  padding-bottom: 10px;
}

.mobile-menu .mobile-nav-middle ul,
.mobile-menu .mobile-nav-bottom ul {
  display: flex;
  flex-direction: column;
}

.mobile-menu ul li {
  margin-bottom: 8px !important;
}

.mobile-menu ul li a {
  display: block;
  padding: 10px 15px;
  color: var(--primary);
  font-size: 16px;
  transition: var(--transition);
  border-radius: 4px;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  background-color: var(--primary);
  color: var(--white);
}

/* Alt dropdown stilleri */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.sub-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.sub-dropdown.active .sub-dropdown-toggle i {
  transform: rotate(90deg);
}

.sub-dropdown-menu {
  position: absolute;
  left: -85%;
  top: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0;
  flex-direction: column !important;
  margin: 0;
}

.sub-dropdown.active .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}

.sub-dropdown-menu li:last-child {
  border-bottom: none;
}

.sub-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.2s ease;
}

.sub-dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

/* Mobil menü için alt dropdown stilleri */
.mobile-menu .sub-dropdown {
  position: relative;
  width: 100%;
}

.mobile-menu .sub-dropdown-menu {
  position: static;
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  margin-top: 5px;
  margin-left: 15px;
  border-radius: 8px;
  width: calc(100% - 15px);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1002;
}

.mobile-menu .sub-dropdown.active .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: 200px;
}

.mobile-menu .sub-dropdown-menu li a {
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .sub-dropdown-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu .sub-dropdown-menu li a:hover {
  background-color: rgba(52, 144, 220, 0.1);
  color: #007bff;
}

.mobile-menu .sub-dropdown-toggle i {
  font-size: 12px;
  margin-left: auto;
}

.mobile-menu .sub-dropdown.active .sub-dropdown-toggle i {
  transform: rotate(90deg);
}

.mobile-menu ul li a i {
  margin-right: 8px;
}

.mobile-menu:before {
  display: none;
}

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: var(--primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  z-index: 5;
}

.mobile-menu-close:hover {
  background-color: rgba(65, 107, 169, 0.1);
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  touch-action: none;
}

@supports (-webkit-overflow-scrolling: touch) {
  html.no-scroll,
  body.menu-open {
    position: relative;
    height: 100vh;
    overflow: hidden !important;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 0;
    right: 15px;
  }
}

/* Search Results Styles */
#searchResultsDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

.search-results-container {
  padding: 10px;
}

.search-product-card {
  display: flex;
  align-items: center;
  padding: 10px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-product-card:last-child {
  border-bottom: none;
}

.search-product-card:hover {
  background-color: rgba(65, 107, 169, 0.05);
}

.search-product-image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.search-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-product-info {
  flex: 1;
}

.search-product-info h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.search-no-results {
  text-align: center;
  padding: 15px;
  color: #666;
  font-size: 1.4rem;
}

header .middle .search-input {
  position: relative;
}

@media screen and (max-width: 768px) {
  #searchResultsDropdown {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    max-height: 50vh;
  }

  .search-product-info h3 {
    font-size: 1.3rem;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.urunler {
  transition: opacity 0.3s ease;
}

.fade-transition {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fade-in {
  opacity: 1;
}

.urun {
  position: relative;
  overflow: hidden;
}

.urun .urun-image {
  position: relative;
}

.urun-search-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  border: none;
  cursor: pointer;
}

.urun-search-icon:hover {
  background-color: var(--hover-dark);
}

.urun:hover .urun-search-icon {
  opacity: 1;
}

@media (max-width: 768px) {
  .urun-search-icon {
    opacity: 1;
  }
}

.modal-dialog,
.modal-content {
  max-width: 1200px;
  width: 100%;
}

.hizli-bakis {
  text-align: center;
  padding: 20px 0;
  font-size: 24px;
  color: var(--white);
  background-color: var(--primary);
}

.cat-li a.active {
  color: var(--primary);
}

.document {
  width: max-content;
  padding: 6px 12px;
  background-color: var(--primary);
  transition: var(--transition);
  color: var(--white);
  border: 1px solid var(--primary);
  font-size: 14px;
}

.document:hover {
  background-color: var(--white);
  color: var(--primary);
}

.asd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 0px;
}

.active-cat {
  font-weight: bold;
}

.sub-categories {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 16px 0px;
}

.sub-categories .subtitle {
  font-size: 14px;
  font-weight: bold;
  color: var(--primary);
}

.sub-categories a {
  font-size: 14px;
  color: var(--primary);
}

.scroll-to-top {
  background-color: var(--primary);
  max-width: 40px;
  min-width: 40px;
  max-height: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 50%;
  position: fixed;
  right: 100px;
  bottom: 24px;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--primary);
}

.scroll-to-top:hover {
  scale: 1.1;
  background-color: var(--white);
  color: var(--primary);
}

.whatsapp-button {
  background-color: #25d366;
  max-width: 60px;
  min-width: 60px;
  max-height: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 50%;
  position: fixed;
  right: 24px;
  bottom: 24px;
  transition: all 0.3s ease-in-out;
  border: none;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
  color: var(--white);
}

/* Çerez Ayarları Butonu */
.cookie-settings-button {
  background-color: var(--primary);
  max-width: 50px;
  min-width: 50px;
  max-height: 50px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 50%;
  position: fixed;
  left: 24px;
  bottom: 24px;
  transition: all 0.3s ease-in-out;
  border: none;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(65, 107, 169, 0.3);
  z-index: 1000;
}

.cookie-settings-button:hover {
  transform: scale(1.1);
  background-color: var(--hover-dark);
  box-shadow: 0 6px 20px rgba(65, 107, 169, 0.4);
}

.cookie-settings-button i {
  color: var(--white);
}

@media screen and (max-width: 768px) {
  .whatsapp-button {
    max-width: 50px;
    min-width: 50px;
    max-height: 50px;
    min-height: 50px;
    font-size: 20px;
    right: 16px;
    bottom: 70px;
  }

  .cookie-settings-button {
    max-width: 45px;
    min-width: 45px;
    max-height: 45px;
    min-height: 45px;
    font-size: 18px;
    left: 16px;
    bottom: 70px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.main-loading-spinner,
.loadmore-loading-spinner {
  display: none;
  text-align: center;
  padding: 30px;
}

.variant-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 5px;
}

.filter-title {
  font-weight: bold;
  color: var(--primary);
}

.clear-filters {
  background-color: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.2s;
}

.clear-filters:hover {
  background-color: #2c5aa0;
}

.sub-category-value {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  padding: 5px 12px;
  margin: 3px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-size: 12px;
}

.sub-category-value:hover {
  background-color: #dee2e6;
  transform: translateY(-1px);
}

.sub-category-value.selected {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.sub-categories {
  margin-bottom: 15px;
}

.subtitle {
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 14px;
}

.no-products-message {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-products-message i {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-products-message h3 {
  margin-bottom: 10px;
  color: #333;
}

.no-products-message p {
  color: #666;
  margin: 0;
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 350px;
  height: 500px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.3s ease-out;
}

.whatsapp-widget.active {
  display: flex;
}

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

.whatsapp-widget-header {
  background: #1d8069;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  position: relative;
}

.whatsapp-widget-header .profile-pic {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #25d366;
  font-size: 14px;
  position: relative;
}

.whatsapp-widget-header .profile-pic img {
  border-radius: 50%;
}

.whatsapp-widget-header .profile-pic::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border: 2px solid white;
  border-radius: 50%;
}

.whatsapp-widget-header .info {
  flex: 1;
}

.whatsapp-widget-header .name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 2px;
}

.whatsapp-widget-header .status {
  font-size: 12px;
  opacity: 0.9;
}

.whatsapp-widget-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background-color 0.2s;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-widget-header .close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.whatsapp-widget-body {
  flex: 1;
  background: #f0f0f0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 40%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    );
  background-size: 50px 50px, 30px 30px, 40px 40px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  max-height: calc(100% - 140px);
}

.whatsapp-widget-timestamp {
  text-align: center;
  color: #999;
  font-size: 12px;
  margin-bottom: 20px;
}

.whatsapp-widget-message {
  background: white;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  max-width: 80%;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.whatsapp-widget-message p {
  margin: 0;
  line-height: 1.4;
  color: #333;
}

.whatsapp-widget-input-container {
  margin-top: auto;
  background: white;
  padding: 15px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-widget-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 20px;
  background: #f0f0f0;
  font-size: 14px;
}

.whatsapp-widget-input::placeholder {
  color: #999;
}

.whatsapp-widget-send-btn {
  background: #25d366;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.whatsapp-widget-send-btn:hover {
  background: #20ba5a;
}

.whatsapp-widget-footer {
  text-align: center;
  padding: 10px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.whatsapp-widget-footer i {
  font-size: 14px;
}

.whatsapp-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.whatsapp-widget-overlay.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .whatsapp-widget {
    width: calc(100vw - 32px);
    height: calc(100vh - 120px);
    bottom: 80px;
    right: 16px;
    left: 16px;
  }

  .whatsapp-button {
    bottom: 70px;
  }
}

@media screen and (max-width: 480px) {
  .whatsapp-widget {
    width: calc(100vw - 16px);
    right: 8px;
    left: 8px;
  }
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer !important;
  text-decoration: none;
}

.dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  align-items: flex-start !important;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.dropdown-toggle::after {
  display: none;
}

.mobile-menu .dropdown {
  position: relative;
  width: 100%;
}

.mobile-menu .dropdown-menu {
  position: static;
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  margin-top: 10px;
  border-radius: 8px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 10001;
}

.mobile-menu .dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: 300px;
}

.mobile-menu .dropdown-menu li a {
  padding: 15px 20px;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .dropdown-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu .dropdown-menu li a:hover {
  background-color: rgba(52, 144, 220, 0.1);
  color: #007bff;
}

.sub-dropdown {
  position: relative;
}

.sub-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.sub-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.sub-dropdown.active .sub-dropdown-toggle i {
  transform: rotate(90deg);
}

.sub-dropdown-menu {
  position: absolute;
  left: -85%;
  top: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-dropdown.active .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown-menu li {
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}

.sub-dropdown-menu li:last-child {
  border-bottom: none;
}

.sub-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.2s ease;
}

.sub-dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.mobile-menu .sub-dropdown {
  position: relative;
  width: 100%;
}

.mobile-menu .sub-dropdown-menu {
  position: static;
  transform: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  margin-top: 5px;
  margin-left: 15px;
  border-radius: 8px;
  width: calc(100% - 15px);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1002;
}

.mobile-menu .sub-dropdown.active .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: 200px;
}

.mobile-menu .sub-dropdown-menu li a {
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .sub-dropdown-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu .sub-dropdown-menu li a:hover {
  background-color: rgba(52, 144, 220, 0.1);
  color: #007bff;
}

.mobile-menu .dropdown-toggle i {
  font-size: 14px;
  margin-left: auto;
}

.mobile-menu .dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-menu .sub-dropdown-toggle i {
  font-size: 12px;
  margin-left: auto;
}

.mobile-menu .sub-dropdown.active .sub-dropdown-toggle i {
  transform: rotate(90deg);
}

.biz-kimiz-container ul,
.biz-kimiz-container ul li {
  list-style: disc !important;
  padding: revert-layer !important;
}

.visual-tour {
  scroll-margin-top: 150px;
  scroll-behavior: smooth;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  /* background-color: var(--primary); */
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  scale: 1.2;
}

@media (max-width: 568px) {
  .kimiz .title {
    background: linear-gradient(
      90deg,
      rgba(65, 107, 169, 0.64) 70%,
      rgba(255, 255, 255, 0.64) 50%
    ) !important;
  }
}

.accordion-content ul,
.accordion-content ul li {
  list-style: disc !important;
  padding: revert-layer !important;
}

/* styles/variants.css dosyasına ekle */
.disabled {
  opacity: 0.5;
  text-decoration: line-through;
  cursor: not-allowed;
}

.limited-availability {
  opacity: 0.6;
}

.available-option {
  opacity: 1;
  position: relative;
  font-weight: 500;
}

.available-option:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4caf50;
  opacity: 0.5;
}

.reset-filters-container {
  margin: 15px 0 5px;
  text-align: right;
}

#reset-filters {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#reset-filters:hover {
  background-color: #e5e5e5;
  border-color: #ccc;
}

.cookies-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  /* background-color: #808080; */
  padding-top: 32px;
  padding-bottom: 32px;
  color: var(--white);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.cookies-container.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookies {
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  padding: 22px;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  background-color: #808080;
}

.cookies__text h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.cookies__text p {
  margin: 0 0 10px;
  line-height: 1.5;
  font-size: 15px;
}

.cookies__link {
  font-size: 14px;
  text-decoration: underline;
  color: inherit;
}

.cookies__actions {
  display: grid;
  gap: 10px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.06s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, opacity 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--cookie-blue);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15) inset;
}
.btn--primary:hover {
  background: var(--cookie-blue-pressed);
}

.btn--ghost {
  background: var(--cookie-ghost-bg);
  color: var(--cookie-text);
}
.btn--ghost:hover {
  opacity: 0.9;
}

.btn--secondary {
  background: #2d6cdf;
  color: #fff;
}
.btn--secondary:hover {
  background: #245ac1;
}

@media (min-width: 768px) {
  .cookies {
    grid-template-columns: 1fr 300px;
    align-items: center;
    padding: 26px 28px;
  }
  .cookies__actions {
    justify-self: end;
    width: 100%;
  }
}

.is-hidden {
  visibility: hidden !important;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  /* kapanırken visibility, opaklık bitince devreye girsin */
  transition: opacity var(--overlay-dur) ease,
    visibility 0s linear var(--overlay-dur);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  /* açılırken visibility anında görünür olsun */
  transition: opacity var(--overlay-dur) ease, visibility 0s;
}

/* MODAL */
.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  /* hafif yukarıdan gelip büyüsün */
  transform: translate(-50%, -48%) scale(0.92);
  transform-origin: 50% 50%;
  background-color: var(--white);
  max-width: 600px;
  width: 100%;
  padding: 10px;
  z-index: 999999;
  border-radius: 10px;

  /* fade + scale */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);

  transition: transform var(--modal-dur) var(--modal-ease),
    opacity var(--overlay-dur) ease, visibility 0s linear var(--overlay-dur);

  will-change: transform, opacity;
}

.cookie-settings-modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition: transform var(--modal-dur) var(--modal-ease),
    opacity var(--overlay-dur) ease, visibility 0s;
}

/* hareket hassasiyeti olanlar için animasyonu kapat */
@media (prefers-reduced-motion: reduce) {
  .cookie-settings-modal,
  .overlay {
    transition: none;
  }
}

.cookie-settings-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid lightgray;
  padding-bottom: 10px;
}

.cookie-settings-modal .modal-title {
  font-size: 18px;
}

.cookie-settings-modal .close-btn {
  font-size: 18px;
}

.cookie-settings-modal .modal-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Çerez Ayarları Stilleri */
.cookie-settings {
  padding: 20px;
}

.cookie-settings h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.cookie-description {
  margin-bottom: 25px;
  color: #666;
  line-height: 1.5;
  font-size: 14px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-header h4 {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.cookie-explanation {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.4;
}

/* Switch Stilleri */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.switch-label:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .switch-label {
  background-color: #2196f3;
}

input:disabled + .switch-label {
  background-color: #4caf50;
  cursor: not-allowed;
  opacity: 0.6;
}

input:checked + .switch-label:before {
  transform: translateX(26px);
}

input:disabled + .switch-label:before {
  transform: translateX(26px);
}

/* Buton Stilleri */
.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #2196f3;
  color: white;
}

.btn-primary:hover {
  background-color: #1976d2;
}

.btn-secondary {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
  color: black;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .cookie-settings {
    padding: 15px;
  }

  .cookie-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Çerez Politikası Sayfası Stilleri */
.cookie-policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.policy-section {
  margin-bottom: 40px;
  padding: 25px;
  background-color: #fafafa;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.policy-section h2 {
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.policy-section h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 10px 0;
}

.policy-section p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}

.policy-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.policy-section ul li {
  color: #333;
  line-height: 1.6;
  margin-bottom: 8px;
  font-size: 14px;
}

.cookie-type {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.cookie-type h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

.third-party-cookies {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.third-party-cookies h3 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0 10px 0;
}

.cookie-management {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.cookie-management h3 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0 10px 0;
}

.cookie-duration {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.cookie-duration h3 {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0 10px 0;
}

.contact-info {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info strong {
  color: var(--primary);
}

.policy-footer {
  background-color: var(--primary);
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: center;
}

.policy-footer p {
  margin-bottom: 10px;
  font-size: 14px;
}

.policy-footer strong {
  font-weight: 600;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .cookie-policy-content {
    padding: 10px 0;
  }

  .policy-section {
    padding: 20px;
    margin-bottom: 30px;
  }

  .policy-section h2 {
    font-size: 20px;
  }

  .policy-section h3 {
    font-size: 16px;
  }

  .cookie-type,
  .third-party-cookies,
  .cookie-management,
  .cookie-duration,
  .contact-info {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .policy-section {
    padding: 15px;
  }

  .policy-section h2 {
    font-size: 18px;
  }

  .policy-section p {
    font-size: 14px;
  }

  .policy-section ul li {
    font-size: 13px;
  }
}

.newsletter-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.newsletter-modal.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-modal-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.newsletter-modal.active .newsletter-modal-content {
  transform: scale(1);
}

.newsletter-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.newsletter-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kraft-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: "Gotham Medium", sans-serif;
}

.heart-icon {
  color: #ff0000;
  font-size: 18px;
}

.newsletter-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.newsletter-close-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}

.newsletter-modal-body {
  padding: 25px;
}

.newsletter-title {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.4;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.email-input-group {
  position: relative;
}

.email-input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.email-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(65, 107, 169, 0.1);
}

.newsletter-submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-submit-btn:hover {
  background-color: var(--hover-dark);
}

.newsletter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  /* display: none; */
  margin-right: 4px;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
  margin-right: 10px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.checkbox-text {
  color: #333;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.checkbox-text:hover {
  color: var(--primary);
}

.newsletter-modal-footer {
  padding: 15px 25px 20px;
  text-align: right;
}

.newsletter-note {
  color: #999;
  font-size: 11px;
  font-style: italic;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .newsletter-modal-content {
    width: 95%;
    max-width: 400px;
  }

  .newsletter-modal-header {
    padding: 15px 20px 10px;
  }

  .newsletter-modal-body {
    padding: 20px;
  }

  .kraft-logo {
    font-size: 20px;
  }

  .newsletter-title {
    font-size: 14px;
  }

  .newsletter-submit-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .checkbox-label {
    font-size: 12px;
  }

  .newsletter-modal-footer {
    padding: 10px 20px 15px;
  }
}

@media (max-width: 480px) {
  .newsletter-modal-content {
    width: 98%;
    margin: 10px;
  }

  .newsletter-modal-header {
    padding: 12px 15px 8px;
  }

  .newsletter-modal-body {
    padding: 15px;
  }

  .kraft-logo {
    font-size: 18px;
  }

  .newsletter-title {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .newsletter-form {
    gap: 15px;
  }

  .email-input-group input {
    padding: 10px 12px;
    font-size: 13px;
  }

  .newsletter-submit-btn {
    padding: 10px 14px;
    font-size: 13px;
  }

  .checkbox-label {
    font-size: 11px;
  }

  .checkmark {
    width: 14px;
    height: 14px;
  }
}

.swal2-popup.swal2-modal.swal2-icon-error.swal2-show {
  z-index: 9999999;
}

.whatsapp-kvkk-text {
  font-size: 13px;
  padding: 8px;
}
.whatsapp-kvkk-text a {
  font-weight: bold;
  color: var(--primary);
}

video{
  max-width: 100%;
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}