:root {
  --background: #ffffff;
  --foreground: #1d0c14;
  --primary: #ff00cc;
  --secondary: #3300cc;
  --text-mid: #604157;
  --text-light: #875c74;
  --rose-blush: #fff0f8;
  --rose-soft: #fff7fb;
  --border: rgba(255, 0, 204, .14);
  --shadow: 0 10px 28px rgba(255, 0, 204, .08);
  --max-width: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  background: var(--foreground);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transform: translateZ(0);
  will-change: transform;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 5%;
}

.brand {
  display: inline-flex;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand span:first-child {
  color: var(--primary);
}

.brand span:last-child {
  color: var(--secondary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-nav .nav-cta {
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
}

/* Veraltete CTA- und Rubrik-Pills bleiben auch in älteren Unterseiten unsichtbar. */
.site-nav .nav-cta,
.info-hero > .pill,
.shipping-hero > .pill {
  display: none;
}

.site-nav .nav-cta:hover {
  color: #fff;
  filter: brightness(.94);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--foreground);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 52px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 5% 64px;
}

.pill {
  display: inline-flex;
  margin: 0 0 28px;
  border: 1px solid rgba(255, 0, 204, .2);
  border-radius: 999px;
  background: rgba(255, 0, 204, .06);
  padding: 7px 14px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1.04;
  padding-bottom: .04em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: var(--primary);
}

.hero h1 span:nth-child(2) {
  color: var(--secondary);
}

.hero h1 span:last-child {
  background: linear-gradient(90deg, var(--primary), #9900b8, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.16;
  padding-bottom: .12em;
}

.hero-text {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--text-mid);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.button.primary {
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 0 30px;
  box-shadow: 0 8px 28px rgba(255, 0, 204, .25);
}

.button.text {
  color: var(--secondary);
}

.hero-visual {
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  box-shadow: 0 24px 60px rgba(29, 12, 20, .10);
}

.trust {
  display: flex;
  justify-content: center;
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 0, 204, .08);
  padding: 6px 5% 7px;
  color: var(--text-light);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-track,
.trust-group {
  display: contents;
}

.trust-group[aria-hidden="true"] {
  display: none;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 5%;
}

.products {
  max-width: none;
  width: 100%;
  padding-top: 0;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 40px;
}

.section-head {
  max-width: 560px;
  margin-bottom: 48px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-label {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.section-head p:not(.section-label),
.newsletter p,
.about p {
  color: var(--text-mid);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: #fff;
  contain: layout;
  transition: box-shadow .15s ease;
}

.product-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.instagram-promo-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e8c8ad;
  transition: box-shadow .2s ease;
}

.instagram-promo-card:hover,
.instagram-promo-card:focus-visible {
  box-shadow: var(--shadow);
}

.instagram-promo-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  transform: translateY(-30px) scale(.8);
  transition: transform .18s ease;
}

.product-card a {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
}

.preorder-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--foreground);
  color: #fff;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.product-card > .preorder-badge {
  position: absolute;
  display: block;
  overflow: visible;
  background: var(--foreground);
}

.preorder-badge:hover,
.preorder-badge:focus-visible {
  transform: translateY(-2px);
  background: var(--secondary);
}

#pre-order {
  scroll-margin-top: 96px;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  cursor: pointer;
}

.product-info:focus-visible {
  outline: 3px solid rgba(255, 0, 204, .28);
  outline-offset: -3px;
}

.product-info p {
  margin: 0;
}

