.bottom-nav__btn--prev,
.bottom-nav__btn--next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 40px;
  background:
        linear-gradient(#000, #000) padding-box, /* màu nền trong */
        /* Viền gradient trắng-xám nhạt, hướng từ trên xuống dưới (180deg) */
        linear-gradient(180deg, #FFFFFF 0%, rgba(153, 153, 153, 0.2) 100%) border-box;
    border: 1.63px solid transparent;
  border-radius: 1623.375px; /* Bo tròn tối đa */
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95em;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 6.5px 6.5px 0px #FFFFFF33 inset;
  z-index: 1; /* Đảm bảo nội dung nằm trên pseudo-element viền */
}

.bottom-nav__btn--prev:hover,
.bottom-nav__btn--next:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 8px 0px #FFFFFF44 inset;
}

.bottom-nav__container{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 0;
}