/* EXXE HEADER COMPONENT - TAMAMEN BAĞIMSIZ CSS */

/* Ana header stilleri */
.exxe-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15vw;
  gap: 32px;
  height: 96px;
  transition: 0.2s;
  background-color: transparent;
}

.exxe-header-logo img {
  max-width: 251px;
  height: 93px;
  object-fit: contain;
}

.exxe-header-logo .exxe-logo1 {
  display: block;
}

.exxe-header-logo .exxe-logo2 {
  display: none;
}

.exxe-header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.exxe-header-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 30px;
}

.exxe-header-menu li a {
  font-size: 16px;
  transition: 0.2s;
  text-decoration: none;
  color: inherit;
}

.exxe-header-menu li a.exxe-menu-sub {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exxe-header-menu li a.exxe-menu-sub:after {
  content: '';
  transition: 0.2s;
  width: 8px;
  height: 5px;
  background-image: url('../images/icon-arrow-down.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.exxe-header-menu li a:hover {
  opacity: 0.7;
}

/* Submenu stilleri */
.exxe-submenu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.2s;
  position: absolute;
  top: 100%;
  left: 15vw;
  right: 15vw;
  background-color: #000;
  color: #fff;
  padding: 64px;
  display: flex;
  gap: 50px;
}

.exxe-submenu-left {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  white-space: nowrap;
  align-items: start;
}

.exxe-submenu-title {
  margin-bottom: 12px;
  font-size: 16px;
}

.exxe-submenu-item ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.exxe-submenu-item ol li a {
  font-size: 16px;
  opacity: 0.5;
  transition: 0.2s;
  text-decoration: none;
  color: inherit;
}

.exxe-submenu-item ol li a:hover {
  opacity: 0.8;
}

.exxe-submenu-img {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.exxe-submenu-img img {
  border-radius: 8px;
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.exxe-header-menu li:hover a.exxe-menu-sub {
  opacity: 0.7;
}

.exxe-header-menu li:hover a.exxe-menu-sub:after {
  rotate: 180deg;
}

.exxe-header-menu li:hover .exxe-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Header buton */
.exxe-header-btn a {
  background-color: #000;
  color: #fff;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.exxe-header-btn a:hover {
  background-color: #333;
}

/* Mobile menu bar */
.exxe-mobile-menu-bar {
  display: none;
  width: 25px;
  cursor: pointer;
}

.exxe-mobile-menu-bar i {
  display: block;
  background-color: #000;
  width: 100%;
  height: 2px;
  margin-bottom: 8px;
}

.exxe-mobile-menu-bar i:last-of-type {
  margin-bottom: 0;
}

/* Home page özel stilleri */
.exxe-header.home .exxe-logo1 {
  display: none;
}

.exxe-header.home .exxe-logo2 {
  display: block;
}

.exxe-header.home .exxe-header-menu li a {
  color: #fff;
}

.exxe-header.home .exxe-header-menu li a.exxe-menu-sub:after {
  filter: brightness(0) invert(1);
}

.exxe-header.home .exxe-header-btn a {
  background-color: #fff;
  color: #000;
}

.exxe-header.home .exxe-header-btn a:hover {
  background-color: #000;
  color: #fff;
}

.exxe-header.home .exxe-mobile-menu-bar i {
  background-color: #fff;
}

/* Scroll durumu */
.exxe-header.scroll {
  background-color: #faf8f3;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.exxe-header.scroll.home .exxe-logo1 {
  display: block;
}

.exxe-header.scroll.home .exxe-logo2 {
  display: none;
}

.exxe-header.scroll.home .exxe-header-menu li a {
  color: #000;
}

.exxe-header.scroll.home .exxe-header-menu li a.exxe-menu-sub:after {
  filter: none;
}

.exxe-header.scroll.home .exxe-submenu a {
  color: #fff;
}

.exxe-header.scroll.home .exxe-header-btn a {
  background-color: #000;
  color: #fff;
}

.exxe-header.scroll.home .exxe-header-btn a:hover {
  background-color: #333;
}

.exxe-header.scroll.home .exxe-mobile-menu-bar i {
  background-color: #000;
}

/* MOBİL RESPONSIVE - 768px ve altı */
@media (max-width: 768px) {
  .exxe-header {
    padding: 0 20px;
    height: 75px;
    justify-content: flex-start;
  }
  
  .exxe-header-logo {
    order: 1;
    margin-right: 0;
    flex-shrink: 0;
  }
  
  .exxe-header-logo img {
    height: 30px;
  }
  
  .exxe-header-right {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }
  
  .exxe-header-menu {
    display: none;
  }
  
  .exxe-header-btn {
    display: none;
  }
  
  .exxe-mobile-menu-bar {
    display: block;
  }
  
  .exxe-submenu {
    display: none;
  }
}

/* MOBİL MENÜ - YENİ TASARIM */
.exxe-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color1);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.exxe-mobile-menu.active {
  transform: translateY(0);
}

/* MOBİL MENÜ HEADER */
.exxe-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exxe-mobile-menu-logo img {
  height: 30px;
  filter: brightness(0) invert(1);
}

.exxe-mobile-menu-close {
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.exxe-mobile-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}

.exxe-mobile-menu-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.exxe-mobile-menu-close:hover span {
  background: #ff6b6b;
}

/* MOBİL MENÜ İÇERİK */
.exxe-mobile-menu-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* ANA MENÜ */
.exxe-mobile-main-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exxe-mobile-main-menu.active {
  transform: translateX(0);
  opacity: 1;
}

.exxe-mobile-main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exxe-mobile-main-menu ul li {
  margin-bottom: 10px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exxe-mobile-main-menu.active ul li {
  transform: translateY(0);
  opacity: 1;
}

.exxe-mobile-main-menu.active ul li:nth-child(1) { transition-delay: 0.1s; }
.exxe-mobile-main-menu.active ul li:nth-child(2) { transition-delay: 0.15s; }
.exxe-mobile-main-menu.active ul li:nth-child(3) { transition-delay: 0.2s; }
.exxe-mobile-main-menu.active ul li:nth-child(4) { transition-delay: 0.25s; }
.exxe-mobile-main-menu.active ul li:nth-child(5) { transition-delay: 0.3s; }
.exxe-mobile-main-menu.active ul li:nth-child(6) { transition-delay: 0.35s; }

.exxe-mobile-main-menu ul li a {
  display: block;
  padding: 20px 0;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  transition: all 0.3s;
  position: relative;
}

.exxe-mobile-main-menu ul li a:hover {
  color: #ff6b6b;
  transform: scale(1.05);
}

.exxe-mobile-main-menu ul li a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ff6b6b;
  transition: width 0.3s;
}

.exxe-mobile-main-menu ul li a:hover:before {
  width: 40px;
}

/* MOBİL LEGAL FOOTER */
.exxe-mobile-legal-footer {
  padding: 30px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}

.exxe-mobile-main-menu.active .exxe-mobile-legal-footer {
  transform: translateY(0);
  opacity: 1;
}

.exxe-mobile-legal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  align-items: center;
}

.exxe-mobile-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.exxe-mobile-legal-links a:hover {
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-2px);
}

