:root {
  --public-background: #f7f3ed;
  --public-light: #fffdf9;
  --public-cream: #eee3d4;
  --public-gold: #cda75c;
  --public-gold-light: #e8cb8b;
  --public-black: #111111;
  --public-text: #25211d;
  --public-muted: #746d64;
  --public-border: #e7ded3;
}

.public-site {
  min-height: 100vh;
  background: var(--public-background);
  color: var(--public-text);
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 245px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 clamp(22px, 3.4vw, 48px);
  border-bottom: 1px solid rgba(231, 222, 211, 0.86);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(16px);
}

.public-brand,
.public-nav a,
.public-nav summary,
.public-login-link,
.public-button,
.category-card {
  color: inherit;
  text-decoration: none;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--public-gold);
}

.public-brand strong {
  font-size: 28px;
  font-weight: 450;
  letter-spacing: 0.02em;
}

.public-flower {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--public-gold);
  font-size: 31px;
  line-height: 1;
}

.public-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.public-nav a {
  color: #161616;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.public-nav-fragrance {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.public-nav-dropdown {
  position: relative;
}

.public-nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 0;
  color: #161616;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

.public-nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.public-nav-dropdown summary span {
  display: inline-block;
  font-size: 14px;
  transition: transform 160ms ease;
}

.public-nav-dropdown[open] summary,
.public-nav-dropdown summary:hover {
  color: var(--public-gold);
}

.public-nav-dropdown[open] summary span {
  transform: rotate(180deg);
}

.public-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -70px;
  z-index: 60;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  border: 1px solid var(--public-border);
  border-radius: 6px;
  background: #fffdf9;
  box-shadow: 0 16px 38px rgba(40, 31, 19, 0.14);
}

.public-nav-dropdown-menu a {
  padding: 13px 18px;
  border-bottom: 1px solid var(--public-border);
  font-size: 12px;
  text-transform: none;
}

.public-nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.public-nav-dropdown-menu a:hover {
  background: var(--public-background);
}

.public-nav a:hover {
  color: var(--public-gold);
}

.public-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.public-login-link,
.public-lang {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--public-border);
  border-radius: 4px;
  padding: 10px 19px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.public-lang-wrap {
  position: relative;
  display: inline-flex;
}

.public-lang-wrap::after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  pointer-events: none;
  transform: translateY(-56%);
  font-size: 13px;
}

.public-lang {
  min-width: 70px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--public-light);
  color: var(--public-black);
  cursor: pointer;
  padding-right: 28px;
}

.public-login-link.gold {
  border-color: transparent;
  background: linear-gradient(180deg, var(--public-gold-light), var(--public-gold));
  color: var(--public-black);
}

.public-login-link.black {
  border-color: var(--public-black);
  background: var(--public-black);
  color: #ffffff;
}

.public-lang {
  background: #ffffff;
  color: var(--public-black);
  cursor: default;
}

.public-page {
  min-height: calc(100vh - 76px);
}

.reference-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(480px, 0.88fr) minmax(500px, 1fr);
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249, 244, 237, 0.98) 0%, rgba(249, 244, 237, 0.9) 41%, rgba(238, 217, 190, 0.52) 66%, rgba(188, 143, 87, 0.38) 100%),
    linear-gradient(180deg, #f7f3ed, #efe3d3);
}

.reference-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 67% 38%, rgba(255, 255, 255, 0.78) 0 8%, transparent 18%),
    radial-gradient(circle at 77% 51%, rgba(255, 255, 255, 0.35) 0 6%, transparent 19%);
}

.reference-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 52px 0 52px clamp(42px, 7vw, 108px);
}

.reference-hero h1 {
  max-width: 700px;
  margin: 0;
  color: #090806;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.7vw, 68px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.public-lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: #2f2b27;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.public-button {
  display: inline-flex;
  min-width: 188px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 12px 18px;
  color: var(--public-black);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.public-button.primary {
  background: var(--public-black);
  color: #ffffff;
}

.public-button.gold {
  background: linear-gradient(180deg, var(--public-gold-light), var(--public-gold));
  color: var(--public-black);
}

.public-button.outline,
.public-button.light {
  border-color: rgba(17, 17, 17, 0.5);
  background: rgba(255, 253, 249, 0.54);
  color: var(--public-black);
}

.login-icon::before {
  content: "♙";
  margin-right: 9px;
  color: var(--public-black);
  font-size: 17px;
}

.reference-hero-products {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: stretch;
  min-height: 430px;
  padding: 0;
}

.hero-reference-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 30px clamp(34px, 6vw, 130px);
  border-bottom: 1px solid var(--public-border);
  background: var(--public-light);
}

