
.scroll-mode .guide-section, .scroll-mode .lookbook-section {
  display: block; /* Normal scroll mode, all sections displayed */
}

.book-mode-only {
  display: none;
}

.book-mode .book-mode-only {
  display: inline-block; /* Show buttons in book mode */
}

.tinos {
  font-family: "Tinos", serif;
  font-weight: 400;
  font-style: normal;
}
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#dropdownAvatarD {
  z-index: 9999;
}

.group:hover #dropdownAvatarD,
  #dropdownAvatarD:hover {
    display: block;
    top: 40px;
    right: 10px;
  }

  #dropdownAvatarD {
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .group:hover #dropdownAvatarD,
  #dropdownAvatarD:hover {
    opacity: 1;
    visibility: visible;
  }

.card:hover {
  cursor: pointer;
}
.card > h3 {
  display: block;
}
.card:hover > h3 {
  display: none;
}
.card > .hoverCard {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.card:hover .hoverCard {
  opacity: 0.9;
  transition: opacity 0.5s ease-in;
}
.active {
  background-color: #fff;
  border-color: #dee0e3;
  border-radius: 9px;
  width: 50%;
}
.inactive {
  border-radius: 9px;
  width: 50%;
}

.text-mod-pink-light-100 {
  color: #db5f97;
}

#services-tab.active, #guides-tab.active {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  transition:
    color 0.3s,
    background-color 0.3s; /* Smooth transition for hover effect */
  width: 100%;
  padding: 8px 10px; /* 8px top/bottom, 10px left/right */
  display: block;
  border-radius: 10px;
  color: #000; /* White text on hover */
  background-color: #fff; /* Yellowish background on hover */
  cursor: pointer;
}
#services-tab.inactive, #guides-tab.inactive {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  transition:
    color 0.3s,
    background-color 0.3s; /* Smooth transition for hover effect */
  width: 100%;
  padding: 8px 10px; /* 8px top/bottom, 10px left/right */
  display: block;
  border-radius: 10px;
  cursor: pointer;
}

.current-active {
  background-color: #c4c2be;
  color: #000 !important;
  border-radius: 14px;
}

.page-header-icon {
  font-size: 20px;
  width: 50px;
  height: 50px;
  background-color: white;
  color: #db5f97;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

 .guide-container {
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}


.guide-cancel-button {
  background-color: #0A0F290A;
  padding: 13px 21px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: black;
  text-align: center;
}

.guide-section {
  position: relative;
}

.guide-section-title {
  display: flex;
  justify-content: center;
}

.lookbook-container {
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.lookbook-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.lookbook-cancel-button {
  background-color: #0A0F290A;
  padding: 13px 21px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  color: black;
  text-align: center;
}

.lookbook-section {
  position: relative;
}

.lookbook-section-title {
  display: flex;
  justify-content: center;
}

.icons-row {
  display: flex;
  justify-content: center; /* Center icons horizontally */
  align-items: center; /* Center icons vertically */
}

.item-info {
  position: relative;
  text-align: center;
  width: 100%;
}

.interaction-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interaction-button.interacted, .purchase-button-sidepanel.interacted, .outfit-reaction-button.interacted {
  background-color: #182315;
  border-radius: 50%;

  i {
    color: white;
  }
}

@media (hover: hover) and (pointer: fine) {
  .interaction-button:hover,
  .purchase-button-sidepanel:hover,
  .outfit-reaction-button:hover {
    background-color: #182315;
    border-radius: 50%;

    i {
      color: white;
    }
  }
}

.purchase-button-text {
  display: inline-block;
  padding: 5px 10px;
  background-color: #0A0F290A;
  border-radius: 20px;
  color: white;
  text-align: center;
  cursor: pointer;
}

.purchase-button, .purchase-button-sidepanel {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.purchase-button.interacted {
  background-color: #182315;
  border-radius: 50%;

  i {
    color: white;
  }
}

#commentsModal {
  background: white;
}

#commentsModalClose {
  position: absolute;
  top: 0;
  right: 15px;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.guide-section-title, .lookbook-section-title {
  cursor: pointer;
}

.guide-section-title:hover .tooltip {
  display: block;
}

.lookbook-section-title:hover .tooltip {
  display: block;
}

#loom-embed-toggle-icon {
  font-size: 1.25rem;
  cursor: pointer;
}

.service-description, .guide-description {
  ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
  }

  li {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
}

.alert {
    opacity: 1;
    transition: opacity 0.5s ease-out;
  }

.profile-description-content a {
  color: var(--link-color);
  text-decoration: underline;
}

.questionnaire-receipt-text a {
  text-decoration: underline;
  cursor: pointer;
  color: #2563eb;
}
