/* Küchenzauber Express – Vintage Retro Style Reset & Theme CSS */

/* ==== CSS RESET & NORMALIZE ==== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
}
body {
  line-height: 1.5;
  background: #FCF8F3;
  color: #2c3a19;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border: none;
  background: none;
}

/* ==== VINTAGE RETRO COLOR PALETTE ==== */
:root {
  --primary: #355634;
  --secondary: #E5B27A;
  --accent: #FFFFFF;
  --background: #FCF8F3;
  --retro-orange: #DB774D;
  --retro-green: #A2B08B;
  --retro-yellow: #F7E6A2;
  --retro-brown: #7D5E2A;
  --retro-blue: #6D8A99;
  --border-color: #EADAB6;
  --shadow: 0 4px 20px rgba(45,37,21,0.07);
}

/* ==== TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 2px 0 #FFF5E1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
body, p, li, blockquote, table, th, td, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: #3d3b31;
}
p {
  margin-bottom: 18px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--retro-brown);
}
em {
  font-style: italic;
  color: var(--retro-orange);
}
blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--retro-blue);
  border-left: 5px solid var(--retro-orange);
  background: var(--retro-yellow);
  padding: 16px 20px 16px 28px;
  margin-bottom: 12px;
  border-radius: 10px 16px 18px 10px;
  box-shadow: 0 2px 6px #e8dcc0;
}

/* ==== LAYOUT CONTAINERS & SPACING ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--background);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: var(--accent);
  box-shadow: 0 1px 10px rgba(92, 71, 42, 0.13);
  border: 1.5px solid var(--border-color);
  padding: 22px;
  transition: transform .15s, box-shadow .2s;
}
.card:hover, .card:focus-within {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 4px 28px rgba(219,119,77,0.10);
  border-color: var(--retro-orange);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  background: #fffcea;
  box-shadow: 0 2px 14px rgba(53,86,52,0.09);
  margin-bottom: 20px;
  border: 1.5px dashed var(--retro-orange);
  position: relative;
  flex-direction: row;
  min-width: 0;
  min-height: 0;
}
.testimonial-card p {
  font-style: italic;
  color: var(--primary);
  margin-bottom: 0;
  margin-left: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  background: #faecd9;
  border-radius: 14px;
  padding: 20px 18px;
  margin-bottom: 20px;
  border-left: 5px solid var(--retro-brown);
}
@media (max-width: 768px){
  .container {
    padding: 0 8px;
  }
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  .content-wrapper,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==== HERO SECTION ==== */
.hero {
  background: repeating-linear-gradient(135deg, #f7edd7 0 16px, #fff 16px 32px);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 6px 32px rgba(53,86,52,0.10);
  padding-top: 44px;
  padding-bottom: 44px;
  margin-bottom: 60px;
}
.hero h1, .hero h2 {
  color: var(--retro-orange);
  font-size: 2.4rem;
  text-shadow: 0 1px 0 #fff, 0 1.5px 2px #E5B27A66;
}
.hero p {
  font-size: 1.15rem;
  color: var(--primary);
}

/* ==== NAVIGATION BAR ==== */
header {
  background: var(--primary);
  padding: 20px 0;
  width: 100%;
  border-bottom: 7px double var(--secondary);
}
header .container {
  height: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
header img {
  max-height: 56px;
  padding: 12px 0;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  color: var(--retro-yellow);
  font-family: 'Playfair Display', serif;
  font-size: 1.09rem;
  letter-spacing: .5px;
  padding: 5px 9px;
  border-radius: 7px;
  transition: background .15s, color .2s;
}
header nav a:hover, header nav a:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}
.cta-primary {
  display: inline-block;
  background: var(--retro-orange);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 18px;
  padding: 12px 28px;
  letter-spacing: 2.5px;
  box-shadow: 0 2px 8px #e5b27a33;
  margin-left: 8px;
  border: 2px solid var(--retro-brown);
  transition: background 0.19s, color 0.18s, box-shadow .18s, border-color .16s;
  text-shadow: 0 1px 0 #b74b10bb;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--retro-yellow);
  border-color: var(--retro-yellow);
  box-shadow: 0 4px 20px #e5b27a23, 0 0px 0 #fff0;
  text-shadow: none;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  position: fixed;
  display: none;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--retro-yellow);
  border-radius: 50%;
  z-index: 9999;
  font-size: 2rem;
  border: 2px solid var(--retro-yellow);
  box-shadow: 0 1px 10px #e5b27a22;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus {
  outline: 3px dashed var(--retro-orange);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--retro-yellow);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 15000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 34px 0 28px;
  box-shadow: 8px 0 32px #7d5e2a23;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 24px;
  margin-bottom: 30px;
  align-self: flex-end;
  font-size: 2.2rem;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #e5b27a22;
  cursor: pointer;
}
.mobile-menu-close:focus {
  outline: 3px dashed var(--retro-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  padding: 10px 0 10px 8px;
  border-radius: 11px;
  transition: background .18s, color .18s;
  min-width: 140px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  color: var(--retro-yellow);
}

@media (max-width: 900px){
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, header .cta-primary {
    display: none !important;
  }
}
@media (min-width: 901px){
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--retro-yellow);
  font-size: 1rem;
  padding: 36px 0 12px 0;
  border-top: 7px double var(--secondary);
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-direction: row;
  margin-bottom: 12px;
}
footer nav a {
  font-family: 'Playfair Display', serif;
  color: var(--retro-yellow);
  padding: 4px 8px;
  border-radius: 7px;
  transition: background .15s, color .13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--retro-yellow);
  color: var(--primary);
}
footer address {
  font-style: normal;
  color: var(--retro-yellow);
  font-size: .99rem;
  line-height: 1.7;
}
footer address a {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 768px){
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ==== TABLE ==== */
table {
  width: 100%;
  background: #fffcea;
  border-radius: 14px;
  margin: 12px 0 22px 0;
  box-shadow: 0 2px 12px #e5b27a19;
  overflow: hidden;
}
th, td {
  padding: 12px 18px;
  border-bottom: 1px dashed var(--retro-orange);
  text-align: left;
  font-size: 1rem;
}
th {
  background: var(--retro-yellow);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
}
tr:last-child td {
  border-bottom: none;
}

/* ==== BUTTONS & CTA BARS ==== */
.cta-bar {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
button,
input[type=button],
input[type=submit] {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  background: var(--retro-orange);
  color: #fff;
  border-radius: 13px;
  padding: 10px 26px;
  border: 2px solid var(--retro-brown);
  box-shadow: 0 2px 16px #e5b27a21;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow .18s, border-color .18s;
}
button:hover, button:focus,
input[type=button]:hover, input[type=submit]:hover {
  background: var(--primary);
  color: var(--retro-yellow);
  border-color: var(--retro-yellow);
}

/* ==== NEWSLETTER SECTION ==== */
.highlight {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 18px;
}

/* ==== FORM FIELD STYLES ==== */
input[type="text"],
input[type="email"],
textarea {
  background: #fff;
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #e5b27a99;
  margin-bottom: 8px;
  transition: border-color .15s, box-shadow .15s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--retro-orange);
  box-shadow: 0 0 7px #db774d44;
}

/* ==== UL/LI PATTERNS ==== */
ul {
  padding-left: 0;
  margin-bottom: 18px;
  list-style: none;
}
ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
}
ul li img {
  width: 28px;
  height: 28px;
  filter: sepia(0.35) saturate(1.2) brightness(1.08);
  border-radius: 6px;
  background: #fff0;
}
/* Retro Bullet Points for non-icon lists */
ul li:not(:has(img))::before {
  content: '\2022';
  color: var(--retro-brown);
  font-size: 1.44em;
  margin-right: 10px;
  line-height: 0.9;
  font-family: 'Playfair Display', serif;
  opacity: .7;
}
ul li:has(img)::before { content: none; }

