.customer-service {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.cs-btn {
  background: #ff3fa4;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  box-shadow: 0 0 24px #ff3fa488, 0 2px 12px #ff3fa466;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2503;
}
.cs-btn:hover {
  background: #ff8edb;
  color: #2d0036;
  box-shadow: 0 0 32px #ff8edbcc;
}
.cs-bubble {
  background: #fff;
  color: #2d0036;
  border-radius: 22px 22px 22px 8px;
  box-shadow: 0 4px 32px #ff8edb55, 0 2px 16px #ff3fa488;
  padding: 28px 48px 24px 28px;
  margin-bottom: 10px;
  font-size: 1.13em;
  position: relative;
  animation: bubbleIn 0.4s;
  max-width: 340px;
  z-index: 2502;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid #ff8edb;
  transition: box-shadow 0.18s, border 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
  min-height: 64px;
  overflow: visible;
  box-sizing: border-box;
  text-align: center;
}
.cs-bubble:hover {
  box-shadow: 0 0 32px #ff8edbcc, 0 2px 12px #ff3fa488;
  border-color: #ff3fa4;
  background: #fff;
  color: #ff3fa4;
}
.cs-bubble-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  word-break: break-word;
}
.cs-bubble .bubble-icon {
  font-size: 1.6em;
  margin-right: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 8px #ff8edb);
  flex-shrink: 0;
  margin-left: 2px;
}
.cs-bubble .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #fff 60%, #ff8edb 100%);
  border: 2.5px solid #ff3fa4;
  color: #ff3fa4;
  font-size: 1.6em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 8px #ff8edb88, 0 0 4px #ff3fa4cc;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
  outline: none;
  border-bottom-left-radius: 16px;
  padding: 0;
}
.cs-bubble .close-btn:hover {
  background: linear-gradient(135deg, #ff3fa4 60%, #ff8edb 100%);
  color: #fff;
  border-color: #ff8edb;
  box-shadow: 0 0 48px #ff8edbcc, 0 2px 16px #ff3fa488;
  transform: translateY(-50%) scale(1.15);
}
.cs-bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #fff 60%, #ff8edb 100%);
  border: 2.5px solid #ff3fa4;
  color: #ff3fa4;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  box-shadow: 0 2px 8px #ff8edb88, 0 0 4px #ff3fa4cc;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
  outline: none;
  border-bottom-left-radius: 12px;
}
.cs-bubble-close:hover {
  background: linear-gradient(135deg, #ff3fa4 60%, #ff8edb 100%);
  color: #fff;
  border-color: #ff8edb;
  box-shadow: 0 0 24px #ff8edbcc, 0 2px 8px #ff3fa488;
  transform: scale(1.12) rotate(-8deg);
}
.cs-bubble-content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.08em;
  color: #2d0036;
  line-height: 1.7;
  word-break: break-word;
}
.cs-bubble-close-btn {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
}
@media (max-width: 600px) {
  .customer-service {
    position: fixed !important;
    right: 12px !important;
    left: auto !important;
    bottom: env(safe-area-inset-bottom,72px) !important;
    top: auto !important;
    width: auto !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    z-index: 99998 !important;
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100vw !important;
  }
  .cs-btn {
    position: fixed !important;
    right: 12px !important;
    bottom: 15px !important;
    left: auto !important;
    top: auto !important;
    z-index: 99998 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .cs-bubble {
    z-index: 2504 !important;
    position: fixed !important;
    bottom: 80px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
  }
  .cs-btn {
    z-index: 2503 !important;
  }
  .cs-bubble {
    max-width: 96vw !important;
    width: 100%;
    min-width: 0 !important;
    box-sizing: border-box !important;
    word-break: break-all !important;
    white-space: pre-line !important;
    font-size: 3.8vw !important;
    padding: 2.8vw 7vw 2.8vw 2.8vw !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-radius: 5vw 5vw 5vw 2vw !important;
    right: 0 !important;
    left: 0 !important;
    margin: 0 auto 2vw auto !important;
    min-height: 12vw !important;
    display: flex !important;
    align-items: flex-start !important;
  }
  .cs-bubble-close {
    top: 2vw !important;
    right: 2vw !important;
    width: 6vw !important;
    height: 6vw !important;
    font-size: 4vw !important;
    border-bottom-left-radius: 2vw !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
  }
  .cs-bubble .close-btn {
    right: 6px;
    top: 6px;
    width: 28px;
    height: 28px;
    font-size: 1em;
  }
  .cs-bubble-close-btn {
    top: 2vw !important;
    right: 2vw !important;
    width: 6vw !important;
    height: 6vw !important;
    font-size: 4vw !important;
    z-index: 2147483647 !important;
    pointer-events: auto !important;
  }
} 