:root {
  --page-bg: #fffdf8;
  --card-bg: rgba(255, 255, 255, 0.94);
  --card-border: rgba(225, 197, 136, 0.45);
  --text-main: #24313a;
  --text-soft: #5e6b72;
  --accent: #ff8b6a;
  --accent-2: #00a57a;
  --accent-3: #2d63ff;
  --accent-soft: #fff0d6;
  --secondary: #86c8bc;
  --shadow: 0 18px 45px rgba(54, 61, 68, 0.08);
  --radius-xl: 14px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(255, 206, 151, 0.4), transparent 26%),
    radial-gradient(circle at top right, rgba(134, 200, 188, 0.28), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fff9ef 100%);
  color: var(--text-main);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04) 0%, rgba(255, 253, 248, 0.16) 14%, rgba(255, 249, 239, 0.3) 34%, rgba(255, 249, 239, 0.72) 58%, rgba(255, 249, 239, 0.96) 78%, rgba(255, 249, 239, 1) 100%),
    linear-gradient(90deg, rgba(255, 249, 239, 0.3), rgba(255, 253, 248, 0.02)),
    url("images/cdc-building.png") center -220px / cover no-repeat;
}

.page-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 206, 151, 0.24), transparent 24%),
    radial-gradient(circle at top right, rgba(134, 200, 188, 0.2), transparent 26%);
  z-index: -1;
}

.page-shell {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  padding: 32px 48px 56px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 227, 0.82)),
    rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero-copy,
.section-heading,
.basket-grid,
.basket-card,
.basket-body,
.basket-heading,
.basket-image-frame {
  display: flex;
}

.hero-copy {
  flex: 1 1 100%;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.eyebrow,
.basket-number {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.hero h1,
.section-heading h2,
.basket-heading h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 1;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ticket-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 247, 227, 0.76));
  box-shadow: var(--shadow);
}

.ticket-pricing-label {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-soft);
  text-align: center;
  white-space: normal;
  max-width: 100%;
}

.ticket-options {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.ticket-option {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 30px 54px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(225, 197, 136, 0.38);
}

.ticket-option--highlight {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(45, 99, 255, 0.22);
  position: relative;
}

.ticket-qty {
  font-family: "Baloo 2", cursive;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.ticket-option--highlight .ticket-qty {
  color: var(--accent-3);
}

.ticket-unit {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-right: 10px;
}

.ticket-price {
  font-family: "Baloo 2", cursive;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-2);
}

.ticket-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent-3);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: end;
  gap: 16px;
  padding-inline: 2px;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.basket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}

.basket-card {
  flex-direction: column;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.basket-card:nth-child(3n + 1) .basket-number {
  color: var(--accent);
}

.basket-card:nth-child(3n + 2) .basket-number {
  color: var(--accent-2);
}

.basket-card:nth-child(3n) .basket-number {
  color: var(--accent-3);
}

.basket-image-frame {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 270px;
  max-height: 270px;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 240, 214, 0.9), rgba(134, 200, 188, 0.32));
  cursor: zoom-in;
}

.basket-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: rgba(27, 35, 42, 0.68);
}

.image-modal[hidden] {
  display: none;
}

.image-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.image-modal-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 1280px);
  height: min(100%, 92vh);
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}

.image-modal-stage.is-dragging {
  cursor: grabbing;
}

.image-modal-image {
  max-width: none;
  max-height: none;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  will-change: transform;
}

.basket-body {
  flex: 1 1 auto;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
}

.basket-price {
  font-weight: 700;
}

.basket-heading {
  flex-direction: column;
  gap: 8px;
}

.basket-heading h3 {
  font-size: 1.75rem;
  line-height: 1.05;
}

.basket-contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.55;
}

.basket-contents li::marker {
  color: var(--secondary);
}

@media (max-width: 2400px) {
  .page-shell {
    max-width: 1800px;
  }
}

@media (max-width: 1900px) {
  .page-shell {
    max-width: 1350px;
  }
}

@media (max-width: 800px) {
  .page-shell {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1080px) {
  .ticket-option {
    gap: 10px;
    padding: 21px 38px;
  }

  .ticket-qty {
    font-size: 1.96rem;
  }

  .ticket-unit {
    font-size: 1.02rem;
    margin-right: 7px;
  }

  .ticket-price {
    font-size: 1.58rem;
  }

  .ticket-badge {
    top: -11px;
    right: 14px;
    padding: 5px 11px;
    font-size: 0.74rem;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 18px 14px 42px;
    gap: 18px;
  }

  .hero {
    padding: 22px;
  }

  .hero h1 {
    max-width: none;
  }

  .ticket-pricing-label {
    white-space: normal;
  }

  .basket-grid {
    grid-template-columns: 1fr;
  }

  .basket-image-frame {
    min-height: 220px;
    max-height: 220px;
  }

  .image-modal {
    padding: 16px;
  }

  .image-modal-close {
    top: 12px;
    right: 12px;
  }
}