:root {
  --black: #080a09;
  --night: #111413;
  --panel: #171a18;
  --panel-2: #20231f;
  --cream: #f0e8dc;
  --muted: #b8aea0;
  --dim: #81786d;
  --bronze: #c4aa83;
  --bronze-strong: #d0b487;
  --line: rgba(240, 232, 220, 0.18);
  --dark-line: rgba(0, 0, 0, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --brand-font: Copperplate, "Copperplate Gothic Light", "Cinzel", "Trajan Pro", Georgia, serif;
  --content-wide: 1260px;
  --page-gutter: clamp(1rem, 3vw, 2rem);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(196, 170, 131, 0.1), transparent 24rem),
    var(--black);
  color: var(--cream);
  font-family: "Trebuchet MS", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  padding: 0;
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #050706;
  border-bottom: 1px solid var(--line);
  animation: header-reveal 580ms ease-out both;
}

.utility-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  padding: 0.42rem clamp(1rem, 3vw, 2rem);
  font-size: 0.72rem;
  font-weight: 800;
  overflow: hidden;
}

.utility-brand,
.utility-actions,
.utility-actions a {
  display: flex;
  align-items: center;
}

.utility-brand {
  justify-self: start;
  color: var(--cream);
  line-height: 1;
  transition: opacity 160ms ease, transform 160ms ease;
}

.utility-brand:hover,
.utility-brand:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.utility-logo {
  width: auto;
  height: 2rem;
  max-width: 12rem;
  object-fit: contain;
}

.header-promo {
  max-width: min(40rem, 42vw);
  margin: 0;
  min-width: 0;
  justify-self: center;
  color: var(--bronze);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.line-icon {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border: 1px solid rgba(196, 170, 131, 0.55);
}

.line-icon img {
  width: 0.95rem;
  height: 0.95rem;
  object-fit: contain;
}

.utility-actions {
  justify-self: end;
  gap: 1.5rem;
  color: var(--cream);
}

.utility-actions a,
.admin-state,
.utility-logout button {
  gap: 0.45rem;
}

.admin-state,
.utility-logout button {
  display: flex;
  align-items: center;
}

.admin-state {
  color: var(--bronze);
}

.utility-logout {
  margin: 0;
}

.utility-logout button {
  border: 0;
  background: transparent;
  color: var(--cream);
  padding: 0;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(196, 170, 131, 0.28);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/home-hero-viking-shop.png");
  background-position: center;
  background-size: cover;
  animation: hero-image-zoom 18s ease-in-out infinite alternate;
  transform: scale(1.02);
  transform-origin: center;
  will-change: transform;
}

@keyframes hero-image-zoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.28), rgba(8, 10, 9, 0.18), rgba(8, 10, 9, 0.2)),
    linear-gradient(180deg, rgba(8, 10, 9, 0.08), rgba(8, 10, 9, 0.1) 68%, rgba(8, 10, 9, 0.88));
  animation: hero-overlay-reveal 900ms ease-out both;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content-wide), calc(100% - var(--page-gutter) * 2));
  padding-bottom: 3.2rem;
  text-align: center;
}

.hero-content > .hero-kicker,
.hero-content > h1,
.hero-content > p:not(.hero-kicker),
.hero-content > .hero-actions {
  animation: hero-copy-reveal 760ms cubic-bezier(0.2, 0.74, 0.22, 1) both;
}

.hero-content > .hero-kicker {
  animation-delay: 180ms;
}

.hero-content > h1 {
  animation-delay: 320ms;
}

.hero-content > p:not(.hero-kicker) {
  animation-delay: 500ms;
}

.hero-content > .hero-actions {
  animation-delay: 660ms;
}

.hero-kicker,
.ornament-title {
  color: var(--muted);
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 0.9rem;
}

.hero h1 {
  margin: 0;
  line-height: 1;
}

.hero-logo {
  width: min(820px, 78vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0.35rem 1rem rgba(0, 0, 0, 0.62));
}