.benefit-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 82px;
  padding: 0 30px;
  border-right: 1px solid var(--public-border);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-icon {
  color: var(--public-gold);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.benefit-item strong {
  display: block;
  color: var(--public-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 7px 0 0;
  color: var(--public-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.45;
}

.mytologik-campaign {
  position: relative;
  min-height: clamp(520px, 58vw, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #b7afa4;
  isolation: isolate;
}

.mytologik-campaign::after {
  content: "Neu";
  position: absolute;
  top: 28px;
  right: clamp(22px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  padding: 8px 13px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mytologik-campaign-image,
.mytologik-campaign-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mytologik-campaign-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 58%;
}

.mytologik-campaign-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 13, 11, 0.8) 0%, rgba(15, 13, 11, 0.45) 34%, rgba(15, 13, 11, 0.04) 62%);
}

.mytologik-campaign-copy {
  width: min(580px, 100%);
  margin: 0 0 clamp(42px, 6vw, 82px) clamp(24px, 7vw, 108px);
  padding-right: 24px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.24);
}

.mytologik-kicker {
  margin: 0 0 16px;
  color: #f2dca8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mytologik-campaign h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 1.04;
}

.mytologik-campaign-copy > p:not(.mytologik-kicker) {
  max-width: 510px;
  margin: 20px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.mytologik-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  padding: 0 0 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mytologik-link span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.mytologik-link:hover span {
  transform: translateX(5px);
}

.category-section {
  padding: 26px clamp(28px, 3vw, 46px) 54px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(247, 243, 237, 0.96)),
    var(--public-background);
}

.category-heading {
  display: grid;
  place-items: center;
  gap: 12px;
  margin-bottom: 26px;
  text-align: center;
}

.category-heading h2 {
  margin: 0;
  color: var(--public-black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category-heading span {
  width: 130px;
  height: 14px;
  position: relative;
}

.category-heading span::before,
.category-heading span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48px;
  height: 1px;
  background: var(--public-gold);
}

.category-heading span::before {
  left: 0;
}

.category-heading span::after {
  right: 0;
}

.category-heading span {
  background: radial-gradient(circle at center, var(--public-gold) 0 4px, transparent 5px);
}

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

.category-card {
  position: relative;
  min-height: 255px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 4px;
  background: var(--public-black);
  box-shadow: 0 16px 30px rgba(49, 38, 27, 0.1);
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.6)),
    linear-gradient(90deg, rgba(122, 78, 34, 0.16), transparent);
}

.category-card:hover img {
  opacity: 0.9;
  transform: scale(1.08);
}

.category-card div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 16px 22px;
  color: #ffffff;
  text-align: center;
}

.category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.category-card span {
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.public-kicker {
  margin: 0 0 12px;
  color: #9a6f28;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.public-section {
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 76px);
}

.public-section.alt {
  background: var(--public-light);
}

.public-section.dark {
  background: var(--public-black);
  color: #fffaf2;
}

.section-top,
.public-split,
.public-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
}

.public-section h1,
.public-section h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.public-copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--public-muted);
  font-size: 18px;
  line-height: 1.6;
}

.public-section.dark .public-copy,
.public-section.dark .public-card p,
.public-section.dark .public-panel p {
  color: #ded2c4;
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.public-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(21, 18, 15, 0.08);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 48px rgba(58, 45, 30, 0.08);
}

.public-section.dark .public-card,
.public-section.dark .public-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.public-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #fffaf2, #eee1d0);
}

.public-card.cover img {
  object-fit: cover;
  padding: 0;
}

