/* Sunny Quick Menu — Figma node 9:1424, 120×240 (rem 베이스: html 10px) */

.sunny-quick-menu {
  position: fixed !important;
  right: 2rem;
  bottom: 4rem;
  z-index: 50;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  min-height: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.sunny-quick-menu *,
.sunny-quick-menu *::before,
.sunny-quick-menu *::after {
  box-sizing: border-box;
}

.sunny-quick-menu__panel {
  display: flex;
  flex-direction: column;
  width: 12rem;
  height: 24rem;
  border-radius: 2rem;
  background-color: #ff671f;
  box-shadow: 0 0.4rem 1.6rem rgba(255, 103, 31, 0.35);
  overflow: hidden;
  pointer-events: auto;
}

.sunny-quick-menu__item {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 0.8rem;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.2s ease;
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    system-ui,
    sans-serif;
}

.sunny-quick-menu__item:hover,
.sunny-quick-menu__item:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
}

.sunny-quick-menu__divider {
  flex-shrink: 0;
  height: 0.1rem;
  margin: 0 1.6rem;
  background-color: rgba(255, 255, 255, 0.22);
}

.sunny-quick-menu__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
}

.sunny-quick-menu__icon {
  display: block;
  width: 4rem;
  height: 4rem;
  color: #ffffff;
}

.sunny-quick-menu__label {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sunny-quick-menu {
    right: 1.6rem;
    bottom: 3.2rem;
  }

  .sunny-quick-menu__panel {
    width: 12rem;
    height: 24rem;
  }

  .sunny-quick-menu__label {
    font-size: 2.2rem;
  }
}
