/*
Theme Name: WHI Theme
Author: webblick.eu / Daniel Kreusch
Version: 1.0
Description: Minimal Gutenberg Blank Block Theme
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}

/* -----------------------------
   LAYOUT
------------------------------*/

main,
.wp-block-post-content,
.wp-block-query,
.wp-block-group:not(.whi-header):not(.whi-footer):not(.whi-topbar) {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 40px;
  padding-right: 40px;
}

/* =========================
   MOBILE PADDING
========================= */
@media (max-width: 768px) {

  main,
  .wp-block-post-content,
  .wp-block-query,
  .wp-block-group:not(.whi-header):not(.whi-footer):not(.whi-topbar) {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.wp-site-blocks {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Wide Blocks */
.alignwide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Full Width Blocks */
.alignfull {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

/* Sections spacing */
.wp-block-group {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* -----------------------------
   TYPOGRAPHY
------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-top: 0;
  font-weight: 600;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.2rem;
  color: #444;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: #9B1E1E;
  text-decoration: underline;
  text-decoration-color: #9B1E1E;
  opacity: 1;
  /* wichtig, damit dein Effekt sichtbar ist */
}

.whi-topbar-inner a:hover {
  color: #fbf2f2d9;
  text-decoration: underline;
  text-decoration-color: #9B1E1E;
  opacity: 1;
  /* wichtig, damit dein Effekt sichtbar ist */
}


.border-rounded {
  border-radius: 15px;
}

/* -----------------------------
   BUTTONS
------------------------------*/

.is-style-primary .wp-block-button__link {
  transition: all 0.2s ease;
}

.is-style-primary .wp-block-button__link:hover {
  background-color: #cc5200;
}

.wp-block-button__link {
  background: #9B1E1E;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.wp-block-button__link:hover {
  background: #fff;
  color: #9B1E1E;
  border: 1px solid #9B1E1E;
  transform: translateY(-2px);
}

/* Outline Button */
.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid #9B1E1E;
  color: #9B1E1E;
}

.is-style-outline .wp-block-button__link:hover {
  background: #000;
  color: #fff;
}

/* -----------------------------
   NAVIGATION
------------------------------*/

.wp-block-navigation {
  font-weight: 500;
}

.wp-block-navigation a {
  padding: 8px 12px;
}

.wp-block-navigation a:hover {
  background: #f5f5f5;
  border-radius: 4px;
}

/* -----------------------------
   HEADER
------------------------------*/

header,
.wp-block-template-part[slug="header"] {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

/* -----------------------------
   FOOTER
------------------------------*/

.wp-block-template-part[slug="footer"] {
  background: #f9f9f9;
  border-top: 1px solid #eee;
  padding: 40px 0;
  font-size: 0.9rem;
  color: #666;
}

/* -----------------------------
   IMAGES
------------------------------*/

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* -----------------------------
   FORMS
------------------------------*/

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #000;
}

/* -----------------------------
   MOBILE OPTIMIZATION
------------------------------*/



@media (max-width: 768px) {


  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .wp-block-group {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .wp-block-navigation {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .wp-block-button__link {
    width: 100%;
    text-align: center;
  }

}

/* ============================
   RESTAURANT HEADER
============================ */

/* HEADER & FOOTER breiter */

.whi-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 0 0;
}

.whi-header-inner {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.whi-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hauptlogo */
.whi-logo-main {
  height: 50px;
}

/* Zweites Bild (nur Desktop) */
.whi-logo-desktop {
  height: 30px;
}

/* 🔥 MOBILE AUSBLENDEN */
@media (max-width: 900px) {
  .whi-logo-desktop {
    display: none;
  }
}

.whi-logo a {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.whi-nav {
  flex: 1;
  justify-content: center;
}

.whi-nav a {
  padding: 8px 14px;
  font-weight: 500;
}

.whi-cta {
  display: flex;
  gap: 12px;
}

/* Buttons */

.whi-btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s ease;
}

.whi-btn-outline {
  border: 1px solid #000;
  color: #000;
}

.whi-btn-outline:hover {
  background: #000;
  color: #fff;
}

.whi-btn-primary {
  background: #000;
  color: #fff;
}

.whi-btn-primary:hover {
  background: #222;
  transform: translateY(-2px);
}

/* ============================
   MOBILE
============================ */

@media (max-width: 992px) {

  .whi-nav {
    display: none;
  }

  .whi-header-inner {
    justify-content: space-between;
  }

  .whi-cta {
    gap: 8px;
  }

  .whi-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {

  .whi-cta {
    flex-direction: column;
  }

  .whi-btn {
    width: 100%;
    text-align: center;
  }

}

/* ============================
   RESTAURANT FOOTER
============================ */

.whi-footer {
  background: #fff;
  color: #000;
  padding: 80px 0 30px;
}

.whi-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.whi-footer h4 {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
}

.whi-footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}

.whi-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whi-footer li {
  margin-bottom: 10px;
}

.whi-footer a {
  color: #000;
  text-decoration: underline;
  transition: 0.2s ease;
}

.whi-footer a:hover {
  color: #9B1E1E;
  text-decoration: none;
  text-decoration-color: #9B1E1E;
  opacity: 1;
  /* wichtig, damit dein Effekt sichtbar ist */
}

/* Social Icons */

.whi-social {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.whi-social a {
  color: #000;
  transition: 0.2s ease;
}

.whi-social a:hover {
  color: #000;
  transform: translateY(-2px);
}

.whi-footer-bottom {
  position: relative;
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  font-size: 13px;
  color: #000;
  overflow: hidden;
}

/* 🔥 Linie über volle Breite */
.whi-footer-bottom::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  left: 0;
  transform: none;
  height: 1px;
  background: #222;
}

/* ❤️ Herz mittig auf der Linie */
.whi-footer-bottom::after {
  content: "♥";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  /* 🔥 wichtig = Linie wird "unterbrochen" */
  padding: 0 10px;
  color: #9B1E1E;
  font-size: 20px;
}

/* Text darunter */
.whi-footer-bottom span {
  display: block;
  margin-top: 20px;
}

/* ============================
   MOBILE
============================ */

@media (max-width: 992px) {

  .whi-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

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

  .whi-footer {
    padding: 60px 0 30px;
  }

  .whi-footer h4 {
    margin-top: 30px;
  }

}

.wp-block-post-template {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .wp-block-post-template {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wp-block-post-template {
    grid-template-columns: repeat(3, 1fr);
  }
}

.whi-shop-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.whi-shop-card:hover {
  transform: translateY(-6px);
}

.whi-shop-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.whi-shop-content {
  padding: 16px;
}

.whi-shop-price {
  font-weight: bold;
  color: #b38b59;
  margin-top: 6px;
}


/* ================================
   SHOP WRAPPER
================================ */

.whi-shop-wrapper {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ================================
   GRID
================================ */

.wp-block-post-template {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Tablet */
@media (min-width: 768px) {
  .wp-block-post-template {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .wp-block-post-template {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================
   PRODUCT CARD
================================ */

.whi-product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.whi-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.whi-product-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f5f5f5;
}

.whi-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.whi-product-card:hover img {
  transform: scale(1.08);
}

/* BODY */

.whi-product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* TITLE */

.whi-product-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.whi-product-body a {
  text-decoration: none;
  color: #111;
}

.whi-product-body a:hover {
  color: #b38b59;
}

/* PRICE */

.whi-shop-price {
  font-size: 18px;
  font-weight: bold;
  color: #b38b59;
}

/* BUTTON */

.whi-product-button {
  margin-top: 10px;
  padding: 12px 16px;
  background: #111;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s ease;
}

.whi-product-button:hover {
  background: #b38b59;
}

/* PAGINATION */

.wp-block-query-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.wp-block-query-pagination a {
  padding: 10px 15px;
  background: #f2f2f2;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
}

.wp-block-query-pagination a:hover {
  background: #111;
  color: #fff;
}


/* ===============================
   SINGLE PRODUCT PAGE
================================ */

.whi-product-single-wrapper {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.whi-product-single-layout {
  gap: 60px;
  align-items: flex-start;
}

.whi-product-single-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.whi-product-single-info h1 {
  font-size: 34px;
  margin-bottom: 15px;
}

.whi-shop-price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #b38b59;
}

.whi-product-single-info p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Cart Bereich schöner */
.wpsl-product-cart-control {
  margin-top: 25px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #eee;
}

/* MOBILE OPTIMIERUNG */
@media (max-width: 768px) {

  .whi-product-single-layout {
    flex-direction: column;
    gap: 30px;
  }

  .whi-product-single-info h1 {
    font-size: 24px;
  }

  .whi-shop-price {
    font-size: 22px;
  }
}

.whi-logo img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

/* =========================
   TOPBAR
========================= */
/* BASE */
.whi-topbar {
  background: #9c1e1e;
  color: #fff;
}

/* MOBILE FIRST */
.whi-topbar-inner {
  display: flex;
  flex-direction: column;
}

/* ROW 1 (WICHTIGSTE ACTIONS) */
.whi-topbar-main {
  display: flex;
}

.whi-topbar-main a {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
}

/* CALL */
.whi-call {
  background: #9B1E1E;
  color: #fff;
}

/* RESERVE (HIGHLIGHT) */
.whi-reserve {
  background: #c62828;
  color: #fff;
}

/* ROW 2 */
.whi-topbar-secondary {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  font-size: 13px;
  color: #fff;

}

/* LINKS */
.whi-topbar a {
  color: #fff;
  text-decoration: none;
}

/* =========================
   DESKTOP TOPBAR (RESTORE)
========================= */
@media (min-width: 900px) {

  .whi-topbar-desktop {
    background: #9B1E1E;
    color: #fff !important;
  }

  .whi-topbar-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    max-width: 1400px;
    margin: auto;
  }

  /* RESET mobile layout */
  .whi-topbar-main {
    display: flex;
    gap: 15px;
  }

  .whi-topbar-main a {
    flex: unset;
    padding: 0;
    font-size: 14px;
    background: transparent;
  }

  /* Secondary rechts */
  .whi-topbar-secondary {
    padding: 0;
    gap: 15px;
    font-size: 14px;
  }

  /* Secondary rechts */
  .whi-topbar-secondary a {
    color: #fff;
  }

}

/* =========================
   HEADER
========================= */
.whi-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.whi-header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 10px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.whi-logo img {
  height: 60px;
}

/* NAV */
.whi-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.whi-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* =========================
   DROPDOWN DESKTOP
========================= */
.whi-dropdown {
  position: relative;
}

.whi-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: #fff;
  min-width: 200px;
  border: 1px solid #eee;

  display: none;
}

.whi-dropdown:hover .whi-dropdown-menu {
  display: block;
}

.whi-dropdown-menu a {
  display: block;
  padding: 10px 15px;
}

.whi-dropdown-menu a:hover {
  background: #f5f5f5;
}

/* =========================
   MOBILE
========================= */

body.menu-open {
  overflow: hidden;
}

.whi-mobile-toggle {
  display: none;
  font-size: 50px;
  cursor: pointer;
}

/* MOBILE MENU */
.whi-mobile-menu {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  background: #fff;
  z-index: 9999;

  display: flex;
  flex-direction: column;

  padding: 80px 25px 40px;

  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
}

.whi-mobile-menu.active {
  transform: translateX(0);
}

.whi-mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: #222;
}

.whi-mobile-menu a,
.whi-mobile-dropdown-toggle {
  font-size: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

/* MOBILE DROPDOWN */
.whi-mobile-dropdown-toggle {
  padding: 12px 0;
  cursor: pointer;
  font-weight: 500;
}

.whi-mobile-submenu {
  display: none;
  padding-left: 10px;
  background: #f9f9f9;
}

.whi-mobile-submenu.active {
  display: block;
}

.whi-mobile-submenu a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
}

.whi-mobile-submenu.active {
  max-height: 500px;
}

.whi-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}

/* BUTTON */
.whi-btn-primary {
  background: #9c1e1e;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  margin-top: 10px;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

  .whi-nav {
    display: none;
  }

  .whi-mobile-toggle {
    display: block;
  }

  .whi-topbar-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    color: #fff;
  }
}

/* =========================
   TIMELINE
========================= */


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px 0;
}

/* Linie */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #ddd;
  transform: translateX(-50%);
}

/* Item */
.timeline-item {
  width: 50%;
  padding: 20px 40px;
  position: relative;
}

/* links */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

/* rechts */
.timeline-item:nth-child(even) {
  left: 50%;
}

/* Punkt */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 14px;
  height: 14px;
  background: #cc5200;
  border-radius: 50%;
  z-index: 2;
}

/* Punkt Position */
.timeline-item:nth-child(odd)::before {
  right: -7px;
}

.timeline-item:nth-child(even)::before {
  left: -7px;
}

/* Content Box */
.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.timeline-date {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #cc5200;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    margin-bottom: 30px;
  }

  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: left;
  }

  .timeline-item::before {
    left: 13px;
  }
}