.product-info > p:first-child {
  color: var(--text-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.product-copy {
  color: var(--text-mid);
  font-size: 14px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

.price {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 900;
}

.cart-button,
.newsletter-form button {
  border: 0;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cart-button {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 11px;
  white-space: nowrap;
  background-image: linear-gradient(to right, var(--foreground) 50%, var(--primary) 50%);
  background-position: right bottom;
  background-size: 200% 100%;
  transition: background-position .2s ease, color .2s ease;
}

.cart-button.icon-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 50px;
  min-width: 50px;
  padding: 7px 9px;
}

.cart-button-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-button-plus {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.cart-button:hover {
  background-position: left bottom;
  filter: none;
}

.newsletter-form button:hover {
  filter: brightness(.94);
}

@media (hover: hover) and (pointer: fine) {
  .product-card {
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
  }

  .product-info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    gap: 0;
    height: 120px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .15s ease;
  }

  .product-info > p:first-child,
  .product-info .product-copy {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .15s ease, transform .15s ease;
  }

  .product-card:hover .product-info,
  .product-card:focus-within .product-info {
    height: 210px;
    box-shadow: 0 12px 25px rgba(29, 12, 20, .08);
  }

  .product-card:hover img,
  .product-card:focus-within img {
    transform: translateY(-30px) scale(.608);
  }

  .product-card:hover .product-info > p:first-child,
  .product-card:hover .product-info .product-copy,
  .product-card:focus-within .product-info > p:first-child,
  .product-card:focus-within .product-info .product-copy {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
  }

  .product-card:hover .product-info > p:first-child,
  .product-card:focus-within .product-info > p:first-child {
    margin-bottom: 10px;
  }

  .product-card:hover .product-copy,
  .product-card:focus-within .product-copy {
    margin-top: 10px;
  }
}

.cart-button:disabled {
  background: var(--foreground);
  cursor: not-allowed;
  opacity: .55;
}

.cart-button:disabled:hover {
  filter: none;
}

.about {
  background: linear-gradient(180deg, transparent, var(--rose-soft), transparent);
  padding-top: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}

.feature-grid article {
  background: rgba(255, 255, 255, .92);
  padding: 34px;
}

.feature-grid h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.feature-grid p {
  margin: 0;
  font-size: 14px;
}

.about-story {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: justify;
}

.about-story p {
  display: inline;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--text-mid);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 500;
  line-height: 1.8;
}

.about-story p::after {
  content: " ";
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
  gap: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px 16px;
  color: var(--foreground);
}

.newsletter-form button {
  padding: 0 18px;
  color: var(--foreground);
}

.mission-section {
  max-width: 920px;
  padding-top: 74px;
  padding-bottom: 92px;
}

.mission-section h2 {
  max-width: 760px;
}

.mission-section p:not(.section-label) {
  max-width: 760px;
  color: var(--text-mid);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.mission-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100vw;
  max-width: none;
  margin-top: 46px;
  margin-left: calc(50% - 50vw);
  padding: 0;
  border: 0;
  background: transparent;
}

.mission-collage picture {
  display: block;
  width: 100%;
  aspect-ratio: 896 / 1060;
  overflow: hidden;
  background: transparent;
}

.mission-collage img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: 0;
}

.mission-collage picture:nth-child(3) img {
  object-fit: cover;
}


.shipping-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 5% 70px;
}

.shipping-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .96;
  letter-spacing: -.06em;
}

.shipping-hero p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--text-mid);
  font-size: 18px;
}

.shipping-panel,
.preorder-section,
.shipping-note {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 76px 5%;
}

.shipping-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.shipping-panel h2,
.preorder-section h2,
.shipping-note h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.shipping-panel p,
.preorder-section p,
.shipping-note p {
  color: var(--text-mid);
}

.shipping-facts {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.shipping-facts div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, .92);
  padding: 22px;
}

.shipping-facts strong {
  color: var(--primary);
  font-size: 32px;
  line-height: 1;
}

.shipping-facts span {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 76px 5%;
  gap: 1px;
  background: linear-gradient(90deg, transparent 0, transparent 5%, var(--border) 5%, var(--border) 95%, transparent 95%);
}

.shipping-grid article {
  background: #fff;
  padding: 34px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.shipping-grid article + article {
  border-left: 1px solid var(--border);
}

.shipping-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.shipping-grid h2,
.preorder-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.shipping-grid p {
  margin: 0;
  color: var(--text-mid);
}

.preorder-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 52px;
  align-items: start;
  background: linear-gradient(180deg, transparent, var(--rose-soft), transparent);
}

.preorder-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.preorder-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text-mid);
}

.preorder-card li {
  margin: 10px 0;
}

.shipping-note {
  text-align: center;
}

.shipping-note p {
  max-width: 720px;
  margin: 18px auto 30px;
  font-size: 17px;
}

.info-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 5% 64px;
}

