body {
  margin: 0;
  padding: 0;
  background-color: #d2ebed;
}

.navbar {
  background: linear-gradient(to right, #6d6d6d, #8d8d8d); /* Gradient background */
  opacity: 0.85; /* Slightly more visible */
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow for depth */
  height: 150px;
  overflow: hidden;
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar img {
  position: relative;
  top: 0.4em;
  right: 14em;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure proper image fit */
}

.navbar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  position: relative;
  top: 50%;
  left: 15%;
  transform: translate(0%, -60%);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  margin-left: -280px;
}

.navbar-brand span {
  color: #ffffff;
  text-align: left;
  font-family: "DaysOne-Regular", sans-serif;
  font-size: 50px;
  font-weight: 700;
  position: relative;
  top: 15px;
  right: 4em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-item {
  margin-left: 20px;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  text-align: left;
  font-family: "Ramabhadra-Regular", sans-serif;
  font-size: 24px;
  font-weight: 400;
  position: relative;
  top: 50%;
  width: 83px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-link:hover, .nav-link.active {
  background-color: rgba(0, 123, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
}


a.nav-link {
  font-size: 25px;
}


#homebg {
  background-image: url("young-woman-pharmacist-pharmacy\ 1.png");
  width: 100%;
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
#welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


#welcome h1 {
    font-family: "Days One", serif;
    font-size: 40px;
    color: #fff;
    position: relative;
    top: 120px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  }


.frame-13 {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin: auto;
}

/* My Cart Section */
#mycart {
  padding: 2rem;
  max-width: 700px;
  margin: 50px auto;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#mycart h1 {
  color: #4a7c8a;
  font-size: 30px;
  text-align: center;
  font-family: "Lexend", sans-serif;
	position:relative;
  right: 9.5em;
}

#cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Lexend", sans-serif;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cart-item img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 1rem;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 600;
  color: #333;
}

.cart-item-price {
  color: #408C67;
  font-weight: 500;
}

.remove-button {
  background-color: #dc3545;
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.remove-button:hover {
  background-color: #b02a37;
}

#cart-total {
	position: relative;
	right: 11em;
  text-align: center;
  margin-top: 2rem;
  font-size: 24px;
  color: #4a7c8a;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
}