@media (max-width: 900px) {

  /* Submenu IMMER sichtbar */
  .whi-mobile-submenu {
    display: block !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent;
    margin-left: 0;
    padding-left: 15px;
  }

  .whi-mobile-submenu a {
    font-size: 16px;
    padding: 8px 0;
    color: #555;
  }

  /* Toggle ausblenden (brauchst du nicht mehr) */
  .whi-mobile-dropdown-toggle {
    font-weight: bold;
    border-bottom: none;
    padding-bottom: 5px;
  }

}


/* =========================
   MOBILE ICON TOPBAR
========================= */

.whi-topbar-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.whi-topbar-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 10px 5px;
  text-decoration: none;
  color: #fff;

  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.whi-topbar-icons a:last-child {
  border-right: none;
}

/* ICON */
.whi-topbar-icons span {
  font-size: 20px;
  margin-bottom: 3px;
}

/* TEXT */
.whi-topbar-icons small {
  font-size: 11px;
}

/* HOVER */
.whi-topbar-icons a:hover {
  background: #7a1515;
}

/* =========================
   MOBILE ICON TOPBAR
========================= */

.whi-topbar-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.whi-topbar-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 10px 5px;
  text-decoration: none;
  color: #fff;

  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.whi-topbar-icons a:last-child {
  border-right: none;
}