.info-hero.compact {
  padding-bottom: 44px;
}

.info-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1;
  letter-spacing: -.06em;
}

.info-hero p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--text-mid);
  font-size: 18px;
}

.info-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 5%;
}

.info-split h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.info-split p {
  color: var(--text-mid);
}

.info-card,
.legal-card {
  border: 1px solid var(--border);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.info-card h3,
.legal-card h2 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-mid);
}

.info-card li {
  margin: 10px 0;
}

.contact-card a {
  color: var(--primary);
  font-weight: 900;
}

.small-note {
  font-size: 13px;
}

.info-steps,
.legal-layout {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 70px 5%;
  gap: 18px;
}

.info-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-steps article {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.info-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.info-steps h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.info-steps p,
.legal-card p {
  color: var(--text-mid);
}

.legal-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plain-section,
.plain-list,
.plain-legal {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 5%;
}

.plain-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 56px;
  border-top: 1px solid rgba(29, 12, 20, .10);
  border-bottom: 1px solid rgba(29, 12, 20, .10);
}

.plain-section h2,
.plain-legal h2 {
  margin: 0 0 14px;
  color: var(--foreground);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 900;
}

.plain-section h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}

.plain-section p,
.plain-section li,
.plain-list p,
.plain-legal p {
  color: var(--text-mid);
  font-size: 16px;
  font-weight: 500;
}

.plain-section ul {
  margin: 0;
  padding-left: 18px;
}

.plain-section li {
  margin: 9px 0;
}

.plain-list {
  display: grid;
  gap: 0;
}

.plain-list article,
.plain-legal article {
  border-top: 1px solid rgba(29, 12, 20, .10);
  padding: 24px 0;
}

.plain-list article:first-child,
.plain-legal article:first-child {
  border-top: 0;
}

.plain-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.plain-list h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.plain-list p,
.plain-legal p {
  max-width: 760px;
  margin: 0;
}

.plain-legal {
  padding-top: 36px;
}

.plain-legal a,
.contact-card a {
  color: var(--primary);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 5% 28px;
}

.shopauskunft-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  min-height: 72px;
  margin: 0 auto 38px;
  padding: 14px 18px;
  border: 1px solid rgba(29, 12, 20, .12);
  background: #f5d33b;
  color: var(--foreground);
}

.shopauskunft-banner-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.shopauskunft-kicker {
  flex: 0 0 auto;
  padding: 7px 9px;
  background: var(--foreground);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.shopauskunft-banner strong {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.25;
}

.shopauskunft-banner button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid rgba(29, 12, 20, .24);
  padding: 0 15px;
  background: rgba(255, 255, 255, .38);
  color: rgba(29, 12, 20, .62);
  cursor: not-allowed;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(130px, 1fr));
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-contact address {
  margin-top: 14px;
  color: var(--text-mid);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 5% 80px;
}