.public-card-body {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.public-card span {
  color: #9a6f28;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.public-card strong {
  font-size: 22px;
}

.public-card p {
  margin: 0;
  color: var(--public-muted);
  line-height: 1.5;
}

.finder-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.finder-tile {
  display: grid;
  gap: 8px;
  min-height: 145px;
  align-content: end;
  border: 1px solid rgba(21, 18, 15, 0.08);
  border-radius: 8px;
  padding: 18px;
  background: #fffdf8;
}

.finder-tile strong {
  font-size: 20px;
}

.finder-tile span {
  color: var(--public-muted);
  line-height: 1.45;
}

.public-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(21, 18, 15, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: #fffdf8;
  box-shadow: 0 18px 48px rgba(58, 45, 30, 0.08);
}

.public-list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.public-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--public-gold);
  background: rgba(255, 250, 242, 0.08);
}

.register-panel {
  align-content: start;
}

.public-register-form {
  display: grid;
  gap: 12px;
}

.public-register-form label {
  color: var(--public-muted);
  font-size: 13px;
  font-weight: 850;
}

.public-register-form input,
.public-register-form select,
.public-register-form textarea {
  width: 100%;
  margin-top: 7px;
  border-color: var(--public-border);
  background: #ffffff;
}

.public-register-form textarea {
  min-height: 86px;
  resize: vertical;
}

.public-register-form input[readonly] {
  background: #f6f2eb;
  color: #5e554b;
}

.public-register-form .password-field .password-eye {
  flex: 0 0 42px;
  margin-top: 7px;
}

.public-register-form select {
  min-height: 46px;
  border: 1px solid var(--public-border);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--public-black);
  font: inherit;
}

.public-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.public-form-grid.address-line {
  grid-template-columns: minmax(0, 1fr) 120px;
}

.optional-label {
  color: #8a7d6c;
  font-size: 11px;
  font-weight: 700;
}

.onboarding-optional {
  border: 1px solid var(--public-border);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.onboarding-optional summary {
  cursor: pointer;
  color: #514a42;
  font-size: 13px;
  font-weight: 850;
}

.onboarding-optional[open] summary {
  margin-bottom: 12px;
}

.onboarding-optional .public-form-grid + .public-form-grid {
  margin-top: 12px;
}

.public-register-form .public-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--public-border);
  border-radius: 8px;
  background: #fffaf2;
  color: #514a42;
  line-height: 1.45;
}

.public-register-form .public-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--public-black);
}

.public-register-form .public-check.optional {
  background: #ffffff;
}

.onboarding-steps {
  margin-top: 24px;
}

.public-input-help {
  display: block;
  margin-top: 6px;
  color: #7c7163;
  font-size: 11px;
  line-height: 1.4;
}

.public-register-form .public-button {
  width: 100%;
  margin-top: 4px;
}

.register-gift-note {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 16px;
  padding: 13px;
  border: 1px solid rgba(205, 167, 92, 0.42);
  border-radius: 8px;
  background: #fff8e8;
}

.register-gift-note.featured {
  border-color: rgba(205, 167, 92, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 36%),
    #fff3d6;
}

.register-gift-note span {
  color: #9a6f28;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.register-gift-note code {
  width: fit-content;
  border: 1px dashed var(--public-gold);
  border-radius: 8px;
  padding: 7px 10px;
  background: #ffffff;
  color: var(--public-black);
  font-weight: 950;
}

.register-gift-note p {
  margin: 0;
  color: #6f6252;
  font-size: 12px;
}

.public-form-message {
  min-height: 20px;
  margin: 0;
  font-weight: 850;
}

.public-form-message.error {
  color: #b54739;
}

.public-form-message.success {
  color: #2f7d53;
}

.public-form-message a {
  color: inherit;
  font-weight: 900;
}

.compact-grid {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.public-catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 260px) auto;
  align-items: end;
  gap: 12px;
  margin: 30px 0 18px;
  padding: 18px;
  border-block: 1px solid var(--public-border);
}

.public-catalog-toolbar label {
  display: grid;
  gap: 7px;
  color: var(--public-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.public-catalog-toolbar input,
.public-catalog-toolbar select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--public-border);
  border-radius: 4px;
  padding: 0 13px;
  background: #ffffff;
  color: var(--public-text);
  font: inherit;
  text-transform: none;
}

.public-catalog-status {
  min-height: 24px;
  margin-bottom: 14px;
  color: var(--public-muted);
  font-size: 14px;
}

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

.public-home-product-grid {
  margin-top: 34px;
}

.public-home-catalog-action {
  justify-content: center;
}

