/* General Styling */
.total {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
}

/* Wishlist Title */
.total h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Wishlist Container */
.div-li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure Parent Container is Full Width */
#wishlist-items {
  width: 100%;
  max-width: 100%;
}

/* Wishlist Table */
.wishlist-table {
  width: 100%; /* Ensure full width */
  max-width: none; /* Remove any width restrictions */
  margin: 20px auto;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Wishlist Table Header */
.wishlist-table thead {
  background: #00617b; /* Light grey for a neutral and professional look */
  color: white;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Wishlist Table Cells */
.wishlist-table th,
.wishlist-table td {
  padding: 16px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 16px;
  color: #333;
  white-space: nowrap; /* Prevents text from wrapping */
}

/* Wishlist Images */
.wishlist-table img {
  border-radius: 6px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.08);
}

/* Remove Button */
.wishlist-table button {
  background: #b0b0b0;
  color: #333;
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.wishlist-table button:hover {
  background: #999999;
  transform: scale(1.05);
}

/* Clear Wishlist Button */
.clear-wishlist {
  width: 220px;
  background: #00617b;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.clear-wishlist:hover {
  background: #999999;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .wishlist-table {
    width: 100%;
  }

  .wishlist-table th,
  .wishlist-table td {
    padding: 12px;
    font-size: 14px;
  }

  .wishlist-table img {
    width: 70px;
    height: 70px;
  }

  .clear-wishlist {
    width: 200px;
    padding: 12px 18px;
  }
}
body {
  margin: 0;
  padding-bottom: 60px;
  font-family: Arial, sans-serif;
}

.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mobile-nav .nav-item img {
  width: 28px; /* Adjust size for icons */
  height: auto;
}

/* Hide on larger screens */
@media (min-width: 1024px) {
  .mobile-nav {
    display: none;
  }
}

/* .wishlist-counter {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    display: none; /* Hide if empty */

@media (max-width: 768px) {
  a:hover {
    color: #006175 !important;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  a:hover {
    color: #006175 !important;
  }
}


/* .wishlist-icon {
    position: relative;
    display: inline-block;
  }
  
  .wishlist-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    display: none;
  } */