.service-content article {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.service-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.service-content p,
.service-content li {
  color: var(--text-mid);
  line-height: 1.7;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  color: var(--text-mid);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.footer-note {
  max-width: var(--max-width);
  margin: 38px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 12px;
}

.footer-trust {
  max-width: var(--max-width);
  margin: 34px auto 0;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.footer-trust h2 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.social-logo {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}

.social-logo:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.social-logo.is-disabled {
  cursor: default;
  opacity: .55;
}

.social-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-logo .instagram-logo {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  transform: translateY(12px);
}

#products,
#about {
  scroll-margin-top: 116px;
}

.partner-logo-row span {
  display: grid;
  place-items: center;
  width: 108px;
  height: 58px;
  border: 1px solid var(--border);
  background: #fff;
}

.partner-logo-row img {
  width: 78px;
  height: 32px;
  object-fit: contain;
}

.toast {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 110;
  max-width: min(430px, calc(100% - 36px));
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  background: var(--foreground);
  color: #fff;
  padding: 12px 16px;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast.is-cart-toast {
  pointer-events: auto;
  min-width: min(390px, calc(100vw - 36px));
  background: #fff;
  color: var(--foreground);
  box-shadow: 0 18px 50px rgba(29, 12, 20, .18);
}

.toast.is-cart-toast p {
  margin: 0;
  font-size: 14px;
}

.toast-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.toast-actions button {
  flex: 1;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  color: var(--foreground);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.toast-actions button:last-child {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

@media (max-width: 1050px) {
  .hero,
  .newsletter,
  .shipping-panel,
  .preorder-section,
  .info-split,
  .plain-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
    max-width: 360px;
  }

  .product-grid,
  .feature-grid,
  .shipping-grid,
  .info-steps,
  .legal-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shipping-grid article + article {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 68px;
  }

  .menu-button {
    display: block;
  }

  .shopauskunft-banner,
  .shopauskunft-banner-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .shopauskunft-banner {
    gap: 12px;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
    background: #fff;
    padding: 12px 5% 20px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .product-grid,
  .feature-grid,
  .shipping-grid,
  .info-steps,
  .legal-layout,
  .plain-section,
  .mission-collage,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .products {
    padding-bottom: 32px;
  }

  .about {
    padding-top: 32px;
  }

  .mission-collage {
    grid-template-rows: none;
  }

  .mission-collage-large {
    grid-row: auto;
  }

  .trust {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-inline: 5%;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .shipping-hero,
  .shipping-panel,
  .shipping-grid,
  .preorder-section,
  .shipping-note {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .info-hero,
  .info-split,
  .info-steps,
  .legal-layout,
  .plain-section,
  .plain-list,
  .plain-legal {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .shipping-grid article {
    border-left: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
  cursor: pointer;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cart-toggle-mobile {
  display: none;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  background: rgba(29, 12, 20, .36);
}

.cart-backdrop.is-visible {
  display: block;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: stretch;
  width: min(420px, 100%);
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  transform: translateX(100%);
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 50px rgba(29, 12, 20, .16);
  transition: transform .22s ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-panel-head,
.cart-panel-footer {
  padding: 22px;
  background: #fff;
}

.cart-panel-head {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.cart-panel-head h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: .08em;
}

.cart-close {
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--rose-blush);
  color: var(--foreground);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  margin-right: -10px;
}

.cart-items {
  grid-row: 2;
  grid-column: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 22px 28px;
  scrollbar-gutter: stable;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.cart-item-image {
  width: 72px;
  height: 72px;
  border: 1px solid var(--border);
  background: #fff;
  object-fit: contain;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--text-mid);
  font-size: 14px;
}

.cart-item .cart-item-unavailable {
  margin-top: 6px;
  color: #a4003a;
  font-size: 12px;
  font-weight: 700;
}

.cart-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.cart-quantity button,
.cart-remove,
.cart-change-size {
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.cart-quantity button {
  width: 30px;
  height: 30px;
}

.cart-remove,
.cart-change-size {
  padding: 7px 9px;
  color: var(--text-mid);
  font-size: 12px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.cart-change-size {
  color: var(--primary);
  white-space: nowrap;
}

.cart-empty {
  grid-row: 2;
  grid-column: 1;
  align-self: start;
  z-index: 1;
  display: none;
  background: #fff;
  padding: 30px 22px;
  color: var(--text-mid);
}

.cart-empty.is-visible {
  display: block;
}

.cart-panel-footer {
  grid-row: 3;
  grid-column: 1;
  position: relative;
  z-index: 2;
  border-top: 2px solid var(--border);
  box-shadow: 0 -12px 28px rgba(29, 12, 20, .07);
  padding-bottom: max(22px, env(safe-area-inset-bottom));
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
}

.checkout-button {
  width: 100%;
  border: 0;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  padding: 15px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-image: linear-gradient(to right, var(--foreground) 50%, var(--primary) 50%);
  background-position: right bottom;
  background-size: 200% 100%;
  transition: background-position .2s ease, color .2s ease;
}

.checkout-button:hover {
  background-position: left bottom;
}

.cart-toggle {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s ease, color .2s ease;
}

.cart-toggle::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--secondary);
  transition: transform .2s ease;
}

.cart-toggle:hover {
  border-color: var(--secondary);
  color: #fff;
}

.cart-toggle:hover::before {
  transform: scaleX(1);
}

.cart-panel-footer p {
  margin: 10px 0 0;
  color: var(--text-light);
  font-size: 12px;
}

body.cart-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  background: rgba(29, 12, 20, .48);
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.modal-backdrop.is-visible {
  visibility: visible;
  opacity: 1;
}

.product-modal,
.size-modal,
.coupon-modal,
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 90;
  visibility: hidden;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  transform: translate(-50%, -48%);
  background: #fff;
  box-shadow: 0 30px 80px rgba(29, 12, 20, .24);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.product-modal.is-open,
.size-modal.is-open,
.coupon-modal.is-open,
.checkout-modal.is-open {
  visibility: visible;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.checkout-modal {
  padding: 46px;
}

.checkout-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.checkout-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
}

.checkout-heading > p:last-child {
  margin: 0;
  color: var(--text-mid);
}

.checkout-form {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  gap: 18px;
}

.checkout-field {
  display: grid;
  gap: 7px;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.checkout-field label {
  font-size: 13px;
  font-weight: 800;
}

.checkout-field .optional {
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
}

.checkout-field input,
.checkout-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
  color: var(--foreground);
  padding: 11px 13px;
  font: inherit;
}

.checkout-field input:focus,
.checkout-field select:focus {
  border-color: var(--secondary);
  outline: 2px solid rgba(46, 134, 222, .18);
  outline-offset: 1px;
}

.checkout-field input[aria-invalid="true"],
.checkout-field select[aria-invalid="true"] {
  border-color: #a4003a;
}

.field-error {
  min-height: 17px;
  color: #a4003a;
  font-size: 12px;
  font-weight: 700;
}

.checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.55;
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.checkout-consent a {
  color: var(--foreground);
  font-weight: 800;
}

.checkout-actions {
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.checkout-continue {
  width: 100%;
  border: 0;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  padding: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.checkout-continue:disabled {
  cursor: wait;
  opacity: .65;
}

.checkout-actions p {
  margin: 10px 0 0;
  color: var(--text-light);
  font-size: 12px;
  text-align: center;
}

.checkout-actions .checkout-status {
  min-height: 20px;
  color: var(--foreground);
  font-weight: 700;
}

.payment-result {
  position: relative;
  z-index: 55;
  border-bottom: 1px solid var(--border);
  background: #fff7fb;
  padding: 22px 5%;
  text-align: center;
}

.payment-result h1 {
  margin: 0 0 7px;
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: -.04em;
}

.payment-result p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-mid);
}

.payment-result-success {
  border-bottom-color: #16824b;
  background: #f1fff7;
}

.payment-result-error,
.payment-result-cancelled {
  border-bottom-color: #a4003a;
}

.product-modal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
}

.quick-view-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #fff;
  cursor: crosshair;
}

.quick-view-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quick-view-zoom-lens {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 40%;
  height: 40%;
  border: 1px solid rgba(20, 92, 190, .72);
  background: rgba(46, 134, 222, .28);
  pointer-events: none;
  will-change: transform;
}

.quick-view-content {
  position: relative;
  display: flex;
  min-height: 480px;
  align-self: center;
  align-items: center;
  padding: 54px 44px;
}

.quick-view-details {
  width: 100%;
}

.quick-view-zoom-result {
  position: absolute;
  inset: 0;
  display: none;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 250% 250%;
}

.product-modal.is-zooming .quick-view-zoom-lens,
.product-modal.is-zooming .quick-view-zoom-result {
  display: block;
}

.product-modal.is-zooming .quick-view-details {
  visibility: hidden;
}

.quick-view-content h2,
.size-modal h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.quick-view-copy,
.size-note {
  color: var(--text-mid);
  line-height: 1.7;
}

.quick-view-price {
  display: block;
  margin: 24px 0;
  font-size: 22px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  color: var(--foreground);
  cursor: pointer;
  font-size: 28px;
}

.size-modal {
  max-width: 680px;
  padding: 48px;
}

.coupon-tab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  width: 44px;
  min-height: 154px;
  padding: 0;
  background: var(--primary);
  box-shadow: 0 10px 30px rgba(193, 37, 111, .28);
  color: #fff;
  transform: translateY(-50%);
  transition: width .2s ease, box-shadow .2s ease;
  will-change: transform;
}

.coupon-tab[hidden] {
  display: none;
}

.coupon-tab-trigger,
.coupon-tab-dismiss {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.coupon-tab-trigger {
  color: var(--foreground);
}

.coupon-tab-trigger {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.coupon-tab-dismiss {
  position: absolute;
  top: -12px;
  left: -12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid #000;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.coupon-tab-trigger span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.coupon-tab:hover,
.coupon-tab:focus-within {
  width: 50px;
  box-shadow: 0 14px 38px rgba(193, 37, 111, .38);
}

.coupon-modal {
  max-width: 560px;
  padding: 52px;
  text-align: center;
}

.coupon-modal h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.coupon-modal > p {
  margin: 0 auto;
  max-width: 470px;
  color: var(--text-mid);
  line-height: 1.65;
}

.coupon-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 28px 0 16px;
}

.coupon-newsletter-form input,
.coupon-newsletter-form button {
  min-height: 50px;
  border: 1px solid var(--border);
  padding: 0 16px;
  font: inherit;
}

.coupon-newsletter-form input:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(228, 64, 95, .16);
}

.coupon-newsletter-form button {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-weight: 750;
}

.coupon-modal small {
  display: block;
  color: var(--text-mid);
  font-size: 11px;
  line-height: 1.55;
}

.coupon-modal small a {
  color: inherit;
  text-decoration: underline;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.size-options button {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 22px 16px;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
}

.size-options button:hover,
.size-options button:focus-visible {
  border-color: var(--primary);
  background: var(--rose-soft);
}

.size-options strong {
  color: var(--primary);
  font-size: 25px;
}

.size-options span {
  color: var(--text-mid);
  font-size: 13px;
}

body.modal-open {
  overflow: hidden;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 5% 76px;
}

.product-detail-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
}

.product-detail-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}

.product-lead {
  color: var(--text-mid);
  font-size: 18px;
  line-height: 1.75;
}

.product-benefits {
  margin: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0 18px 20px;
  color: var(--text-mid);
}

.product-benefits li {
  margin: 8px 0;
}

.detail-buy-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.detail-buy-row .price {
  font-size: 24px;
}

@media (max-width: 760px) {
  .product-modal,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .quick-view-image {
    min-height: 280px;
  }

  .quick-view-content,
  .size-modal,
  .coupon-modal {
    padding: 38px 24px;
  }

  .coupon-newsletter-form {
    grid-template-columns: 1fr;
  }

  .coupon-tab {
    top: auto;
    bottom: 88px;
    min-height: 132px;
    transform: none;
  }

  .size-options {
    grid-template-columns: 1fr;
  }
  .cart-toggle {
    justify-content: center;
    margin-top: 8px;
  }

  .checkout-modal {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    padding: 38px 22px 24px;
  }

  .checkout-form {
    grid-template-columns: 1fr;
  }

  .checkout-field-wide {
    grid-column: auto;
  }
}

@keyframes trust-marquee-mobile {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .cart-toggle-mobile {
    display: inline-flex;
    margin-top: 0;
    padding: 7px 9px;
    font-size: 10px;
  }

  .cart-toggle-desktop {
    display: none;
  }

  .trust {
    justify-content: flex-start;
    gap: 0;
    overflow: hidden;
    padding-inline: 0;
  }

  .trust-track {
    display: flex;
    width: max-content;
    animation: trust-marquee-mobile 18s linear infinite;
    will-change: transform;
  }

  .trust-group,
  .trust-group[aria-hidden="true"] {
    display: flex;
    flex: none;
    align-items: center;
    gap: 18px;
    padding-right: 18px;
  }

  .product-modal {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .quick-view-image {
    min-height: 0;
    height: 180px;
    padding: 12px 44px 0;
    cursor: default;
  }

  .quick-view-content {
    min-height: 0;
    align-items: flex-start;
    padding: 14px 22px 22px;
  }

  .quick-view-content h2 {
    margin-bottom: 8px;
    font-size: 27px;
    line-height: 1.06;
  }

  .quick-view-category {
    margin-bottom: 5px;
  }

  .quick-view-copy {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .quick-view-price {
    margin: 12px 0;
    font-size: 19px;
  }

  .product-modal .modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}
