/* Customer Profile Sidebar */
.customer-profile {
  padding-top: 64px;
}

.profile-edit-block {
  text-align: center;
  position: relative;
  background-color: var(--light-gray);
  border-radius: 10px;
  padding-top: 71px;
  padding-bottom: 12px;
}

.profile-img {
  margin: 0 auto;
  width: 122px;
  height: 122px;
  background-color: var(--color-white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translate(-50%, 0);
}

.profile-update-img {
  border-radius: 50%;
  max-width: 100px;
  height: 100px;
  object-fit: cover;
}

.profile-edit-block h5 {
  color: var(--text-color);
  font-size: var(--font-20);
  font-weight: 600;
  margin-bottom: 8px;
}

.profile-reviews {
  font-size: var(--font-xs);
  color: var(--typo-secondary);
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Customer Menu */
.customer-menu {
  padding-top: 20px;
}

.customer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
}

.customer-menu li:not(:last-child) a {
  border-bottom: solid 1px var(--light-gray);
}

.customer-menu li a {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  gap: 10px;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.customer-menu li a span:first-child {
  display: flex;
  align-items: center;
}

.customer-menu li a svg {
  width: 24px;
  height: 24px;
}

.customer-menu li a svg path {
  fill: var(--text-color);
}

.customer-menu li.active a {
  border-bottom: none;
  background-color: rgba(14, 148, 147, 0.2);
  color: var(--typo-primary);
  border-radius: 8px;
}

.customer-menu li a:hover {
  color: var(--typo-primary);
}

.customer-menu li.active a svg path,
.customer-menu li a:hover svg path {
  fill: var(--typo-primary);
}

.customer-menu li:last-child a {
  color: rgba(242, 71, 71, 1);
}

.customer-menu li:last-child a svg path {
  fill: rgba(242, 71, 71, 1);
}

.massage-count {
  background: #F24747;
  color: #fff;
  height: 15px;
  width: 15px;
  font-size: 10px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .customer-menu li a {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .customer-profile {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .customer-menu li a {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .profile-edit-block {
    padding-bottom: 10px;
  }
  
  .profile-img {
    width: 100px;
    height: 100px;
    top: -50px;
  }
  
  .profile-update-img {
    max-width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .profile-edit-block {
    padding: 50px 20px 10px;
  }
  
  .customer-menu li a {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  .profile-img {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  
  .profile-update-img {
    max-width: 60px;
    height: 60px;
  }
}