/* Soft color palette */
body {
    background-color: white;
    color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Header */
.navbar {
  background-color: #f7f7f7;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.nav-link:hover {
  text-decoration: underline;
}
/* Content and Container */
.container {
    max-width: 1200px;
}

/* Footer */
.footer {
  background-color: #f8f8f8;
  color: #333;
  font-size: 0.9rem;
}

.footer a:hover {
  text-decoration: underline;
  color: #897058;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer ul li {
  margin-bottom: 0.3rem;
}

.footer .fs-4 svg {
  width: 2rem;
  height: 2rem;
}

/* Banner */
.content {
    color: black;
}
.goright {
    margin-left: 1vw; /* Adds 20px space */
}

svg {
    color: #897058;
    width: 3vh; /* Make the SVG icon bigger */
    height: 3vh;
  }

.icon {
  display: inline-block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff3cd;
  color: #856404;
  padding: 1rem;
  border-top: 1px solid #ffeeba;
  z-index: 1030;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.cart-icon {
  position: relative;
  display: inline-block;
  font-size: 1.6rem; /* Icon-Größe */
  color: black;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: white;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
}
.banner {
  background: #f8f8f8;
  font-size: 0.75rem;
}

.banner-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 6px 10px;
  text-align: center;
}
.headline {
  position: relative;
  padding: 10px 16px;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left,
.header-right {
  width: 40px; /* gleiche optische Breite */
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.2rem;
}

.header-favicon {
    display: inline-block;
    height: 3.5rem;
    width: auto;
    max-height: 96px;
    vertical-align: middle;
}

html, body {
  overflow-x: hidden;
}

.btn-chubbyko {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 12px;
    border: 2px solid #999;
    border-radius: 6px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}

/* subtle click effect */
.btn-chubbyko:active {
    background-color: #333;   /* darkens */
    color: #fff;               /* text inverts */
    border-color: #333;        /* border darkens too */
}
#cart_quantity:empty, #cart_quantity:contains('0') {
    display: none;
}
