/* =============================
   --- MENÜ, HEADER ve DİL CSS ---
   ============================= */

/* =============================
         --- MENÜ CSS BAŞLANGIÇ ---
         Bu blok, sticky ve mega menüye ait tüm stilleri içerir.
         Başka bir projeye entegre etmek için sadece bu bloğu taşıyabilirsiniz.
         ============================= */
:root {
  --menu-max-width: 1200px;
  --menu-bg: rgb(255, 255, 255);
  --menu-bg-transparent: rgba(255, 255, 255, 0.0);
  --menu-bg-sticky: rgba(56, 56, 56, 0.7);
  --menu-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --tab-width: 200px;
  --tab-grid-max-width: 600px;
  --tab-grid-min-width: 180px;
  --tab-grid-gap: 20px;
  --tab-padding: 8px;
  --tab-hover-bg: #f7f7f7;
  --tab-hover-color: #ea4636;
  --tab-image-padding: 18px 12px 12px 12px;
  --tab-image-radius: 12px;
  --tab-image-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --tab-image-hover-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
  --badge-popular-bg: #ffb200;
  --badge-new-bg: #0099ff;
  --badge-color: #fff;
  --badge-radius: 8px;
  --badge-font-size: 12px;
  --badge-font-weight: 600;
  --tab-title-size: 16px;
  --tab-title-color: #222;
  --tab-desc-size: 13px;
  --tab-desc-color: #666;
  --menu-border-radius: 16px;
  --menu-align: center;
  /*
          flex-start: Menü öğelerini sola hizalar (varsayılan)
          center: Menü öğelerini ortalar
          flex-end: Menü öğelerini sağa hizalar
          space-between: Menü öğelerini eşit aralıklarla dağıtır
          space-around: Menü öğelerini eşit aralıklarla dağıtır ve kenarlarda boşluk bırakır
          */

  /* Menü Link Renkleri */
  --menu-link-color: #fff;
  /* Normal durumda menü link rengi */
  --menu-link-hover-color: #ea4636;
  /* Hover durumunda menü link rengi */
  --menu-link-sticky-color: #ffffff;
  /* Scroll durumunda menü link rengi */
  --menu-link-sticky-hover-color: #ea4636;
  /* Scroll durumunda hover rengi */
  --menu-link-mobile-color: #111;
  /* Mobil menüde link rengi */
  --menu-link-mobile-hover-color: #ea4636;
  /* Mobil menüde hover rengi */
  --menu-link-active-color: #ea4636;
  /* Aktif menü link rengi */
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--menu-bg-transparent) !important;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: none;
}

.header.sticky-bg {
  background: var(--menu-bg-sticky) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header .logo a {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  transition: color 0.3s;
}

.header .item-left {
  flex: 0 0 17%;
}

.header .item-center {
  flex: 0 0 66%;
}

.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}

.header .item-right a {
  font-size: 16px;
  color: #555;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}

.header .menu>ul>li>a {
  font-size: 15px;
  font-weight: 500;
  color: var(--menu-link-color);
  text-transform: capitalize;
  transition: color 0.3s;
}

.header .menu>ul>li>a:hover,
.header .menu>ul>li:hover>a {
  color: var(--menu-link-hover-color);
}

.header.sticky-bg .logo a {
  color: #111;
}

.header.sticky-bg .menu>ul>li>a {
  color: var(--menu-link-sticky-color);
}

.header.sticky-bg .menu>ul>li>a:hover,
.header.sticky-bg .menu>ul>li:hover>a {
  color: var(--menu-link-sticky-hover-color);
}

.header .container,
.header .row,
.header .item-center,
.header .item-left,
.header .item-right {
  background: transparent;
}

/* Mega Menu: New Menü (Desktop) */
.new-menu-content {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: var(--menu-bg);
  padding: 20px;
  min-width: 800px;
  display: flex;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: var(--menu-shadow);
  border-radius: var(--menu-border-radius);
}

.new-menu-content .tabs {
  width: var(--tab-width);
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-menu-content .tabs .tab {
  padding: var(--tab-padding);
}

.new-menu-content .tabs .tab>a {
  font-size: 16px;
  color: #000;
  display: block;
  padding: var(--tab-padding);
  transition: background 0.3s, color 0.3s;
}

.new-menu-content .tabs .tab:hover>a {
  background: var(--tab-hover-bg);
  color: var(--tab-hover-color);
}

.new-menu-content .tab-images {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(var(--tab-grid-min-width), 1fr));
  gap: var(--tab-grid-gap);
  padding: 10px 0;
  width: 100%;
  max-width: var(--tab-grid-max-width);
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .new-menu-content .tab-images {
    grid-template-columns: repeat(auto-fit, minmax(var(--tab-grid-min-width), 1fr));
  }
}

@media (max-width: 700px) {
  .new-menu-content .tab-images {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {

  .new-menu-content .tabs .tab:hover .tab-images,
  .new-menu-content .tabs .tab .tab-images.active {
    display: grid !important;
    position: absolute !important;
    top: 0;
    left: 220px;
    background: #fff;
    padding: 10px;
    z-index: 99;
    max-width: 600px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

.tab-image {
  background: var(--menu-bg);
  border-radius: var(--tab-image-radius);
  box-shadow: var(--tab-image-shadow);
  padding: var(--tab-image-padding);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 220px;
  position: relative;
  transition: box-shadow 0.2s;
}

.tab-image:hover {
  box-shadow: var(--tab-image-hover-shadow);
}

.tab-image .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--badge-popular-bg);
  color: var(--badge-color);
  font-size: var(--badge-font-size);
  font-weight: var(--badge-font-weight);
  padding: 2px 10px;
  border-radius: var(--badge-radius);
  letter-spacing: 0.5px;
}

.tab-image .badge.new {
  background: var(--badge-new-bg);
}

.tab-image img {
  width: 80px;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin-bottom: 12px;
  margin-top: 18px;
}

.tab-image .title {
  font-size: var(--tab-title-size);
  font-weight: 600;
  color: var(--tab-title-color);
  margin-bottom: 4px;
}

.tab-image .desc {
  font-size: var(--tab-desc-size);
  color: var(--tab-desc-color);
  margin-bottom: 0;
}

/* Sub Menu Stilleri */
.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  border-radius: var(--menu-border-radius);
}

.header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

.header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--menu-border-radius);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
  border-radius: var(--menu-border-radius);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
  font-size: 16px;
  color: #ea4636;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}

/* Hover Efektleri */
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
  color: #ea4636;
}

