* {
  padding: 0;
  margin: 0;
  font-family: "League Spartan", sans-serif;
  box-sizing: border-box; /* Border ve padding'i genişliğe dahil et */
}

a {
  text-decoration: none;
  color: inherit;
}


body {
  background: #FFF;
  margin: 0;
  scrollbar-width: none;
  transition: all 0.3s ease;
}

#categories,
body {
  scroll-margin-top: 15vh;
}



/* Navbar */
.navBar {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 4vh;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 2vw;
  transition: all 0.3s ease;
  background-color: #FFF; /* Arka plan rengi ekle */
}

.scrolled {
  background-color: #0A3155;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  margin: 1vh 2vw;
  max-height: 10vh;
}

.logo img {
  max-height: 100%;
  width: auto;
}

.menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  margin: 1vh 1vw;
  
}

.menu ul a {
  color: inherit; /* Scrolled olunca beyaz olacak */
  text-decoration: none;
}

.scrolled .menu ul a {
  color: white;
}

.menuButton {
  background: none;
  border: 1px solid #0A3155;
  padding: 2vh 2vw;
  color: #0A3155;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: "League Spartan", sans-serif;
  border-radius: 0.5vh;
  cursor: pointer;
}
.scrolled .menuButton {
  color: white;
  border-color: white;
}

.menuButton:hover {
  transform: scale(1.09);
}

/* Hamburger Menü */
.hamburger {
  cursor: pointer;
  background-color: #d0d0d0;
  border-radius: 10px;
  position: fixed;
  top: 20px;
  display: none;
  right: 5vw;
  z-index: 99999;
}

.hamburger input {
  display: none;
}

.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line {
  fill: none;
  stroke: #0A3155;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.scrolled .line {
  stroke: white;
}

.line-top-bottom {
  stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
  transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}

/* Toggle Menü */
.toggleMenu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 250px;
  height: 100%;
  background: #0A3155;
  transition: left 0.3s ease;
  margin-top: 0;
  border-radius: 0;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.3);
  padding-top: 15vh; /* Navbar yüksekliği kadar boşluk */
  z-index: 99999;
}

.toggleMenu.active {
  left: 0;
}

.menuItems {
  list-style: none;
  padding: 0;
  margin-top: 2vh;
}

.toggleMenuİtem {
  display: block;
  padding: 2vh 3vw;
  margin: 1vh 2vw;
  border-radius: 0.5vh;
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.toggleMenuİtem:last-child {
  border-bottom: none;
}

.toggleMenuİtem:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

/* Welcome Body */
.welcomeBody {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2vh 5vw;
}

.welcomeText {
  color: #0A3155;
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  text-align: left;
  margin-top: 10vh;
  margin-left: 0;
}

.hintText {
  font-size: 1.3rem;
  margin-top: 1vh;
}

.detailsProduct {
  display: inline-block;
  background-color: white;
  border: 1px solid #0A3155;
  color: #0A3155;
  padding: 1vh 2vh;
  border-radius: 0.5vh;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  margin-top: 3vh;
}

.detailsProduct:hover {
  transform: scale(1.05);
}

.gifSection {
  width: 90vw;
  max-height: 50vh;
  background-size: cover;
  background-position: center;
  background-image: url("../assets/videos/scooter.gif");
  border-radius: 1vh;
  margin: 5vh auto;
}

.gifSection video {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 1vh;
}

/* Card Menu */
.cardMenu {
  margin-bottom: 2vh;
  padding: 0 2vw;
}

.cardSection {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 3vh;
  margin-left: 0;
  margin-right: 0;
  background-color: #0A0F2C;
  color: #FFFFFF;
  padding: 1.5vh 2vw;
  border-radius: 1vh;
  transition: all 0.3s ease;
  overflow-x: auto;
}

.card {
  flex: 0 0 auto;
  transition: all 0.3s ease;
  padding: 2vh;
  border-radius: 2vh;
  font-family: "League Spartan", sans-serif;
  margin: 2vh 1vw;
  position: relative;
  min-width: 300px;
}

.card:hover {
  transform: scale(1.07);
}

.cardContent {
  opacity: 0;
  transition: all 0.3s ease;
  padding: 2vh;
}
.detailsButton {
  opacity: 0;
  transition: all 0.3s ease;
  padding: 1.5vh 3vh;
  border-radius: 2vh;
  font-family: "League Spartan", sans-serif;
  background-color: #FF6F61;
  border: 1px solid #FF6F61;
  color: #FFFFFF;
  margin-top: 2vh;
  cursor: pointer;
}

.card:hover .detailsButton {
  opacity: 1;
}

.card:hover .cardContent {
  opacity: 1;
}

.cardMenu a {
  text-decoration: none;
  color: #FFFFFF;
}

.detailsButton:hover {
  color: #FF6F61;
  background-color: #0A0F2C;
  border: 1px solid #FF6F61;
}

/* Horizon Slider */
.horizonSlider {
  width: 100%;
  overflow: hidden;
  padding: 2vh 2vw;
  margin-bottom: 4vh;
  color: #0A3155;
}

.sliderContent {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1vh;
  color: #0A3155;
  padding-left: 1vw;
}

.sliderContent p {
  color: #0A3155;
}

.sliderTrack {
  display: flex;
  gap: 1vw;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2vh 2vw;
}

.sliderTrack::-webkit-scrollbar {
  height: 4px;
}

.sliderTrack::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.slideContainer {
  flex: 0 0 auto;
  background: #0A0F2C;
  color: #ffffff;
  border-radius: 1.5vh;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
  font-family: "League Spartan", sans-serif;
  margin: 0 0.5vw;
  height: 20vh;
  width: clamp(25vh, 30vh, 40vh);
  background-size: cover;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}


.sliderContent {
  color: #FFFFFF;
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  margin-left: 1vw;
  margin-top: auto;
  margin-bottom: 1vh;
  width: 100%;
  text-align: center;
}

.imageWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  opacity: 0.6;
  border-radius: 1.5vh;
}

.imageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5vh;
  transition: all 0.3s ease;
}

.sliderText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  opacity: 1;
  transition: all 0.3s ease;
  font-family: "League Spartan", sans-serif;
}

.slideContainer:hover .imageWrapper {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0px 0px 1px 1px #FF6F61;
}

.slideContainer:hover .sliderText {
  opacity: 0;
}

/* Comment Section */
.commentSection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20vw;
  padding: 2vh 5vw;
  margin-bottom: 5vh;
}

.commentText {
  color: #0A3155;
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
  margin-left: 0;
  margin-top: 2vh;
  margin-bottom: 2vh;
  width: 100%;
}

.maps {
  border-radius: 1.5vh;
  margin-left: 10vw;
  margin-top: 2vh;
  width: 100%;
  max-height: 40vh;
}



.aboutText {
  width: 100%;
  height: auto;
  font-size: 1.1rem;
  margin-top: 2vh;
}

.commentSender {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border: none;
  background: none;
  font-weight: 600;
  font-family: "League Spartan", sans-serif;
  cursor: pointer;
}

.commentSender::before {
  margin-left: auto;
}

.commentSender::after,
.commentSender::before {
  content: '';
  width: 0%;
  height: 1px;
  background: #f44336;
  display: block;
  transition: 0.5s;
}

.commentSender:hover::after,
.commentSender:hover::before {
  width: 100%;
}

/* Container (Form Alanı) */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2vh;
  margin-left: 0; /* Ortala */
}

.form_area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  margin-left: 10vw;
  width: 25vw; /* Genişliği ayarla */
  border-radius: 20px;
  padding: 2vh;
  background-color: #f9f9f9; /* Arka plan rengi */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
  color: #0A3155;
  font-weight: 900;
  font-size: 1.3rem;
  margin-top: 2vh;
  font-family: "League Spartan", sans-serif;
}

.sub_title {
  font-weight: 600;
  margin: 1vh 0;
  color: #0A3155;
  font-family: "League Spartan", sanssans-serif;
}

.form_group {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin: 1.5vh 0;
  width: 100%;
}

.form_style {
  outline: none;
  border: 2px solid #264143;
  box-shadow: 3px 4px 0px 1px #FFF;
  width: 100%;
  padding: 1.2vh 1vw;
  border-radius: 1vh;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "League Spartan", sans-serif;
}

.form_style:focus,
.btn:focus {
  transform: translateY(4px);
  box-shadow: 1px 2px 0px 0px #264143;
}

.btn {
  padding: 1.5vh;
  cursor: pointer;
  margin: 2.5vh 0;
  width: 100%;
  font-size: 1rem;
  background: #FFF;
  border: none;
  border-radius: 1vh;
  font-weight: 800;
  box-shadow: 3px 3px 0px 0px #264143;
}

