@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary-500: #0a6491;
  --primary-700: #376074;
  --primary-900: #0a364c;
  --green-color: #12cd12;
  --gray-color: #d3dbdf;
  --text-color: #616161;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  color: black;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: auto !important;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
}

img {
  max-width: 100%;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

.default-img {
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li {
  list-style: unset;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper p + h2,
.contnet-wrapper p + h3,
.content-wrapper p + h4,
.content-wrapper p + h5,
.content-wrapper p + h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* NAVIGATION CONTAINER START */

@media (max-width: 992px) {
  .navigation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 65px;
  }

  .navigation-container .swiper-button-prev,
  .navigation-container .swiper-button-next {
    position: static !important;
    /* Swiper varsayılan pozisyonlarını iptal eder */
    transform: none !important;
    width: auto;
    height: auto;
  }

  .navigation-container i {
    font-size: 20px;
  }
}

/* NAVIGATION CONTAINER END */

header {
  padding: 5px 0;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 11;
}

header.scrolled {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* DESKTOP-HEADER START */

.desktop-header-left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.desktop-header-left nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-header-left nav ul li a {
  color: black;
  font-size: 14px;
}

.desktop-header-left .menu-list li a {
  padding: 0 0 40px 0;
}

@media (max-width: 1200px) {
  .desktop-header-left nav ul li a {
    font-size: 9px;
  }
}

.desktop-header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.desktop-header-right form input {
  padding: 8px 8px 8px 15px;
  border-radius: 5px;
  border: 1px solid gainsboro;
  outline: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
}

.input-wrapper label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  background: white;
  padding: 0 4px;
}

.input-wrapper input:focus + label,
.input-wrapper input:not(:placeholder-shown) + label {
  top: 0;
  left: 8px;
  font-size: 12px;
  color: gray;
}

.whatsapp-btn {
  width: 35%;
  padding: 10px;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid var(--green-color);
  background-color: white;
  color: var(--green-color);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.whatsapp-btn:hover {
  background-color: var(--green-color);
  color: white;
}

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

/* DESKTOP-HEADER END */

/* MEGA MENU START */

.mega-menu {
  position: absolute;
  display: flex;
  align-items: stretch !important;
  /* Sol tarafta dikey ana linkler */
  flex-direction: column;
  flex-wrap: nowrap;
  right: 0;
  gap: 6px !important;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 18px 22px;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  overflow: hidden;
  min-height: 280px;
}

/* Kök menü ögesi konumlandırma */
.menu-item {
  position: static;
}

.mega-menu li {
  padding: 0;
  color: var(--primary-900);
  list-style: none;
}

.mega-menu li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--primary-900);
  text-decoration: none;
}

.menu-item:hover > .mega-menu {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto; /* açılınca tıklanabilir */
}

li.mega-menu-col {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: static; /* sağ paneli .mega-menu'ya göre konumlamak için */
  width: 100%;
  align-items: flex-start;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.mega-menu-col a {
  padding: 0px !important;
}

/* Kategori başlığı tipografisi ve hover durumu */
.mega-menu-col > a.category-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.35;
  color: var(--primary-900);
  letter-spacing: 0.2px;
}

.mega-menu-col:hover {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.mega-menu-child {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 80%; /* col-lg-6 */
  height: 100%;
  padding: 18px 22px !important;
  display: none; /* hover ile açılacak */
  flex-direction: column;
  align-items: flex-start !important;
  gap: 10px !important;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

/* Category title hover -> open child with the same scale transition */
.mega-menu-col > a.category-title:hover + .mega-menu-child,
     .mega-menu-col > a.category-title:focus-visible + .mega-menu-child,
     /* Keep open when hovering the child list itself for better UX */
     .mega-menu-col:hover > .mega-menu-child,
     /* Support pre-opened state via .active class from template */
     .mega-menu-child.active {
  opacity: 1;
  pointer-events: auto;
}

/* Alt bağlantı stilleri */
.mega-menu-child li a {
  font-size: 14px;
  color: var(--primary-900);
  padding: 8px 10px;
  width: 100%;
  border-radius: 8px;
  transition: color 0.15s ease, background-color 0.15s ease,
    transform 0.15s ease;
}
.mega-menu-child li a:hover {
  transform: translateX(2px);
}

/* Varsayılan galeri (menü açıldığında görünür) */
.default-gallery-wrapper {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 80%; /* col-lg-6 */
  height: 100%;
  background-color: white;
  display: flex; /* menü ilk açıldığında görünür */
  gap: 12px;
  padding: 18px 22px;
  z-index: 1; /* sağ panel (.hover-content) altında kalsın */
}
.default-gallery-wrapper .gallery-item,
.gallery-wrapper .gallery-item {
  display: block;
  height: auto;
}
.default-gallery-wrapper .gallery-item img,
.gallery-wrapper .gallery-item img {
  border-radius: 10px;
  box-shadow: 0 8px 18px -10px rgba(0, 0, 0, 0.35);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.default-gallery-wrapper .gallery-item img:hover,
.gallery-wrapper .gallery-item img:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 28px -14px rgba(0, 0, 0, 0.45);
}

/* Hover içerikleri (alt kategori listesi ve görseller) varsayılan kapalı */
.hover-content {
  display: none !important;
}
/* İlgili sütun üzerinde hover iken hover-content görünür */
.mega-menu-col:hover > .hover-content {
  display: flex !important; /* hem .mega-menu-child hem .gallery-wrapper için */
}
/* :has() ile: Herhangi bir sütun hover iken default galeri gizlensin */
.mega-menu:has(.mega-menu-col:hover) .default-gallery-wrapper {
  display: none !important;
}
/* Hiçbir sütun hover değilken default galeri görünsün */
.mega-menu:not(:has(.mega-menu-col:hover)) .default-gallery-wrapper {
  display: flex !important;
}

/* Görsel galerisi düzeni */
.gallery-wrapper {
  display: none;
  gap: 12px;
  padding: 18px 22px;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  width: 80%; /* col-lg-6 */
  height: 100%;
  background-color: white;
  z-index: 2;
}
.mega-menu-col:hover > .gallery-wrapper {
  display: flex;
}

/* İsteğe bağlı: Menü açıkken tüm linklerde pointer etkinleşsin */
.mega-menu a {
  pointer-events: auto;
}

/* Basit giriş animasyonu */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-menu-child,
.gallery-wrapper {
  animation: fadeSlideIn 220ms ease both;
}

/* MEGA MENU END */

/* HEADER DROPDOWN START */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown a {
  padding-bottom: 50px;
}

@media (max-width: 992px) {
  .dropdown a {
    padding-bottom: 0px !important;
  }
}

.dropdown-content {
  width: 970px;
  border-top: 5px solid var(--primary-500);
  position: absolute;
  background: white;
  margin: 0 auto;
  left: -245px;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 9;
  pointer-events: none;
  top: 40px;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: top;
  opacity: 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}

@media (max-width: 992px) {
  .dropdown-content {
    border: none;
    position: static;
    width: 100%;
    left: 0px;
    box-shadow: none;
    opacity: 1;
    transform: scaleY(1);
  }
}

.dropdown-items {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0 !important;
  width: 100%;
  padding: 30px !important;
}

@media (max-width: 992px) {
  .dropdown-items {
    grid-template-columns: repeat(1, 1fr) !important;
    padding: 0 !important;
  }
}

.dropdown-content .dropdown-items li {
  display: block;
  padding: 10px;
  width: 100%;
  transition: all 0.3s ease;
}

.dropdown-content .dropdown-items li a {
  color: black !important;
  padding-bottom: 0;
  font-weight: 300;
}

.dropdown:hover .dropdown-content {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: all;
}

.dropdown-img {
  width: 75%;
  padding: 30px;
}

.dropdown-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

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

@media (min-width: 992px) {
  .dropdown:hover .dropdown-icon i {
    color: var(--primary-500);
    transform: rotate(180deg);
    transition: transform 0.3s ease, color 0.3s ease;
  }
}

/* mobile için open class ekliyoruz */
.dropdown-icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown.open .dropdown-icon i {
  transform: rotate(180deg);
  color: var(--primary-500);
}

/* HEADER DROPDOWN END */

/* MOBILE HEADER START */

@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

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

.mobile-header {
  transition: all 0.3s ease;
  padding: 0 10px;
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: white;
}

.mobile-bottom {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 500px) {
  .mobile-bottom {
    padding: 0 10px;
  }
}

.mobile-bottom .logo {
  width: 150px;
}

.menu-logo {
  display: inline-block;
}

.mobile-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 500px) {
  .mobile-header-right form {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .mobile-header-right form .input-wrapper {
    width: 80%;
  }
}

.mobile-header-right form input {
  padding: 5px 8px 5px 15px;
  border-radius: 5px;
  border: 1px solid var(--primary-900);
  outline: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
}

@media (max-width: 435px) {
  .mobile-bottom .logo {
    width: 90px;
  }
}

.hamburger {
  display: block;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  margin: 5px 0;
  height: 3px;
  width: 30px;
  border-radius: 10px;
  background-color: var(--primary-900);
  transition: 0.3s ease;
  position: relative;
  z-index: 13;
}

@media (min-width: 430px) {
  .hamburger.active .bar {
    background-color: white;
  }
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-wrapper {
  background-color: white;
  width: 50%;
  height: 100vh;
  padding: 15px 30px;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-wrapper.active {
  left: 0;
}

@media (max-width: 768px) {
  .header-wrapper {
    width: 75%;
  }
}

@media (max-width: 430px) {
  .header-wrapper {
    width: 100%;
  }
}

.overlay {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 3;
  display: none;
  pointer-events: none;
  bottom: 0;
}

.overlay.active {
  display: block;
  pointer-events: all;
}

.mobile-header nav ul li {
  padding: 10px 0;
}

.mobile-header nav ul li a {
  color: black;
  display: block;
}

.mobile-header .dropdown-icon i {
  font-size: 27px;
}

@media (max-width: 992px) {
  .menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-content {
    display: none;
  }

  .dropdown-content.open {
    display: block;
  }
}

/* MOBILE HEADER END */

/* HERO START */

.hero {
  padding: 0;
}

.hero-img {
  width: 100%;
}

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
  background-color: var(--primary-900);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.heroSlider .swiper-button-next i,
.heroSlider .swiper-button-prev i {
  font-size: 16px;
  color: #fff;
}

.heroSlider .swiper-pagination-bullet-active {
  background: var(--primary-900);
}

.heroSlider .swiper-pagination-bullet.swiper-pagination-bullet {
  padding: 3px 36px;
  border-radius: var(--swiper-pagination-bullet-border-radius, 10%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 60px) !important;
}

@media (max-width: 992px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 0px) !important;
  }
}

/* HERO END */

/* BRANDS START */

.brands {
  padding: 0 0 60px 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .brands {
    padding: 30px 0;
    margin-top: 0;
  }
}

.brands .background {
  border: 15px solid white;
  border-radius: 18px;
  background-color: white;
}

@media (max-width: 992px) {
  .brands-box {
    display: block;
    margin-bottom: 30px;
  }

  .brands-box img {
    width: 100%;
  }
}

/* BRANDS END */

/* SLIDER FILTER START */

.slider-filter {
  padding: 60px 30px;
}

@media (max-width: 992px) {
  .slider-filter {
    padding: 60px 0;
  }

  .cardSlider {
    margin-bottom: 40px;
    overflow: hidden !important;
  }
}

.cardSlider .swiper-slide .card:nth-child(1n) {
  background-color: var(--primary-500);
}

.cardSlider .swiper-slide .card:nth-child(2n) {
  background-color: var(--primary-700);
}

.cardSlider .swiper-slide .card:nth-child(3n) {
  background-color: var(--primary-900);
}

.slider-filter .cardSlider .swiper-slide {
  border-radius: 20px;
}

.slider-filter .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 15px 100px 30px;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
}

.slider-filter .card img {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

.slider-filter .card .wrapper {
  color: white;
  position: relative;
}

.slider-filter .card .wrapper::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 30%;
  background-color: white;
}

.slider-filter .card .top-title {
  font-size: 32px;
  font-weight: 600;
}

.slider-filter .card .bottom-title {
  font-size: 27px;
}

.cardSlider .navigation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: -30px;
  padding-bottom: 30px;
}

.cardSlider .swiper-button-prev,
.cardSlider .swiper-button-next {
  position: static;
  color: white;
}

.cardSlider .swiper-button-next i,
.swiper-rtl .swiper-button-prev i {
  font-size: 27px;
}

.cardSlider .swiper-button-prev i,
.swiper-rtl .swiper-button-next i {
  font-size: 27px;
}

@keyframes fadeScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeScaleOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}

