:root {
  --bg: #050507;
  --bg-elevated: #0f0f13;
  --card: #16161d;
  --text: #f4f4f7;
  --muted: #a4a4b3;
  --accent: #c792ea;
  --accent-strong: #ffb347;
  --border: #272730;
  --font-heading: "Playfair Display", serif;
  --font-body: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #11111b, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

main {
  padding: 5rem clamp(1.5rem, 5vw, 4rem) 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 7, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.branding h1 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

nav a {
  color: var(--muted);
}

nav a.active,
nav a:hover {
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.language-button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  font-size: 0.75rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0c0c12;
}

.language-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-top: 0.5rem;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__frame {
  width: min(420px, 100%);
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent), var(--card);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  border: 1px solid transparent;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1a1a1a;
}

.button.ghost {
  border-color: var(--border);
}

.button.timeline-toggle {
  font-size: 0.75rem;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-top: 1rem;
  justify-self: flex-start;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.grid-two article,
.split article,
.cta-card,
.disclaimer {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}

.progress-feed {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  background: linear-gradient(120deg, rgba(5, 5, 7, 0.6), rgba(199, 146, 234, 0.08));
}

.progress-feed__intro h3 {
  margin: 0.35rem 0;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-family: var(--font-heading);
}

.progress-feed__intro p {
  margin: 0.4rem 0 0;
}

.progress-feed__timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.progress-feed__timeline .timeline-toggle {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  padding: 0.35rem 1rem;
  align-self: flex-start;
  margin-left: 1.75rem;
}

.progress-feed__timeline .timeline-archive {
  width: 100%;
}

.feed-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.showcase {
  margin-top: 4rem;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(199, 146, 234, 0.1), rgba(255, 179, 71, 0.05));
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.page {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.page.narrow {
  max-width: 960px;
}

.video-highlight {
  margin: 2.5rem 0 3rem;
}

.video-window {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(199, 146, 234, 0.12), rgba(5, 5, 7, 0.75));
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
}

.video-window video {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: block;
  object-fit: cover;
  max-height: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--muted);
}

.text-link {
  font-weight: 600;
  color: var(--accent);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-left: 1px solid var(--border);
  display: grid;
  gap: 1.5rem;
}

.timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline li {
  padding: 1.5rem 0 1.5rem 1.75rem;
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  left: -0.3rem;
  top: 1.75rem;
}

.timeline__year {
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 0.3rem;
}

.timeline__media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 1rem;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(199, 146, 234, 0.1), rgba(5, 5, 7, 0.5));
  width: 100%;
  display: block;
}

.timeline__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-toggle {
  margin-top: 1rem;
}

.timeline-archive {
  margin-top: 1.5rem;
}

.timeline-archive.is-hidden {
  display: none;
}

.timeline__body {
  display: grid;
  gap: 0.35rem;
}

.timeline__body p {
  margin: 0;
}

.collection {
  margin-bottom: 4rem;
}

.collection__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
}

.collection__header {
  margin-bottom: 1.5rem;
}

.collection__header h3 {
  margin-bottom: 0.5rem;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem) 4rem;
}

