@font-face {
  font-family: "Galano";
  font-weight: 400;
  src: url(../fonts/Galano\ Grotesque.otf);
}
@font-face {
  font-family: "Galano";
  font-weight: 300;
  src: url(../fonts/Galano\ Grotesque\ Light.otf);
}
@font-face {
  font-family: "Galano";
  font-weight: 500;
  src: url(../fonts/Galano\ Grotesque\ Medium.otf);
}
@font-face {
  font-family: "Galano";
  font-weight: 700;
  src: url(../fonts/Galano\ Grotesque\ Bold.otf);
}
@font-face {
  font-family: "Galano";
  font-weight: 900;
  src: url(../fonts/Galano\ Grotesque\ Black.otf);
}

body {
  font-family: "Galano", sans-serif;
}

button {
  cursor: pointer;
}

.thumbs-mobile .swiper-slide img {
  scale: 0.4;
}

.thumbs-mobile .swiper-slide-prev img,
.thumbs-mobile .swiper-slide-next img {
  scale: 0.6;
}

.thumbs-mobile .swiper-slide-active img {
  scale: 1;
}

.thumbs .swiper-slide .thumb-desktop {
  scale: 0.6;
  opacity: 0.6;
}

.thumbs .swiper-slide-prev .thumb-desktop,
.thumbs .swiper-slide-next .thumb-desktop {
  scale: 0.8;
}

.thumbs .swiper-slide-active .thumb-desktop {
  scale: 1;
  opacity: 1;
}

.hero-bullet {
  display: inline-block !important;
  width: 60px !important;
  height: 60px !important;
  cursor: pointer;
  background: transparent !important;
}

.progress-outer {
  stroke: #0094bf;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 30px 30px;
  animation: none;
  stroke-dasharray: 175.929;
  stroke-dashoffset: 175.929;
}

@keyframes ring-progress {
  to {
    stroke-dashoffset: 0;
  }
}

.swiper-pagination {
  display: none !important;
}

.touch-indicator {
  animation: bouncePulse 0.7s infinite ease-in-out;
  transform-origin: center;
}

@keyframes bouncePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  60% {
    transform: scale(0.97);
    opacity: 1;
  }
}

.swipe-indicator {
  position: relative;
  animation: swipeHint 2s infinite ease-in-out;
}

@keyframes swipeHint {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(12px); /* sağa kay */
  }
  50% {
    transform: translateX(0); /* ortada */
  }
  75% {
    transform: translateX(-12px); /* sola kay */
  }
}

.drawer-panel {
  transform: translateY(100%);
  transition: transform 0.3s ease;
  will-change: transform;
  max-height: 80vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer-panel.is-open {
  transform: translateY(0);
}

/* iOS Safari: handle dokunuşunda scroll/pull-to-refresh engelle */
.js-drawer-handle {
  touch-action: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* Dropdown görünürlüğü için yardımcı sınıf */
.is-hidden {
  display: none;
}

.lang-option.is-active {
  background-color: #e5f4f8 !important;
}

.submenu-item > a[aria-expanded="true"] svg[data-icon] {
  transform: rotate(90deg); /* veya 180 */
}

.swiper-pagination-progressbar-fill {
  background-color: #002452 !important;
}

@media screen and (max-width: 1024px) {
  .categorySwiper .swiper-slide-active .category-card {
    background-color: #0094bf;
  }

  .categorySwiper .swiper-slide-active .category-desc {
    height: 2lh;
    margin-top: 8px;
  }

  .categorySwiper .swiper-slide-active .category-icon {
    rotate: 0deg;
    transition-delay: 300ms;
  }
}

.blog-content {
  font-size: clamp(0.95rem, 0.24vw + 0.9rem, 1.05rem);
  line-height: 26px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  line-height: 1.2;
  font-weight: 600;
}

.blog-content h1 {
  font-size: clamp(1.8rem, 2.2vw + 1.2rem, 3rem);
  margin-top: 1.4em;
  margin-bottom: 0.5em;
}

.blog-content h2 {
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2.25rem);
  margin-top: 1.2em;
  margin-bottom: 0.45em;
}

.blog-content h3 {
  font-size: clamp(1.25rem, 1.1vw + 0.9rem, 1.75rem);
  margin-top: 1.1em;
  margin-bottom: 0.4em;
}

.blog-content h4 {
  font-size: clamp(1.1rem, 0.7vw + 0.9rem, 1.35rem);
  margin-top: 1em;
  margin-bottom: 0.35em;
}

.blog-content h5 {
  font-size: clamp(1.02rem, 0.4vw + 0.9rem, 1.15rem);
  margin-top: 0.9em;
  margin-bottom: 0.3em;
}

.blog-content h6 {
  font-size: 1rem;
  margin-top: 0.85em;
  margin-bottom: 0.25em;
}

.blog-content p {
  margin: 0 0 0.2em;
}

.blog-content ul,
.blog-content ol {
  margin: 1em 0;
  padding-left: 1.25em;
  list-style-type: disc;
}

.blog-content li + li {
  margin-top: 0.35em;
}

.blog-content img,
.blog-content video,
.blog-content iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.blog-content th,
.blog-content td {
  padding: 0.5em;
  border: 1px solid currentColor;
}

@media screen and (max-width: 768px) {
  .blog-content {
    line-height: 24px;
  }
}