.exxe-mobile-contact-info {
  text-align: center;
  margin-top: 15px;
}

.exxe-mobile-contact-info p {
  margin: 5px 0;
  font-size: 13px;
}

.exxe-mobile-contact-info a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s;
}

.exxe-mobile-contact-info a:hover {
  color: #ff6b6b;
}

/* ÜRÜNLER MENÜSÜ */
.exxe-mobile-products-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exxe-mobile-products-menu.active {
  transform: translateX(0);
  opacity: 1;
}

/* GERİ BUTONU */
.exxe-mobile-back-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  transform: translateX(-50px);
  opacity: 0;
}

.exxe-mobile-products-menu.active .exxe-mobile-back-btn {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.exxe-mobile-back-btn:hover {
  color: #ff6b6b;
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  transform: translateX(-5px);
}

/* ÜRÜNLER LİSTESİ */
.exxe-mobile-products-menu ul {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.exxe-mobile-products-menu ul li {
  margin-bottom: 15px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exxe-mobile-products-menu.active ul li {
  transform: translateY(0);
  opacity: 1;
}

.exxe-mobile-products-menu.active ul li:nth-child(1) { transition-delay: 0.15s; }
.exxe-mobile-products-menu.active ul li:nth-child(2) { transition-delay: 0.2s; }
.exxe-mobile-products-menu.active ul li:nth-child(3) { transition-delay: 0.25s; }
.exxe-mobile-products-menu.active ul li:nth-child(4) { transition-delay: 0.3s; }
.exxe-mobile-products-menu.active ul li:nth-child(5) { transition-delay: 0.35s; }
.exxe-mobile-products-menu.active ul li:nth-child(6) { transition-delay: 0.4s; }
.exxe-mobile-products-menu.active ul li:nth-child(7) { transition-delay: 0.45s; }

.exxe-mobile-products-menu ul li a {
  display: block;
  padding: 18px 25px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.exxe-mobile-products-menu ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.exxe-mobile-products-menu ul li a:hover:before {
  left: 100%;
}

.exxe-mobile-products-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-2px);
  color: #ff6b6b;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Tablet responsive - 1600px ve altı */
@media (max-width: 1600px) {
  .exxe-header {
    padding: 0 5vw;
  }
  
  .exxe-submenu {
    left: 5vw;
    right: 5vw;
  }
}

/* Büyük mobile menü stilleri */
.exxe-big-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--color1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exxe-big-menu.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.exxe-big-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.1);
  height: 75px;
  flex: 0 0 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
  transform: translateY(-20px);
  transition: transform 0.5s 0.1s;
}

.exxe-big-menu.active .exxe-big-menu-top {
  transform: translateY(0);
}

.exxe-big-menu-logo img {
  height: 30px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.exxe-big-menu-close {
  position: relative;
  font-size: 25px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  transition: transform 0.3s;
}

.exxe-big-menu-close:hover {
  transform: rotate(90deg);
}

.exxe-big-menu-close:before,
.exxe-big-menu-close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}

.exxe-big-menu-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.exxe-big-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exxe-big-menu-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

.exxe-big-menu-content ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exxe-big-menu.active .exxe-big-menu-content ul li {
  transform: translateY(0);
  opacity: 1;
}

.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(1) { transition-delay: 0.1s; }
.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(2) { transition-delay: 0.15s; }
.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(3) { transition-delay: 0.2s; }
.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(4) { transition-delay: 0.25s; }
.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(5) { transition-delay: 0.3s; }
.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(6) { transition-delay: 0.35s; }
.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(7) { transition-delay: 0.4s; }
.exxe-big-menu.active .exxe-big-menu-content ul li:nth-child(8) { transition-delay: 0.45s; }

.exxe-big-menu-content ul li a {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-family: var(--font2);
  transition: all 0.3s;
  position: relative;
}

.exxe-big-menu-content ul li a:hover {
  color: var(--color-gold);
  transform: scale(1.05);
}

.exxe-big-menu-content ul li a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s;
}

