/* ============================================================
   Fuzzy Locations – Scandinavian Clean Style CSS
   ------------------------------------------------------------
   Modern, elegant, original, with emphasis on craft and clarity.
   Mobile-first / light & natural colors / Quicksand + Montserrat
   Only FLEXBOX for all layouts. NO CSS Grid, Columns, or clamp().
=============================================================== */

/* ===== RESET & NORMALIZE ===== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2D2A2A;
  background-color: #F6EDE2;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
img, picture, video {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #703E85;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A0A6B4;
}
ul, ol {
  padding-left: 1.5rem;
}
li + li { margin-top: 8px; }

/* ===== BRAND FONTS ===== */
h1, h2, h3, h4, .logo {
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  color: #432960;
  font-weight: 700;
  letter-spacing: 0.012em;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
h4 { font-size: 1rem; }

p, li, span, label, input, button {
  font-family: 'Montserrat', Arial, sans-serif;
}

.subheadline {
  font-size: 1.125rem;
  color: #5E5C5C;
  margin-bottom: 24px;
}
strong { font-weight: 600; }

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section,
.hero,
.features,
.services-section,
.services-offer,
.about-section,
.about-content,
.collections,
.custom-process,
.blog-articles,
.contact-section,
.contact-details,
.quick-contact,
.cookies-section,
.privacy-section,
.gdpr-section,
.usage-terms-section,
.next-steps-section,
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  .section,
  .hero,
  .features,
  .services-section,
  .about-section,
  .about-content,
  .services-offer,
  .collections,
  .custom-process,
  .blog-articles,
  .testimonials-section,
  .contact-section,
  .contact-details,
  .quick-contact,
  .cookies-section,
  .privacy-section,
  .gdpr-section,
  .usage-terms-section,
  .next-steps-section {
    padding: 32px 0 0 0;
    margin-bottom: 36px;
  }
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .content-wrapper { gap: 16px; }
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
}

.text-section {
  width: 100%;
  max-width: 700px;
  font-size: 1rem;
}

/* ===== FLEX GRIDS & CARDS ===== */
.card-container,
.feature-grid,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .card-container,
  .feature-grid,
  .card-grid,
  .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .card-container,
  .feature-grid,
  .card-grid,
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

.card, .feature-grid > div, .collections .feature-grid > div, .blog-articles .feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(160,166,180,0.10);
  padding: 32px 24px 24px 24px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, transform 0.22s;
  min-width: 220px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover, .feature-grid > div:hover, .collections .feature-grid > div:hover, .blog-articles .feature-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(112,62,133,0.09), 0 0.5px 1.5px rgba(160,166,180,0.13);
  transform: translateY(-2px) scale(1.012);
}
.card img, .feature-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
}
.card h3, .feature-grid h3, .collections .feature-grid h3 { margin-top: 0; font-size: 1.1rem; }

/* ===== HERO SECTION ===== */
.hero {
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 18px 0 rgba(160,166,180,0.05);
  padding: 48px 0 32px 0;
  margin-bottom: 60px;
}
.hero h1 { font-size: 2.5rem; font-weight: 700; color: #432960; margin-bottom: 12px; }
.hero .cta-btn {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 20px 0;
    margin-bottom: 32px;
    border-radius: 0 0 14px 14px;
  }
  .hero h1 { font-size: 1.4rem; }
  .hero .cta-btn { width: 100%; }
}

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-block;
  background: #703E85;
  color: #fff;
  font-weight: 700;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  padding: 12px 32px;
  border-radius: 28px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px 0 rgba(112,62,133,0.06);
  transition: background 0.18s, box-shadow 0.2s, transform 0.11s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A0A6B4;
  color: #432960;
  box-shadow: 0 6px 18px 0 rgba(160,166,180,0.25);
  transform: translateY(-1px) scale(1.025);
}

/* ===== MAIN NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(160,166,180,0.06);
  position: relative;
  z-index: 100;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.main-nav a {
  color: #703E85;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 16px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6EDE2;
  color: #432960;
}
.cta-btn {
  margin-left: 16px;
}
@media (max-width: 1024px) {
  header .container { gap:12px; }
}
@media (max-width: 900px) {
  header .container { gap: 4px; }
  .main-nav { gap: 10px; }
  .main-nav a { font-size: 0.97rem; padding: 5px 8px; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .cta-btn { display: none !important; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #703E85;
  cursor: pointer;
  z-index: 205;
  margin-left: auto;
  padding: 4px 12px;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,237,226,0.96);
  box-shadow: 0 6px 32px 0 rgba(112,62,133,0.13);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.66,0.01,0.4,1), opacity 0.25s;
  opacity: 0;
  pointer-events: none;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 32px 0 0;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #703E85;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A0A6B4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
.mobile-nav a {
  color: #432960;
  font-size: 1.18rem;
  padding: 12px 28px;
  border-radius: 22px;
  background: none;
  transition: background 0.12s, color 0.18s;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #703E85;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== SECTION-SPECIFIC FLEXBOX ===== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 32px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 1px 10px 0 rgba(160,166,180,0.14);
  min-width: 250px;
  max-width: 520px;
  border-left: 4px solid #703E85;
  transition: box-shadow 0.22s;
  color: #432960;
}
.testimonial-card p {
  color: #432960;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #A0A6B4;
  font-weight: 500;
  font-size: 0.97rem;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 22px 0 rgba(112,62,133,0.13);
}
.rating-summary {
  margin-top: 24px;
  font-size: 1.05rem;
  color: #703E85;
}

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

/* ===== FOOTER ===== */
footer {
  background: #fff;
  padding: 38px 0 24px 0;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -2px 16px 0 rgba(160,166,180,0.08);
  color: #5E5C5C;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-links {
  flex: 2 1 260px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}