.mytologik-product-section {
  background: linear-gradient(180deg, #f4eee5, #fffdf9);
}

.mytologik-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.mytologik-product-card {
  overflow: hidden;
  border: 1px solid var(--public-border);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: 0 18px 42px rgba(58, 45, 30, 0.08);
}

.mytologik-product-card img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  background: #fffaf2;
}

.mytologik-product-card-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.mytologik-product-card-body > span,
.mytologik-product-card-body > small {
  color: #8e651f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mytologik-product-card-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.mytologik-product-card-body strong {
  font-size: 14px;
}

.mytologik-product-card-body p {
  margin: 0;
  color: var(--public-muted);
  font-size: 14px;
  line-height: 1.55;
}

.public-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--public-border);
  border-radius: 6px;
  background: var(--public-light);
}

.public-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--public-border);
  background: #ffffff;
  color: var(--public-gold);
  font-weight: 900;
}

.public-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.public-product-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.public-product-body h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.15;
}

.public-product-body p {
  margin: 0;
  color: var(--public-muted);
  font-size: 14px;
  line-height: 1.5;
}

.public-product-meta,
.public-product-footer,
.public-catalog-pagination,
.public-price-rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.public-product-meta {
  color: var(--public-muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.public-product-reference {
  padding-left: 10px;
  border-left: 2px solid var(--public-gold);
}

.public-reference-disclaimer {
  padding: 12px;
  border: 1px solid #dfc27f;
  border-radius: 5px;
  background: #fff8e8;
  color: #51483d !important;
  font-size: 13px !important;
}

.public-product-body .public-card-disclaimer {
  color: #74695c;
  font-size: 11px;
  line-height: 1.4;
  font-style: italic;
}

.public-card-prices {
  display: grid;
  gap: 5px;
  padding: 10px;
  border-radius: 5px;
  background: #f4eee4;
}

.public-card-prices span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #5f564c;
  font-size: 12px;
}

.public-card-prices strong {
  color: var(--public-black);
}

.public-product-footer {
  margin-top: 4px;
}

.public-product-footer .public-button {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 12px;
}

.public-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.public-card-actions .public-button {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 11px;
}

.public-catalog-pagination {
  justify-content: center;
  min-height: 52px;
  margin-top: 22px;
}

.public-catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 34px 0;
  border-block: 1px solid var(--public-border);
  color: var(--public-muted);
  text-align: center;
}

.public-product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 17, 17, 0.58);
}

.public-product-modal-card {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 8px;
  padding: 30px;
  background: var(--public-light);
}

.public-product-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
}

.public-product-detail h2 {
  margin: 6px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.public-product-detail-image {
  min-height: 340px;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.public-product-detail-image img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  padding: 20px;
}

.public-product-number {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid var(--public-gold);
  color: #6e511b;
  font-size: 12px;
  font-weight: 900;
}

.public-pyramid,
.public-price-rows {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.public-pyramid > div,
.public-price-rows > div {
  padding: 10px 0;
  border-bottom: 1px solid var(--public-border);
}

.public-pyramid span,
.public-price-rows span {
  color: var(--public-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.public-verified-rating {
  padding: 12px;
  border-left: 3px solid #2f7d53;
  background: #eff7f2;
}

.public-stars {
  display: inline-block;
  color: #b3832f;
  font-size: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

.public-stars.empty {
  color: #b3832f;
}

.public-rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  margin: 16px 0;
  padding: 12px 0;
  border-block: 1px solid var(--public-border);
}

.public-rating-summary span:last-child,
.public-rating-empty,
.public-review-note {
  color: var(--public-muted);
  font-size: 12px;
}

.public-rating-summary.compact {
  margin: 0;
  padding: 8px 0;
}

.public-rating-summary.compact .public-stars {
  font-size: 15px;
}

.public-rating-summary.compact strong,
.public-rating-summary.compact span:last-child {
  font-size: 11px;
}

.public-product-body .public-rating-empty {
  font-size: 11px;
}

.public-review-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--public-border);
}

.public-review-section h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.public-review-items {
  display: grid;
  gap: 10px;
}

.public-review-items article {
  padding: 14px;
  border: 1px solid var(--public-border);
  border-radius: 6px;
  background: #ffffff;
}

.public-review-items article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.public-review-items p {
  margin: 9px 0;
  line-height: 1.5;
}

.public-review-items time {
  color: var(--public-muted);
  font-size: 11px;
}

.public-review-form {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--public-border);
  border-radius: 6px;
  background: #ffffff;
}

.public-review-form h3,
.public-review-form .public-kicker {
  margin: 0;
}

.public-review-form > label,
.public-review-form legend {
  color: var(--public-muted);
  font-size: 12px;
  font-weight: 850;
}

.public-review-form > label > input,
.public-review-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--public-border);
  border-radius: 6px;
  padding: 11px 12px;
  background: var(--public-light);
  color: var(--public-black);
  font: inherit;
}

