/* --- CSS RESET & NORMALIZATION --- */
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, main, 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 {
  background: #fff;
  line-height: 1.6;
  color: #2b241c;
}
ul, ol {
  list-style: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
button {
  cursor: pointer;
}
:focus {
  outline: 2px solid #a89f91;
  outline-offset: 2px;
}

/* --- BRAND FONTS & BASE TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Quicksand:700,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap');

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #fff;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #6A4B30;
  line-height: 1.15;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.8rem;
  margin-top: 24px;
}
h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a89f91;
  font-weight: 700;
}
p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
}
.text-section ul, .text-section ol, ul, ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.text-section ul li, ul li {
  margin-bottom: 8px;
  position: relative;
  font-size: 1rem;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #a89f91;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.text-section ul li strong {
  color: #6A4B30;
}

/* --- GLOBAL SPACING & CONTAINER LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(106,75,48,0.07), 0 1.5px 3px rgba(106,75,48,0.03);
  transition: box-shadow 0.25s;
  overflow: hidden;
  position: relative;
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(106,75,48,0.13), 0 3px 6px rgba(106,75,48,0.10);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #FAF6F0;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(106,75,48,0.10);
  padding: 20px;
  margin-bottom: 20px;
  color: #322a21;
  max-width: 520px;
  border-left: 7px solid #A89F91;
  transition: box-shadow 0.2s, border-left-color 0.2s;
}
.testimonial-card:hover {
  border-left-color: #6A4B30;
  box-shadow: 0 5px 18px 0 rgba(106,75,48,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FLEX-ONLY: No grid/columns. Only flexbox. --- */
.features-section ul,
.catalog-preview ul,
.services-teaser ul,
.contact-teaser ul,
.about-section ul,
.team-section ul,
.product-categories ul,
.product-listing ul,
.wishlist-management ul,
.contact-info-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.catalog-preview ul, .product-categories ul {
  gap: 8px;
}

.wishlist-management ul li, .product-listing ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: relative;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 16px -2px rgba(170,150,130,.06);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 20px;
}
.main-nav > a {
  display: flex;
  align-items: center;
}
.main-nav img {
  height: 36px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.main-nav ul li a {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #6A4B30;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #a89f91;
  color: #fff;
}

/* --- MOBILE MENU BUTTON --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  background: #6A4B30;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  z-index: 201;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #a89f91;
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.85,0,.25,1);
  z-index: 3000;
  box-shadow: 0 0 40px 8px rgba(42,32,22,0.12);
  display: flex;
  flex-direction: column;
  padding: 32px 20px 24px 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.7rem;
  background: #a89f91;
  color: #fff;
  border: none;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #6A4B30;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 16px 0;
}
.mobile-nav a {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  color: #6A4B30;
  font-weight: 700;
  padding: 18px 0 6px 3px;
  border-radius: 6px;
  transition: background 0.1s, color 0.1s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A89F91;
  color: #fff;
}

/* --- HERO SECTIONS --- */
.hero-section, .services-hero, .wishlist-hero, .contact-hero, .catalog-hero, .about-section, .about-teaser, .thank-you-section {
  background: #F6EBDD;
  border-bottom-left-radius: 64px;
  border-bottom-right-radius: 64px;
  box-shadow: 0 4px 32px -8px #a89f91 inset;
  margin-bottom: 54px;
  padding: 60px 0 36px 0;
  text-align: left;
}

.hero-section h1, .services-hero h1, .wishlist-hero h1, .contact-hero h1, .thank-you-section h1, .catalog-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  color: #6A4B30;
}
.hero-section p, .services-hero p, .wishlist-hero p, .contact-hero p, .thank-you-section p, .catalog-hero p {
  font-size: 1.15rem;
  color: #473a2a;
}

/* --- SECTION LAYOUTS --- */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
}

