.PromotionsPage {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(14px, 2vw, 20px);
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

.PromotionsHero {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(24px, 4vw, 48px);
  justify-content: center;
  border-radius: 20px;
  background: radial-gradient(circle at top left, #e2fbff 0%, #ffffff 60%);
  box-shadow: 0 35px 80px rgba(0, 97, 116, 0.12);
}

.PromotionsHeroIntro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.PromotionsEyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #00838f;
  margin: 0;
}

.PromotionsHeroTitle {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #031f25;
  line-height: 1.15;
}

.PromotionsHeroLead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #476370;
}

.PromotionsHighlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.PromotionsHighlights li {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(3, 31, 37, 0.08);
  color: #05313a;
  font-size: 0.9rem;
}

.PromotionsHeroStats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.PromotionsHeroStat {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(3, 31, 37, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.PromotionsHeroStatValue {
  font-size: 1.6rem;
  font-weight: 700;
  color: #031f25;
}

.PromotionsHeroStatLabel {
  font-size: 0.9rem;
  color: #4a6773;
}

.PromotionsGridSection {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.PromotionsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.PromotionsCard {
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(135deg, rgba(4, 123, 167, 0.14), rgba(21, 38, 74, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.PromotionsCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.3);
}

.PromotionsCard[data-promotion-highlighted=true] {
  outline: 2px solid rgba(255, 208, 128, 0.85);
  outline-offset: 3px;
  box-shadow: 0 35px 80px rgba(255, 208, 128, 0.35);
}

.PromotionsCardMedia {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 16, 32, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.PromotionsCardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.PromotionsCard:hover .PromotionsCardMedia img {
  transform: scale(1.03);
}

.PromotionsCardHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.PromotionsCardBadge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.PromotionsCardDiscount {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffe082;
}

.PromotionsCardTitle {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #ffffff;
}

.PromotionsCardDescription {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.PromotionsDoctorsBlock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.PromotionsMetaLabel {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.PromotionsDoctorsList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.PromotionsDoctorChip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.12);
}

.PromotionsDoctorLink {
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.PromotionsDoctorLink:hover {
  text-decoration: underline;
}

.PromotionsCardFooter {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px 16px;
}

.PromotionsCardDeadline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  min-width: 0;
}

.PromotionsCardActionWrap {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  min-width: 0;
}

.PromotionsCardActionWrap > label {
  display: flex;
  width: 100%;
}

.PromotionsCardActionWrap :global(.TriumfButton) {
  width: 100%;
}

.PromotionsCardAction {
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, #00d3db, #00a0a9);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  box-shadow: 0 16px 30px rgba(0, 163, 170, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.PromotionsCardAction:hover,
.PromotionsCardAction:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 163, 170, 0.35);
}

.PromotionsCardHighlighted {
  outline: 2px solid rgba(255, 208, 128, 0.8);
  box-shadow: 0 35px 80px rgba(255, 208, 128, 0.35);
}

.PromotionsEmpty {
  font-size: 1rem;
  color: #4a5568;
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(6, 32, 36, 0.08);
}

.seasonAutumn {
  background: linear-gradient(135deg, rgba(173, 101, 32, 0.35), rgba(23, 23, 23, 0.9));
  border-color: rgba(255, 207, 122, 0.45);
}
.seasonAutumn .PromotionsCardBadge {
  background: rgba(255, 192, 122, 0.2);
  border-color: rgba(255, 192, 122, 0.4);
}

.seasonWinter {
  background: linear-gradient(135deg, rgba(47, 104, 170, 0.4), rgba(14, 20, 40, 0.92));
  border-color: rgba(207, 231, 255, 0.35);
}
.seasonWinter .PromotionsCardBadge {
  background: rgba(207, 231, 255, 0.2);
  border-color: rgba(207, 231, 255, 0.35);
}
.seasonWinter .PromotionsCardDiscount {
  color: #b9ddff;
}

.seasonSpring {
  background: linear-gradient(135deg, rgba(214, 120, 173, 0.32), rgba(26, 32, 52, 0.92));
  border-color: rgba(255, 198, 230, 0.35);
}
.seasonSpring .PromotionsCardBadge {
  background: rgba(255, 198, 230, 0.2);
  border-color: rgba(255, 198, 230, 0.35);
}

.seasonSummer {
  background: linear-gradient(135deg, rgba(255, 208, 122, 0.32), rgba(12, 30, 37, 0.92));
  border-color: rgba(255, 224, 138, 0.35);
}
.seasonSummer .PromotionsCardBadge {
  background: rgba(255, 224, 138, 0.2);
  border-color: rgba(255, 224, 138, 0.35);
}

.PromotionsSkeletonHero {
  background: rgba(255, 255, 255, 0.5);
  border-style: dashed;
}

.PromotionsSkeletonLines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.PromotionsSkeletonLine,
.PromotionsSkeletonStat,
.PromotionsSkeletonCard {
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(6, 32, 36, 0.06), rgba(6, 32, 36, 0.12), rgba(6, 32, 36, 0.06));
  background-size: 200% 100%;
  animation: promotions-skeleton-pulse 1.35s ease-in-out infinite;
}

.PromotionsSkeletonLine {
  height: 16px;
  width: min(420px, 80%);
}

.PromotionsSkeletonStat {
  height: 72px;
}

.PromotionsSkeletonCard {
  height: 240px;
}

@media (max-width: 640px) {
  .PromotionsHero {
    padding: 20px;
  }
  .PromotionsHighlights {
    grid-template-columns: 1fr;
  }
  .PromotionsCard {
    padding: 20px;
  }
  .PromotionsCardFooter {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .PromotionsCardActionWrap {
    width: 100%;
  }
  .PromotionsCardAction {
    width: 100%;
    min-width: 0;
  }
}
@keyframes promotions-skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.PromotionsPage {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(1.25rem, 4vw, 3rem) clamp(1rem, 5vw, 4rem);
  display: flex;
  justify-content: center;
  width: 100%;
}

.Promotions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.PromotionsHeader {
  font-size: 1.75rem;
  font-weight: 600;
  color: #062024;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .PromotionsHeader {
    font-size: 2rem;
  }
}
.PromotionsList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.PromotionsSkeleton {
  width: min(960px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 16px;
  border: 1px solid rgba(6, 32, 36, 0.08);
  background: linear-gradient(145deg, rgba(248, 250, 252, 0.9), #ffffff);
  box-shadow: 0 12px 30px rgba(6, 32, 36, 0.08);
}

.PromotionsSkeletonHeader,
.PromotionsSkeletonCard {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(6, 32, 36, 0.06), rgba(6, 32, 36, 0.12), rgba(6, 32, 36, 0.06));
  background-size: 200% 100%;
  animation: promotions-skeleton-pulse 1.35s ease-in-out infinite;
}

.PromotionsSkeletonHeader {
  height: 32px;
  width: 60%;
  align-self: center;
}

.PromotionsSkeletonGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.PromotionsSkeletonCard {
  height: 180px;
  border-radius: 18px;
}

.PromotionsBanner {
  width: 500px;
  min-width: 314px;
  background: linear-gradient(135deg, rgba(86, 182, 203, 0.979), rgba(162, 68, 140, 0.848));
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 640px) {
  .PromotionsBanner {
    width: 500px;
  }
}

.PromotionsBanner:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.PromotionsBannerHighlighted {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), #87ceeb); /* Brighter gradient for highlight */
  border: 2px solid #ffd700; /* Gold border for emphasis */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.PromotionsBannerShake {
  animation: shake 0.8s ease-in-out;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-4px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(4px);
  }
}
.PromotionsContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  height: 100%;
}

.PromotionsTitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffc07a; /* brighter yet calm warm tone */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.34);
  letter-spacing: 0.2px;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.PromotionsDescription {
  font-size: 1rem;
  color: #fff3e8; /* calmer and lighter to separate from title */
  line-height: 1.55;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
  margin-bottom: 0.75rem;
}

