body {
  overflow-x: hidden; /* Prevent horizontal overflow */
}

.card .delete-btn {
  color: #eb2e2e !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0.25rem !important;
  line-height: 1 !important;
  transition: all 0.2s ease-in-out !important;
  box-shadow: none !important;
}

.card .delete-btn:hover,
.card .delete-btn:focus {
  color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.1) !important;
  outline: none !important;
}

.card .delete-btn:focus {
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.5) !important;
}

.card .delete-btn i {
  font-size: 1rem !important;
}

.loader-container {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background-color: #ffffff;
  display: grid;
  place-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-container.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-container img {
  animation: 1s infinite alternate loading;
  border-radius: 50%;
}
@keyframes loading {
  to {
    transform: scale(1.15);
  }
}
.navs {
  padding: 15px 60px;
  font-size: 15px;
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.custom-navbar {
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.navbar-brand {
  margin: 0;
}
.navbar-toggler {
  border: none;
  outline: none;
}
.navbar-toggler-icon {
  width: 30px;
  height: 30px;
}
.navbar-nav {
  flex-direction: row;
  justify-content: end;
  width: 100%;
}
.nav-item {
  margin: 0 10px;
}
.navbar-nav .nav-item .fa-shopping-bag {
  font-size: 24px;
  position: relative;
}
.navbar-nav .nav-item .badge {
  font-size: 12px;
  padding: 5px 5px;
  border-radius: 50%;
  background-color: red;
  color: white;
  position: absolute;
  top: -5px;
  right: -5px;
}

a.nav-link:hover {
  text-decoration: underline;
  text-decoration-color: #ff6600;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

ul.navbar-nav li.nav-item:last-child {
  cursor: pointer;
}

.cart-view-container {
  position: fixed;
  width: 100vw;
  height: 100svh;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.232);
}
.cart-view {
  height: 100svh;
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  background: whitesmoke;
  z-index: 1002;
}
#close-cart-btn {
  cursor: pointer;
}
.view-cart-btn {
  background: linear-gradient(45deg, #ff9900, #ff6600);
  border: none;
  font-weight: 700;
  color: white;
}
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }
}
.footer {
  background-color: #a15a00;
  color: #ffffff;
}
.footer img {
  max-width: 150px;
}
.footer p {
  font-size: 14px;
}
.footer h5 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}
.footer ul {
  list-style-type: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: #ffffff;
  text-decoration: none;
}
.footer ul li a:hover {
  text-decoration: underline;
}
.footer .social-icons a {
  color: #ffffff;
  margin-right: 15px;
  font-size: 18px;
  text-decoration: none;
}
.footer .social-icons a:hover {
  color: #ffcc00;
}
.footer ul li i {
  margin-right: 10px;
}
.footer p.mb-0 {
  border-top: 1px solid #ffffff;
  padding-top: 10px;
  margin-top: 20px;
  font-size: 14px;
}
@media (max-width: 576px) {
  .navs {
    padding: 15px 30px;
  }
}