.features-section, .about-teaser, .catalog-preview, .services-teaser, .contact-teaser, .product-categories, .product-listing, .catalog-info, .wishlist-management, .wishlist-consulting, .contact-form-section, .contact-info-section, .privacy-policy-section, .gdpr-section, .terms-section, .cookie-policy-section, .brand-promise-section, .team-section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(170,150,130,.04);
}

.features-section ul li, .services-teaser ul li, .contact-teaser ul li {
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.features-section ul li img, .services-teaser ul li img, .contact-teaser ul li img {
  width: 32px;
  height: 32px;
  background: #F6EBDD;
  border-radius: 6px;
  margin-right: 8px;
}

.catalog-preview ul li {
  font-size: 1.08rem;
}

/* --- CTA BUTTONS --- */
.cta-button, .mini-cta-button, .text-section button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 14px 36px;
  background: #6A4B30;
  color: #fff;
  border-radius: 12px;
  border: none;
  margin-top: 20px;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 7px rgba(170,150,130,0.12);
  transition: background 0.18s, transform 0.09s;
}
.mini-cta-button {
  font-size: 1rem;
  padding: 10px 24px;
  background: #A89F91;
  color: #fff;
}
.cta-button:hover, .mini-cta-button:hover, .cta-button:focus, .mini-cta-button:focus, .text-section button:hover, .text-section button:focus {
  background: #A89F91;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.text-section button {
  background: #a89f91;
  color: #fff;
  border-radius: 8px;
  font-size: .98rem;
  padding: 7px 18px;
  margin: 0 5px;
  transition: background 0.12s, color 0.13s, transform 0.1s;
}
.text-section button:hover, .text-section button:focus {
  background: #6A4B30;
}

/* -- Filter Bar styling (catalog) -- */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.filter-bar ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-bar ul li a {
  background: #F6EBDD;
  color: #6A4B30;
  border-radius: 7px;
  padding: 6px 19px;
  font-weight: 700;
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  transition: background 0.13s, color 0.12s;
}
.filter-bar ul li a:hover, .filter-bar ul li a:focus {
  background: #a89f91;
  color: #fff;
}

/* --- FOOTER --- */
footer {
  background: #6A4B30;
  color: #fff;
  border-top-left-radius: 56px;
  border-top-right-radius: 56px;
  margin-top: 64px;
  padding: 44px 0 30px 0;
  box-shadow: 0 -2px 24px rgba(170,150,130,0.09) inset;
}
.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: .93;
  font-size: .98rem;
  font-weight: 500;
  border-radius: 7px;
  padding: 7px 13px;
  transition: background 0.11s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #A89F91;
  color: #fff;
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  max-width: 390px;
}
.footer-contact img {
  width: 44px;
  margin: 0 auto;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 1.01rem;
  opacity: .98;
}

/* --- TESTIMONIALS/REVIEWS --- */
.testimonials-section h2 {
  font-size: 1.55rem;
  margin-bottom: 18px;
  color: #6A4B30;
}
.testimonials-section {
  background: #F6EBDD;
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(106,75,48,0.04);
  padding: 40px 0 56px 0;
}
.testimonial-card span {
  display: block;
  font-size: 1rem;
  color: #977c5b;
  font-weight: 500;
}

/* --- TABLE / MAP STYLES --- */
.map-snippet {
  background: #F6EBDD;
  color: #6A4B30;
  border-radius: 15px;
  padding: 16px 18px;
  margin-top: 12px;
  font-style: italic;
  box-shadow: 0 2px 8px 0 rgba(170,150,130,0.07);
}

.local-info {
  background: #F6EBDD;
  color: #6A4B30;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 1.08rem;
  margin: 18px 0 0 0;
  box-shadow: 0 2px 8px 0 rgba(170,150,130,0.07);
}

/* --- BRAND PROMISE --- */
.brand-promise-section {
  background: #FAF6F0;
  border-radius: 24px;
  box-shadow: 0 1.5px 10px 0 rgba(170,150,130,0.05);
}

