.accordion-body{
	overflow:hidden !important;
}
.menu-closed {
  transform: translateX(100%);
}
.accordion-overlay {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 100;
}

/* Default animation - slide from bottom */
.accordion-overlay {
  transform: translateY(100%);
}

/* Slide from left animation */
.accordion-overlay.slide-left {
  transform: translateX(-100%);
}

/* Slide from right animation */
.accordion-overlay.slide-right {
  transform: translateX(100%);
}

/* Open state for all animations */
.accordion-overlay.open {
  opacity: 1;
  transform: translateY(0) translateX(0);
  visibility: visible;
}
.accordion-header {
  position: sticky;
  top: 0;
  z-index: 46;
  display: none; /* Hide on desktop */
}

@media (max-width: 767px) {
  .accordion-header {
      display: block; /* Show on mobile */
  }
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.box-item {
  position: relative;
  transition: all 0.3s ease;
}
.box-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.box-item:hover:before {
  opacity: 0.9;
}
.box-item .content {
  position: relative;
  z-index: 2;
}

/* Custom Scrollbar Styles for content area */
.accordion-content::-webkit-scrollbar {
  width: 8px;
}

.accordion-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.accordion-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.accordion-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Desktop layout */
@media (min-width: 768px) {
  .accordion-info {
	  position:absolute;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
  
  .accordion-content {
      padding-left: 33%;
  }
}

/* Mobile layout */
@media (max-width: 767px) {
  .accordion-overlay.open {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
  }
  
  .accordion-info {
      position: relative;
      top: 0;
      background: inherit;
      z-index: 5;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }
  
  .accordion-content {
      padding: 1rem;
  }
  
  .accordion-button {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: inherit;
      padding: 1rem;
      z-index: 5;
  }
}