/* ==== RESPONSIVE ==== */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.09rem; }
  .hero h1 { font-size: 1.6rem; }
  .container { padding: 0 2vw; }
  .section { padding: 18px 2vw; }
  .card { padding: 15px 5vw; }
  .cta-primary, button, input[type=button], input[type=submit] { font-size: 1rem; padding: 10px 16px; }
}

/* ==== MICRO INTERACTIONS & TRANSITIONS ==== */
a, button, input[type=button], input[type=submit], .cta-primary {
  transition: background .18s, color .17s, box-shadow .20s, border-color .18s, transform .14s;
}
.card, .testimonial-card, .highlight, .section, .cta-primary {
  transition: box-shadow .18s, border-color .14s, transform .13s;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--retro-brown);
  color: #fff;
  z-index: 16000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  gap: 18px;
  font-size: 1rem;
  box-shadow: 0 -4px 24px #e5b27a66;
  animation: cookieSlideUp .45s cubic-bezier(.55,1.2,.23,1.15);
}
@keyframes cookieSlideUp {
  from { transform: translateY(110%);} to { transform: translateY(0);}
}
.cookie-banner-content {
  flex: 2 1 60%;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-banner button, .cookie-banner .cookie-banner-btn {
  background: var(--retro-yellow);
  color: var(--retro-brown);
  padding: 9px 18px;
  border-radius: 9px;
  border: 1.5px solid var(--retro-orange);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 6px;
  min-width: 105px;
  box-shadow: 0 0 6px #faecd922;
  transition: background .17s, color .18s, border-color .14s;
}
.cookie-banner button:hover, .cookie-banner .cookie-banner-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner .cookie-banner-btn.cookie-reject {
  background: #fff;
  color: var(--retro-orange);
  border-color: var(--retro-orange);
}
.cookie-banner .cookie-banner-btn.cookie-reject:hover {
  background: var(--retro-orange);
  color: #fff;
}
@media (max-width:600px){
  .cookie-banner {
    flex-direction: column;
    padding: 18px 8px;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(52,42,22,.36);
  z-index: 17000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .36s ease;
}
@keyframes fadeInModal {
  from { opacity: 0;} to {opacity:1;}
}
.cookie-modal {
  background: var(--retro-yellow);
  color: var(--primary);
  border-radius: 19px;
  max-width: 420px;
  width: 88vw;
  box-shadow: 0 6px 34px #e5b27ad8;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 30px 26px 22px 26px;
  z-index: 9992;
  position: relative;
  animation: modalPopIn .34s cubic-bezier(.55,1.3,.23,1.12);
}
@keyframes modalPopIn {
  from { transform: scale(.87); opacity: 0; } to { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--retro-brown);
  color: var(--retro-yellow);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  font-family: inherit;
  border: 1.5px solid var(--retro-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-modal-close:hover {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-modal h2 {
  color: var(--retro-brown);
  font-size: 1.27rem;
  margin-bottom: 13px;
  margin-top: 0;
  text-shadow: none;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.cookie-modal input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--retro-orange);
  border-radius: 4px;
}
.cookie-modal-category {
  background: #fffcd9;
  padding: 7px 12px;
  border-radius: 7px;
  margin-bottom: 8px;
  font-size: 1.04rem;
  border-left: 4px solid var(--retro-orange);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal-actions button {
  background: var(--retro-orange);
  color: #fff;
  border-radius: 8px;
  border: 1px solid var(--retro-brown);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  padding: 9px 22px;
  transition: background .18s, color .17s;
}
.cookie-modal-actions button:hover {
  background: var(--primary);
  color: var(--retro-yellow);
  border-color: var(--primary);
}

/* ==== UTILITY ==== */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.centered { align-items: center; justify-content: center; }
.mb8 { margin-bottom: 8px; }
.mb20 { margin-bottom: 20px; }
.mb32 { margin-bottom: 32px; }
.mb60 { margin-bottom: 60px; }
.gap8 { gap: 8px; }
.gap16 { gap: 16px; }
.gap24 { gap: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.rounded-lg { border-radius: 18px; }

/* ==== PRINTABLE LEGACY RETRO DECORATIVE ELEMENTS (optional) ==== */
.section {
  border: 2.5px dashed #f8dcad;
  background-repeat: repeat;
  background-image: repeating-linear-gradient(135deg, #fffcea 0 16px, #fcf8f3 16px 32px);
}

/* ==== ACCESSIBILITY ==== */
:focus-visible {
  outline: 3px dashed var(--retro-orange) !important;
  outline-offset: 1.5px;
  background: #f7e6a244;
}

/* ==== END ==== */