.btn:hover {
  opacity: .9;
}

.link {
  font-weight: 800;
  color: #264143;
  padding: 0.5vh;
}

/* Card Container (Slider Card) */
.card-container {
  display: flex;
  overflow-x: auto;
  gap: 2vw;
  padding: 2vh 2vw;
  scroll-behavior: smooth;
}

.card-container::-webkit-scrollbar {
  height: 4px;
}

.card-container::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 1vh;
}

.sliderCard {
  min-width: 180px;
  height: 250px;
  background: none;
  border-radius: 1vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.2s ease-in-out;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.sliderCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1vh;
  transition: 0.2s ease-in-out;
}

.img {
  height: 30%;
  position: absolute;
  transition: 0.2s ease-in-out;
}

.textBox {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  font-size: 1rem;
  gap: 1vh;
  transition: 0.2s ease-in-out;
  font-family: "League Spartan", sans-serif;
  padding: 1vh;
}

.textBox>.text {
  font-weight: bold;
}

.textBox>.head {
  font-size: 1.2rem;
}

.textBox>.price {
  font-size: 1rem;
}

.textBox>span {
  font-size: 0.8rem;
  color: lightgrey;
}

.sliderCard:hover>.textBox {
  opacity: 1;
}

.sliderCard:hover>.img {
  filter: blur(7px);
  animation: anim 3s infinite;
}

.sliderCard:hover>img {
  animation: anim2 3s infinite;
}

@keyframes anim {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes anim2 {
  0% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.sliderCard:hover {
  transform: scale(1.04) rotate(-1deg);
}


/* Gezinme Düğmeleri (Slider Track) */
.sliderTrack {
  position: relative;
  width: 100%;
}

.prevBtn{
      position: absolute;
        top: 55%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 1.5rem;
        padding: 0.8vh;
        cursor: pointer;
        border-radius: 50%;
        transition: background 0.3s;
}
.nextBtn {
  position: absolute;
  top: 165%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.8vh;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.prevBtn:hover,
.nextBtn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.prevBtn {
  left: 1vw;
  width: 5vh;
  height: 5vh;
}

.nextBtn {
  right: 1vw;
  width: 5vh;
  height: 5vh;
}


/* To Top Button */
.toTop {
  position: fixed;
  right: 2vw;
  bottom: 2vh;
  background: none;
  color: #0A3155;
  padding: 1vh 2vw;
  border-radius: 0.5vh;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "League Spartan", sans-serif;
  opacity: 0.7;
  border: 1px solid #0A3155;
  box-shadow: 0px 0px 1px 1px #FFF;
}


.toTop:hover {
  transform: scale(1.05);
  opacity: 1;
}

.toTop button {
  background: none;
}

.toTop a {
  text-decoration: none;
  color: inherit;
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2vh 5vw;
  margin-top: 5vh;
  margin-bottom: 5vh;
  background-color: #0A0F2C;
  color: #FFFFFF;
  border-radius: 0.5vh;
  margin: 2vh 2vw;
}

.footer > div {
  margin-bottom: 2vh;
  width: 100%;
}

/* Regen Card (Footer Logo) */
.regencard {
  width: 200px;
  height: 130px;
  background: none;
  position: relative;
  display: grid;
  place-content: center;
  border-radius: 0.5vh;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 0px 1px 1px #fff;
}

#logo-main,
#logo-second {
  height: 100%;
}

#logo-main {
  fill: #bd9f67;
}

#logo-second {
  padding-bottom: 10px;
  fill: none;
  stroke: #fff;
  stroke-width: 1px;
}

.border {
  position: absolute;
  inset: 0px;
  border-radius: 1.5vh;
  border: 2px solid #bd9f67;
  opacity: 0;
  transform: rotate(10deg);
  transition: all 0.5s ease-in-out;
}

.bottom-text {
  position: absolute;
  left: 50%;
  bottom: 1vh;
  transform: translateX(-50%);
  font-size: 0.6rem;
  text-transform: uppercase;
  padding: 0px 0.5vw 0px 0.8vw;
  color: #bd9f67;
  background: none;
  opacity: 0;
  letter-spacing: 0.7vw;
  transition: all 0.5s ease-in-out;
}

.content {
  transition: all 0.5s ease-in-out;
}