.public-review-form textarea {
  min-height: 96px;
  resize: vertical;
}

.public-review-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.public-rating-choice {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin-top: 7px;
}

.public-rating-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.public-rating-choice span {
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--public-border);
  border-radius: 4px;
  background: var(--public-light);
  color: #76551d;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.public-rating-choice input:checked + span,
.public-rating-choice input:focus-visible + span {
  border-color: var(--public-gold);
  background: #fff3d6;
  box-shadow: inset 0 0 0 1px var(--public-gold);
}

.public-review-form .public-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  line-height: 1.4;
}

.public-review-form .public-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--public-black);
}

.public-review-form .public-form-message {
  min-height: 20px;
  margin: 0;
}

.gift-game {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
}

.gift-bubble {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(205, 167, 92, 0.52);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, #fff8e8, transparent 34%),
    linear-gradient(180deg, #e8cb8b, #cda75c);
  color: var(--public-black);
  box-shadow: 0 18px 48px rgba(77, 55, 27, 0.22);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gift-bubble::before {
  content: "✦";
  display: block;
  font-size: 24px;
  line-height: 1;
}

.gift-bubble span {
  display: block;
}

.gift-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 17, 17, 0.46);
  backdrop-filter: blur(7px);
}

.gift-card {
  position: relative;
  width: min(460px, 100%);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(205, 167, 92, 0.35);
  border-radius: 8px;
  padding: 30px;
  background:
    radial-gradient(circle at 76% 20%, rgba(232, 203, 139, 0.24), transparent 34%),
    var(--public-light);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.22);
}

.gift-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.gift-card p {
  margin: 0;
  color: var(--public-muted);
  line-height: 1.55;
}

.gift-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--public-border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--public-black);
  font-size: 22px;
}

.shake-stage {
  display: grid;
  place-items: center;
  min-height: 245px;
  border: 1px solid var(--public-border);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.86), transparent 31%),
    radial-gradient(circle at 50% 58%, rgba(217, 180, 103, 0.34), transparent 46%),
    linear-gradient(145deg, #fffdf9, #efe3d1 58%, #d8bf93);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.shake-bottle {
  width: 166px;
  height: 216px;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 22px 18px rgba(58, 43, 24, 0.24));
  padding: 0;
  transform-origin: 50% 62%;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.shake-bottle-image {
  width: 100%;
  height: 100%;
  display: block;
  background: url("assets/public-home/gift-flakon.png") center / contain no-repeat;
  border-radius: 12px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.shake-bottle:focus-visible {
  outline: 2px solid var(--public-gold);
  outline-offset: 8px;
}

.shake-bottle.shaking {
  animation: bottle-shake 120ms infinite alternate ease-in-out;
}

@keyframes bottle-shake {
  from {
    transform: rotate(-7deg) translateX(-4px);
  }
  to {
    transform: rotate(7deg) translateX(4px);
  }
}

.shake-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfce;
}

.shake-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--public-black), var(--public-gold));
  transition: width 80ms linear;
}

.gift-hint {
  min-height: 24px;
  font-weight: 850;
  text-align: center;
}

.gift-reward {
  display: grid;
  justify-items: center;
  gap: 7px;
  border: 1px solid rgba(205, 167, 92, 0.42);
  border-radius: 8px;
  padding: 16px;
  background: #fff8e8;
  text-align: center;
}

.gift-reward span {
  color: #9a6f28;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.gift-reward strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.gift-reward code {
  border: 1px dashed var(--public-gold);
  border-radius: 8px;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--public-black);
  font-weight: 950;
}

.gift-reward .gift-small-note {
  margin: 2px 0 6px;
  color: #6f6252;
  font-size: 12px;
  line-height: 1.5;
}

