/*
* {
  outline: 1px solid red !important;
  background-color: rgba(255, 0, 0, 0.05) !important;
}
svg, img {
  outline: 2px solid blue !important;
  background-color: transparent !important;
}
*/

.bottom-nav-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
	z-index: 1001;
  background-color: #221c14;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.bottom-nav-container.show {
  transform: translateY(0);
}
.bottom-nav {
  padding: 20px 0;
}
.bottom-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}
.bottom-nav li a {
  display: block;
  padding: 0;
  text-decoration: none;
}
.title-bottom {
  color: #f5f5f5;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 22px;
  text-align: center;
}

/* Improved arrow transitions */
.arrow-left a,
.arrow-right a {
  width: 60px;
  height: 60px;
  display: inline-block;
  text-decoration: none;
  float: left;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(100%);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother easing */
}

.arrow-left a:hover {
  filter: brightness(75%);
  transform: translateX(-3px); /* Reduced from 5px for subtlety */
}
.arrow-right a:hover {
  filter: brightness(75%);
  transform: translateX(3px); /* Reduced from 5px for subtlety */
}

/* Responsive adjustments */
@media (max-width: 759px) {
  .arrow-left a,
  .arrow-right a {
    width: 40px;
    height: 40px;
  }
}