.r5f-wrap {
  position: fixed;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  right: 32px !important;
    bottom: 120px !important;
}

@media screen and (max-width: 960px) {
  .r5f-wrap {
    right: 16px !important;
    bottom: 32px !important;
  }
}

.r5f-list {
  display: none;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.r5f-wrap.open .r5f-list {
  display: flex;
}

.r5f-trigger {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #3c2f23;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.r5f-ic {
  display: block;
}

.r5f-ic-x {
  display: none;
}

.r5f-wrap.open .r5f-ic-msg {
  display: none;
}

.r5f-wrap.open .r5f-ic-x {
  display: block;
}

.r5f-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d1ad70;
  color: #3c2f23;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  min-width: 180px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.r5f-text {
  font-family: var(--font-noto);
  font-size: var(--font-size-16);
  font-weight: var(--font-semibold);
  letter-spacing: .2px;
}

.r5f-list a:hover {
  color: #3c2f23 !important;
}

.r5f-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #3c2f23;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.r5f-icon svg {
  width: 32px;
  height: 32px;
}

.r5f-ic-x svg {
  width: 24px;
  height: 24px;
      position: relative;
    top: 2px;
}

.r5f-wa .r5f-icon svg {
  width: 40px;
  height: 40px;
}

.r5f-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.r5f-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.r5f-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 300px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  outline: none;
}

.r5f-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: #3c2f23;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.r5f-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.r5f-qr {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.r5f-qr-missing {
  font-size: 14px;
  color: #666;
  text-align: center;
}