:root {
  --bg-1: #c59434;
  --bg-2: #b07f23;
  --bg-3: #8d6418;
  --surface: rgba(255, 249, 239, 0.18);
  --surface-strong: rgba(255, 249, 239, 0.28);
  --surface-soft: rgba(255, 255, 255, 0.10);
  --text: #6f0018;
  --text-soft: rgba(111, 0, 24, 0.84);
  --text-muted: rgba(111, 0, 24, 0.62);
  --line: rgba(111, 0, 24, 0.16);
  --line-strong: rgba(111, 0, 24, 0.26);
  --shadow-xl: 0 30px 100px rgba(78, 30, 2, 0.20);
  --shadow-lg: 0 18px 40px rgba(78, 30, 2, 0.14);
  --shadow-md: 0 10px 24px rgba(78, 30, 2, 0.10);
  --btn: #6f0018;
  --btn-hover: #560013;
  --btn-text: #f7ebd2;
  --input-bg: rgba(255, 255, 255, 0.16);
  --input-line: rgba(111, 0, 24, 0.22);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1320px;
  --ease: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 245, 220, 0.34), transparent 22%),
    radial-gradient(circle at 88% 14%, rgba(255, 231, 186, 0.18), transparent 24%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 56%, var(--bg-3) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  animation: pageFadeIn 0.8s ease both;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(130deg, rgba(255,255,255,0.07), transparent 38%),
    linear-gradient(310deg, rgba(111,0,24,0.05), transparent 40%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

a {
  color: inherit;
}

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

p {
  margin: 0;
  overflow-wrap: anywhere;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* Grundlayout */

.home-body,
.legal-body,
.content-body {
  padding: 20px 20px 24px;
}

.container,
.legal-page,
.content-page,
.admin-wrap,
.page-footer-wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.legal-card,
.content-card,
.admin-card,
.hero-card {
  background: linear-gradient(180deg, rgba(255,249,239,0.28), rgba(255,246,229,0.18));
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: riseIn 700ms ease both;
}

.hero-card,
.legal-card,
.content-card {
  padding: clamp(24px, 3vw, 54px);
}

.admin-card {
  padding: 28px;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-card h1,
.legal-card h1,
.content-card h1,
.admin-card h1 {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.hero-card h2,
.hero-card h3,
.legal-card h2,
.legal-card h3,
.content-card h2,
.content-card h3,
.admin-card h2,
.admin-card h3 {
  margin: 26px 0 12px;
  text-align: left;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-card p,
.legal-card p,
.legal-card li,
.content-card p,
.content-card li,
.admin-card p,
.admin-card li {
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.9;
  color: var(--text-soft);
}

.section-stack > * + * {
  margin-top: 18px;
}

/* Startseite Premium */

.hero-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 28%);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.logo-mark {
  width: min(100%, 340px);
  margin: 0 auto 28px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(78, 30, 2, 0.16));
}

.hero-card h1 {
  text-align: center;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
}

.hero-lead {
  max-width: 52rem;
  margin: 0 auto 16px;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.95;
}

.hero-meta {
  margin-top: 14px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
}

.home-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.home-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 60px;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.24);
  border: 1px solid rgba(111,0,24,0.18);
  box-shadow:
    0 14px 34px rgba(78, 30, 2, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.32);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background-color var(--ease),
    border-color var(--ease),
    filter var(--ease);
}

.home-nav-link:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255,255,255,0.38);
  border-color: rgba(111,0,24,0.24);
  box-shadow:
    0 20px 44px rgba(78, 30, 2, 0.20),
    0 0 18px rgba(255,255,255,0.16);
  filter: saturate(1.03);
}

.home-nav-link:active {
  transform: translateY(-1px) scale(1.01);
}

/* Hinweise / Meldungen */

.note-box,
.notice-box,
.placeholder-box {
  margin: 18px 0 8px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  line-height: 1.7;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.14);
}

.success-message {
  background: rgba(48, 122, 50, 0.10);
  border: 1px solid rgba(48, 122, 50, 0.24);
}

.error-message {
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.20);
}

/* Footer */

.site-footer {
  width: 100%;
  text-align: center;
  padding: 22px 16px 28px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(111,0,24,0.14);
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.28);
  box-shadow: var(--shadow-lg);
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-social-label {
  font-weight: 600;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.97rem;
}

.footer-links a,
.back-link {
  text-decoration: none;
}

.footer-links a:hover,
.back-link:hover {
  text-decoration: underline;
}

.footer-separator {
  opacity: 0.46;
}

