.face-yoga-prices {
  margin: 1.5rem auto;
  padding: 0 1rem;
  display: grid;
}
.face-yoga-prices .main-price {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  text-align: center;
  display: grid;
  padding: 1.8rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 15px 45px rgba(17, 153, 142, 0.35);
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.face-yoga-prices .main-price::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
.face-yoga-prices .main-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(17, 153, 142, 0.45);
}
.face-yoga-prices .main-price .head-info {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-bottom: 0.3rem;
}
.face-yoga-prices .main-price .package-list {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  z-index: 1;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}
.face-yoga-prices .main-price .off-percent {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  width: fit-content;
  margin: 0.3rem auto;
  z-index: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: bounce 2s ease-in-out infinite;
}
.face-yoga-prices .main-price .last-price {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  text-decoration: line-through;
  font-weight: 600;
  z-index: 1;
  margin: 0.2rem 0;
}
.face-yoga-prices .main-price .extra {
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  margin: 0.3rem auto;
  width: 90%;
  z-index: 1;
  backdrop-filter: blur(5px);
  border: 2px dashed rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
.face-yoga-prices .main-price .cur-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  width: fit-content;
  margin: 0.5rem auto;
  padding: 0.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  z-index: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}
.face-yoga-prices .price-info {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.face-yoga-prices .price-info .each-price {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 2px solid rgba(17, 153, 142, 0.1);
  align-items: center;
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.face-yoga-prices .price-info .each-price:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 18px rgba(17, 153, 142, 0.15);
}
.face-yoga-prices .price-info .each-price .left {
  text-align: right;
}
.face-yoga-prices .price-info .each-price .left .title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.3rem;
}
.face-yoga-prices .price-info .each-price .left .price-info {
  color: #777;
  padding: 0.2rem 0;
  font-size: 0.85rem;
  font-weight: 500;
}
.face-yoga-prices .price-info .each-price .right {
  text-align: center;
}
.face-yoga-prices .price-info .each-price .right .old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.face-yoga-prices .price-info .each-price .right .cur-price {
  padding: 0.3rem 0;
  font-size: 1.8rem;
  font-weight: 900;
  color: #11998e;
}
.face-yoga-prices .start {
  margin-top: 0.8rem;
}
.face-yoga-prices .start button {
  margin: 1rem auto 0.5rem;
  background: #fff;
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  color: #11998e;
  width: 100%;
  font-weight: 900;
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.face-yoga-prices .start button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(17, 153, 142, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.face-yoga-prices .start button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: #fff;
  color: #0d7c74;
}
.face-yoga-prices .start button:hover::before {
  width: 300px;
  height: 300px;
}
.face-yoga-prices .start button:active {
  transform: translateY(-2px) scale(1);
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@media (max-width: 900px) {
  .face-yoga-prices {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
  .face-yoga-prices .main-price {
    padding: 1.5rem 1rem;
  }
  .face-yoga-prices .main-price .head-info {
    font-size: 1.3rem;
  }
  .face-yoga-prices .main-price .cur-price {
    font-size: 2.2rem;
  }
}
@media (max-width: 500px) {
  .face-yoga-prices .main-price {
    padding: 1.3rem 1rem;
  }
  .face-yoga-prices .main-price .head-info {
    font-size: 1.2rem;
  }
  .face-yoga-prices .main-price .cur-price {
    font-size: 2rem;
    padding: 0.4rem 1.2rem;
  }
  .face-yoga-prices .main-price .off-percent {
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
  }
  .face-yoga-prices .start button {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}

.workout-price {
  max-width: 500px;
  width: 90%;
  margin: 1.5rem auto;
  box-shadow: 0 10px 40px rgba(17, 153, 142, 0.15);
  text-align: center;
  padding: 1.5rem 1.2rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
  transition: all 0.3s ease;
}
.workout-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(17, 153, 142, 0.25);
}
.workout-price .label {
  font-size: 1.4rem;
  padding: 0.4rem;
  font-weight: 900;
  color: #11998e;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.workout-price .last-price {
  color: #666;
  text-decoration: line-through;
  font-size: 1.1rem;
  margin: 0.3rem 0;
  font-weight: 600;
}
.workout-price .extra {
  font-weight: 800;
  padding: 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  border-radius: 0.8rem;
  margin: 0.8rem auto;
  width: 85%;
  box-shadow: 0 4px 18px rgba(17, 153, 142, 0.4);
  font-size: 1rem;
}
.workout-price .cur-price {
  font-size: 2.2rem;
  padding: 0.8rem 0;
  font-weight: 900;
  color: #11998e;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.workout-price .start {
  margin-top: 0.8rem;
}
.workout-price .start button {
  color: white;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
}
.workout-price .start button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(17, 153, 142, 0.5);
}
.workout-price .start button:active {
  transform: translateY(-2px) scale(1);
}.workout-prices {
  margin: 1.5rem auto;
  padding: 0 1rem;
  display: grid;
}
.workout-prices .main-price {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
  text-align: center;
  display: grid;
  padding: 1.8rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 15px 45px rgba(235, 51, 73, 0.35);
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.workout-prices .main-price::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
.workout-prices .main-price:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(235, 51, 73, 0.45);
}
.workout-prices .main-price .head-info {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-bottom: 0.3rem;
}
.workout-prices .main-price .label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  z-index: 1;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
}
.workout-prices .main-price .off-percent {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  width: fit-content;
  margin: 0.3rem auto;
  z-index: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: bounce 2s ease-in-out infinite;
}
.workout-prices .main-price .last-price {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  text-decoration: line-through;
  font-weight: 600;
  z-index: 1;
  margin: 0.2rem 0;
}
.workout-prices .main-price .extra {
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.8rem;
  margin: 0.3rem auto;
  width: 90%;
  z-index: 1;
  backdrop-filter: blur(5px);
  border: 2px dashed rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
.workout-prices .main-price .cur-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  width: fit-content;
  margin: 0.5rem auto;
  padding: 0.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  z-index: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
}
.workout-prices .start {
  margin-top: 0.8rem;
}
.workout-prices .start button {
  margin: 1rem auto 0.5rem;
  background: #fff;
  font-size: 1.4rem;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  color: #eb3349;
  width: 100%;
  font-weight: 900;
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.workout-prices .start button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(235, 51, 73, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.workout-prices .start button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: #fff;
  color: #c72838;
}
.workout-prices .start button:hover::before {
  width: 300px;
  height: 300px;
}
.workout-prices .start button:active {
  transform: translateY(-2px) scale(1);
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@media (max-width: 900px) {
  .workout-prices {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
  .workout-prices .main-price {
    padding: 1.5rem 1rem;
  }
  .workout-prices .main-price .head-info {
    font-size: 1.3rem;
  }
  .workout-prices .main-price .label {
    font-size: 1rem;
  }
  .workout-prices .main-price .cur-price {
    font-size: 2.2rem;
  }
}
@media (max-width: 500px) {
  .workout-prices .main-price {
    padding: 1.3rem 1rem;
  }
  .workout-prices .main-price .head-info {
    font-size: 1.2rem;
  }
  .workout-prices .main-price .label {
    font-size: 0.95rem;
  }
  .workout-prices .main-price .cur-price {
    font-size: 2rem;
    padding: 0.4rem 1.2rem;
  }
  .workout-prices .main-price .off-percent {
    font-size: 1.1rem;
    padding: 0.3rem 1rem;
  }
  .workout-prices .start button {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}