@charset "UTF-8";

/* ─────────────────────────────────────────
   Join Groomit — Nav Dropdown
   ───────────────────────────────────────── */
/* ── ff-inter-semibold override — enforce color in nav context ── */
.text-4A5565 {
  color: #4A5565 !important;
}

#navbarGroo .ff-inter-semibold {
  font-family: "Inter 600", sans-serif !important;
  color: #2E2E2E !important;
}

/* ── All nav links — semibold + hover red ── */
#navbarGroo .groomit__a--navLink {
  color: #2E2E2E !important;
  transition: color 0.15s ease;
}

#navbarGroo .groomit__a--navLink:hover,
#navbarGroo .groomit__a--navLink:focus {
  color: #FF314A !important;
  font-family: "Inter 600", sans-serif !important;
}

/* ── Toggle label ── */
.join-groomit-nav>.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-family: "Inter 400", sans-serif !important;
  font-size: 1.6rem;
  color: #2E2E2E !important;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.join-groomit-nav>.nav-link:hover {
  color: #FF314A;
}

/* Hide Bootstrap's default caret */
.join-groomit-nav>.nav-link::after {
  display: none;
}

/* Animated chevron */
.join-groomit-nav .jg-chevron {
  display: inline-block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: transform 0.22s ease;
}

.join-groomit-nav>.nav-link[aria-expanded=true] .jg-chevron {
  transform: rotate(180deg);
}

.join-groomit-nav>.nav-link[aria-expanded=true] {
  color: #FF314A;
}

.join-groomit-nav>.nav-link[aria-expanded=true] .jg-chevron path {
  stroke: #FF314A;
}

/* ── Dropdown panel ── */
.jg-dropdown-menu {
  min-width: 305px;
  padding: 6px;
  margin-top: 12px !important;
  background: #ffffff;
  border: 1px solid #EBEBEB;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: jgFadeSlide 0.18s ease forwards;
}

@keyframes jgFadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Individual item ── */
.jg-dropdown-menu .jg-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 9px;
  color: #2E2E2E;
  font-family: "Inter 600", sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
  transition: background 0.14s ease, color 0.14s ease;
  white-space: nowrap;
  cursor: pointer;
}

.jg-dropdown-menu .jg-item:hover,
.jg-dropdown-menu .jg-item:focus {
  background: #FFF4F5;
  color: #FF314A;
  outline: none;
}

.jg-dropdown-menu .jg-item:active {
  background: #FFE8EA;
  color: #D02B20;
}

/* ── Arrow icon ── */
.jg-dropdown-menu .jg-item .jg-arrow {
  width: 16px;
  height: 16px;
  opacity: 0.35;
  margin-left: 14px;
  flex-shrink: 0;
  transition: transform 0.14s ease, opacity 0.14s ease, filter 0.14s ease;
}

.jg-dropdown-menu .jg-item:hover .jg-arrow,
.jg-dropdown-menu .jg-item:focus .jg-arrow {
  transform: translateX(3px);
  opacity: 1;
  filter: invert(27%) sepia(85%) saturate(2000%) hue-rotate(330deg) brightness(100%) contrast(100%);
}

/* ── Divider ── */
.jg-dropdown-menu .jg-divider {
  margin: 3px 8px;
  border: 0;
  border-top: 1px solid #F2F2F2;
}

/* ============================================================
   New Mobile Menu Overlay (mmv7-*)
   Used in header_internal.blade.php
   ============================================================ */
.mmv7-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  background: #fff;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#navbarSupportedContent.collapsing {
  transition-duration: 0.12s !important;
}

.mmv7-panel-header {
  padding: 16px 20px;
  flex-shrink: 0;
}

.mmv7-logo {
  height: 49px;
  width: auto;
}

.mmv7-rating {
  gap: 5px;
}

.mmv7-rating-text {
  font-size: 1.6rem;
  font-family: "Inter 700", sans-serif;
  color: #2E2E2E;
  line-height: 1;
  margin-left: 4px;
}

.mmv7-close-btn {
  background: none;
  border: none;
  padding: 0;
  margin-left: 20px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mmv7-user-section {
  display: flex;
  padding: 8px 20px;
  align-items: center;
  background: #F2F2F2;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

.mmv7-avatar {
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
}

.mmv7-welcome-text {
  font-size: 1.6rem;
  font-family: "Inter 600", sans-serif;
  color: #000;
  letter-spacing: -0.32px;
  line-height: 1.4;
}

.mmv7-logout-btn {
  height: 38px;
  padding: 8px 10px;
  gap: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #BEC3C5;
  color: #2E2E2E;
  background-color: white;
  font-size: 1.4rem;
  font-family: "Inter 700", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-sizing: border-box;
}

.mmv7-scroll-area {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  padding: 16px 20px 24px;
}

.mmv7-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: transparent;
  width: 100%;
}

.mmv7-menu-item:hover {
  text-decoration: none;
}

.mmv7-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2E2E2E;
  font-family: "Inter 600", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.28px;
  line-height: normal;
}

.mmv7-icon-box {
  display: flex;
  padding: 5px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  background: #F2F2F2;
  flex-shrink: 0;
  box-sizing: border-box;
}

.mmv7-menu-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.mmv7-arrow-icon {
  width: 14px;
  height: 14px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.mmv7-earn-wrapper {
  border-top: 1px solid #E4E4E4;
  width: 100%;
  background: #fff;
}

.mmv7-earn-toggle {
  width: 100%;
  padding: 12px 0;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mmv7-earn-label {
  color: #FF314A;
  font-family: "Inter 600", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.32px;
  line-height: normal;
}

.mmv7-earn-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mmv7-earn-toggle[aria-expanded=true] .mmv7-earn-chevron {
  transform: rotate(180deg);
}

.mmv7-earn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0px;
  text-decoration: none;
  background: #fff;
  width: 100%;
}

.mmv7-earn-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2E2E2E;
  font-family: "Inter 600", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.24px;
  line-height: normal;
}

.mmv7-apply-tag {
  font-size: 1.2rem;
  font-family: "Inter 600", sans-serif;
  color: #2E2E2E;
  flex-shrink: 0;
}

.mmv7-coming-soon-tag {
  color: #2E2E2E;
  font-size: 1.2rem;
  font-family: "Inter 400", sans-serif;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .only-mobile {
    max-height: 70vh;
    overflow: auto;
  }
}

/*# sourceMappingURL=join-groomit-nav.css.map */