/* --- RESPONSIVE DESIGN (Mobile First) --- */
@media (max-width: 1100px) {
  .container { padding: 0 10px; }
}
@media (max-width: 991px) {
  .main-nav ul { gap: 10px; }
  .footer-contact { max-width: 98vw; }
}
@media (max-width: 900px) {
  .main-nav { padding: 0 8px; }
}
@media (max-width: 780px) {
  .footer-nav { gap: 14px; }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-section, .services-hero, .wishlist-hero, .contact-hero, .catalog-hero, .thank-you-section {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    padding: 44px 0 16px 0;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .content-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .section, section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 548px) {
  .container { padding: 0 2vw; }
  .about-section, .team-section, .brand-promise-section, .services-section, .privacy-policy-section, .gdpr-section, .cookie-policy-section, .terms-section {
    border-radius: 8px;
  }
  .hero-section, .services-hero, .wishlist-hero, .contact-hero, .catalog-hero, .about-section, .about-teaser, .thank-you-section {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 26px 0 7px 0;
  }
}
@media (max-width: 480px) {
  .footer-contact img { width: 36px; }
  .footer-nav { flex-direction: column; gap: 7px; align-items: center; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  color: #6A4B30;
  width: 100vw;
  z-index: 5000;
  box-shadow: 0 -2px 22px 2px rgba(42,32,22,0.14);
  border-top: 6px solid #A89F91;
  padding: 28px 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1.04rem;
  animation: fadein-banner 0.7s cubic-bezier(.47,.22,.42,1);
}
@keyframes fadein-banner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-right: 26px;
  font-size: 1.04rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Quicksand', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 18px;
  margin: 0 0 0 6px;
  border: none;
  transition: background 0.15s, color 0.13s, transform 0.11s;
}
.cookie-banner .cookie-accept {
  background: #6A4B30;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #A89F91;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .cookie-reject {
  background: #A89F91;
  color: #fff;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #6A4B30;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff3e7;
  color: #a89f91;
  border: 1.5px solid #A89F91;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #A89F91;
  color: #fff;
}

/* --- Cookie Consent Modal --- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42,32,22,0.41);
  z-index: 6000;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadein-modal 0.3s cubic-bezier(.72,.01,.38,1);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #6A4B30;
  border-radius: 18px;
  box-shadow: 0 8px 72px 0 rgba(106,75,48,0.17);
  padding: 38px 24px 30px 24px;
  max-width: 395px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: scalein-modal 0.23s cubic-bezier(.55,.09,.45,1.24);
}
@keyframes scalein-modal {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 11px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #6A4B30;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  user-select: none;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #A89F91;
  border-radius: 8px;
  margin-right: 7px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #A89F91;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  transition: background .13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #6A4B30;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 11px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 7px;
  font-weight: 700;
  border: none;
}
.cookie-modal .cookie-accept {
  background: #6A4B30;
  color: #fff;
}
.cookie-modal .cookie-accept:hover, .cookie-modal .cookie-accept:focus {
  background: #A89F91;
  color: #fff;
}
.cookie-modal .cookie-reject {
  background: #fff4e6;
  color: #a89f91;
  border: 1.4px solid #A89F91;
}
.cookie-modal .cookie-reject:hover, .cookie-modal .cookie-reject:focus {
  background: #A89F91;
  color: #fff;
}

/* --- SCROLLBAR STYLES --- */
html {
  scrollbar-width: thin;
  scrollbar-color: #A89F91 #E7E2DA;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #A89F91;
  border-radius: 12px;
}
::-webkit-scrollbar-track {
  background: #E7E2DA;
}

/* --- MICRO ANIMATIONS --- */
.cta-button, .mini-cta-button, .main-nav ul li a, .filter-bar ul li a, .footer-nav a {
  transition: background 0.19s, color 0.15s, transform 0.10s;
}

.card, .testimonial-card {
  transition: box-shadow 0.21s, border-left-color 0.16s;
}

.filter-bar ul li a {
  transition: background 0.19s, color 0.1s;
}

/* --- MISC UTILITY CLASSES --- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- END --- */