/* ICON */
.whi-topbar-icons span {
  font-size: 20px;
  margin-bottom: 3px;
}

/* TEXT */
.whi-topbar-icons small {
  font-size: 11px;
}

/* HOVER */
.whi-topbar-icons a:hover {
  background: #7a1515;
}

/* =========================
   MOBILE ICON TOPBAR
========================= */

.whi-topbar-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.whi-topbar-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 10px 5px;
  text-decoration: none;
  color: #fff;

  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.whi-topbar-icons a:last-child {
  border-right: none;
}

/* ICON */
.whi-topbar-icons span {
  font-size: 20px;
  margin-bottom: 3px;
}

/* TEXT */
.whi-topbar-icons small {
  font-size: 11px;
}

/* HOVER */
.whi-topbar-icons a:hover {
  background: #7a1515;
}

@media (min-width: 900px) {

  .whi-topbar-icons {
    display: none;
  }

  .whi-topbar {
    display: none;
  }

}

@media (max-width: 900px) {

  .whi-topbar-desktop {
    display: none;
  }

}

.whi-topbar-icons svg {
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
}

.whi-topbar-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


@media (max-width: 900px) {
  .whi-topbar {
    position: sticky;
    top: 0;
    z-index: 9998;
    width: 100%;
  }

  .whi-header {
    position: sticky;
    top: 64px;
    /* Höhe deiner mobilen Topbar */
    z-index: 9998;
  }
}

@media (max-width: 900px) {
  .whi-topbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
  }

  body {
    padding-top: 64px;
  }
}