.PromotionsDuration {
  font-size: 0.875rem;
  color: #ffd8b5; /* warm pastel amber (softer) */
  font-style: italic;
}

.PromotionsDiscountBadge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: #f4a261; /* soft warm orange */
  color: #2b2118; /* warm dark text */
  font-weight: 800;
  font-style: normal;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.PromotionsMetaLabel {
  font-weight: 700;
  color: #ffe1b3; /* warm label (distinct from duration) */
  font-style: normal;
}

.PromotionsEmpty {
  font-size: 1.25rem;
  color: #4a5568;
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: auto;
}

.PromotionsDoctors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 4px;
}

.PromotionsDoctor {
  white-space: nowrap;
}

.PromotionsDoctorLink {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255, 184, 119, 0.26); /* more distinct warm chip bg */
  border: 1px solid rgba(255, 184, 119, 0.65);
  color: #fff2e0; /* warm near-white */
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.PromotionsDoctorLink:hover {
  background: rgba(255, 184, 119, 0.34);
  border-color: rgba(255, 184, 119, 0.78);
}

/* Seasonal theming (text colors only; background stays as-is) */
.seasonAutumn .PromotionsTitle {
  color: #ffc07a;
}
.seasonAutumn { /* brighter calm warm */ }
.seasonAutumn .PromotionsDescription {
  color: #fff0e2;
}
.seasonAutumn { /* softer */ }
.seasonAutumn .PromotionsDuration {
  color: #ffd199;
}
.seasonAutumn { /* distinct meta */ }
.seasonAutumn .PromotionsMetaLabel {
  color: #ffe1b3;
}
.seasonAutumn .PromotionsDoctorLink {
  background: rgba(255, 184, 119, 0.26);
  border-color: rgba(255, 184, 119, 0.65);
  color: #fff6ef;
}