.collection__grid figure {
  margin: 0;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.product-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  display: grid;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.purchase-actions .button {
  flex: 1 1 240px;
  text-align: center;
  justify-content: center;
}

.paypal-button {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1a1a1a;
  font-weight: 600;
}

.paypal-button:hover {
  filter: brightness(1.05);
}

.product-grid--compact .product-card {
  padding: 1.25rem;
  gap: 1rem;
}

.product-frame {
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(199, 146, 234, 0.15), rgba(5, 5, 7, 0.6));
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-grid--compact .product-frame {
  max-width: none;
  width: 100%;
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
}

.price-link {
  display: inline-flex;
  align-items: center;
  margin-left: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.price-link:hover {
  color: var(--accent-strong);
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.disclaimer {
  margin-top: 3rem;
}

.collection__info-toggle {
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.collection__story {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.collection__story[hidden] {
  display: none;
}

.collection__status {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-align: center;
}

.donation-hero {
  margin-bottom: 3rem;
}

.donation-summary {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(199, 146, 234, 0.08), rgba(5, 5, 7, 0.7));
}

.donation-total {
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 600;
  margin: 0.5rem 0;
}

.donation-note {
  color: var(--muted);
  margin: 0;
}

.donation-milestone {
  display: grid;
  gap: 0.75rem;
}

.milestone-bar {
  width: 100%;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.milestone-bar__fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  transition: width 0.4s ease;
}

.milestone-percentage {
  margin: 0;
  font-weight: 600;
}

.donation-list {
  margin-top: 3rem;
}

.donation-list ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.donation-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
}

.donation-list strong {
  display: block;
  font-size: 1.05rem;
}

.donation-amount {
  font-size: 1.2rem;
  font-weight: 600;
}

.donation-calculator {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.calculator-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.calculator-grid input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1rem;
}

.calculator-result {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  border: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
}

.calculator-result > div {
  display: grid;
  gap: 0.25rem;
}

.donation-rate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.donation-rate span {
  font-weight: 600;
  flex-basis: 100%;
}

.rate-button {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.rate-button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.rate-button.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0c0c12;
  border-color: transparent;
}

.donation-proof {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(5, 5, 7, 0.6);
  display: grid;
  gap: 1rem;
}

.frame {
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 7, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
}

.lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  position: relative;
  width: min(1100px, 95vw);
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.lightbox__inner img {
  width: 100%;
  max-height: min(85vh, 820px);
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.lightbox__caption {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox__close:hover {
  color: var(--accent);
}

figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.checklist li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 0.75rem;
}

.format-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 1.2rem;
}

.format-list li {
  padding-left: 0.25rem;
}

.format-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.format-list p {
  margin: 0;
  color: var(--muted);
}

.cta-card {
  margin-top: 3rem;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.feedback-section {
  margin-top: 3rem;
}

.feedback-panel {
  margin-top: 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 0.85rem;
}

.feedback-panel form {
  display: grid;
  gap: 0.6rem;
}

.feedback-panel input,
.feedback-panel textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
}

.feedback-panel small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.feedback-panel .button {
  justify-self: start;
}

.datenschutz-panel {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 1rem 1.25rem;
}

.datenschutz-panel summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.datenschutz-panel[open] {
  padding-bottom: 1.25rem;
}

.datenschutz-content {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.datenschutz-content ul {
  margin: 0.25rem 0 0 1.25rem;
  color: var(--muted);
}

.faq {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.faq-list summary::-webkit-details-marker {
  color: var(--accent);
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.faq-list ul,
.faq-list ol {
  margin: 0.5rem 0 0 1.25rem;
  color: var(--muted);
  padding-left: 0.5rem;
}

.faq-list ol {
  list-style: decimal;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.instagram-button {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.3);
}

.site-footer a {
  color: var(--muted);
}

.trigger-warning {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 7, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2rem);
  overflow-y: auto;
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.trigger-warning.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.trigger-warning__dialog {
  max-width: 640px;
  background: rgba(8, 8, 12, 0.95);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 1rem;
}

.trigger-warning__dialog h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
}

.trigger-warning__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.button.accept {
  background: linear-gradient(135deg, #7cf68f, #2bb673);
  color: #051006;
  border: none;
}

.button.accept:hover {
  filter: brightness(1.05);
}

.button.decline {
  border-color: #ff6b6b;
  color: #ff8b8b;
}

.button.decline:hover {
  background: rgba(255, 107, 107, 0.15);
}

@media (max-width: 720px) {
  nav ul {
    gap: 0.75rem;
    font-size: 0.72rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-header {
    flex-direction: column;
    gap: 1rem;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .language-switch {
    width: 100%;
    justify-content: space-between;
  }

  .language-button {
    flex: 1;
    text-align: center;
  }

  main {
    padding-top: 3rem;
  }

  .trigger-warning {
    align-items: flex-start;
  }

  .trigger-warning__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trigger-warning__actions .button {
    width: 100%;
    text-align: center;
  }

  .calculator-result {
    flex-direction: column;
    align-items: flex-start;
  }

  .calculator-result > div {
    width: 100%;
  }
}
.collection__buy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.collection__buy-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
