.custom-swipe-plugin-for-lp-swipe-deck {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.custom-swipe-plugin-for-lp-card-container {
  position: relative;
  width: 300px;
  height: 400px;
  margin-bottom: 20px;
}

.custom-swipe-plugin-for-lp-play-wrapper {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-50%);
}

.custom-swipe-plugin-for-lp-play-left {
  left: 0%;
}

.custom-swipe-plugin-for-lp-play-right {
  right: 0%;
}

.custom-swipe-plugin-for-lp-play-circle {
  width: 40px;
  height: 40px;
  background-color: #D7AEEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotate-icon {
  transform: rotate(180deg);
}

.custom-swipe-plugin-for-lp-play-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.custom-swipe-plugin-for-lp-play-label {
  margin-top: 0px;
  font-size: 16px;
  font-weight: bold;
  color: #D7AEEF;
  text-align: center;
}

.custom-swipe-plugin-for-lp-progress-bar {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
  border: 1px solid rgb(233, 81, 142);
}

.custom-swipe-plugin-for-lp-progress {
  height: 100%;
  background: linear-gradient(to right, rgb(233, 81, 142), rgb(255, 140, 190));
  transition: width 0.3s ease;
  border-radius: 8px;
}

.custom-swipe-plugin-for-lp-swipe {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom-swipe-plugin-for-lp-card {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  object-fit: cover;
  transform: translate(0, 0);
}

.custom-swipe-plugin-for-lp-card:nth-child(n) {
  z-index: auto;
  transform: translate(0, 0);
}

.custom-swipe-plugin-for-lp-info-box {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 10px;
  border-radius: 10px;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.3);
}

.custom-swipe-plugin-for-lp-therapist-info {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 3px;
}

.custom-swipe-plugin-for-lp-store-name {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}

.custom-swipe-plugin-for-lp-buttons {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}

.custom-swipe-plugin-for-lp-like-icon,
.custom-swipe-plugin-for-lp-dislike-icon {
  position: absolute;
  opacity: 1;
  z-index: 3;
  width: 100px;
  height: 100px;
  top: 10%;
  left: 80%;
  transform: translate(-50%, -50%) rotate(15deg);
}

.custom-swipe-plugin-for-lp-reload-button {
  position: absolute;
  background-color: rgb(233, 81, 142);
  border: none;
  color: white;
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  white-space: nowrap;
  width: auto;
  z-index: 2;
}

.custom-swipe-plugin-for-lp-reload-button.show {
  opacity: 1;
}

.custom-swipe-plugin-for-lp-inactive {
  display: none;
}

@keyframes popFloatQuick {
  0% {
    transform: scale(0.3) translateY(0);
    opacity: 0;
  }
  15% {
    transform: scale(1.4) translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(-100px);
    opacity: 0;
  }
}

.animated-heart-svg {
  width: 40px;
  height: 40px;
  animation: popFloatQuick 2s ease-out forwards;
  pointer-events: none;
  z-index: 100;
  position: absolute;
  filter: drop-shadow(0 0 3px rgb(233, 81, 142));
}

.swipe-text-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  font-size: 72px;
  font-weight: bold;
  opacity: 0;
  animation: swipeBounce 1s forwards cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  user-select: none;
  text-shadow:
    0 0 10px #D7AEEF,
    0 0 25px #B080F0,
    0 0 40px #8A5CEB;
  z-index: 1000;
}

.skip-text-skip {
  color: #4be0d4;
}

.skip-text-like {
  color: rgb(233, 81, 142);
}

@keyframes swipeBounce {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%) rotate(-15deg) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -40%) rotate(-15deg) scale(1.1);
  }
  70% {
    transform: translate(-50%, -50%) rotate(-15deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-15deg) scale(1);
  }
}

@keyframes swipeHint {
  0%   { transform: translateX(0) rotate(0deg); }
  25%  { transform: translateX(-25px) rotate(-10deg); }
  50%  { transform: translateX(0) rotate(0deg); }
  75%  { transform: translateX(25px) rotate(10deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

.swipe-hint-animation {
  animation: swipeHint 1.5s ease-in-out;
}
