.Prices {
  width: 100%;
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
}

.PricesDesktopOnly {
  display: block;
}
@media (max-width: 767px) {
  .PricesDesktopOnly {
    display: none;
  }
}

.PricesMobileOnly {
  display: none;
}
@media (max-width: 767px) {
  .PricesMobileOnly {
    display: block;
  }
}

.PricesSkeletonPage {
  padding: clamp(1rem, 3vw, 3rem) clamp(1rem, 4vw, 4rem);
  display: flex;
  justify-content: center;
  width: 100%;
}

.PricesTitle {
  font-size: 25px;
  font-weight: 600;
  color: #062024;
  margin-bottom: 20px;
  text-align: center;
}

.PricesSkeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(6, 32, 36, 0.08);
  background: linear-gradient(120deg, rgba(74, 222, 208, 0.08), rgba(6, 32, 36, 0.04));
  min-height: 280px;
  width: min(960px, 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.PricesSkeletonHeader,
.PricesSkeletonRow {
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(6, 32, 36, 0.15), rgba(255, 255, 255, 0.35));
  background-size: 200% 100%;
  animation: prices-skeleton-pulse 1.4s ease-in-out infinite;
}

.PricesSkeletonHeader {
  width: 60%;
  height: 28px;
}

.PricesSkeletonRow {
  width: 100%;
}

@keyframes prices-skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}