.product-fade {
  opacity: 0;
  pointer-events: none;
  animation-fill-mode: forwards;
}

.product-fade.show {
  pointer-events: auto;
  animation: fadeScaleIn 0.4s ease forwards;
}

.product-fade.hide {
  animation: fadeScaleOut 0.4s ease forwards;
}

@media (max-width: 992px) {
  .productSlider {
    padding-bottom: 50px !important;
  }
}

.productSlider .swiper-button-next,
.productSlider .swiper-button-prev {
  background-color: var(--gray-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.productSlider .swiper-button-next i,
.productSlider .swiper-button-prev i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-900);
}

@media (max-width: 992px) {
  .productSlider .swiper-button-next i,
  .productSlider .swiper-button-prev i {
    position: static;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    color: var(--primary-900);
  }
}

/* SLIDER FILTER END */

/* PRODUCT BOX START */

.bottom-category .product-box {
  margin-bottom: 30px;
}

.brands-page .product-box {
  margin-bottom: 30px;
}

.product-box {
  display: block;
}

.product-img {
  background-color: #f2eeee;
  margin-bottom: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

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

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-title-wrapper {
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}

.product-title-wrapper .title {
  font-size: 24px;
}

.product-title-wrapper .brand {
  font-size: 16px;
  font-weight: 300;
}

.product-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-icons i:first-child {
  font-size: 20px;
}

.product-icons i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  color: white;
  background-color: var(--primary-900);
}