.exxe-big-menu-content ul li a:hover:before {
  width: 30px;
}

/* Submenu animation - Full screen replacement */
.exxe-big-menu-content ul li ul,
.exxe-big-menu-content ul li ol {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.exxe-big-menu-content ul li.open > ul,
.exxe-big-menu-content ul li.open > ol {
  transform: translateX(0);
}

/* Ana menü gizleme - Ürünler submenu açık olduğunda */
.exxe-big-menu-content > ul[style*="display: none"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Back button - only one at top */
.exxe-big-menu-content ul li ul .exxe-menu-back,
.exxe-big-menu-content ul li ol .exxe-menu-back {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 101;
  transition: all 0.3s;
  font-family: var(--font2);
  margin: 0;
}

.exxe-big-menu-content ul li ul .exxe-menu-back:hover,
.exxe-big-menu-content ul li ol .exxe-menu-back:hover {
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-gold);
}

.exxe-big-menu-content ul li ul .exxe-menu-back:before,
.exxe-big-menu-content ul li ol .exxe-menu-back:before {
  content: '';
  font-size: 16px;
}

/* Submenu items container */
.exxe-big-menu-content ul li ul,
.exxe-big-menu-content ul li ol {
  padding-top: 75px;
}

.exxe-big-menu-content ul li ul li,
.exxe-big-menu-content ul li ol li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  max-width: 300px;
}

/* Hide the first li which is the back button duplicate - not needed anymore */

.exxe-big-menu-content ul li.open ul li,
.exxe-big-menu-content ul li.open ol li {
  transform: translateY(0);
  opacity: 1;
}