.footer-copy {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.back-link {
  display: inline-block;
  margin-top: 28px;
}

/* Floating Social Bar */

.floating-social-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-social-link {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(111,0,24,0.14);
  box-shadow: 0 10px 22px rgba(78,30,2,0.10);
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
}

.floating-social-link:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(78,30,2,0.16);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.25));
}

.floating-social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Content / Legal / Kontakt */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(111,0,24,0.12);
  box-shadow: var(--shadow-md);
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-item-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.social-follow-box {
  margin-top: 20px;
}

.social-follow-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.social-follow-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(111,0,24,0.16);
  background: rgba(255,255,255,0.26);
  color: var(--text);
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.social-follow-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.38);
  box-shadow: var(--shadow-lg);
}

.social-follow-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  min-width: 0;
}

.contact-form,
.admin-form,
.admin-login-form,
.admin-create-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  text-align: left;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-login-form input,
.admin-create-form input,
.admin-create-form textarea,
.admin-create-form select {
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--input-line);
  background: var(--input-bg);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-login-form input:focus,
.admin-create-form input:focus,
.admin-create-form textarea:focus,
.admin-create-form select:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 4px rgba(111, 0, 24, 0.08);
  background: rgba(255,255,255,0.22);
}

.contact-form textarea,
.admin-form textarea,
.admin-create-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Buttons */

.contact-form button[type="submit"],
.toggle-entry-button,
.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #6f0018 0%, #610015 100%);
  color: #f7ebd2;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(111, 0, 24, 0.22);
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.contact-form button[type="submit"]:hover,
.toggle-entry-button:hover,
.admin-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(111, 0, 24, 0.28);
}

.velvet-link-button,
.admin-secondary-button,
.admin-delete-button,
.admin-logout-button,
.admin-tab,
.emoji-toggle-btn,
.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(111, 0, 24, 0.18);
  background: rgba(255,255,255,0.26);
  color: #6f0018;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(78, 30, 2, 0.10);
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease), filter var(--ease);
}

.velvet-link-button:hover,
.admin-secondary-button:hover,
.admin-delete-button:hover,
.admin-logout-button:hover,
.admin-tab:hover,
.emoji-toggle-btn:hover,
.gallery-filter-btn:hover,
.gallery-filter-btn.is-active {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.40);
  box-shadow: 0 14px 28px rgba(78, 30, 2, 0.14);
}

.admin-tab.is-active {
  background: linear-gradient(180deg, #6f0018 0%, #610015 100%);
  color: #f7ebd2;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(111, 0, 24, 0.22);
}

.entry-action-bar {
  display: flex;
  justify-content: flex-start;
  margin: 14px 0 10px;
}

/* Emoji Picker - altes einfaches System aus kontakt/admin */

.emoji-picker-wrap {
  position: relative;
  margin-top: 12px;
}

.emoji-toggle-btn {
  margin-top: 6px;
  align-self: flex-start;
}

.emoji-picker {
  display: none;
  margin-top: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(111, 0, 24, 0.14);
  box-shadow: 0 12px 28px rgba(78, 30, 2, 0.12);
  flex-wrap: wrap;
  gap: 8px;
}

.emoji-picker.is-open {
  display: flex;
}

.emoji-item {
  min-width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #6f0018;
  cursor: pointer;
}

.emoji-item:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.56);
}

/* Galerie */

.gallery-section {
  margin-top: 28px;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 28px;
}

.gallery-grid {
  margin-top: 26px;
  display: grid;
  gap: 20px;
  align-items: start;
}

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

.gallery-grid.guestbook-entry-grid,
.gallery-grid.review-entry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item-content,
.guestbook-card-body,
.review-card-body {
  padding: 16px 18px 20px;
  text-align: left;
}

.gallery-item-content strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.gallery-fade-image {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-fade-image.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.gallery-multi {
  position: relative;
  overflow: hidden;
}

.gallery-main-image {
  width: 100%;
  height: clamp(180px, 28vw, 320px);
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform .45s ease, opacity .45s ease;
}

.gallery-item:hover .gallery-main-image {
  transform: scale(1.03);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(20, 8, 4, 0.45);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(20, 8, 4, 0.72);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px 0;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 54px;
  height: 54px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(197,148,52,0.7);
  box-shadow: 0 8px 18px rgba(78, 30, 2, 0.16);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox alt */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 8, 4, 0.82);
  z-index: 1000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

/* Lightbox Pro */

.lightbox-pro {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 8, 8, 0.88);
  z-index: 2000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-pro.is-open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  width: min(100%, 1200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox-caption {
  color: rgba(255,255,255,0.82);
  text-align: center;
  font-size: .95rem;
}

.lightbox-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.lightbox-strip-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
}

.lightbox-strip-thumb.is-active {
  border-color: rgba(255, 212, 90, 0.95);
}

.lightbox-strip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gästebuch / Bewertungen */

.gallery-empty-state {
  grid-column: 1 / -1;
}

.entry-chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  background: rgba(111, 0, 24, 0.08);
  border: 1px solid rgba(111, 0, 24, 0.12);
  margin-bottom: 10px;
}