.seasonWinter .PromotionsTitle {
  color: #cfe7ff;
}
.seasonWinter { /* stronger title */ }
.seasonWinter .PromotionsDescription {
  color: #eff7ff;
}
.seasonWinter { /* lighter body */ }
.seasonWinter .PromotionsDuration {
  color: #c3e0ff;
}
.seasonWinter .PromotionsMetaLabel {
  color: #d9edff;
}
.seasonWinter .PromotionsDoctorLink {
  background: rgba(180, 220, 255, 0.25);
  border-color: rgba(180, 220, 255, 0.6);
  color: #f7fbff;
}

.seasonSpring .PromotionsTitle {
  color: #ffc6e6;
}
.seasonSpring { /* brighter accent */ }
.seasonSpring .PromotionsDescription {
  color: #fff0fa;
}
.seasonSpring { /* soft */ }
.seasonSpring .PromotionsDuration {
  color: #ffd9ee;
}
.seasonSpring .PromotionsMetaLabel {
  color: #ffe2f4;
}
.seasonSpring .PromotionsDoctorLink {
  background: rgba(255, 198, 230, 0.25);
  border-color: rgba(255, 198, 230, 0.62);
  color: #fff7fb;
}

.seasonSummer .PromotionsTitle {
  color: #ffd07a;
}
.seasonSummer { /* vivid sunny */ }
.seasonSummer .PromotionsDescription {
  color: #fff6d6;
}
.seasonSummer { /* gentle body */ }
.seasonSummer .PromotionsDuration {
  color: #ffe3a8;
}
.seasonSummer .PromotionsMetaLabel {
  color: #ffe9b6;
}
.seasonSummer .PromotionsDoctorLink {
  background: rgba(255, 224, 138, 0.26);
  border-color: rgba(255, 224, 138, 0.62);
  color: #fffaf0;
}

.SeasonEmoji {
  margin-left: 8px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

@media (max-width: 640px) {
  .PromotionsBanner {
    padding: 1rem;
  }
  .PromotionsTitle {
    font-size: 1.25rem;
  }
  .PromotionsDescription {
    font-size: 0.875rem;
  }
  .PromotionsDuration {
    font-size: 0.75rem;
  }
}
@keyframes promotions-skeleton-pulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}