.exxe-big-menu-content ul li.open ul li:nth-child(1) { transition-delay: 0.1s; }
.exxe-big-menu-content ul li.open ul li:nth-child(2) { transition-delay: 0.15s; }
.exxe-big-menu-content ul li.open ul li:nth-child(3) { transition-delay: 0.2s; }
.exxe-big-menu-content ul li.open ul li:nth-child(4) { transition-delay: 0.25s; }
.exxe-big-menu-content ul li.open ul li:nth-child(5) { transition-delay: 0.3s; }
.exxe-big-menu-content ul li.open ul li:nth-child(6) { transition-delay: 0.35s; }
.exxe-big-menu-content ul li.open ul li:nth-child(7) { transition-delay: 0.4s; }
.exxe-big-menu-content ul li.open ul li:nth-child(8) { transition-delay: 0.45s; }

.exxe-big-menu-content ul li ul li a,
.exxe-big-menu-content ul li ol li a {
  color: #fff;
  font-size: 22px;
  padding: 20px 0;
  text-align: center;
  border-radius: 0;
  position: relative;
  transition: all 0.3s;
  font-family: var(--font2);
  display: block;
  width: 100%;
}

.exxe-big-menu-content ul li ul li a:hover,
.exxe-big-menu-content ul li ol li a:hover {
  color: var(--color-gold);
  transform: scale(1.05);
}

.exxe-big-menu-content ul li ul li a:before,
.exxe-big-menu-content ul li ol li a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s;
}

.exxe-big-menu-content ul li ul li a:hover:before,
.exxe-big-menu-content ul li ol li a:hover:before {
  width: 30px;
}

/* Third level submenu (ol inside ul) */
.exxe-big-menu-content ul li ul li ol {
  background: var(--color-gold);
}

.exxe-big-menu-content ul li ul li ol li a {
  color: var(--color1);
}

.exxe-big-menu-content ul li ul li ol li a:hover {
  color: var(--color1);
  opacity: 0.8;
}

/* JavaScript fonksiyonları */
.exxe-mobile-js {
  display: none;
}

/* ÜRÜNLER MENÜSÜ - SAĞDAN AÇILAN TAM EKRAN */
.exxe-products-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color1);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

/* MENÜ İÇERİK GEÇİŞ ANİMASYONLARI */
.exxe-big-menu-content ul {
  position: relative;
  overflow: hidden;
}

