body {
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #8d8d8d; /* White background */
  opacity: 0.6;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  height: 150px;
  width: 100%;
  overflow: hidden;
}
.navbar img {
  width: 100%;
  height: 100%;
}
.navbar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px; /* Set a maximum width for the navbar */
  margin: auto; /* Center the navbar */
  position: relative;
  top: 50%;
  transform: translate(0%,-60%);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333; /* Dark gray or black color for brand */
  font-weight: 500; /* Semi-bold font-weight */
  margin-left: -300px;
}

.navbar-brand img {
  margin-right: 10px;
}

.navbar-brand span {
  color: #ffffff;
  text-align: left;
  font-family: "DaysOne-Regular", sans-serif;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}

.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; /* Add some padding around the link text */
  border-radius: 5px; /* Add rounded corners to the nav links */
  transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
}

.nav-link:hover, .nav-link.active {
  background-color: #007bff; /* Blue background on hover and active */
  color: #fff; /* White text color on hover and active */
}

#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;
}

/* Welcome Section */
#welcome h1 {
  font-family: "Days One", sans-serif;
  font-size: 48px;
  color: #ffffff;
  text-align: center;
  margin-top: 60px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}



.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;
}