.content .logo {
  height: 3.5vh;
  position: relative;
  width: 3.3vh;
  overflow: hidden;
  transition: all 1s ease-in-out;
}

.content .logo .logo1 {
  height: 100%;
  position: absolute;
  left: 0;
}

.content .logo .logo2 {
  height: 100%;
  position: absolute;
  left: 100%;
}

.content .logo .trail {
  position: absolute;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border-radius: 1.5vh;
}

.content .logo-bottom-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 3vh;
  color: #fff;
  padding-left: 0.8vw;
  font-size: 0.8rem;
  opacity: 0;
  letter-spacing: none;
  transition: all 0.5s ease-in-out 0.5s;
}

.regencard:hover {
  border-radius: 1.5vh;
  transform: scale(1.1);
}

.regencard:hover .logo {
  width: 13.4vh;
  animation: opacity 1s ease-in-out;
}

.regencard:hover .border {
  inset: 1.5vh;
  opacity: 1;
  transform: rotate(0);
}

.regencard:hover .bottom-text {
  letter-spacing: 0.3vw;
  opacity: 1;
  transform: translateX(-50%);
}

.regencard:hover .content .logo-bottom-text {
  opacity: 1;
  letter-spacing: 0.95vw;
}

.regencard:hover .trail {
  animation: trail 1s ease-in-out;
}

@keyframes opacity {
  0% {
    border-right: 1px solid transparent;
  }

  10% {
    border-right: 1px solid #bd9f67;
  }

  80% {
    border-right: 1px solid #bd9f67;
  }

  100% {
    border-right: 1px solid transparent;
  }
}

@keyframes trail {
  0% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 90%, rgb(189, 159, 103) 100%);
    opacity: 0;
  }

  30% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 70%, rgb(189, 159, 103) 100%);
    opacity: 1;
  }

  70% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 70%, rgb(189, 159, 103) 100%);
    opacity: 1;
  }

  95% {
    background: linear-gradient(90deg, rgba(189, 159, 103, 0) 90%, rgb(189, 159, 103) 100%);
    opacity: 0;
  }
}

.addsbyregen {
  border-radius: 1.5vh;
  margin: 2vh 5vw;
  width: 90vw;
}

/* Products Section */
.productsParent {
  display: flex;
  flex-wrap: wrap; /* Taşan öğeleri alt satıra al */
  justify-content: center; /* Merkezi hizala */
  padding: 2vh 2vw;
}

.productsChild {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.productsCard {
  cursor: pointer;
  position: relative;
  margin: 2vh 2vw;
  width: 250px;
  height: 180px;
  background-color: #f2f2f2;
  border-radius: 1vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px #ffffff80;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.productsCard svg {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.productsCard:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.card__content {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2vh;
  box-sizing: border-box;
  background-color: #f2f2f2;
  transform: rotateX(-90deg);
  transform-origin: bottom;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.productsCard:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
  font-weight: 700;
}

.productsCard:hover svg {
  scale: 0;
}

.card__description {
  margin: 1vh 0 0;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.4;
}

/* Socket (Loading Animation) */
.socket {
  width: 150px;
  height: 150px;
  position: relative;
  left: 50%;
  margin-left: -75px;
  top: 50%;
  margin-top: -75px;
}

.hex-brick {
  background: #FFFFFF;
  width: 20px;
  height: 12px;
  position:absolute;
  top: 5px;
  animation-name: fade00;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  -webkit-animation-name: fade00;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
}

.h2 {
  transform: rotate(60deg);-webkit-transform:rotate(60deg);
}

.h3 {
  transform: rotate(-60deg);
  -webkit-transform: rotate(-60deg);
}

/* Catalog Card */
.catalogHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5vh 2vw;
  background-color: #0A0F2C;
  color: #FFFFFF;
  border-radius: 0.5vh;
  transition: all 0.3s ease;
  position: sticky;
  top: 0.5vh;
  margin: 2vh 2vw 0;
}

.catalogChilds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2vh 2vw;
}

.catalogcard {
  height: auto;
  width: clamp(250px, 45vw, 500px);
  position: relative;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 0.8vh;
  box-shadow: 0 0 10px 4px #d0d0d0;
  overflow: hidden;
  background-position: center;
  background-color: none;
  background-size: cover;
  margin: 1vh;
}