.gift-register-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--public-black);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.public-site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: start;
  gap: 18px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px clamp(18px, 5vw, 76px);
  background: #161513;
  color: #fff;
}

.public-footer-about {
  display: grid;
  max-width: 760px;
  gap: 8px;
}

.public-footer-about strong {
  font-size: 22px;
}

.public-footer-about p {
  max-width: 720px;
  margin: 6px 0 2px;
  color: #ded8d0;
  font-size: 15px;
  line-height: 1.65;
}

.public-site-footer span,
.public-site-footer small {
  color: #c9c2b9;
}

.public-site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.public-site-footer a {
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.public-site-footer a:hover {
  text-decoration: underline;
}

.public-footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.public-legal-page {
  max-width: 1120px;
  margin: 0 auto;
}

.public-legal-warning {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  border-left: 4px solid #a8392c;
  padding: 14px 16px;
  background: #fff0ee;
  color: #6f251d;
}

.public-legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.public-legal-content section {
  min-width: 0;
  border-top: 1px solid var(--public-border);
  padding-top: 18px;
}

.public-legal-content h2,
.public-section .public-legal-content h2 {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.public-legal-content p {
  margin: 0 0 12px;
  color: var(--public-muted);
  line-height: 1.65;
}

.public-legal-content a {
  color: #704d18;
}

@media (max-width: 1600px) {
  .public-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .public-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-self: start;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .reference-hero {
    grid-template-columns: 1fr;
  }

  .reference-hero-copy {
    padding-right: clamp(24px, 5vw, 70px);
  }

  .reference-hero-products {
    min-height: 320px;
  }

  .hero-reference-image {
    min-height: 320px;
  }

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

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

  .benefit-item:nth-child(2) {
    border-right: 0;
  }

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

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

@media (max-width: 820px) {
  .public-header {
    grid-template-columns: 1fr;
    padding-right: 16px;
    padding-left: 16px;
  }

  .public-header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 64px;
    gap: 7px;
  }

  .public-header-actions .public-login-link {
    min-width: 0;
    overflow: hidden;
    padding-inline: 7px;
    font-size: 11px;
  }

  .public-lang-wrap,
  .public-lang {
    width: 64px;
    min-width: 64px;
  }

  .public-nav-dropdown-menu {
    position: fixed;
    top: auto;
    right: 18px;
    left: 18px;
    margin-top: 12px;
  }

  .public-login-link,
  .public-lang {
    padding-inline: 10px;
  }

  .reference-hero-copy {
    padding: 42px 20px 26px;
  }

  .mytologik-campaign {
    min-height: 650px;
    align-items: end;
  }

  .mytologik-campaign-image {
    object-position: 61% center;
  }

  .mytologik-campaign-shade {
    background: linear-gradient(0deg, rgba(15, 13, 11, 0.9) 0%, rgba(15, 13, 11, 0.5) 44%, rgba(15, 13, 11, 0.02) 72%);
  }

  .mytologik-campaign-copy {
    margin: 0 0 34px 0;
    padding: 0 20px;
  }

  .reference-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .public-actions .public-button {
    width: 100%;
  }

  .public-catalog-toolbar,
  .public-product-detail,
  .public-review-section {
    grid-template-columns: 1fr;
  }

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

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

  .public-product-detail-image {
    min-height: 240px;
  }

  .reference-hero-products {
    min-height: 260px;
    padding: 0 18px;
  }

  .hero-reference-image {
    min-height: 260px;
    border-radius: 8px;
  }

  .benefit-strip,
  .category-grid,
  .public-grid,
  .finder-tiles,
  .section-top,
  .public-split,
  .public-footer-cta {
    grid-template-columns: 1fr;
  }

  .public-legal-content,
  .public-site-footer {
    grid-template-columns: 1fr;
  }

  .public-site-footer nav {
    justify-content: flex-start;
  }

  .public-footer-legal {
    grid-column: 1;
  }

  .public-form-grid,
  .public-form-grid.address-line {
    grid-template-columns: 1fr;
  }

  .benefit-strip {
    padding: 22px 20px;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid var(--public-border);
    padding: 18px 0;
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

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

  .gift-game {
    right: 14px;
    bottom: 14px;
  }

  .gift-bubble {
    width: 76px;
    height: 76px;
    font-size: 10px;
  }

  .gift-card {
    padding: 24px 18px;
  }
}
