/* ===== 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; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  background: #FFF;
  color: #23212B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
}

/* ===== BRAND TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: #23212B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.12;
  margin-bottom: 32px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, a, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #23212B;
}
a {
  color: #23212B;
  text-decoration: underline;
  transition: color .18s;
}
a:hover, a:focus {
  color: #95ADC7;
  text-decoration: underline;
}
strong { font-weight: 700; }
q {
  font-style: italic;
  quotes: "\201C" "\201D" "\2018" "\2019";
  color: #23212B;
}

/* ===== PRIMARY CONTAINERS & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #FFF;
  box-shadow: 0 2px 14px rgba(35,33,43,0.04);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  gap: 28px;
}
header nav a {
  text-decoration: none;
  color: #23212B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
header nav a:hover, header nav a:focus {
  color: #95ADC7;
}
header a img {
  width: 120px;
  height: auto;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #23212B;
  display: none;
  cursor: pointer;
  z-index: 201;
  margin-left: 6px;
  transition: color .2s;
}
.mobile-menu-toggle:focus { outline: 2px solid #95ADC7; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 310px;
  background: #FFF;
  box-shadow: -2px 0 32px rgba(35,33,43,0.08);
  z-index: 400;
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.47,.1,.48,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 24px 32px 32px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #23212B;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 16px;
  transition: color .18s;
}
.mobile-menu-close:focus { outline: 2px solid #95ADC7; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #23212B;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 4px;
  transition: background .2s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F5F5;
  color: #95ADC7;
}

@media (max-width: 1020px) {
  header nav { gap: 16px; }
}
@media (max-width: 900px) {
  header nav { gap: 8px; }
  header nav a { font-size: 0.96rem; }
}
@media (max-width: 840px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    min-height: 60px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== HERO & SECTION LAYOUTS ===== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}
@media (max-width: 700px) {
  section { padding: 28px 0; margin-bottom: 38px; }
}

/* ===== FEATURES/FLEX GRIDS (MANDATORY PATTERNS) ===== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .features-grid { gap: 24px; }
}
@media (max-width: 670px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.feature {
  background: #FFF;
  padding: 32px 20px;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(35,33,43,0.04);
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .25s;
}
.feature:hover {
  box-shadow: 0 4px 32px rgba(35,33,43,.10);
}
.feature img {
  width: 48px; height: 48px; margin-bottom: 10px;
}
.feature h3 {
  margin-bottom: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 1px 10px rgba(35,33,43,0.04);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow .2s;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(35,33,43,.09);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px 18px 18px;
  background: #F5F5F5;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(35,33,43,.04);
  min-width: 220px;
  max-width: 380px;
  margin-bottom: 20px;
  font-size: 1.07rem;
  transition: box-shadow .21s;
}
.testimonial-card q {
  color: #23212B;
}
.testimonial-card strong {
  color: #23212B;
}
.testimonial-card:hover {
  box-shadow: 0 3px 18px rgba(35,33,43,.07);
}

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

.shop-filters, .shop-sorting {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px 0;
}
.shop-filters span, .shop-sorting span {
  font-weight: 600;
}
.shop-filters button, .shop-sorting button {
  border: none;
  background: #F5F5F5;
  color: #23212B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 6px 18px;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.shop-filters button:hover, .shop-sorting button:hover {
  background: #95ADC7;
  color: #FFF;
}

/* ===== BUTTONS ===== */
.btn, button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, color .18s, box-shadow .17s;
  outline: none;
  display: inline-block;
  margin-top: 12px;
}
.btn.primary {
  background: #23212B;
  color: #FFF;
  box-shadow: 0 2px 14px rgba(35,33,43,0.10);
}
.btn.primary:hover, .btn.primary:focus {
  background: #95ADC7;
  color: #23212B;
}
.btn.secondary {
  background: #F5F5F5;
  color: #23212B;
  border: 1.5px solid #23212B;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #95ADC7;
  color: #FFF;
  border-color: #95ADC7;
}

button:focus, .btn:focus {
  outline: 2px solid #95ADC7;
  outline-offset: 2px;
}

/* ===== GENERAL SPACING, LISTS & FORMS ===== */
ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.text-section ul li, .content-wrapper ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.text-section img {
  width: 21px;
  height: 21px;
  margin-right: 7px;
}
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #d0d3dd;
  border-radius: 7px;
  resize: vertical;
  margin-bottom: 16px;
  background: #FFF;
  color: #23212B;
}
input:focus, textarea:focus, select:focus {
  border-color: #95ADC7;
  outline: none;
}

