/* ==================== CSS RESET & BASE ==================== */
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-color: #fff;
  color: #2C4053;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #2C4053;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8FB339;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  padding-left: 0;
}
li + li {
  margin-top: 8px;
}
strong { font-weight: bold; }
em { font-style: italic; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #2C4053;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.12rem; }
h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 16px;
  max-width: 700px;
}
blockquote {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 3px solid #8FB339;
  color: #232323;
  font-style: italic;
  background: none;
}
cite {
  display: block;
  margin-top: 8px;
  color: #797979;
  font-style: normal;
  font-size: 1rem;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(44, 64, 83, 0.05);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px 0 rgba(44, 64, 83, 0.07);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 23px 0 rgba(44, 64, 83, 0.15);
  z-index: 3;
}

.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;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F4EB;
  border-radius: 10px;
  padding: 20px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
}

.blog-preview, .article-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
@media (max-width: 800px) {
  .blog-preview, .article-preview {
    flex-direction: column;
    gap: 12px;
  }
}

.book-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.book-listings > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(44, 64, 83, 0.06);
  padding: 18px 16px 18px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bestseller-ribbon {
  display: inline-block;
  background: #8FB339;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.12em 0.8em;
  border-radius: 8px;
  position: absolute;
  top: 12px;
  right: 12px;
  letter-spacing: 0.04em;
}

.category-filter span {
  font-size: 1rem;
  color: #495767;
  background: #F6F4EB;
  padding: 6px 14px;
  border-radius: 7px;
  display: inline-block;
  margin-bottom: 16px;
}


/* ==================== HEADER & NAVIGATION ==================== */
header {
  background: #fff;
  border-bottom: 1px solid #F6F4EB;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
header nav a {
  color: #2C4053;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 2px;
  border-radius: 4px;
  transition: color 0.17s, background 0.2s;
}
header nav a:hover, header nav a.active {
  color: #8FB339;
  background: #F6F4EB;
}
header .cta-primary {
  margin-left: 18px;
}

@media (max-width: 950px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  header nav {
    gap: 7px;
  }
}
@media (max-width: 850px) {
  header nav, header .cta-primary {
    display: none;
  }
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 23px;
  right: 24px;
  z-index: 110;
  width: 46px;
  height: 46px;
  border: none;
  background: #fff;
  color: #2C4053;
  font-size: 2rem;
  border-radius: 9px;
  box-shadow: 0 2px 8px 0 rgba(44,64,83,.08);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 2px #8FB33922;
}

@media (max-width: 850px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,64,83,0.05);
  z-index: 150;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.34s;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  background: #fff;
  height: 100vh;
  width: 84vw;
  max-width: 360px;
  box-shadow: -4px 0 22px 0 rgba(44,64,83,0.12);
  display: flex;
  flex-direction: column;
  padding: 36px 30px 20px 30px;
  gap: 12px;
  transform: translateX(110%);
  transition: transform 0.37s cubic-bezier(.64,.04,.35,1);
}
.mobile-menu.open nav {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 21px;
  top: 18px;
  background: none;
  border: none;
  color: #2C4053;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 200;
  transition: color 0.21s;
}
.mobile-menu-close:hover {
  color: #8FB339;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #2C4053;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 2px;
  border-radius: 5px;
  transition: background 0.21s, color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a.active {
  background: #F6F4EB;
  color: #8FB339;
}
@media (max-width: 480px) {
  .mobile-menu nav {
    max-width: 99vw;
    padding: 18px 13px 12px 15px;
  }
}


/* ==================== CTA BUTTONS ==================== */
.cta-primary,
.cta-secondary {
  display: inline-block;
  border: none;
  outline: none;
  padding: 12px 28px;
  min-width: 160px;
  border-radius: 8px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 4px;
  box-shadow: 0 2px 10px 0 rgba(44, 64, 83, 0.04);
  transition: background 0.22s, box-shadow 0.2s, color 0.18s;
  text-align: center;
  font-weight: 700;
}
.cta-primary {
  background: #8FB339;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #729127;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(143,179,57,0.10);
}
.cta-secondary {
  background: #fff;
  color: #2C4053;
  border: 2px solid #8FB339;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F6F4EB;
  color: #8FB339;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F4EB;
  border-radius: 11px;
  box-shadow: 0 3px 16px 0 rgba(44,64,83,0.09);
  margin-bottom: 20px;
  flex: 1 1 320px;
  min-width: 225px;
  max-width: 640px;
}
.testimonial-card blockquote {
  border-left: 4px solid #8FB339;
  padding-left: 18px;
  color: #2C4053;
}
.testimonial-card cite {
  color: #687a8d;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    gap: 8px;
  }
  .testimonial-card blockquote {
    padding-left: 10px;
  }
}


/* ==================== FOOTER ==================== */
footer {
  background: #fff;
  border-top: 1px solid #F6F4EB;
  color: #2C4053;
  padding-top: 30px;
  padding-bottom: 26px;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #2C4053;
  font-size: 0.99rem;
  font-weight: 500;
  border-radius: 4px;
  padding: 2px 1px;
  transition: color 0.19s, background 0.17s;
}
footer nav a:hover {
  color: #8FB339;
  background: #F6F4EB;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
  color: #546478;
  line-height: 1.7;
}
footer .contact-info img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: -2px;
}
footer .contact-info a {
  color: #2C4053;
  font-weight: 500;
  transition: color 0.16s;
}
footer .contact-info a:hover {
  color: #8FB339;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer {
    padding-bottom: 18px;
    margin-top: 10px;
  }
}