/* PRODUCT BOX END */

/* POPULAR PRODUCTS START */

.popular-products .container {
  position: relative;
}

.popular-products .section-title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-900);
  text-align: center;
}

.popular-products .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 5%;
  height: 4px;
  background-color: var(--primary-900);
}

.popular-products .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -50px);
}

.popular-products .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -50px);
}

.popular-products .swiper-button-next,
.popular-products .swiper-button-prev {
  background-color: var(--gray-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.popular-products .swiper-button-next i,
.popular-products .swiper-button-prev i {
  font-size: 16px;
  color: var(--primary-900);
}

/* POPULAR PRODUCTS END */

/* BANNER BOX START */

.banner-box {
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .banner-box {
    margin-bottom: 30px;
  }
}

.banner-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.banner-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.banner-box img {
  transition: all 0.3s ease;
}

.banner-box:hover img {
  transform: scale(1.1);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.banner-content-title {
  color: white;
}

.banner-content-title .title {
  font-size: 27px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .banner-content-title .title {
    font-size: 24px !important;
  }
}

.banner-content-title .desc {
  font-size: 34px;
  font-weight: 900;
}

@media (max-width: 768px) {
  .banner-content-title .desc {
    font-size: 24px !important;
    margin-bottom: 10px;
  }
}

.banner-content .button {
  padding: 8px 36px;
  border: 1px solid white;
  color: var(--primary-900);
  cursor: default;
}

/* BANNER BOX END */

/* CATEGORY FILTER FUNCTION START */

.category-filter .container {
  position: relative;
}

.category-filter .section-title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-900);
  text-align: center;
}

.category-filter .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 5%;
  height: 4px;
  background-color: var(--primary-900);
}

.tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tab-buttons .tab-button {
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: #333333b3;
  background-color: transparent;
  border: none;
}

@media (min-width: 992px) {
  .filter-select {
    display: none;
  }
}

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

  .filter-select {
    display: block;
    margin-bottom: 30px;
  }
}

#productSelect {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#productSelect option {
  padding: 10px;
  cursor: pointer;
  display: block;
  border: none;
  width: 100%;
}

.tab-buttons .tab-button.active {
  color: black;
}

.tab-buttons .tab-button:hover {
  color: var(--primary-800);
}

.tab-buttons .tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s ease;
}

.tab-buttons .tab-button:hover::after {
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.filter-content {
  opacity: 0;
  display: none;
  pointer-events: none;
  animation-fill-mode: forwards;
}

.filter-content.active {
  display: block;
  pointer-events: auto;
  animation: fadeIn 0.4s ease forwards;
}

.filter-content.fadeOut {
  animation: fadeOut 0.4s ease forwards;
}

/* CATEGORY FILTER FUNCTION END */

/* BOTTOM BANNER START */

.bottom-banner {
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.bottom-banner::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.bottom-banner:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.bottom-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

@media (max-width: 768px) {
  .bottom-banner-content {
    gap: 0;
  }
}

.bottom-banner-content-title {
  color: white;
}

.banner-content-title .title {
  font-size: 27px;
  font-weight: 300;
}

.banner-content-title .desc {
  font-size: 34px;
  font-weight: 900;
}

.bottom-banner .button {
  padding: 8px 36px;
  border: 1px solid white;
  color: var(--primary-900);
  cursor: default;
}

@media (max-width: 768px) {
  .bottom-banner .button {
    padding: 3px 36px;
  }
}

/* BOTTOM BANNER END */

/* COMMENTS START */
.comments {
  padding: 60px 0;
}

.comments .container {
  position: relative;
}

.comments .section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-900);
  text-align: center;
}

.comments .section-desc {
  margin-bottom: 50px;
  color: gray;
  text-align: center;
}

.comments .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  top: 65%;
  left: var(--swiper-navigation-sides-offset, -50px);
}

.comments .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  top: 65%;
  right: var(--swiper-navigation-sides-offset, -50px);
}