.hero-headline-accent {
  display: block;
  margin-top: 0.5rem;
  color: var(--bronze-strong);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-content p:not(.hero-kicker) {
  width: min(560px, 100%);
  margin: 1.35rem auto 0;
  color: var(--cream);
  font-size: 1rem;
}

.cta {
  display: inline-flex;
  min-width: 230px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
  border: 1px solid rgba(196, 170, 131, 0.75);
  background: linear-gradient(180deg, #d6bd93, #b89b70);
  color: #16130f;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta:hover {
  background: linear-gradient(180deg, #e1ca9e, #c5a77a);
}

.cta span {
  font-size: 1.4rem;
  line-height: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.7rem;
}

.hero-actions .cta {
  margin-top: 0;
}

.hero-benefits {
  position: absolute;
  z-index: 3;
  bottom: 0.65rem;
  left: 50%;
  width: min(var(--content-wide), calc(100% - var(--page-gutter) * 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(240, 232, 220, 0.12);
  background: rgba(8, 10, 9, 0.36);
  backdrop-filter: blur(6px);
  transform: translateX(-50%);
  animation: hero-benefits-reveal 760ms cubic-bezier(0.2, 0.74, 0.22, 1) 820ms both;
}

@keyframes header-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-overlay-reveal {
  from {
    opacity: 0.55;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-benefits-reveal {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-benefits div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.05rem 0.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(240, 232, 220, 0.12);
  text-align: left;
}

.hero-benefits div:last-child {
  border-right: 0;
}

.benefit-icon {
  grid-row: span 2;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.hero-benefits strong {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-benefits small {
  color: var(--muted);
  font-size: 0.7rem;
}

.categories,
.products,
.faq-section {
  padding: 1.5rem var(--page-gutter);
}

.section-intro {
  width: min(680px, 100%);
  margin: -0.35rem auto 1.2rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

.ornament-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 1rem;
  text-align: center;
}

.ornament-title::before,
.ornament-title::after {
  width: min(130px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 170, 131, 0.5));
  content: "";
}

.ornament-title::after {
  background: linear-gradient(90deg, rgba(196, 170, 131, 0.5), transparent);
}

.faq-item {
  border: 1px solid rgba(240, 232, 220, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
}

.faq-item h3 {
  margin: 0;
  color: var(--bronze);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.category-card {
  position: relative;
  min-height: 255px;
  display: grid;
  align-content: end;
  justify-items: center;
  overflow: hidden;
  border: 1px solid rgba(240, 232, 220, 0.2);
  background: var(--panel);
  padding: 1.2rem 0.8rem;
  text-align: center;
}

.category-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 220ms ease, opacity 220ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 9, 0.02), rgba(8, 10, 9, 0.88)),
    radial-gradient(circle at center, transparent, rgba(8, 10, 9, 0.5));
  content: "";
}

.category-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.category-card:hover > img {
  opacity: 0.95;
  transform: scale(1.04);
}

.category-mark,
.category-card strong,
.category-card small,
.category-action {
  position: relative;
  z-index: 1;
}

.category-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  margin-bottom: 0.45rem;
}

.category-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card small {
  color: var(--bronze);
  font-size: 0.8rem;
}

.category-action {
  margin-top: 0.75rem;
  border-top: 1px solid rgba(196, 170, 131, 0.36);
  padding-top: 0.65rem;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--content-wide), calc(100% - var(--page-gutter) * 2));
  margin: 1rem auto 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 226, 216, 0.94)),
    #eee8de;
  color: #1b1a18;
}

.trust-band div {
  min-height: 142px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  padding: 1.25rem;
  text-align: center;
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band img {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
}

.trust-band strong {
  max-width: 18ch;
  margin-top: 0.7rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-band p {
  max-width: 30ch;
  margin: 0.55rem 0 0;
  color: #44403a;
  font-size: 0.84rem;
}

.products {
  padding-top: 2rem;
  padding-bottom: 1.8rem;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(240, 232, 220, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel);
  padding-bottom: 1rem;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card a {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #30342f, #111412 68%);
}

.product-card > a::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
  mix-blend-mode: normal;
  transition: transform 220ms ease, filter 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(196, 170, 131, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  transform: translateY(-4px);
}

.product-card:hover img,
.product-card:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.product-card:hover h3,
.product-card:focus-within h3 {
  color: var(--bronze);
}

.badge {
  position: absolute;
  z-index: 1;
  top: 0.55rem;
  left: 0.55rem;
  background: var(--bronze);
  color: #16130f;
  padding: 0.22rem 0.42rem;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 2.7rem;
  margin: 1rem 0.8rem 0.3rem;
  font-size: 0.98rem;
  font-weight: 500;
}

.product-card h3,
.price,
.product-action {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.price {
  margin: 0;
  color: var(--cream);
  font-size: 1.12rem;
  font-weight: 800;
}

.product-action {
  display: inline-flex;
  margin-top: 0.65rem;
  border-bottom: 1px solid rgba(196, 170, 131, 0.5);
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.stars {
  margin: 0.35rem 0 0;
  color: var(--bronze);
  font-size: 0.86rem;
}

.stars span {
  color: var(--muted);
  font-size: 0.74rem;
}

.customizer-section {
  padding: 0 var(--page-gutter) 1.65rem;
}

.customizer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: var(--content-wide);
  margin: 0 auto;
  border: 1px solid rgba(196, 170, 131, 0.24);
  background:
    linear-gradient(90deg, rgba(196, 170, 131, 0.13), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
}

.customizer-copy .eyebrow {
  margin: 0 0 0.4rem;
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customizer-copy h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.customizer-copy p {
  max-width: 66ch;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.customizer-steps {
  display: grid;
  gap: 0.55rem;
}

.customizer-steps span {
  border-left: 2px solid rgba(196, 170, 131, 0.65);
  color: var(--cream);
  padding-left: 0.75rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.customizer-cta {
  min-width: 230px;
  margin-top: 0;
}

.shop-cta {
  display: flex;
  width: min(290px, calc(100% - 2rem));
  margin: 1rem auto 0;
}

.faq-section {
  width: min(var(--content-wide), calc(100% - var(--page-gutter) * 2));
  max-width: none;
  margin: 0 auto 1.5rem;
  border-top: 1px solid rgba(196, 170, 131, 0.25);
  padding: 1.5rem 0;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.faq-item {
  padding: 1rem;
}

.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.shop-footer {
  background:
    radial-gradient(circle at 50% 0, rgba(196, 170, 131, 0.08), transparent 28rem),
    #080a09;
  color: var(--cream);
  border-top: 1px solid rgba(196, 170, 131, 0.2);
  padding: 0;
}

.shop-footer-inner {
  width: 100%;
  border-top: 1px solid rgba(196, 170, 131, 0.28);
  border-bottom: 1px solid rgba(196, 170, 131, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(17, 20, 19, 0.92);
  padding: clamp(1.35rem, 3vw, 2.5rem) clamp(1rem, 4vw, 3rem);
}

.shop-footer-brand {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--content-wide);
  margin: 0 auto 1.55rem;
  border-bottom: 1px solid rgba(240, 232, 220, 0.1);
  padding-bottom: 1rem;
}

.shop-footer-logo {
  display: block;
  width: min(310px, 58vw);
  transition: opacity 160ms ease, transform 160ms ease;
}

.shop-footer-logo:hover,
.shop-footer-logo:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.shop-footer-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.25rem 0.8rem rgba(0, 0, 0, 0.42));
}

.shop-footer-brand span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.shop-footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.15fr 1.15fr;
  gap: clamp(1.25rem, 4vw, 3.2rem);
  max-width: var(--content-wide);
  margin: 0 auto;
}

.shop-footer h2 {
  margin: 0 0 0.9rem;
  color: var(--bronze);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-footer a,
.shop-footer p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.42;
}

.shop-footer a {
  display: table;
  margin-bottom: 0.55rem;
  transition: color 160ms ease, transform 160ms ease;
}

.shop-footer a:hover {
  color: var(--bronze);
  transform: translateX(2px);
}

.shop-footer p {
  margin: 0 0 0.8rem;
}

.shop-footer small {
  color: var(--dim);
  font-size: 0.78rem;
}

.shop-footer-contact strong {
  color: var(--cream);
}

.shop-footer-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem 1rem;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(196, 170, 131, 0.14);
  border-bottom: 1px solid rgba(196, 170, 131, 0.14);
  background: rgba(17, 20, 19, 0.56);
  color: var(--muted);
  padding: 0.85rem max(var(--page-gutter), calc((100% - var(--content-wide)) / 2));
}

.shop-footer-strip span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-footer-strip .footer-admin-letter {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  text-decoration: none;
  transform: none;
}

.shop-footer-strip .footer-admin-letter:hover,
.shop-footer-strip .footer-admin-letter:focus-visible {
  color: inherit;
  transform: none;
}

.shop-page {
  background: #f6f5f2;
  color: #191919;
  overflow-x: hidden;
}

.shop-page .site-header {
  color: var(--cream);
}

.shop-page main {
  width: 100%;
}

.shop-hero {
  padding: 3rem clamp(1rem, 4vw, 3rem) 2rem;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.96), rgba(8, 10, 9, 0.72)),
    url("assets/home-hero-viking-shop.png") center / cover;
  color: var(--cream);
  text-align: center;
}

.shop-hero h1 {
  margin: 0;
}

.shop-hero-logo {
  width: min(720px, 76vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0.35rem 1rem rgba(0, 0, 0, 0.58));
}

.shop-hero p {
  width: min(760px, 100%);
  margin: 1rem auto 0;
  color: var(--muted);
}

.shop-hero .eyebrow {
  margin: 0 0 0.75rem;
  color: var(--bronze);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spreadshop-area,
#myShop {
  min-height: 780px;
}

.spreadshop-area {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #f6f5f2;
}

.spreadshop-area #myShop,
.spreadshop-area .SprdMain,
.spreadshop-area #sprd-main,
.spreadshop-area #sprd-container {
  width: 100% !important;
  max-width: none !important;
}

.spreadshop-area .SprdMain {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.spreadshop-area #sprd-signup-banner,
.spreadshop-area .sprd-signup-banner,
.spreadshop-area .sprd-info-footer__open-shop,
.spreadshop-area .sprd-activation-banner,
.spreadshop-area a[href*="spreadshop.de?affiliateid"],
.spreadshop-area a[href*="spreadshirt.de/start-verkaufen"] {
  display: none !important;
}

.editable-scope {
  position: relative;
}

.inline-edit-button {
  position: absolute;
  z-index: 30;
  top: 0.55rem;
  right: 0.55rem;
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(196, 170, 131, 0.86);
  border-radius: 999px;
  background: rgba(8, 10, 9, 0.86);
  color: var(--bronze);
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.inline-edit-button:hover,
.inline-edit-button:focus-visible {
  background: var(--bronze);
  color: #14110d;
  transform: translateY(-1px);
}

.site-header > .inline-edit-button {
  top: 50%;
  right: clamp(8rem, 20vw, 18rem);
  left: auto;
  width: 1.85rem;
  height: 1.85rem;
  font-size: 0.86rem;
  transform: translateY(-50%);
}

.site-header > .inline-edit-button:hover,
.site-header > .inline-edit-button:focus-visible {
  transform: translateY(calc(-50% - 1px));
}

.hero-content .inline-edit-button {
  top: -0.6rem;
  right: -0.8rem;
}

.products > .inline-edit-button,
.categories > .inline-edit-button {
  top: 1.1rem;
  right: clamp(1rem, 3vw, 2rem);
}

.cta-edit-scope {
  width: min(340px, 100%);
  margin: 0 auto;
}

.cta-edit-scope .inline-edit-button {
  right: 0;
}

.admin-flash {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(196, 170, 131, 0.35);
  background: rgba(8, 10, 9, 0.94);
  color: var(--cream);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}

.admin-flash.error {
  border-color: rgba(215, 94, 74, 0.55);
  color: #f4b4a8;
}

.inline-modal-open {
  overflow: hidden;
}

.inline-edit-modal,
.inline-edit-backdrop {
  position: fixed;
  inset: 0;
}

.inline-edit-modal {
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

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

.inline-edit-backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(5px);
}

.inline-edit-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  border: 1px solid rgba(196, 170, 131, 0.36);
  background: #111412;
  box-shadow: var(--shadow);
}

.inline-edit-panel form {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.inline-edit-head,
.inline-edit-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inline-edit-head h2 {
  margin: 0;
  color: var(--bronze);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inline-edit-close {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

.inline-edit-fields {
  display: grid;
  gap: 0.85rem;
}

.inline-edit-fields label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-edit-fields input,
.inline-edit-fields textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(240, 232, 220, 0.2);
  background: #070908;
  color: var(--cream);
  padding: 0.78rem;
  font: inherit;
  text-transform: none;
}

.inline-edit-fields textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.inline-edit-fields input[type="file"] {
  padding: 0.6rem;
}

@media (max-width: 1120px) {
  .category-grid,
  .product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .customizer-inner {
    grid-template-columns: 1fr;
  }

  .customizer-cta {
    width: min(320px, 100%);
  }

  .hero-benefits {
    width: calc(100% - 2rem);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
  }

  .utility-bar {
    align-items: center;
    grid-template-areas:
      "brand actions"
      "promo promo";
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.35rem 0.75rem;
    min-height: auto;
    padding: 0.5rem 0.85rem 0.58rem;
  }

  .utility-brand {
    grid-area: brand;
    min-width: 0;
  }

  .utility-logo {
    height: 1.85rem;
    max-width: 8rem;
  }

  .utility-actions {
    grid-area: actions;
    justify-content: flex-end;
    gap: 0.7rem;
  }

  .utility-actions a,
  .admin-state,
  .utility-logout button {
    font-size: 0;
    gap: 0;
  }

  .utility-logout button {
    font-size: 0.68rem;
  }

  .header-promo {
    grid-area: promo;
    width: 100%;
    max-width: none;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero {
    min-height: 760px;
    place-items: start center;
  }

  .hero-image {
    background-position: 26% center;
    transform-origin: 28% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.54), rgba(8, 10, 9, 0.32)),
      linear-gradient(180deg, rgba(8, 10, 9, 0.18), rgba(8, 10, 9, 0.55) 56%, rgba(8, 10, 9, 0.94));
  }

  .hero-content {
    margin-top: 3.2rem;
    padding-bottom: 0;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    bottom: 2.7rem;
    width: calc(100% - 2rem);
  }

  .hero-benefits div {
    border-right: 0;
    border-bottom: 1px solid rgba(240, 232, 220, 0.12);
  }

  .hero-benefits div:last-child {
    border-bottom: 0;
  }

  .category-grid,
  .product-row,
  .shop-footer-grid,
  .trust-band,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .categories,
  .customizer-section,
  .products,
  .faq-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .faq-section {
    width: calc(100% - 2rem);
    padding-right: 0;
    padding-left: 0;
  }

  .customizer-inner {
    gap: 1.1rem;
  }

  .customizer-steps {
    gap: 0.45rem;
  }

  .category-card {
    min-height: 220px;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .shop-hero {
    padding: 2.25rem 1rem 1.6rem;
  }

  .shop-hero h1 {
    letter-spacing: 0.06em;
  }

  .shop-footer {
    padding: 0;
  }

  .shop-footer-inner {
    gap: 1.35rem;
    padding: 1.4rem 1rem;
  }

  .shop-footer-brand {
    align-items: start;
    flex-direction: column;
  }

  .shop-footer-brand span {
    text-align: left;
  }

  .shop-footer h2 {
    margin-bottom: 0.75rem;
  }

  .shop-footer a,
  .shop-footer p {
    font-size: 0.9rem;
  }

  .shop-footer-strip {
    justify-content: flex-start;
    gap: 0.85rem 1.1rem;
    margin: 0;
    padding: 0.85rem 1rem;
  }

  .site-header > .inline-edit-button {
    top: calc(100% + 0.45rem);
    right: auto;
    left: 0.85rem;
    transform: none;
  }

  .site-header > .inline-edit-button:hover,
  .site-header > .inline-edit-button:focus-visible {
    transform: translateY(-1px);
  }

  .hero-content .inline-edit-button {
    top: -2.5rem;
    right: 0;
  }

  .inline-edit-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .inline-edit-actions .admin-button,
  .inline-edit-actions .admin-link {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .utility-bar {
    gap: 0.55rem;
  }

  .header-promo {
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .hero {
    min-height: 735px;
  }

  .hero-image {
    background-position: 18% center;
    transform-origin: 20% center;
  }

  .hero-kicker,
  .ornament-title {
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 10.5vw, 2.8rem);
    letter-spacing: 0.055em;
  }

  .hero-logo {
    width: min(74vw, 295px);
    max-width: 100%;
  }

  .hero-headline-accent {
    font-size: clamp(1.18rem, 6.2vw, 1.65rem);
    letter-spacing: 0.05em;
  }

  .hero-content p:not(.hero-kicker) {
    font-size: 0.92rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta {
    width: 100%;
    min-width: 0;
  }

  .hero-benefits div {
    grid-template-columns: 1.8rem 1fr;
    padding: 0.72rem 0.85rem;
  }

  .benefit-icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .category-card {
    min-height: 190px;
  }

  .product-card:hover,
  .product-card:focus-within {
    transform: none;
  }

  .product-card h3 {
    min-height: auto;
  }

  .shop-hero h1 {
    font-size: clamp(1.72rem, 8.7vw, 2.55rem);
    letter-spacing: 0.04em;
  }

  .shop-hero-logo {
    width: min(78vw, 300px);
    max-width: 100%;
  }

  .spreadshop-area,
  #myShop {
    min-height: 680px;
  }

  .inline-edit-button {
    width: 2rem;
    height: 2rem;
  }

  .products > .inline-edit-button,
  .categories > .inline-edit-button {
    top: 1rem;
    right: 0.7rem;
  }

  .inline-edit-modal {
    align-items: end;
    padding: 0.5rem;
  }

  .inline-edit-panel {
    width: 100%;
    max-height: 88vh;
  }

  .inline-edit-panel form {
    padding: 1rem;
  }
}

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

  .category-card:hover > img,
  .product-card:hover img {
    filter: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-overlay,
  .hero-content > .hero-kicker,
  .hero-content > h1,
  .hero-content > p:not(.hero-kicker),
  .hero-content > .hero-actions,
  .hero-benefits {
    animation: none;
  }

  .hero-image {
    animation: none;
  }
}

.admin-page {
  background: #10120f;
  color: var(--cream);
}

.admin-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.admin-header,
.admin-savebar,
.admin-logout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-header {
  margin-bottom: 1.5rem;
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
}

.admin-card {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  background: rgba(23, 26, 24, 0.94);
  padding: 1.2rem;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.admin-card h2 {
  margin: 0 0 1rem;
  color: var(--bronze);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-card label,
.admin-card fieldset {
  min-width: 0;
}

.admin-card label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-card input,
.admin-card textarea {
  width: 100%;
  border: 1px solid rgba(240, 232, 220, 0.22);
  background: #090b0a;
  color: var(--cream);
  padding: 0.75rem;
  font: inherit;
}

.admin-card textarea {
  min-height: 7rem;
  resize: vertical;
}

.admin-card input[type="file"] {
  padding: 0.55rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.admin-card fieldset {
  border: 1px solid rgba(240, 232, 220, 0.14);
  margin: 0;
  padding: 1rem;
}

.admin-card legend {
  padding: 0 0.4rem;
  color: var(--bronze);
  font-weight: 900;
  text-transform: uppercase;
}

.admin-button,
.admin-link,
.admin-logout button {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 170, 131, 0.7);
  background: linear-gradient(180deg, #d6bd93, #b89b70);
  color: #16130f;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-link,
.admin-logout button {
  background: transparent;
  color: var(--bronze);
}

.admin-message {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  font-weight: 800;
}

.admin-message.success {
  border-color: rgba(119, 178, 116, 0.55);
  background: rgba(119, 178, 116, 0.12);
}

.admin-message.error {
  border-color: rgba(215, 94, 74, 0.55);
  background: rgba(215, 94, 74, 0.12);
}

.admin-hint,
.admin-product-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-thumb,
.admin-preview img {
  width: 100%;
  border: 1px solid rgba(240, 232, 220, 0.14);
  background: #050606;
  object-fit: cover;
}

.admin-thumb {
  aspect-ratio: 1 / 1;
  margin-bottom: 0.8rem;
}

.admin-preview img {
  max-height: 260px;
}

.login-card {
  width: min(440px, 100%);
  margin: 0 auto;
}

.admin-savebar {
  position: sticky;
  z-index: 5;
  bottom: 0;
  border: 1px solid var(--line);
  background: rgba(8, 10, 9, 0.94);
  padding: 1rem;
  backdrop-filter: blur(10px);
}

@media (max-width: 760px) {
  .admin-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 1rem;
  }

  .admin-header,
  .admin-savebar,
  .admin-logout {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-grid,
  .admin-grid.two {
    grid-template-columns: 1fr;
  }

  .admin-card {
    padding: 1rem;
  }

  .admin-button,
  .admin-link,
  .admin-logout button {
    width: 100%;
  }
}