.guestbook-name,
.review-name {
  font-weight: 600;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.review-stars {
  letter-spacing: .16em;
  color: #6f0018;
}

.entry-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.entry-date {
  font-size: .92rem;
  color: rgba(111, 0, 24, 0.68);
}

.owner-comment-public,
.owner-comment-preview {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(111, 0, 24, 0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}

.owner-comment-public strong,
.owner-comment-preview strong {
  display: block;
  margin-bottom: 8px;
  color: #6f0018;
}

.entry-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 8, 4, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.entry-modal.is-open {
  display: flex;
}

.entry-modal-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: 90vh;
  overflow: auto;
  padding: 26px 24px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,249,239,0.98), rgba(255,246,229,0.94));
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 30px 100px rgba(78, 30, 2, 0.24);
}

.entry-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(111, 0, 24, 0.08);
  color: #6f0018;
  font-size: 1.7rem;
  cursor: pointer;
}

.entry-modal-content h2 {
  margin-top: 0;
}

.rating-summary-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.26);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.34), transparent 30%),
    linear-gradient(145deg, rgba(255,250,243,0.34), rgba(255,244,224,0.18));
  box-shadow:
    0 18px 42px rgba(78, 30, 2, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.46);
  margin-top: 14px;
}

.rating-summary-score {
  text-align: center;
}

.rating-score-orb {
  width: min(100%, 188px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), rgba(255,244,226,0.92) 55%, rgba(255,227,166,0.82) 100%);
  border: 10px solid rgba(255, 192, 84, 0.42);
  box-shadow:
    inset 0 10px 22px rgba(255,255,255,0.6),
    0 18px 38px rgba(197, 148, 52, 0.22);
}

.rating-summary-value {
  font-size: clamp(3rem, 6vw, 4.1rem);
  font-weight: 700;
  line-height: 1;
  color: #7a0018;
}

.rating-summary-scale-text {
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(111, 0, 24, 0.68);
}