.comments .swiper-button-next,
.comments .swiper-button-prev {
  background-color: var(--gray-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.comments .swiper-button-next i,
.comments .swiper-button-prev i {
  font-size: 16px;
  color: var(--primary-900);
}

.commentSlider .swiper-slide.small-slide {
  transform: scale(0.8);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
  background-color: var(--gray-color);
  padding: 30px;
  border-radius: 20px;
}

.commentSlider .swiper-slide.big-slide {
  padding: 80px 30px;
  transform: scale(1);
  opacity: 1;
  z-index: 2;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/yuklemeler/imaj/yorumlar-gorsel.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.commentSlider .swiper-slide.only-one-slide {
  padding: 80px 30px;
  transform: scale(1);
  opacity: 1;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.comment-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}

.comment-box .name {
  width: 60%;
  padding: 15px;
  background-color: white;
  color: black;
  border-radius: 10px;
}

.commentSlider .swiper-slide.big-slide .comment-box .desc p {
  font-size: 14px;
}

/* COMMENTS END */

/* CTA START */

.cta {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f1f5f9 100%);
  padding: 30px 0 60px 0;
  margin-top: 100px;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1080px) {
  .cta-container {
    flex-direction: column;
    gap: 30px;
  }
}

.cta-container-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.cta-container-title {
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-container-title span {
  font-size: 32px;
  color: var(--primary-900);
}

.cta-container-title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 40%;
  bottom: 0;
  height: 3px;
  background-color: var(--primary-900);
}

.cta-container-left .button {
  background-color: #ededed;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 50px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 30px;
  border: 1px solid var(--primary-900);
}

.cta-container-right .cta-img img {
  position: absolute;
  right: -75px;
  bottom: -58px;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .cta-container-right .cta-img img {
    position: static;
  }
}

/* CTA END */

/* FOOTER START */

footer {
  padding: 120px 0 0 0;
  background-color: var(--primary-900);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer-top {
  margin-bottom: 30px;
}

.footer-left {
  border-right: 1px solid white;
}

@media (max-width: 992px) {
  .footer-left {
    border: none;
    text-align: center;
    margin-bottom: 30px;
  }
}

.footer-left .desc {
  font-size: 20px;
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-center {
  padding-left: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 992px) {
  .footer-center {
    padding-left: 0;
    flex-wrap: wrap;
  }
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (max-width: 992px) {
  .footer-menu {
    margin-bottom: 30px;
  }
}

.footer-menu .title {
  color: white;
  padding-bottom: 5px;
  border-bottom: 1px solid white;
  font-size: 14px;
  font-weight: 600;
}

.footer-menu ul li a {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 14px;
}

.footer-menu a {
  color: white;
  font-weight: 300;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-menu a:hover {
  color: var(--gray-color);
}

.footer-menu .address {
  color: white;
  font-weight: 300;
  font-size: 14px;
}

.footer-map {
  display: block;
}

.footer-map img {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .footer-map {
    margin-bottom: 30px;
  }
}

.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.footer-bottom .footer-bottom-content {
  color: white;
  background-color: #082a3b;
  padding: 25px 100px 10px 100px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

@media (max-width: 992px) {
  .footer-bottom .footer-bottom-content {
    text-align: center;
    padding: 25px 80px 10px 80px;
  }
}

/* FOOTER END */

/* WHATSAPP FIXED BUTTON START */

.whatsapp-icon {
  text-align: center;
  display: inline-block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3;
}

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

.whatsapp-modal {
  width: 220px;
  text-align: center;
  background-color: var(--green-color);
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-modal::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--green-color);
}

.whatsapp-modal b {
  font-size: 18px;
}

.whatsapp-img {
  position: relative;
  display: inline-block;
}

.whatsapp-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 255, 0, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* WHATSAPP FIXED BUTTON END */

/* BREADCRUMB START */

.breadcrumb-container {
  background-color: var(--primary-500);
  padding: 30px 0;
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.breadcrumb-wrapper h1 {
  color: white;
  font-size: 32px;
}

.breadcrumb-wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb-wrapper ul li {
  color: white;
  position: relative;
}

.breadcrumb-wrapper ul li a {
  color: white;
  font-weight: 600;
}

.breadcrumb-wrapper ul li:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: -7px;
}

/* BREADCRUMB END */

/* ABOUT US PAGE START */

.about-us {
  padding: 60px 0 120px 0;
}

@media (max-width: 992px) {
  .about-us {
    padding: 60px 0;
  }
}

.about-us-left {
  position: sticky;
  top: 110px;
}

/* ABOUT US PAGE END */

/* CONTACT US PAGE START */

.contact-us {
  padding: 60px 0 120px 0;
}

@media (max-width: 992px) {
  .contact-us {
    padding: 60px 0;
  }
}

.blog-detail aside {
  position: sticky;
  top: 110px;
}

aside .contact-form {
  padding: 10px 0 30px 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

aside .contact-form form .form-item input,
aside .contact-form form .form-item textarea {
  padding: 8px;
}

.contact-form .section-title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-900);
  text-align: center;
}

.contact-form .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 25%;
  height: 4px;
  background-color: var(--primary-900);
}

.contact-form form .form-item input,
.contact-form form .form-item textarea {
  width: 100%;
  padding: 15px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid gainsboro;
}

.contact-form .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .contact-form .wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.contact-form button {
  padding: 15px 60px;
  background-color: var(--primary-500);
  color: white;
  border: 1px solid var(--primary-500);
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 10px;
}

.contact-form button:hover {
  background-color: white;
  color: var(--primary-500);
}

.sticky-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-us .section-title {
  font-size: 32px;
  text-align: center;
  color: var(--primary-900);
  margin-bottom: 15px;
}

.contact-us-img img {
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media (max-width: 992px) {
  .contact-us-img {
    margin-bottom: 30px;
  }
}

.contact-info-box {
  width: 100%;
  height: 90%;
  padding: 30px 10px;
  margin-bottom: 30px;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  word-break: break-word;
}

.contact-info-box:hover {
  color: black !important;
}

@media (max-width: 992px) {
  .contact-info-box {
    margin-bottom: 15px;
  }
}

.contact-info-title {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-500);
  padding: 10px;
  color: white;
  border-bottom-right-radius: 10px;
  font-size: 14px;
  font-weight: 300;
}

.contact-info-wrapper {
  padding: 20px 0 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 300;
}

.contact-info-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.contact-map iframe {
  height: 315px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* CONTACT US PAGE END */

/* PRODUCT DETAIL START */

.product-detail {
  padding: 30px 0 60px 0;
}

.gallerySlider2 .swiper-button-next,
.gallerySlider2 .swiper-button-prev {
  background-color: var(--gray-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.gallerySlider2 .swiper-button-next i,
.gallerySlider2 .swiper-button-prev i {
  font-size: 16px;
  color: var(--primary-900);
}

.gallerySlider2 {
  margin-bottom: 20px;
}

.gallery-box {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-breadcrumb {
  background-color: transparent !important;
  padding: 0 !important;
  margin-bottom: 15px !important;
}

.detail-breadcrumb .breadcrumb-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  align-items: flex-start;
}

.detail-breadcrumb .breadcrumb-wrapper h1 {
  color: gray;
  margin: 0;
}

.detail-breadcrumb .breadcrumb-wrapper ul li,
.detail-breadcrumb .breadcrumb-wrapper ul li a {
  color: gray;
}

.detail-breadcrumb .detail-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product-code {
  font-size: 14px;
  color: var(--text-color);
}

.detail-right {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 36px;
  font-weight: 600;
}

.slogan {
  font-size: 18px;
  font-weight: 500;
}

.installment-wrapper {
  margin: 15px 0;
}

.installment {
  font-size: 18px;
  font-weight: 600;
}

.old-price {
  position: relative;
  color: #999;
  font-size: 36px;
  font-weight: 600;
  display: inline-block;
}

.old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #999;
  transform: translateY(-50%);
  pointer-events: none;
}

.decimal-part {
  font-size: 18px;
  font-weight: 600;
}

.new-price {
  font-size: 60px;
  font-weight: 600;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5;
}

.out-of-stock {
  background-color: var(--primary-700);
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  display: inline-block;
  margin: 10px 0;
}

.out-of-stock:hover {
  color: white;
}

.out-of-stock .stock-message {
  font-weight: 600;
  margin: 0 5px;
}

.contact-btn {
  margin: 10px 0;
}

.contact-btn a {
  display: inline-block;
  padding: 10px 40px;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid var(--green-color);
  background-color: white;
  color: var(--green-color);
  font-weight: 600;
  font-size: 14px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-btn a:hover {
  background-color: var(--green-color);
  color: white;
}

.styled-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid gainsboro;
  border-radius: 10px;
  overflow: hidden;
}

.styled-table thead {
  background-color: var(--primary-500);
  font-weight: bold;
  color: white;
}

.styled-table thead tr th:not(:first-child),
.styled-table tbody tr td:not(:first-child) {
  border-left: 1px solid #ddd !important;
}

.styled-table th,
.styled-table td {
  padding: 12px 16px;
  text-align: center;
}

.styled-table tbody tr:nth-child(odd) {
  background-color: #f8f8f8;
}

.styled-table tbody tr:last-child td {
  border-bottom: none;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.total-sum-wrapper {
  margin-top: 10px;
  text-align: right;
}

.quantity-wrapper button {
  background: transparent;
  border: none;
}

.similar-product {
  padding: 60px 0 150px 0;
}

@media (max-width: 992px) {
  .similar-product {
    padding: 60px 0;
  }
}

.similar-product .container {
  position: relative;
}

.similar-product .swiper-wrapper {
  height: auto !important;
}

.similar-product .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -50px);
}

.similar-product .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -50px);
}

.similar-product .swiper-button-next,
.similar-product .swiper-button-prev {
  background-color: var(--gray-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.similar-product .swiper-button-next i,
.similar-product .swiper-button-prev i {
  font-size: 16px;
  color: var(--primary-900);
}

.similar-product .section-title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-900);
  text-align: center;
}

.similar-product .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 5%;
  height: 4px;
  background-color: var(--primary-900);
}

.bell {
  width: 20px;
  height: 20px;
  font-size: 22px;
  margin-left: 10px;
  color: white;
  -webkit-animation: ring 4s 0.7s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s 0.7s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s 0.7s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
  }

  1% {
    -webkit-transform: rotateZ(30deg);
  }

  3% {
    -webkit-transform: rotateZ(-28deg);
  }

  5% {
    -webkit-transform: rotateZ(34deg);
  }

  7% {
    -webkit-transform: rotateZ(-32deg);
  }

  9% {
    -webkit-transform: rotateZ(30deg);
  }

  11% {
    -webkit-transform: rotateZ(-28deg);
  }

  13% {
    -webkit-transform: rotateZ(26deg);
  }

  15% {
    -webkit-transform: rotateZ(-24deg);
  }

  17% {
    -webkit-transform: rotateZ(22deg);
  }

  19% {
    -webkit-transform: rotateZ(-20deg);
  }

  21% {
    -webkit-transform: rotateZ(18deg);
  }

  23% {
    -webkit-transform: rotateZ(-16deg);
  }

  25% {
    -webkit-transform: rotateZ(14deg);
  }

  27% {
    -webkit-transform: rotateZ(-12deg);
  }

  29% {
    -webkit-transform: rotateZ(10deg);
  }

  31% {
    -webkit-transform: rotateZ(-8deg);
  }

  33% {
    -webkit-transform: rotateZ(6deg);
  }

  35% {
    -webkit-transform: rotateZ(-4deg);
  }

  37% {
    -webkit-transform: rotateZ(2deg);
  }

  39% {
    -webkit-transform: rotateZ(-1deg);
  }

  41% {
    -webkit-transform: rotateZ(1deg);
  }

  43% {
    -webkit-transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(0);
  }
}

@-moz-keyframes ring {
  0% {
    -moz-transform: rotate(0);
  }

  1% {
    -moz-transform: rotate(30deg);
  }

  3% {
    -moz-transform: rotate(-28deg);
  }

  5% {
    -moz-transform: rotate(34deg);
  }

  7% {
    -moz-transform: rotate(-32deg);
  }

  9% {
    -moz-transform: rotate(30deg);
  }

  11% {
    -moz-transform: rotate(-28deg);
  }

  13% {
    -moz-transform: rotate(26deg);
  }

  15% {
    -moz-transform: rotate(-24deg);
  }

  17% {
    -moz-transform: rotate(22deg);
  }

  19% {
    -moz-transform: rotate(-20deg);
  }

  21% {
    -moz-transform: rotate(18deg);
  }

  23% {
    -moz-transform: rotate(-16deg);
  }

  25% {
    -moz-transform: rotate(14deg);
  }

  27% {
    -moz-transform: rotate(-12deg);
  }

  29% {
    -moz-transform: rotate(10deg);
  }

  31% {
    -moz-transform: rotate(-8deg);
  }

  33% {
    -moz-transform: rotate(6deg);
  }

  35% {
    -moz-transform: rotate(-4deg);
  }

  37% {
    -moz-transform: rotate(2deg);
  }

  39% {
    -moz-transform: rotate(-1deg);
  }

  41% {
    -moz-transform: rotate(1deg);
  }

  43% {
    -moz-transform: rotate(0);
  }

  100% {
    -moz-transform: rotate(0);
  }
}

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

  1% {
    transform: rotate(30deg);
  }

  3% {
    transform: rotate(-28deg);
  }

  5% {
    transform: rotate(34deg);
  }

  7% {
    transform: rotate(-32deg);
  }

  9% {
    transform: rotate(30deg);
  }

  11% {
    transform: rotate(-28deg);
  }

  13% {
    transform: rotate(26deg);
  }

  15% {
    transform: rotate(-24deg);
  }

  17% {
    transform: rotate(22deg);
  }

  19% {
    transform: rotate(-20deg);
  }

  21% {
    transform: rotate(18deg);
  }

  23% {
    transform: rotate(-16deg);
  }

  25% {
    transform: rotate(14deg);
  }

  27% {
    transform: rotate(-12deg);
  }

  29% {
    transform: rotate(10deg);
  }

  31% {
    transform: rotate(-8deg);
  }

  33% {
    transform: rotate(6deg);
  }

  35% {
    transform: rotate(-4deg);
  }

  37% {
    transform: rotate(2deg);
  }

  39% {
    transform: rotate(-1deg);
  }

  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

.product-tab .tabs-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .product-tab .tabs-wrapper {
    margin-bottom: 0;
  }
}