/* Mobil Düzenleme */
@media (max-width: 991px) {
  .header {
    position: fixed;
    background: var(--menu-bg) !important;
    box-shadow: none;
  }

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 0 0 auto;
  }

  .header .item-left {
    padding-left: 20px;
  }

  .header .logo a {
    color: #111 !important;
  }

  .v-center {
    justify-content: space-between;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--menu-link-mobile-color) !important;
  }

  .header .menu>ul>li>a:hover,
  .header .menu>ul>li:hover>a {
    color: var(--menu-link-mobile-hover-color) !important;
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
  }

  .new-menu-content {
    position: relative;
    left: 0;
    transform: none;
    min-width: auto;
    width: 100%;
    padding: 15px;
    display: block;
  }

  .new-menu-content .tabs {
    width: 100%;
  }

  .new-menu-content .tabs .tab {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
  }

  .new-menu-content .tabs .tab>a {
    padding: 8px 15px;
  }

  .new-menu-content .tabs .tab .tab-images {
    display: none !important;
  }

  .new-menu-content .tabs .tab.open .tab-images {
    display: block !important;
  }

  .tab-image {
    width: 100%;
    flex: none;
    margin-bottom: 10px;
  }

  .tab-image img {
    width: 100%;
    height: auto;
  }
}

/* =============================
           --- MENÜ CSS BİTİŞ ---
           ============================= */

/* Animasyonlar */
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

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

@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Overlay */
.menu-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1098;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Mobile Menu Trigger */
.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/* Menü hover ile açılınca arka plan beyaz */
@media (min-width: 992px) {

  .header .menu>ul>li.menu-item-has-children:hover>.sub-menu,
  .header .menu>ul>li.menu-item-has-children:focus-within>.sub-menu {
    background: #fff !important;
  }

  .header .menu>ul>li.menu-item-has-children:hover>.sub-menu.mega-menu.new-menu-content {
    background: #fff !important;
  }
}

/* Sağ üstteki dil seçici bayraklar */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-switch img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.lang-switch img.active,
.lang-switch img:hover {
  border: 1px solid #000;
}

/* =============================
   --- MENÜ CSS BİTİŞ ---
   ============================= */

/* =============================
   --- MOBİL MENÜ BAŞLANGIÇ ---
   Bu bölüm mobil menüye ait tüm stilleri içerir.
   ============================= */

