/* ============================== */
/*     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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F9F7F1;
  color: #3E3A33;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  /* antialias for modern feel */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}
a {
  color: #365062;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #B18428;
  outline: none;
}

ul, ol {
  margin-left: 1.6em;
  margin-bottom: 16px;
}

strong { font-weight: bold; }

/* Utilities */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  width: 100%;
}

.text-center { text-align: center; }

/* ============================== */
/*         TYPOGRAPHY             */
/* ============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #2d3a41;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.6em;
}
h1 { font-size: 2.5rem; line-height: 1.16; }
h2 { font-size: 2rem; margin-bottom: 0.85em; }
h3 { font-size: 1.3rem; font-weight: 600; color: #35516B; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, .body-text { font-family: 'Open Sans', Arial, Helvetica, sans-serif; font-size: 1rem; margin-bottom: 16px; color: #3E3A33; }

/* ============================== */
/*         BUTTON STYLES          */
/* ============================== */
.cta-btn,
button, .newsletter-form button, .filters button,
.cookie-banner button, .cookie-modal button {
  display: inline-block;
  background: #F7C873;
  color: #345062;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  margin: 8px 0;
  box-shadow: 0 2px 10px rgba(247,200,115,0.08);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover,
button:hover,
.newsletter-form button:hover,
.filters button:hover,
.cookie-banner button:hover,
.cookie-modal button:hover {
  background: #365062;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 22px rgba(54,80,98,0.11);
}
.cta-btn:active,
button:active {
  background: #B18428;
  color: #fff;
}
.cta-btn {
  margin-left: 1.5rem;
  margin-right: 0;
}
.newsletter-form button:disabled,
.filters button:disabled {
  background: #e8e1d0;
  color: #a29a8e;
  cursor: not-allowed;
}

/* ============================== */
/*       HEADER & NAVIGATION      */
/* ============================== */
header {
  background: #fff;
  box-shadow: 0 2px 28px rgba(54,80,98,0.06);
  border-bottom: 1.5px solid #f1ebe4;
  position: relative;
  z-index: 28;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px 16px;
}
header img[alt*="Silky Mop Küche Berlin"] {
  height: 44px;
  width: auto;
  border-radius: 12px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #365062;
  padding: 6px 8px;
  border-radius: 999px;
  transition: background 0.14s, color 0.14s;
  position: relative;
}
nav a:hover, nav a.active {
  background: #F7C873;
  color: #365062;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #365062;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  padding: 4px 10px;
  border-radius: 99px;
  transition: background 0.1s;
  z-index: 50;
}
.mobile-menu-toggle:focus {
  background: #f7c873;
}
/* ===================== */
/*      MOBILE MENU      */
/* ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,246,234,0.98);
  box-shadow: 2px 0 32px rgba(54,80,98,0.09);
  transform: translateX(-100%);
  transition: transform 0.27s cubic-bezier(0.89,0.07,0.41,0.93);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #365062;
  align-self: flex-end;
  margin: 24px 32px 4px 0;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background 0.13s;
}
.mobile-menu-close:focus {
  background: #f7c873;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  color: #365062;
  background: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  margin: 0;
  font-weight: 500;
  width: 100%;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: #F7C873;
  color: #2d3a41;
}

/* Main nav hide/show for mobile */
@media (max-width: 960px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================== */
/*         FOOTER STYLES          */
/* ============================== */
footer {
  background: #365062;
  color: #fff;
  padding: 32px 0 24px 0;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -2px 26px rgba(54,80,98,0.08);
  margin-top: 52px;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-main-links, .footer-legal-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-main-links a,
.footer-legal-links a {
  color: #F7C873;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.footer-main-links a:hover, .footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact h3 {
  margin-top: 0;
  margin-bottom: 7px;
  color: #F7C873;
  font-size: 1.16rem;
}
.footer-contact p {
  font-size: 0.98rem;
  color: #f2e9d7;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.footer-contact img {
  width: 18px; height: 18px;
  border-radius: 4px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-left: 12px;
}
.footer-social a {
  background: #f7c873;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: filter 0.2s;
}
.footer-social a:hover {
  filter: brightness(0.96) contrast(1.15);
}
.footer-social img {
  width: 22px; height: 22px;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .footer-social { margin-left: 0; margin-top: 12px; }
}

/* ============================ */
/*       SECTION SPACING        */
/* ============================ */
.section,
.features,
.services,
.services-overview,
.service-cards,
.recipes-list,
.tips-grid,
.about,
.brand-story,
.testimonials,
.newsletter,
.contact,
.about-preview,
.contact-snippet,
.business-info,
.cta, .qa-section, .thank-you, .legal, .tips-hero, .tips-snippet, .insider-tips {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child,
.features:last-child,
.services:last-child,
.services-overview:last-child,
.main section:last-child,
footer {
  margin-bottom: 0;
}

/* ============================ */
/*      FLEX LAYOUT PATTERNS    */
/* ============================ */

/* Cards - Used for Services, Recipes, Features, Testimonials, etc. */
.card-container, .feature-grid, .service-cards, .service-list, .recipe-grid, .cooking-tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.card, .feature-grid > div, .service-list > div, .service-cards > div, .recipe-grid > div, .cooking-tip-cards > div {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 4px 26px rgba(54,80,98,0.10);
  padding: 26px 22px;
  margin-bottom: 20px;
  flex: 1 1 265px;
  min-width: 252px;
  max-width: 410px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover, .service-cards > div:hover, .recipe-grid > div:hover, .cooking-tip-cards > div:hover {
  box-shadow: 0 14px 38px rgba(247,200,115,0.19);
  transform: translateY(-4px) scale(1.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFE6A2;
  color: #2D3A41;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(54,80,98,0.12);
  margin-bottom: 20px;
  flex: 1 1 300px;
  max-width: 600px;
  min-width: 220px;
  transition: box-shadow 0.13s;
}
.testimonial-card strong {
  color: #365062;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.15rem;
  color: #2D3A41;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(54,80,98,0.15);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================== */
/*        HERO SECTIONS            */
/* =============================== */
.hero, .tips-hero {
  background: #fff7ea;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 36px rgba(247,200,115,0.08);
  margin-bottom: 38px;
  padding-top: 50px;
}
.hero h1, .tips-hero h1 {
  color: #365062;
  margin-bottom: 14px;
}
.hero p, .tips-hero p {
  margin-bottom: 28px;
  color: #4C4A41;
}

/* =============================== */
/*        SERVICES CARDS           */
/* =============================== */
.service-cards, .service-list {
  gap: 28px;
}
.service-cards > div, .service-list > div {
  text-align: left;
}
.service-cards strong, .service-list strong {
  color: #b18428;
  font-size: 1.04rem;
}

/* ============== */
/*   NEWSLETTER   */
/* ============== */
.newsletter {
  background: #fffcf6;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(54,80,98,0.08);
}
.newsletter h2 { color: #365062; }
.newsletter-form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.newsletter-form input[type="email"] {
  padding: 13px 20px;
  border-radius: 13px;
  border: 1.5px solid #f7c873;
  background: #fcf9f2;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  outline: none;
  min-width: 245px;
}
.newsletter-form input[type="email"]:focus {
  border-color: #365062;
  background: #fff;
}
.newsletter-form button {
  margin-top: 0;
  min-width: 140px;
}
.newsletter-form span {
  font-size: 0.92rem;
  margin-left: 1px;
  color: #b18428;
}
.newsletter-form input:disabled,
.newsletter-form button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

/* =============== */
/*    FILTERS      */
/* =============== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 1rem;
}
.filters button {
  font-size: 0.97rem;
  padding: 7px 18px;
  border-radius: 24px;
  border: 1.5px solid #F7C873;
  background: #fff5dd;
  color: #365062;
  transition: all 0.16s;
}
.filters button:disabled {
  color: #A19F91;
  border-color: #dedbcf;
  background: #f9f7f1;
}

/* =============== */
/*   QA + TIPS     */
/* =============== */
.qa-section {
  background: #fff6ea;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(247,200,115,0.08);
}
.qa-section h2 {
  color: #2d3a41;
}
.qa-section ul li {
  margin-bottom: 18px;
}
.qa-section strong {
  color: #365062;
}

.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.cooking-tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.kitchen-tools-shortlist {
  background: #FEECA8;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 14px;
  box-shadow: 0 2px 10px rgba(54,80,98,0.08);
}
.kitchen-tools-shortlist h3 {
  color: #365062;
  margin-bottom: 0.7em;
}

/* =============== */
/*    INSIDER      */
/* =============== */
.insider-tips {
  background: #FEF5E4;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(247,200,115,0.10);
}

/* ==================== */
/*   CONTACT/THANKYOU   */
/* ==================== */
.contact-snippet, .business-info, .cta, .thank-you, .about-preview {
  background: #fff8eb;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(247,200,115,0.07);
}
.contact-snippet img,
.business-info img { width: 17px; height: 17px; margin-right: 7px; }

/* =============== */
/*     LEGAL       */
/* =============== */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(54,80,98,0.11);
}

/* ==================== */
/*       FORMS          */
/* ==================== */
input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}

/* ==================== */
/*    RESPONSIVE MQ     */
/* ==================== */
@media (max-width: 1112px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .card-container, .feature-grid, .service-cards, .service-list, .recipe-grid, .cooking-tip-cards {
    gap: 16px;
  }
  .card, .feature-grid > div, .service-list > div, .service-cards > div, .recipe-grid > div, .cooking-tip-cards > div {
    min-width: 180px;
    padding: 22px 11px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container {
    padding: 0 7px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 8px 7px;
  }
  .cta-btn { margin-left: 8px; padding: 10px 18px; font-size: 0.97rem; }
  .content-wrapper { padding: 0; }
  .section,
  .features,
  .services,
  .services-overview,
  .recipies-list,
  .tips-grid,
  .about,
  .brand-story,
  .about-preview,
  .contact-snippet,
  .business-info,
  .cta,
  .newslettter {
    padding: 24px 4px;
    margin-bottom: 32px;
  }
  .feature-grid, .service-cards, .service-list, .recipe-grid, .cooking-tip-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    font-size: 0.99rem;
  }
  .footer-main-links, .footer-legal-links, .footer-contact {
    gap: 8px;
  }
  .footer-social {
    gap: 8px;
    margin-bottom: 6px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  header img[alt*="Silky Mop Küche Berlin"] { height: 32px; }
  .cta-btn { padding: 7px 11px; font-size: 0.9rem; }
}

/* ============================== */
/*     COOKIE CONSENT BANNER      */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #F9F8F3;
  color: #44423A;
  box-shadow: 0 -4px 34px rgba(54,80,98,0.09);
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
  z-index: 1200;
  padding: 23px 24px;
  transition: transform 0.28s cubic-bezier(0.71,0.09,0.48,1.17), opacity 0.21s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #3E3A33;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  margin: 0;
  padding: 10px 19px;
  font-size: 1rem;
  box-shadow: none;
  border-radius: 22px;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 6px;
    font-size: 0.98rem;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}
/* ===== Cookie Modal ===== */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1201;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(54,80,98,0.18);
  opacity: 1;
  transition: background 0.23s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 34px 30px 20px 30px;
  max-width: 390px;
  width: 98vw;
  box-shadow: 0 8px 44px rgba(54,80,98,0.15);
  z-index: 1210;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: modalfadein 0.29s cubic-bezier(0.17, 0.67, 0.61, 1.19);
}
@keyframes modalfadein {
  from { transform: translateY(24px) scale(0.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  color: #365062;
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.cookie-choice-list {
  margin: 10px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-choice-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal label {
  color: #365062;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F7C873;
  width: 19px; height: 19px;
  border-radius: 5px;
}
.cookie-modal-category {
  font-weight: 600;
}
.cookie-modal-description {
  font-size: 0.93rem;
  color: #8b8a83;
  margin-left: 28px;
  margin-bottom: 0;
}
.cookie-modal-footer {
  margin-top: 22px;
  display: flex;
  gap: 13px;
}
.cookie-modal .close-modal {
  background: none;
  color: #365062;
  border: none;
  font-size: 1.54rem;
  margin: -12px -2px 0 auto;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 11px;
  transition: background 0.12s;
}
.cookie-modal .close-modal:focus {
  background: #F7C873;
  outline: none;
}
@media (max-width: 520px) {
  .cookie-modal { padding: 20px 4vw 12px 4vw; }
}
/* =============== */
/* MICRO-EFFECTS   */
/* =============== */
.card, .feature-grid > div, .service-cards > div, .testimonial-card,
input[type="email"], .newsletter, .qa-section, .insider-tips, .about-preview, .contact-snippet, .business-info, .cta, .thank-you, .legal {
  transition: box-shadow 0.23s, background 0.17s, border 0.17s;
}

/* =============== */
/*  CUSTOM SCROLL  */
/* =============== */
html {
  scrollbar-width: thin;
  scrollbar-color: #F7C873 #faf6ed;
}
body::-webkit-scrollbar { width: 9px; }
body::-webkit-scrollbar-thumb {
  background: #F7C873;
  border-radius: 18px;
}
body::-webkit-scrollbar-track {
  background: #faf6ed;
  border-radius: 18px;
}

/* =============== */
/*   MISC FINE     */
/* =============== */
.small { font-size: 0.93rem; color: #A09989; }

/* ============================== */
/*    END OF STYLE.CSS            */
/* ============================== */
