header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  font-family: Roboto, Arial;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white; /* IMPORTANT */
  z-index: 1000; /* stays on top */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  height: 40px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.salon-name {
  font-weight: bold;
  font-size: 20px;
  color: rgb(82, 16, 38);
}

.logo-image {
  width: 55px;
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav p {
  text-decoration: none;
  color: rgb(105, 105, 105);
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.mobile-menu p{
  text-decoration: none;
  color: rgb(105, 105, 105);
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
nav p:hover {
  color: rgb(255, 10, 92);
}
.mobile-menu p:hover{
  color: rgb(255, 10, 92);
}

.header-book-button {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background-color: rgb(255, 10, 92);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-book-button:hover,
.mobile-book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 10, 92, 0.3);
}

.chat-icon {
  width: 20px;
}
.hamburger{
  font-size: 25px;
  color: rgb(255, 10, 92);
  display: none;
  cursor: pointer;
}


/* MOBILE MENU */
.mobile-menu {
  font-family: Roboto, Arial;
  position: fixed;
  top: -200%; /* hidden */
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 2000;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 5px;
  transition: top 0.4s ease;
}

/* when opened */
.mobile-menu.active {
  top: -20px;
}

/* close button */
.mobile-header {
  position: absolute;
  top: 40px;
  right: 90px;
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  color: rgb(105, 105, 105);
  transition: all 0.4s ease;
}
.close-btn:hover{
  color: red;
  transform: scale(1.05);
}

/* mobile items */
.mobile-menu p {
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 10px;
  font-weight: 500;
}

/* button */
.mobile-book-btn {
  background-color: rgb(255, 10, 92);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 17px;
  width: 90%;
}

.mobile-menu {
  display: none;
}
.cart-container{
  position: relative;
  display: inline-block;
}

.cart{
  font-size: 20px;
}

.cart-quantity{
  position: absolute;
  top: -5px;      /* 🔥 sits on top of cart */
  right: -8px;    /* 🔥 sticks to cart corner */
  background-color: rgb(255, 10, 92);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .mobile-menu {
    display: flex;
  }
  .hamburger{
    display: block;
  }
  nav p {
    display: none;
  }
}
@media (max-width: 496px){
  .header-book-button{
    font-size: 12px;
    padding: 7px 17px;
  }
}
@media (max-width: 418px){
  .header-book-button{
    display: none;
  }
  .hamburger{
    font-size: 22px;
  }
}
@media (max-width: 248px){
  .logo-image{
    display: none;
  }
}