/* ===== FOOTER ===== */
footer {
  background: #F5F5F5;
  padding: 48px 0 0 0;
  border-top: 1px solid #EEE;
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
}
footer .branding {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  min-width: 170px;
}
footer .branding img {
  width: 92px; height: auto; margin-bottom: 2px;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}
footer .footer-nav a {
  color: #23212B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: color .19s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color: #95ADC7;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
  min-width: 200px;
}
footer .contact-info img {
  width: 17px; height: 17px; margin-right: 5px;
  vertical-align: middle;
}
footer .social-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  padding: 0 20px 18px 0;
}
footer .social-links a img {
  width: 28px; height: 28px;
  opacity: 0.95;
  transition: opacity .19s;
}
footer .social-links a:hover img {
  opacity: 1;
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 26px; }
  footer .social-links { justify-content: flex-start; }
}
@media (max-width: 570px) {
  footer {
    padding: 22px 0 0 0;
  }
  footer .container {
    padding-bottom: 14px;
    gap: 14px;
  }
  footer .branding img { width: 78px; }
  footer .social-links { padding: 0 0 12px 0; }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23212B;
  color: #FFF;
  z-index: 9999;
  box-shadow: 0 -3px 16px rgba(35,33,43,0.18);
  padding: 22px 24px 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 1;
  transition: opacity .33s, bottom .33s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  bottom: -100px;
}
.cookie-banner .cookie-message {
  flex: 1 1 200px;
  font-size: 1rem;
  color: #FFF;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .btn {
  padding: 8px 19px;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  transition: background .18s, color .16s;
}
.cookie-banner .accept {
  background: #95ADC7;
  color: #23212B;
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFF;
  color: #23212B;
}
.cookie-banner .reject {
  background: #F5F5F5;
  color: #23212B;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #23212B;
  color: #FFF;
}
.cookie-banner .settings {
  background: transparent;
  color: #FFF;
  border: 1.5px solid #FFF;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #FFF;
  color: #23212B;
  border-color: #95ADC7;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100vw;
  height: 100vh;
  background: rgba(35,33,43,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .27s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-modal-content {
  background: #FFF;
  color: #23212B;
  border-radius: 18px;
  min-width: 310px;
  max-width: 442px;
  padding: 32px 24px 24px 32px;
  box-shadow: 0 14px 40px rgba(35,33,43,0.23);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #95ADC7;
  cursor: pointer;
  padding: 0;
  transition: color .18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #23212B;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.cookie-modal ul {
  margin: 0 0 16px 0;
  padding: 0;
}
.cookie-modal li {
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #95ADC7;
  transform: scale(1.15);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-actions button {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, color .16s;
}
.cookie-modal .accept {
  background: #95ADC7;
  color: #23212B;
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #23212B;
  color: #FFF;
}
.cookie-modal .save {
  background: #23212B;
  color: #FFF;
}
.cookie-modal .save:hover {
  background: #95ADC7;
  color: #23212B;
}

/* ===== MEDIA QUERIES (MOBILE-FIRST) ===== */
@media (max-width: 600px) {
  .container { padding: 0 8px; }
  .features-grid, .testimonials, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .testimonial-card, .card {
    min-width: unset;
    max-width: 100%;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px 15px 12px;
    gap: 14px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 23px 8px;
    min-width: 0;
    max-width: 95vw;
  }
}

/* ===== ANIMATIONS & MICRO-INTERACTIONS ===== */
.btn, .feature, .card, .testimonial-card, .shop-filters button, .shop-sorting button {
  transition: background .22s, color .18s, box-shadow .17s;
}
.mobile-menu,
.mobile-menu-close,
.btn, button, input[type="submit"] {
  transition: background .21s, color .18s, box-shadow .19s, border-color .18s;
}

/* ===== DIALOG/BASIC MODAL (if used elsewhere) ===== */
[role="dialog"] {
  z-index: 11000 !important;
  background: rgba(35,33,43,0.33);
}

/* ===== Z-INDEX LAYERING ===== */
header, .mobile-menu, .mobile-menu-open, .cookie-banner, .cookie-modal { z-index: 1050; }

/* ===== MISC STYLE TWEAKS ===== */
::-webkit-scrollbar { width: 9px; background: #F5F5F5; }
::-webkit-scrollbar-thumb { background: #E1E4EA; border-radius: 6px; }
::selection { background: #95ADC7; color: #FFF; }

/* ===== PRINT STYLES (Improve minimalist look when printing) ===== */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
  body { color: #23212B; background: #FFF; }
}
