:root {
  --accent-yellow: #f3c552;
  --accent-green: #708b75;
  --text: #222;
  --muted: #666;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(34,34,34,0.08);
}

/* =========================
   BASE
========================= */

body {
  font-family: Inter, system-ui, sans-serif;
  margin: 0;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* =========================
   HEADER
========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
  transition: top 0.4s ease, background 0.4s ease, height 0.3s ease;
  z-index: 100;
}

header.hidden {
  top: -100px;
}

/* LOGO */

.logo a {
  font-weight: 700;
  color: var(--accent-green);
  font-size: 1.8rem;
}

/* NAV */

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  justify-content: center;
}

nav a {
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .3s, color .3s;
}

nav a:hover {
  background: rgba(0,0,0,0.05);
  color: var(--accent-green);
}

/* HEADER ICONS */

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}

.header-icons a {
  font-size: 1.3rem;
  color: var(--accent-green);
  transition: transform 0.2s;
  position: relative;
}

.header-icons a:hover {
  transform: scale(1.2);
}

/* CART */

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent-yellow);
  color: #000;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--accent-green);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -250px;
  width: 220px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 200;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-size: 1.2rem;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s;
}

.mobile-nav a:hover {
  background: rgba(0,0,0,0.05);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  nav ul {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  header {
    padding: 0 20px;
  }
}

/* =========================
   FOOTER
========================= */

footer {
  background: url('../../pictures/footer/Hintergrund1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 40px 20px 0;
  box-shadow: var(--shadow);
  margin-top: auto;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.footer-service {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

.footer-service a {
  color: #eee;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-service a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  color: #ddd;
  position: relative;
  z-index: 1;
}