.footer-links a {
  color: #703E85;
  font-size: 1rem;
  transition: color 0.22s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #A0A6B4;
}
.footer-contact {
  flex: 1 1 240px;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.footer-contact a {
  color: #703E85;
  font-weight: 500;
}
.footer-social {
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(45%);
  transition: filter 0.22s, transform 0.17s;
}
.footer-social a:hover img {
  filter: grayscale(0%);
  transform: scale(1.10) rotate(-7deg);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-links { flex-wrap: wrap; gap:8px 12px; }
}
@media (max-width: 768px) {
  footer { padding: 28px 0 14px 0; border-radius: 12px 12px 0 0; }
  .footer-links { gap: 7px 10px; font-size: 0.98rem; }
  .footer-contact { font-size: 0.95rem; }
  .footer-social a img { width: 24px; height: 24px; }
}

/* ===== SERVICES & LIST COLUMNS (Flex) ===== */
.services-section ul, .services-offer ul, .collections ul, .blog-articles ul, .about-section ul, .about-content ul, .next-steps-section ul, .text-section ul {
  list-style: disc inside;
  margin-bottom: 18px;
}
.services-section ul li, .services-offer ul li, .collections ul li, .about-section ul li, .blog-articles ul li {
  background: none;
  padding: 6px 0;
  border-radius: 0;
}
.services-section ul span, .services-offer ul span {
  color: #703E85;
  font-weight: 600;
  margin-left: 8px;
}

/* ===== CONTACT SECTION ===== */
.contact-section a.cta-btn, .quick-contact a.cta-btn {
  margin-top: 14px;
}
@media (max-width: 768px) {
  .contact-section .content-wrapper, .quick-contact .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .footer-contact { margin-bottom: 0; }
}

/* ===== COOKIES CONSENT ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3050;
  background: #fff;
  color: #432960;
  box-shadow: 0 -4px 24px 0 rgba(112,62,133,0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border-radius: 14px 14px 0 0;
  font-size: 0.97rem;
  animation: cookieSlideUp 0.42s ease;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(70px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 300px;
  min-width: 180px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  background: #703E85;
  color: #fff;
  font-weight: 600;
  font-family: 'Quicksand', 'Montserrat', Arial, sans-serif;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s;
}
.cookie-btn--alt {
  background: #fff;
  color: #703E85;
  border: 2px solid #703E85;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A0A6B4;
  color: #432960;
}
.cookie-btn--alt:hover, .cookie-btn--alt:focus {
  background: #F6EDE2;
  color: #432960;
  border-color: #A0A6B4;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 14px;
    font-size: 0.95rem;
  }
}
/* -------- Cookie Modal -------- */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(160,166,180,0.32);
  z-index: 3500;
  opacity: 1;
  pointer-events: all;
  animation: cookieFadeIn 0.36s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -53%);
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 32px 0 rgba(112,62,133,0.14);
  z-index: 3550;
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.32s;
}
@keyframes cookieModalIn {
  from { transform: translate(-50%, -80%) scale(0.9); opacity: 0; }
  to { transform: translate(-50%, -53%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #432960;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  display: inline-block;
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #A0A6B4;
  position: relative;
  transition: background 0.18s;
  margin-right: 10px;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(160,166,180,0.11);
  transition: left 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #703E85;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
}

/* ===== GENERAL BUTTON STYLES (for all) ===== */
button, .cookie-btn {
  outline: none;
}
button:focus-visible, .cookie-btn:focus-visible {
  box-shadow: 0 0 0 2px #A0A6B4 inset, 0 0 0 2px #703E85;
}

/* ===== MISC UI ELEMENTS ===== */
::-webkit-input-placeholder { color: #A0A6B4; }
::-moz-placeholder { color: #A0A6B4; }
:-ms-input-placeholder { color: #A0A6B4; }
::placeholder { color: #A0A6B4; }

hr {
  border: none;
  border-top: 1px solid #F6EDE2;
  margin: 32px 0;
}

/* ===== UTILITIES ===== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }

/* ===== SCANDINAVIAN CLEAN MICRO-EFFECTS ===== */
.card, .feature-grid > div, .testimonial-card, .collections .feature-grid > div, .blog-articles .feature-grid > div, .cta-btn, .cookie-btn {
  transition: box-shadow 0.19s, transform 0.15s, background 0.14s, color 0.16s;
}

[tabindex]:focus-visible {
  outline: 3px solid #A0A6B4;
  outline-offset: 3px;
}

/* ===== PRINT ===== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal { display: none !important; }
  main { padding: 0 !important; }
}
