/* Simple Living Chef centralized Support dropdown — v1 */
.slc-support-widget {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.25;
}

.slc-support-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid #d4af37;
  border-radius: 999px;
  background: #263b4c;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
  box-shadow: 0 6px 20px rgba(15, 23, 42, .22);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.slc-support-button:hover,
.slc-support-button:focus-visible,
.slc-support-button[aria-expanded="true"] {
  background: #1d2f3d;
  border-color: #e1c45e;
}

.slc-support-button:focus-visible,
.slc-support-menu a:focus-visible {
  outline: 3px solid rgba(212, 175, 55, .45);
  outline-offset: 2px;
}

.slc-support-button__icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #d4af37;
  color: #1d2f3d;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 800;
}

.slc-support-button__chevron {
  width: 12px;
  height: 12px;
  transition: transform .18s ease;
}

.slc-support-button[aria-expanded="true"] .slc-support-button__chevron {
  transform: rotate(180deg);
}

.slc-support-menu {
  width: min(270px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(38, 59, 76, .2);
  border-radius: 10px;
  background: #fff;
  color: #263b4c;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .22);
}

.slc-support-menu[hidden] {
  display: none !important;
}

.slc-support-menu__heading {
  margin: 0;
  padding: 12px 14px 9px;
  border-bottom: 1px solid #e7e5e4;
  background: #f8f6f0;
  color: #263b4c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.slc-support-menu a {
  display: block;
  padding: 11px 14px;
  border-bottom: 1px solid #ece9e2;
  background: #fff;
  color: #263b4c;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.slc-support-menu a:last-child {
  border-bottom: 0;
}

.slc-support-menu a:hover,
.slc-support-menu a:focus-visible,
.slc-support-menu a[aria-current="page"] {
  background: #fff9e8;
  color: #765d0b;
}

.slc-support-menu a span {
  display: block;
  margin-top: 2px;
  color: #667085;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 520px) {
  .slc-support-widget {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .slc-support-button {
    min-height: 44px;
    padding: 10px 12px;
  }
}

@media print {
  .slc-support-widget {
    display: none !important;
  }
}