.catalogcard-image {
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 1vh;
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.catalogcard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-position: center;
}

.catalogcard-description {
  display: flex;
  position: absolute;
  gap: 0.3em;
  flex-direction: column;
  background-color: #f5f5f5;
  color: #212121;
  height: 70%;
  width: 100%;
  bottom: 0;
  border-radius: 0.8vh;
  transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 1rem;
}

.text-title {
  font-size: 1rem;
  font-weight: 700;
}

.text-body {
  font-size: 0.9rem;
  line-height: 130%;
}

.catalogcard:hover .catalogcard-description {
  transform: translateY(100%);
}

/* Medya Sorguları (Önemli: En altta olmalı) */
@media (max-width: 767px) {
  .aboutUs{
    align-items: center;
  }
  .form_area{
    width: 70vw;
    align-items: center;
  }
  .menu {
    display: none;
  }

  .hamburger {
    display: block;
    right: 2vw;
  }

  .welcomeBody {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2vh 3vw;
  }

  .welcomeText {
    font-size: 1.8rem;
    margin-top: 5vh;
  }

  .hintText {
    font-size: 1.1rem;
  }

  .gifSection {
    width: 100%;
    max-height: none;
    margin: 3vh auto;
  }

  .cardSection {
    overflow-x: auto;
    flex-direction: row;
  }

  .card {
    min-width: 80vw;
    margin: 2vh 2vw;
  }

  .commentSection {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90vw;
    padding: 2vh 3vw;
  }

  .maps {
    position: relative; /* Bu çok önemli! İçindeki absolute öğeleri doğru konumlandırır. */
    width: 100%; /* Genişliği %100 yap, auto yerine. */
    height: 0; /* Yüksekliği 0 yap, padding-bottom ile kontrol ediyoruz. */
    padding-bottom: 56.25%; /* Haritanın en boy oranı (genellikle 16:9 için 56.25% kullanılır). */
    overflow: hidden;
    max-width: 100%; /* Sadece emin olmak için, genelde gerekli olmaz ama zarar vermez. */
    /* background: #eee; /* İsteğe bağlı: Harita yüklenene kadar gri bir arka plan */
  }

  .maps iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; /* Eğer iframe'de border olmasını istemiyorsan ekleyebilirsin */
  }

  .aboutText {
    width: 100%;
    text-align: left;
  }

  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .addsbyregen {
    display: block;
    width: 100%;
    margin: 2vh auto;
  }

  .catalogChilds {
    justify-content: center;
  }

  .catalogcard {
    width: 90vw;
  }

  .horizonSlider .sliderContent {
    font-size: 1.3rem;
    text-align: center;
  }

  .horizonSlider .sliderTrack {
    padding: 2vh 1vw;
  }

  .horizonSlider .slideContainer {
    min-width: 70vw;
    height: auto;
  }

  .horizonSlider .sliderText {
    font-size: 1.1rem;
  }

  .productsParent {
    padding: 2vh 1vw;
  }

  .productsCard {
    width: 80vw;
    height: auto;
    margin: 2vh auto;
  }

  .sliderCard {
    min-width: 80vw;
    height: 20vh;
    margin: 1vh auto;
  }

  .sliderCard .textBox {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .menu {
    display: block;
  }

  .welcomeBody {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5vh 8vw;
  }

  .welcomeText {
    font-size: 2.2rem;
    margin-top: 0;
  }

  .gifSection {
    width: 50vw;
    height: 40vh;
    margin: 0;
  }

  .cardSection {
    overflow-x: auto;
    flex-direction: row;
  }

  .card {
    min-width: 300px;
    margin: 2vh 1vw;
  }

  .commentSection {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .maps {
    width: 40vw;
    height: auto;
    margin-left: 2vw;
  }

  .aboutText {
    width: 40vw;
    text-align: left;
  }

  .container {
    margin-left: 0;
  }

  .addsbyregen {
    display: block;
  }

  .catalogChilds {
    justify-content: flex-start;
  }

  .catalogcard {
    width: clamp(300px, 30vw, 400px);
  }
}

@media (min-width: 1200px) {
  .welcomeText {
    font-size: 2.5rem;
  }

  .hintText {
    font-size: 1.6rem;
  }

  .detailsProduct {
    padding: 1.5vh 2.5vh;
    font-size: 1.1rem;
  }

  .gifSection {
    height: 50vh;
  }
}