.product-tab .tab-select {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  border: 1px solid gainsboro;
}

.product-tab .tab-button {
  padding: 8px 20px;
  font-weight: 300;
  border-radius: 10px;
  border: 1px solid gainsboro;
}

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

.product-tab .tabs-content {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid gainsboro;
  background-color: white;
  border-radius: 20px;
  padding: 30px;
}

.product-tab .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-tab .tab-button.active {
  border: 1px solid var(--primary-500);
  background-color: var(--primary-500);
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-tab .tab-button.not-active:hover {
  background-color: #f0f0f0;
}

@media (min-width: 992px) {
  .tab-select {
    display: none;
  }
}

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

  .tab-select {
    display: block;
    margin-bottom: 30px;
  }
}

.tab-content {
  opacity: 0;
  display: none;
  pointer-events: none;
  animation-fill-mode: forwards;
}

.tab-content.active {
  display: block;
  pointer-events: auto;
  animation: fadeIn 0.4s ease forwards;
}

.tab-content.fadeOut {
  animation: fadeOut 0.4s ease forwards;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
  overflow-y: auto;
  overflow-y: scroll;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
  }
}

.sidebar-title {
  font-size: 27px;
  font-weight: 600;
}

.sidebar table {
  width: 100%;
  border-collapse: collapse;
}