/* ==================== OTHER ELEMENTS, BLOG, CONTACT ==================== */
.opening-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F6F4EB;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 1rem;
}
.team-short-info ul{
  margin: 8px 0 0 0;
}
.map-location, .store-info {
  background: #F6F4EB;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 1.03rem;
}
.comments-highlight {
  background: #F6F4EB;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.author-spotlight {
  background: #fff;
  border: 1px solid #F6F4EB;
  padding: 12px 16px;
  border-radius: 9px;
  box-shadow: 0 1px 4px 0 rgba(44,64,83,0.04);
}

.blog-preview > div, .article-preview > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(44,64,83,0.05);
  padding: 20px 14px;
  min-width: 190px;
  flex: 1 1 260px;
  margin-bottom: 8px;
  transition: box-shadow 0.14s;
}
.blog-preview > div:hover, .article-preview > div:hover {
  box-shadow: 0 4px 18px 0 rgba(44,64,83,0.09);
}

@media (max-width: 600px) {
  .blog-preview > div, .article-preview > div {
    min-width: 0;
    padding: 16px 8px;
  }
}


/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2C4053;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -4px 24px 0 rgba(44,64,83,0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 22px 30px;
  gap: 24px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  font-size: 1rem;
  animation: cookiebanner-in 0.5s cubic-bezier(.55,.06,.68,.19);
}
@keyframes cookiebanner-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 330px;
  min-width: 150px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  margin: 0 3px;
  font-weight: 600;
  transition: background 0.17s, color 0.18s, box-shadow 0.19s;
  cursor: pointer;
}
.cookie-banner__accept {
  background: #8FB339;
  color: #fff;
}
.cookie-banner__accept:hover, .cookie-banner__accept:focus {
  background: #91bc30cc;
}
.cookie-banner__reject {
  background: #fff;
  color: #2C4053;
  border: 1.5px solid #F6F4EB;
}
.cookie-banner__reject:hover, .cookie-banner__reject:focus {
  background: #f6f4eb;
  color: #8FB339;
}
.cookie-banner__settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #8FB339;
}
.cookie-banner__settings:hover, .cookie-banner__settings:focus {
  background: #8FB339;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 16px;
    border-top-left-radius: 8px; border-top-right-radius: 8px;
    font-size: 0.99rem;
  }
}


/* COOKIE MODAL (PREFERENCES) */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,64,83,0.18);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__dialog {
  background: #fff;
  padding: 32px 28px 24px 28px;
  border-radius: 15px;
  min-width: 330px;
  max-width: 95vw;
  box-shadow: 0 26px 70px 0 rgba(44,64,83,0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookiemodal-in 0.33s cubic-bezier(.12,.84,.68,1);
}
@keyframes cookiemodal-in {
  from { transform: translateY(80px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 15px; right: 16px;
  background: none;
  color: #2C4053;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 12001;
  transition: color 0.2s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #8FB339;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #F6F4EB;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 1rem;
}
.cookie-category__toggle {
  margin-left: auto;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 16px;
  background: #8FB339;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.cookie-toggle[disabled] {
  opacity: 0.7;
  cursor: default;
  background: #C7D1C6;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  box-shadow: 0 1px 2px rgba(44,64,83,0.07);
  transition: left 0.21s;
}
.cookie-toggle.off {
  background: #CFD8DC;
}
.cookie-toggle.off::after {
  left: 20px;
}

.cookie-modal__footer {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal__footer button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.97rem;
  padding: 9px 20px;
  border-radius: 7px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal__footer .cookie-banner__accept {
  background: #8FB339;
  color: #fff;
}
.cookie-modal__footer .cookie-banner__accept:hover {
  background: #729127;
}
.cookie-modal__footer .cookie-banner__reject {
  background: #fff;
  color: #2C4053;
  border: 1.2px solid #F6F4EB;
}
.cookie-modal__footer .cookie-banner__reject:hover {
  background: #F6F4EB;
  color: #8FB339;
}

@media (max-width: 450px) {
  .cookie-modal__dialog {
    padding: 18px 5vw;
    min-width: 0;
    font-size: 0.97rem;
  }
}


/* ==================== FORMS, INPUTS, ETC ==================== */
input, textarea, select, button {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #2C4053;
  outline: none;
}
input, textarea {
  border: 1.2px solid #F6F4EB;
  background: #fff;
  border-radius: 7px;
  padding: 11px 12px;
  margin-bottom: 9px;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus {
  border-color: #8FB339;
  box-shadow: 0 1px 6px 0 rgba(143,179,57,0.09);
}
button:focus {
  outline: 2px solid #8FB339;
}


/* ==================== MISCELLANEOUS ==================== */
::-webkit-scrollbar {
  width: 12px;
  background: #F6F4EB;
}
::-webkit-scrollbar-thumb {
  background: #E2E7DF;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C7D1C6;
}
::selection {
  background: #8FB33922;
}

hr {
  border: none;
  height: 1px;
  background: #F6F4EB;
  margin: 32px 0 24px 0;
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.1rem; }
}


/* ==================== SPACING & UTILITIES ==================== */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-40 { margin-top: 40px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }

.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }


/* ==================== ANIMATIONS & MICRO-INTERACTIONS ==================== */
.cta-primary,
.cta-secondary,
button,
.card,
.book-listings > div,
.blog-preview > div,
.article-preview > div {
  transition: box-shadow 0.2s, background 0.2s, color 0.18s;
}

.card:active, .book-listings > div:active {
  box-shadow: 0 2px 5px 0 rgba(44,64,83,0.12);
}

/* ==================== PRINT ==================== */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal { display: none !important; }
  main { padding: 0 !important; }
  body { background: #fff; color: #111; }
}
