/* Bottom Menu Pro Styled v2.8 by Clickweb */

.bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  border-top: 1px solid #d4af37;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Common link styles */
.bottom-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s ease;
}

.bottom-menu a i {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 3px;
}

.bottom-menu a span {
  color: #fff;
  font-weight: 500;
}

.bottom-menu a:hover {
  color: #d4af37;
}

/* ===== Desktop View ===== */
@media (min-width: 769px) {
  .bottom-menu {
    width: fit-content !important;
    margin: 0 auto 15px auto !important;
    border: 1px solid #d4af37;
    border-radius: 25px;
    padding: 10px 40px;
    justify-content: center;
    gap: 25px;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .bottom-menu a {
    flex-direction: row;
    gap: 8px;
  }
  .bottom-menu a i {
    display: none;
  }
  .bottom-menu a span {
    display: inline-block;
    font-size: 15px;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 768px) {
  .bottom-menu {
    justify-content: space-around;
    padding: 8px 0;
    border-radius: 0;
    border-top: 1px solid #d4af37;
    width: 100%;
    left: 0 !important;
    transform: none !important;
  }
  .bottom-menu a {
    flex-direction: column;
    background: rgba(0,0,0,0.9);
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 10px;
    width: 45px;
    height: 45px;
  }
  .bottom-menu a i {
    display: inline-block;
    font-size: 22px;
  }
  .bottom-menu a span {
    display: none;
  }
}