.sidebar table,
th,
td {
  border: 1px solid #ccc;
  /* gri border */
  font-size: 14px;
}

.sidebar th,
td {
  padding: 8px 12px;
  text-align: left;
}

.sidebar thead {
  background-color: #f9f9f9;
  /* açık gri başlık arka planı */
}

.sidebar.open {
  transform: translateX(0);
}

/* Overlay stil */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 11 !important;
  display: none;
}

.overlay.active {
  display: block;
}

/* Başlık ve kapatma */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.close-btn i {
  font-size: 24px;
  cursor: pointer;
}

.sidebar-content {
  padding: 16px 5px;
}

.detail-desc {
  padding: 0;
}

.payment-trigger {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.payment-section .title {
  font-size: 32px;
  margin-bottom: 15px;
}

.payment-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-info img {
  width: 125px;
  margin-bottom: 10px;
  object-fit: contain;
}

.payment-box {
  margin-bottom: 30px;
  position: relative;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.payment-box img {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top;
}

.payment-box-info {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.payment-box-info .number {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
}
/* PRODUCT DETAIL END */

/* CATEGORY PAGE START */

.category-page {
  padding: 60px 0 150px 0;
}

@media (min-width: 992px) {
  .form-select {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .form-select {
    display: block;
    margin-bottom: 30px;
  }

  .category-wrapper {
    display: none;
  }
}

.bottom-category {
  padding: 60px 0 150px 0;
}

@media (max-width: 992px) {
  .category-page {
    padding: 60px 0;
  }

  .bottom-category {
    padding: 60px 0;
  }
}

.category-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
  padding: 20px;
}

@media (max-width: 992px) {
  .category-box {
    margin-bottom: 30px;
  }
}

.category-box .category-box-title {
  font-size: 18px;
  color: black;
  text-align: center;
}

/* CATEGORY PAGE END */

/* BLOG START */

.blog {
  padding: 60px 0;
}

@media (max-width: 992px) {
  .blog {
    padding: 60px 0;
  }
}

.blog-list {
  padding: 60px 0 250px 0;
}

@media (max-width: 992px) {
  .blog-list {
    padding: 60px 0;
  }
}

.blog .container {
  position: relative;
}

.blog .section-title {
  font-size: 32px;
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-900);
  text-align: center;
}

.blog .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 5%;
  height: 4px;
  background-color: var(--primary-900);
}

.blog-box {
  display: block;
  color: black;
  overflow: hidden;
}

.blog-box:hover {
  color: black;
}

.blog-box img {
  border-radius: 10px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
}

.blog-box:hover img {
  transform: scale(1.1);
}

.blog-box-bottom {
  transition: all 0.3s ease;
  background-color: white;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  margin: 0 10px;
}

.blog-box:hover .blog-box-bottom {
  transform: translateY(-50px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .blog-box-bottom {
    transform: translateY(-50px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}

.blog-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-desc {
  font-size: 15px;
  font-weight: 300;
}

.blog .swiper-button-next,
.blog .swiper-button-prev {
  background-color: var(--gray-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog .swiper-button-next i,
.blog .swiper-button-prev i {
  font-size: 16px;
  color: var(--primary-900);
}

.blog .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -50px);
}

.blog .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -50px);
}

/* BLOG END */

/* BLOG DETAIL START */

.blog-detail {
  padding: 60px 0 250px 0;
}

@media (max-width: 992px) {
  .blog-detail {
    padding: 60px 0;
  }
}

/* BLOG DETAIL END */

/* MODAL START */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* MODAL KUTUSU */
.modal-content {
  background: white;
  padding: 0 !important;
  border-radius: 8px;
  transform: translateY(-100px);
  opacity: 0;
  animation: none;
  max-width: 400px;
  width: 90%;
  height: 60%;
  overflow-y: auto;
  border-radius: 10px;
  position: relative;
}

.modal-title {
  color: var(--primary-500);
  font-size: 27px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 2;
  width: 45px;
  height: 45px;
  background: var(--primary-500);
  color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal i {
  font-size: 24px;
}

/* Modal gösterildiğinde içerik animasyonu başlar */
.modal.show .modal-content {
  animation: slideIn 0.4s ease forwards;
}

/* Modal gizlenirken içerik kayarak kapanır */
.modal.hide .modal-content {
  animation: slideOut 0.3s ease forwards;
}

/* Yukarıdan kayarak giriş */
@keyframes slideIn {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Yukarı doğru kayarak çıkış */
@keyframes slideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 992px) {
  .modal-content {
    height: 60%;
  }
}

.modal-body {
  padding: 20px !important;
}

/* MODAL END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 10;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-900);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  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;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}
.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* ANIMATION CSS START */

/* Başlangıç durumu */
.animate-section-slide-in {
  opacity: 0;
  transform: translateY(60px);
}

/* Aktif animasyon */
.animate-section-slide-in-active {
  animation: sectionSlideUpFade 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Keyframes */
@keyframes sectionSlideUpFade {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ANIMATION CSS END */



/* SOCIAL LINKS START */

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
}

.social-links a i {
  font-size: 20px;
}


.social-links a:hover {
  color: #fff;
}

.header-wrapper .social-links a{
  background: var(--primary-900);
}


/* SOCIAL LINKS END */