:root {
  --primary: #db2777;
  --secondary: #fdf2f8;
  --accent: #0284c7;
  --text: #500724;
  --bg: #ffffff;
}

body {
  background-color: #fafafa;
  color: #18181b;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.card {
  background-color: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 4px;
}

/* Accessibility SR-ONLY selector rule */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gallery CSS Setup */
.gallery-main {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f4f4f5;
  border: 1px solid #e4e4e7;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Radio Switch States for Gallery */
#img-1:checked ~ .gallery-main .slide-1,
#img-2:checked ~ .gallery-main .slide-2,
#img-3:checked ~ .gallery-main .slide-3,
#img-4:checked ~ .gallery-main .slide-4 {
  opacity: 1;
  z-index: 10;
}

.thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.thumbnails label {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  flex: 1;
  transition: border-color 0.2s ease;
}

.thumbnails img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}

#img-1:checked ~ .thumbnails label[for="img-1"],
#img-2:checked ~ .thumbnails label[for="img-2"],
#img-3:checked ~ .thumbnails label[for="img-3"],
#img-4:checked ~ .thumbnails label[for="img-4"] {
  border-color: var(--primary);
}

/* CTA Button Styles */
.cta-button {
  background-color: var(--primary);
  color: #ffffff !important;
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-height: 44px;
}

.cta-button:hover {
  background-color: #be185d;
  transform: translateY(-1px);
}