/* Mobil Menü Genel Stiller */
@media (max-width: 991px) {

  /* Header ve Logo Ayarları */
  .header {
    position: fixed;
    background: var(--menu-bg) !important;
    box-shadow: none;
  }

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 0 0 auto;
  }

  .header .item-left {
    padding-left: 20px;
  }

  .header .logo a {
    color: #111 !important;
    font-size: 24px;
    font-weight: 600;
  }



  .v-center {
    justify-content: space-between;
  }

  /* Mobil Menü Tetikleyici */
  .header .mobile-menu-trigger {
    display: flex;
    height: 40px;
    width: 40px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
	background-color: #fff;
	margin-bottom: 10px;
    transition: background-color 0.3s;
  }

  .header .mobile-menu-trigger:hover {
    background-color: rgb(227 227 227);
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #000;
    width: 24px;
    position: relative;
    transition: all 0.3s;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 0.3s;
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .mobile-menu-trigger.active span {
    background-color: transparent;
  }

  .header .mobile-menu-trigger.active span:before {
    transform: rotate(45deg);
    top: 0;
  }

  .header .mobile-menu-trigger.active span:after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Mobil Menü Başlık */
  .header .menu .mobile-menu-head {
    display: flex;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .header .menu .mobile-menu-head .go-back {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    color: #000000;
    font-size: 18px;
    display: none;
    transition: background-color 0.3s;
  }

  .header .menu .mobile-menu-head .go-back:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
    color: #000000;
    font-size: 24px;
    transition: background-color 0.3s;
  }

  .header .menu .mobile-menu-head .mobile-menu-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  /* Mobil Menü İçerik */
  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1099;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  .header .menu.active {
    transform: translateX(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 56px;
    height: 56px;
    padding: 0 20px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--menu-link-mobile-color) !important;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s;
  }

  .header .menu>ul>li>a:hover,
  .header .menu>ul>li:hover>a {
    color: var(--menu-link-mobile-hover-color) !important;
    background-color: rgba(0, 0, 0, 0.02);
  }

  .header .menu>ul>li>a i {
    float: right;
    line-height: 56px;
    font-size: 14px;
    transition: transform 0.3s;
  }

  .header .menu>ul>li.active>a i {
    transform: rotate(180deg);
  }

  /* Mobil Alt Menüler */
  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 20px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
    background-color: #f8f9fa;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Mobil Mega Menü */
  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
    font-size: 18px;
    color: #111;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  /* Mobil Yeni Menü İçeriği */
  .new-menu-content {
    position: relative;
    left: 0;
    transform: none;
    min-width: auto;
    width: 100%;
    padding: 20px;
    display: block;
    background-color: #f8f9fa;
  }

  .new-menu-content .tabs {
    width: 100%;
  }

  .new-menu-content .tabs .tab {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
  }

  .new-menu-content .tabs .tab>a {
    padding: 16px 20px;
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    transition: all 0.3s;
  }

  .new-menu-content .tabs .tab>a:hover {
    color: #ea4636;
    background-color: rgba(0, 0, 0, 0.02);
  }

  .new-menu-content .tabs .tab .tab-images {
    display: none !important;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .new-menu-content .tabs .tab.open .tab-images {
    display: block !important;
    animation: fadeIn 0.3s ease;
  }

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

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .tab-image {
    width: 100%;
    flex: none;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .tab-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .tab-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .tab-image .title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 12px 0 4px;
  }

  .tab-image .desc {
    font-size: 14px;
    color: #666;
  }

  .tab-image .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
  }

  .tab-image .badge.popular {
    background-color: #ffb200;
  }

  .tab-image .badge.new {
    background-color: #0099ff;
  }
}

/* =============================
   --- MOBİL MENÜ BİTİŞ ---
   ============================= */

/* =============================
   --- MEDIA QUERIES BAŞLANGIÇ ---
   Bu bölüm tüm responsive tasarım stillerini içerir.
   Ekran boyutlarına göre gruplandırılmıştır:
   - Tablet ve Küçük Ekranlar (1200px ve altı)
   - Tablet ve Orta Ekranlar (992px ve üstü)
   - Küçük Mobil Ekranlar (700px ve altı)
   ============================= */

/* Tablet ve Küçük Ekranlar (1200px ve altı) */
@media (max-width: 1200px) {
  .new-menu-content .tab-images {
    grid-template-columns: repeat(auto-fit, minmax(var(--tab-grid-min-width), 1fr));
  }
}

/* Tablet ve Orta Ekranlar (992px ve üstü) */
@media (min-width: 992px) {
  .header .menu>ul {
    display: flex;
    justify-content: var(--menu-align);
    width: 100%;
  }

  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }

  .new-menu-content .tabs .tab:hover .tab-images,
  .new-menu-content .tabs .tab .tab-images.active {
    display: grid !important;
    position: absolute !important;
    top: 0;
    left: 220px;
    background: #fff;
    padding: 10px;
    z-index: 99;
    max-width: 600px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .header .menu>ul>li.menu-item-has-children:hover>.sub-menu,
  .header .menu>ul>li.menu-item-has-children:focus-within>.sub-menu {
    background: #fff !important;
  }

  .header .menu>ul>li.menu-item-has-children:hover>.sub-menu.mega-menu.new-menu-content {
    background: #fff !important;
  }
}

/* Küçük Mobil Ekranlar (700px ve altı) */
@media (max-width: 700px) {
  .new-menu-content .tab-images {
    grid-template-columns: 1fr;
  }
}

/* =============================
   --- MEDIA QUERIES BİTİŞ ---
   ============================= */

/* =============================
   --- MENÜ CSS BİTİŞ ---
   ============================= */