.rating-summary-stars {
  margin-top: 14px;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  background: linear-gradient(90deg, #ffb545 0%, #ffd45a 45%, #fff0a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rating-summary-count {
  margin-top: 12px;
  font-weight: 500;
  color: rgba(111, 0, 24, 0.68);
}

.rating-summary-bars {
  display: grid;
  gap: 10px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  gap: 12px;
  align-items: center;
}

.rating-bar-label,
.rating-bar-count {
  font-weight: 600;
  color: #6f0018;
}

.rating-bar-track {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: rgba(111, 0, 24, 0.08);
  box-shadow: inset 0 1px 3px rgba(78, 30, 2, 0.08);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 4px 10px rgba(197,148,52,0.18);
}

.rating-bar-row:nth-child(1) .rating-bar-fill { background: linear-gradient(90deg, #ff9a3c, #ffd85f); }
.rating-bar-row:nth-child(2) .rating-bar-fill { background: linear-gradient(90deg, #ffad45, #ffe07a); }
.rating-bar-row:nth-child(3) .rating-bar-fill { background: linear-gradient(90deg, #f5b955, #f6de8b); }
.rating-bar-row:nth-child(4) .rating-bar-fill { background: linear-gradient(90deg, #d49a62, #ebcf99); }
.rating-bar-row:nth-child(5) .rating-bar-fill { background: linear-gradient(90deg, #bb7a70, #d9b09f); }

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

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

.star-rating label {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: rgba(111, 0, 24, 0.25);
  transition: transform .25s ease, color .25s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #6f0018;
  transform: scale(1.06);
}

.star-rating input:checked ~ label {
  color: #6f0018;
}

/* Admin */

.admin-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 24px;
}

.admin-stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(111, 0, 24, 0.12);
  color: #6f0018;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 12px;
}

.admin-section {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(111, 0, 24, 0.12);
}

.admin-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.admin-entry {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(111, 0, 24, 0.12);
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 12px;
}

.admin-title {
  font-weight: 600;
  font-size: 1.06rem;
}

.admin-meta {
  font-size: 0.92rem;
  color: rgba(111, 0, 24, 0.72);
  line-height: 1.7;
  margin-top: 4px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.admin-message {
  padding: 12px 14px;
  border-radius: 16px;
  margin-top: 16px;
}

.admin-message.success {
  background: rgba(48, 122, 50, 0.10);
  border: 1px solid rgba(48, 122, 50, 0.24);
}

.admin-message.error {
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.20);
}

.admin-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  border: 1px solid rgba(111, 0, 24, 0.12);
  background: rgba(255,255,255,0.22);
  color: #6f0018;
}

.admin-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.admin-thumb-box {
  width: 94px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-images img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(111, 0, 24, 0.12);
}

.admin-empty {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(111, 0, 24, 0.10);
  margin-top: 14px;
}

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

.admin-gallery-edit,
.admin-owner-comment-box {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(111, 0, 24, 0.10);
}

.admin-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid rgba(111, 0, 24, 0.18);
  background: rgba(255,255,255,0.24);
  color: #6f0018;
  cursor: pointer;
  font-size: 0.9rem;
}

.admin-small-note {
  font-size: 0.88rem;
  color: rgba(111, 0, 24, 0.72);
}

/* Cookie Banner */

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 8, 4, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-card {
  width: min(100%, 720px);
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,249,239,0.98), rgba(255,246,229,0.94));
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 30px 100px rgba(78, 30, 2, 0.24);
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cookie-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.46);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn-primary {
  border: 0;
  background: linear-gradient(180deg, #6f0018 0%, #610015 100%);
  color: #f7ebd2;
}

.cookie-btn-secondary {
  border: 1px solid rgba(111, 0, 24, 0.18);
  background: rgba(255,255,255,0.60);
  color: #6f0018;
}

.cookie-banner-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Animationen */

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .rating-summary-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .gallery-grid.guestbook-entry-grid,
  .gallery-grid.review-entry-grid,
  .form-row,
  .admin-create-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .footer-socials,
  .social-follow-buttons,
  .cookie-banner-actions {
    flex-direction: column;
  }

  .footer-social-link,
  .social-follow-button,
  .cookie-btn {
    width: 100%;
  }

  .home-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .home-nav-link {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .home-body,
  .legal-body,
  .content-body {
    padding: 16px 14px 20px;
  }

  .hero-card,
  .legal-card,
  .content-card,
  .admin-card {
    border-radius: 24px;
    padding: 20px 16px;
  }

  .gallery-main-image {
    height: 240px;
  }

  .entry-card-footer,
  .review-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .floating-social-bar {
    right: 12px;
    bottom: 12px;
  }

  .floating-social-link {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   VELÉORA STABLE FINAL ADDONS
   Diese Sektion ersetzt die mehrfachen späteren Einzelblöcke.
   ========================================================= */

/* Seiten-Baukasten / öffentliche Seitenbilder */
.page-image-block {
  margin: 22px 0;
}

.page-image-block img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(78, 30, 2, 0.14);
}

.page-image-block figcaption {
  margin-top: 8px;
  color: rgba(111, 0, 24, 0.68);
  font-size: 0.92rem;
  text-align: center;
}

.page-divider {
  border: 0;
  height: 1px;
  background: rgba(111, 0, 24, 0.18);
  margin: 26px 0;
}

/* Admin Statistik / Backup */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.stats-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(111,0,24,0.12);
  box-shadow: 0 10px 22px rgba(78,30,2,0.08);
}

.stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: #6f0018;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.stats-table th,
.stats-table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid rgba(111,0,24,0.12);
}

/* Galerie stabil / Premium */
.gallery-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

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

.gallery-grid.guestbook-entry-grid,
.gallery-grid.review-entry-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.gallery-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(111,0,24,0.10);
  box-shadow: 0 14px 28px rgba(78,30,2,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(78,30,2,0.16);
}

.gallery-multi,
.gallery-item > img {
  flex: 0 0 auto;
}

.gallery-main-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.6s ease, opacity 0.45s ease;
}

.gallery-item:hover .gallery-main-image {
  transform: scale(1.045);
}

.gallery-item.no-image::before {
  content: "";
  display: block;
  height: 260px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.26), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.08));
  border-bottom: 1px solid rgba(111,0,24,0.08);
}

.gallery-item-content,
.guestbook-card-body,
.review-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 18px 20px;
  text-align: left;
}

.gallery-item-content strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.05rem;
}

.gallery-item-content p {
  flex: 1 1 auto;
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Apple Cards für Bewertungen & Gästebuch */
.apple-review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.12));
  border: 1px solid rgba(111,0,24,0.10);
  box-shadow: 0 14px 28px rgba(78,30,2,0.10), inset 0 1px 0 rgba(255,255,255,0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.apple-review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(78,30,2,0.16), inset 0 1px 0 rgba(255,255,255,0.28);
}