.exxe-big-menu-content ul li {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ürünler menüsü açılırken - ana menü sola kayar */
.exxe-big-menu-content ul.slide-out-left li {
  transform: translateX(-80px);
  opacity: 0;
  transition-delay: 0s;
}

.exxe-big-menu-content ul.slide-out-left li:nth-child(1) { transition-delay: 0s; }
.exxe-big-menu-content ul.slide-out-left li:nth-child(2) { transition-delay: 0.03s; }
.exxe-big-menu-content ul.slide-out-left li:nth-child(3) { transition-delay: 0.06s; }
.exxe-big-menu-content ul.slide-out-left li:nth-child(4) { transition-delay: 0.09s; }
.exxe-big-menu-content ul.slide-out-left li:nth-child(5) { transition-delay: 0.12s; }
.exxe-big-menu-content ul.slide-out-left li:nth-child(6) { transition-delay: 0.15s; }

/* Ürünler menüsü içeriği sağdan gelir */
.exxe-big-menu-content ul.slide-in-right li {
  transform: translateX(80px);
  opacity: 0;
  animation: slideInRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exxe-big-menu-content ul.slide-in-right li:nth-child(1) { animation-delay: 0s; }
.exxe-big-menu-content ul.slide-in-right li:nth-child(2) { animation-delay: 0.03s; }
.exxe-big-menu-content ul.slide-in-right li:nth-child(3) { animation-delay: 0.06s; }
.exxe-big-menu-content ul.slide-in-right li:nth-child(4) { animation-delay: 0.09s; }
.exxe-big-menu-content ul.slide-in-right li:nth-child(5) { animation-delay: 0.12s; }
.exxe-big-menu-content ul.slide-in-right li:nth-child(6) { animation-delay: 0.15s; }
.exxe-big-menu-content ul.slide-in-right li:nth-child(7) { animation-delay: 0.18s; }
.exxe-big-menu-content ul.slide-in-right li:nth-child(8) { animation-delay: 0.21s; }

/* Ana menü geri gelirken - sağdan sola */
.exxe-big-menu-content ul.slide-out-right li {
  transform: translateX(80px);
  opacity: 0;
  transition-delay: 0s;
}

.exxe-big-menu-content ul.slide-out-right li:nth-child(1) { transition-delay: 0s; }
.exxe-big-menu-content ul.slide-out-right li:nth-child(2) { transition-delay: 0.03s; }
.exxe-big-menu-content ul.slide-out-right li:nth-child(3) { transition-delay: 0.06s; }
.exxe-big-menu-content ul.slide-out-right li:nth-child(4) { transition-delay: 0.09s; }
.exxe-big-menu-content ul.slide-out-right li:nth-child(5) { transition-delay: 0.12s; }
.exxe-big-menu-content ul.slide-out-right li:nth-child(6) { transition-delay: 0.15s; }
.exxe-big-menu-content ul.slide-out-right li:nth-child(7) { transition-delay: 0.18s; }
.exxe-big-menu-content ul.slide-out-right li:nth-child(8) { transition-delay: 0.21s; }

/* Ana menü içeriği soldan gelir */
.exxe-big-menu-content ul.slide-in-left li {
  transform: translateX(-80px);
  opacity: 0;
  animation: slideInLeft 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.exxe-big-menu-content ul.slide-in-left li:nth-child(1) { animation-delay: 0s; }
.exxe-big-menu-content ul.slide-in-left li:nth-child(2) { animation-delay: 0.03s; }
.exxe-big-menu-content ul.slide-in-left li:nth-child(3) { animation-delay: 0.06s; }
.exxe-big-menu-content ul.slide-in-left li:nth-child(4) { animation-delay: 0.09s; }
.exxe-big-menu-content ul.slide-in-left li:nth-child(5) { animation-delay: 0.12s; }
.exxe-big-menu-content ul.slide-in-left li:nth-child(6) { animation-delay: 0.15s; }

@keyframes slideInRight {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.exxe-products-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.1);
  height: 75px;
  flex: 0 0 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
  transform: translateY(-20px);
  transition: transform 0.5s 0.1s;
}

.exxe-products-menu.active .exxe-products-menu-header {
  transform: translateY(0);
}

.exxe-products-menu-logo img {
  height: 30px;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.exxe-products-menu-close {
  position: relative;
  font-size: 25px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  transition: transform 0.3s;
}

.exxe-products-menu-close:hover {
  transform: rotate(90deg);
}

.exxe-products-menu-close:before,
.exxe-products-menu-close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s;
}

.exxe-products-menu-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.exxe-products-menu-content {
  flex: 1;
  overflow-y: auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.exxe-products-menu-back {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.3s;
  font-family: var(--font2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
}

.exxe-products-menu-back:hover {
  color: var(--color-gold);
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--color-gold);
}

.exxe-products-title {
  color: #fff;
  font-size: 36px;
  font-family: var(--font2);
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s 0.2s;
}

.exxe-products-menu.active .exxe-products-title {
  opacity: 1;
  transform: translateY(0);
}

.exxe-products-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 400px;
}

.exxe-products-list li {
  margin-bottom: 15px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exxe-products-menu.active .exxe-products-list li {
  opacity: 1;
  transform: translateX(0);
}

.exxe-products-menu.active .exxe-products-list li:nth-child(1) { transition-delay: 0.3s; }
.exxe-products-menu.active .exxe-products-list li:nth-child(2) { transition-delay: 0.35s; }
.exxe-products-menu.active .exxe-products-list li:nth-child(3) { transition-delay: 0.4s; }
.exxe-products-menu.active .exxe-products-list li:nth-child(4) { transition-delay: 0.45s; }
.exxe-products-menu.active .exxe-products-list li:nth-child(5) { transition-delay: 0.5s; }
.exxe-products-menu.active .exxe-products-list li:nth-child(6) { transition-delay: 0.55s; }
.exxe-products-menu.active .exxe-products-list li:nth-child(7) { transition-delay: 0.6s; }

.exxe-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-family: var(--font2);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.exxe-product-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exxe-product-item span {
  flex: 1;
  text-align: left;
}

.exxe-product-arrow {
  font-size: 24px;
  color: var(--color-gold);
  transition: transform 0.3s;
}

.exxe-product-item:hover .exxe-product-arrow {
  transform: translateX(10px);
} 