.apple-review-card .gallery-multi {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
}

.apple-review-card .gallery-main-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.apple-review-card.no-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 240px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(255,255,255,0.20), rgba(255,255,255,0.08));
  border-bottom: 1px solid rgba(111,0,24,0.08);
}

.apple-review-card .review-card-body,
.apple-review-card .guestbook-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 20px 22px;
}

.review-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #6f0018;
}

.review-excerpt,
.apple-review-card .review-card-body > p,
.apple-review-card .guestbook-card-body > p {
  flex: 1 1 auto;
  margin: 0;
  color: rgba(111,0,24,0.82);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.apple-review-card .entry-chip {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(111,0,24,0.06);
  border: 1px solid rgba(111,0,24,0.10);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.apple-review-card .entry-card-footer,
.entry-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.apple-review-card .owner-comment-public {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(111,0,24,0.08);
}

/* Galerie Thumbs / Pfeile stabil */
.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px 0;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(197,148,52,0.8);
  box-shadow: 0 8px 18px rgba(78,30,2,0.14);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(20,8,4,0.45);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(20,8,4,0.75);
  transform: translateY(-50%) scale(1.04);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

/* Social Premium Bar - final eindeutig */
.social-premium-bar,
.floating-social-bar {
  position: fixed !important;
  right: 18px !important;
  bottom: 90px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  z-index: 99999 !important;
}

.social-premium-link,
.floating-social-link {
  position: relative !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  overflow: visible !important;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,0.48), transparent 32%),
    linear-gradient(180deg, rgba(255,249,239,0.32), rgba(255,246,229,0.18)) !important;
  border: 1px solid rgba(111,0,24,0.16) !important;
  box-shadow: 0 14px 28px rgba(78,30,2,0.16), inset 0 1px 0 rgba(255,255,255,0.34) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  backdrop-filter: blur(14px) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, filter 0.28s ease !important;
}

.social-premium-link::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  color: #6f0018;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255,249,239,0.88);
  border: 1px solid rgba(111,0,24,0.14);
  box-shadow: 0 10px 22px rgba(78,30,2,0.14);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.social-premium-link:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.social-premium-link img,
.floating-social-link img {
  width: 25px !important;
  height: 25px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 2px 4px rgba(78,30,2,0.16));
  transition: transform 0.28s ease, filter 0.28s ease !important;
}

.social-premium-link:hover,
.floating-social-link:hover {
  transform: translateY(-5px) scale(1.08) !important;
  box-shadow: 0 20px 38px rgba(78,30,2,0.24), 0 0 18px rgba(255,255,255,0.18), inset 0 1px 0 rgba(255,255,255,0.42) !important;
}

.social-premium-link:hover img,
.floating-social-link:hover img {
  transform: scale(1.08) rotate(-3deg);
}

.social-instagram:hover {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 34%),
    linear-gradient(135deg, rgba(255,220,128,0.72), rgba(225,48,108,0.42), rgba(131,58,180,0.36)) !important;
}

.social-tiktok:hover {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.50), transparent 34%),
    linear-gradient(135deg, rgba(37,244,238,0.42), rgba(255,255,255,0.30), rgba(254,44,85,0.42)) !important;
}

.social-whatsapp:hover {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.50), transparent 34%),
    linear-gradient(135deg, rgba(37,211,102,0.48), rgba(255,255,255,0.26)) !important;
}

.social-pinterest:hover {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.50), transparent 34%),
    linear-gradient(135deg, rgba(230,0,35,0.42), rgba(255,255,255,0.26)) !important;
}

/* Responsive final */
@media (max-width: 960px) {
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .gallery-grid.guestbook-entry-grid,
  .gallery-grid.review-entry-grid,
  .form-row,
  .admin-create-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gallery-section .gallery-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main-image,
  .gallery-item.no-image::before,
  .apple-review-card .gallery-main-image,
  .apple-review-card.no-image::before {
    height: 220px;
  }

  .entry-card-footer,
  .review-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-premium-bar,
  .floating-social-bar {
    right: 12px !important;
    bottom: 76px !important;
    gap: 10px !important;
  }

  .social-premium-link,
  .floating-social-link {
    width: 48px !important;
    height: 48px !important;
  }

  .social-premium-link::before {
    display: none;
  }

  .social-premium-link img,
  .floating-social-link img {
    width: 23px !important;
    height: 23px !important;
  }
}
