/* --- 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 {  margin: 0;  padding: 0;  border: 0;  font-size: 100%;  font: inherit;  vertical-align: baseline;}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit;}
ul,ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font-family: inherit; font-size: 100%; border: none; outline: none; background: none;}

:root {
  --primary: #7A3E2A;
  --primary-dark: #5b2d20;
  --secondary: #F5F3EF;
  --accent: #C37229;
  --accent-alt: #965A13;
  --bg: #FFF;
  --text: #3d2a18;
  --text-light: #fff;
  --muted: #ada199;
  --shadow: 0 4px 18px rgba(122,62,42,0.07), 0 1.5px 6px rgba(122,62,42,0.11);
  --radius-card: 24px;
  --radius-btn: 32px;
  --radius-pill: 999px;
  --transition: all 0.22s cubic-bezier(0.4,0.19,0.35,1);
  --f-display: 'Merriweather', serif;
  --f-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--secondary);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  color: var(--primary);
  font-family: var(--f-display), serif;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 18px;
  text-wrap: balance;
}
h1 {
  font-size: 2.6rem;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 21px;
}
h3 {
  font-size: 1.3rem;
  color: var(--primary);
}

p, li {
  color: var(--text);
  font-size: 1.12rem;
  margin-bottom: 16px;
}

ul, ol {
  padding-left: 1.2em;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.notice {
  font-size: 0.99rem;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--text-light);
  border-radius: var(--radius-card);
  margin-top: 18px;
  margin-bottom: 0;
}
.notice a { color: #fff; text-decoration: underline; font-weight: 500; }

strong { color: var(--primary); font-weight: 700; }
em { font-style: italic; color: var(--accent-alt); }

/* --- HEADER --- */
header {
  background: var(--bg);
  box-shadow: 0 2px 14px rgba(122,62,42,.06);
  border-bottom: 3px solid var(--secondary);
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 20px 14px 20px;
}
header img {
  height: 45px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  margin-left: 20px;
}
.main-nav a {
  font-family: var(--f-body);
  font-size: 1.03rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
}

.cta-btn {
  background: var(--primary);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 11px 32px;
  border-radius: var(--radius-pill);
  margin-left: auto;
  box-shadow: 0 2px 7px 0 rgba(151,87,39,.09);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-alt);
  border-color: var(--accent);
  color: #fff !important;
  letter-spacing: 0.07em;
}

.mobile-menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 5px 15px 6px 12px;
  border-radius: var(--radius-pill);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.21s;
  display: none;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary-dark);
}
/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  z-index: 1200;
  left: 0;  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(122,62,42,0.93);
  color: #fff;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(0.7,0.08,0.41,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  position: absolute;
  right: 26px; top: 20px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 1;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  margin-top: 82px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 36px 28px;
}
.mobile-nav a {
  font-family: var(--f-display);
  color: #fff;
  padding: 12px 0;
  font-size: 1.15rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 100%;
  display: block;
  transition: color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 16px;
  }
  header .container {
    gap: 12px;
  }
  .cta-btn {
    padding: 10px 19px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- LAYOUT & SPACING --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  position: relative;
  padding: 32px 22px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 34px rgba(151,87,39,0.15), 0 2px 9px rgba(151,87,39,0.17);
  transform: translateY(-4px) scale(1.02);
}

.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: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-top: 26px;
  margin-bottom: 28px;
  font-size: 1.05rem;
  color: #363022;
}
.testimonial-card p {
  color: #363022;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 0.99em;
  font-family: var(--f-body);
  color: var(--accent)
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HOMEPAGE CARDS & SERVICES --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 32px 0;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  min-width: 210px;
  padding: 28px 20px 24px 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 2.5px solid var(--accent);
  position: relative;
}
.service-card img {
  width: 55px;
  height: 55px;
}
.service-card h3 {
  color: var(--accent-alt);
  font-size: 1.23rem;
  margin-bottom: 7px;
}
.service-card p {
  font-size: 1.06rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.service-card span {
  color: #fff;
  background: var(--primary);
  font-size: 0.98em;
  padding: 5.5px 18px 5.5px 18px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.service-card:hover { box-shadow: 0 8px 34px rgba(195,114,41,0.15), 0 2px 9px rgba(151,87,39,0.19); transform: scale(1.02); }

/* --- HOME, FAQ, CATEGORY --- */
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-bottom: 18px;
}
.category-list li {
  display: flex;
  background: var(--accent-alt);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.05rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  transition: background .17s;
  margin-bottom: 0;
}
.category-list li:hover { background: var(--primary); cursor: pointer; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 18px 0;
}
.faq-list li strong {
  color: var(--accent);
}

/* --- RECIPE & BLOG CARDS --- */
.recipe-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 16px 0;
}
.recipe-card, .blog-card {
  flex: 1 1 270px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 28px 19px 24px 19px;
  margin-bottom: 20px;
  transition: box-shadow .13s, transform .13s;
  border-left: 8px solid var(--accent-alt);
  border-right: 4px solid var(--accent);
}
.recipe-card:hover, .blog-card:hover { box-shadow: 0 8px 34px rgba(151,87,39,0.15), 0 2px 9px rgba(151,87,39,0.15); transform: translateY(-3px) scale(1.021); }
.recipe-card h3, .blog-card h3 { color: var(--primary); font-size: 1.1rem; margin-bottom: 11px; }
.recipe-card p, .blog-card p { font-size: 1.01rem; }

.pagination {
  margin: 32px 0 12px 0;
  display: flex;
  gap: 14px;
  align-items: center;
}
.pagination span, .pagination a {
  background: var(--accent-alt);
  color: #fff;
  font-family: var(--f-body);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  padding: 6px 13px;
  min-width: 32px;
  text-align: center;
  transition: background .13s, color .14s;
  cursor: pointer;
}
.pagination a:hover, .pagination a:focus { background: var(--accent); color: #fff; }
.pagination span { background: var(--primary); font-weight: 700; letter-spacing: 0.04em; }

/* --- CONTACT BOX --- */
.contact-info {
  background: var(--accent);
  color: #fff;
  font-size: 1.03em;
  border-radius: var(--radius-card);
  padding: 22px 28px 17px 22px;
  margin: 16px 0 6px 0;
  box-shadow: 0 2px 11px 0 rgba(151,87,39,.08);
  font-family: var(--f-body);
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

/* --- TEAM BIO --- */
.team-bio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-left: 6px solid var(--primary);
  border-radius: 0 18px 18px 0;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1.08rem;
  padding: 22px 27px 18px 24px;
  box-shadow: var(--shadow);
}
.team-bio strong {
  color: var(--accent-alt);
  font-family: var(--f-display);
  letter-spacing: 0.01em;
  font-size: 1.06em;
}
.team-bio span {
  color: var(--accent);
  margin-top: 12px;
  font-style: italic;
  font-family: var(--f-display);
  display: block;
}

/* --- FOOTER --- */
footer {
  margin-top: 72px;
  background: var(--primary);
  color: #fff;
  padding: 39px 0 25px 0;
  border-radius: 38px 38px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  width: 58px;
  height: auto;
  margin-bottom: 14px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-family: var(--f-body);
  font-size: 1.05em;
  transition: color 0.14s;
  opacity: 0.93;
}
footer nav a:hover, footer nav a:focus { color: var(--accent); text-decoration: underline;}
.footer-contact {
  font-size: 1em;
  color: #fff;
  font-family: var(--f-body);
  opacity: 0.93;
  line-height: 1.7;
}
.footer-contact a { color: #fff; text-decoration: underline; font-weight: 500; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: var(--accent-alt);
  color: #fff;
  z-index: 1400;
  padding: 26px 20px 23px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  box-shadow: 0 -6px 22px 0 rgba(151,87,39,.18);
  font-size: 1.1em;
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.09em;
}
.cookie-banner .cookie-btn {
  margin-left: 0;
  margin-right: 9px;
}
.cookie-btn {
  background: #fff;
  color: var(--accent-alt) !important;
  border: none;
  font-size: 1.01em;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  margin-right: 14px;
  font-family: var(--f-display);
  transition: background .19s, color .14s;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(151,87,39,.07);
}
.cookie-btn:not(:last-child) { margin-right: 12px; }
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--primary) !important;
}
.cookie-settings-btn {
  background: var(--accent);
  color: #fff !important;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus { background: var(--primary); color: #fff !important;}

/* --- Cookie Preferences Modal --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1600;
  background: rgba(41, 20, 10, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  padding: 40px 30px 35px 30px;
  min-width: 310px;
  max-width: 90vw;
  color: var(--primary);
  box-shadow: 0 10px 38px 0 rgba(122,62,42,0.15);
  font-size: 1em;
  font-family: var(--f-body);
  position: relative;
  animation: cookie-modal-fadein 0.4s cubic-bezier(0.7,0.08,0.41,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1601;
}
.cookie-modal-close {
  position: absolute;
  right: 19px; top: 16px;
  background: transparent;
  color: var(--accent-alt);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color .11s;
}
.cookie-modal-close:hover { color: var(--primary); }
.cookie-modal h3 {
  font-size: 1.17em;
  color: var(--accent-alt);
  margin-bottom: 11px;
  margin-top: 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--secondary);
  padding-bottom: 7px;
  margin-bottom: 5px;
  font-size: 1.05em;
}
.cookie-category label {
  margin-bottom: 0;
}
.cookie-toggle {
  width: 46px; height: 25px;
  background: var(--secondary);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background .15s;
  margin-right: 1px;
  border: 1.5px solid var(--accent-alt);
}
.cookie-toggle.on {
  background: var(--accent-alt);
}
.cookie-toggle-inner {
  width: 23px; height: 23px;
  background: #fff;
  border-radius: 50%;
  margin-left: 1px;
  box-shadow: 0 1px 4px 0 rgba(195,114,41,.14);
  transition: transform .15s;
}
.cookie-toggle.on .cookie-toggle-inner {
  transform: translateX(20px);
  background: var(--secondary);
}
.cookie-modal .cookie-btn {
  align-self: flex-end;
  margin-top: 19px;
}
@keyframes cookie-modal-fadein {
  from { transform: translateY(24px) scale(0.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* --- ANIMATIONS & INTERACTIONS --- */
a, button, .card, .service-card, .cta-btn {
  transition: var(--transition);
}
.card:active, .service-card:active, .card:focus, .service-card:focus {
  box-shadow: 0 4px 18px 0 rgba(151,87,39,0.18);
}
input, textarea {
  border-radius: var(--radius-btn);
  padding: 10px 16px;
  border: 1.5px solid var(--accent-alt);
  font-size: 1.1em;
  background: #fff;
  margin-bottom: 16px;
  width: 100%;
  transition: border .16s;
}
input:focus, textarea:focus { border: 1.5px solid var(--accent); }

.filter-search {
  width: 100%;
  max-width: 430px;
  margin: 14px 0;
  position: relative;
  display: flex;
}
.filter-search input {
  width: 100%;
  font-size: 1.08em;
  border-radius: var(--radius-pill);
}

/* --- RESPONSIVENESS (Mobile-First) --- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 15px; }
  .container { padding: 0 10px; }
  .section { padding: 25px 8px; margin-bottom: 41px; border-radius: 17px; }
  h1 { font-size: 2.04rem; margin-bottom: 20px; }
  h2 { font-size: 1.38rem; margin-bottom: 13px; }
  .main-nav, .footer-brand { display: none !important; }
  .service-list, .recipe-list, .blog-list, .card-container, .category-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .service-card, .card, .recipe-card, .blog-card {
    min-width: unset;
    width: 100%;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 10px 11px 10px;
    gap: 8px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 8px 12px;
    margin-left: 10px;
  }
  .mobile-menu-toggle { margin-left: 0; }
  .content-wrapper { gap: 13px; }
  .footer-contact { margin-top: 15px; font-size: 0.97em; }
  footer .container {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-card { flex-direction: column; gap: 11px; padding: 15px; font-size: 1em; }
  .text-image-section { flex-direction: column; gap: 21px; }
  .cookie-modal { min-width: 90vw; padding: 21px 9vw 18px 9vw; }
  .cookie-banner { padding: 19px 6px 17px 6px; gap: 16px; font-size: 1em; }
}

@media (max-width: 430px) {
  html { font-size: 14px; }
  body { font-size: 14px; }
  h1 { font-size: 1.23rem; }
  h2 { font-size: 1.01rem; }
  .cookie-modal { min-width: 98vw; max-width:98vw; padding: 4vw 2vw !important; }
}

/* --- CREATIVE ARTISTIC STYLE DECOR --- */
.section, .card, .service-card, .cta-btn, .recipe-card, .blog-card, .notice, .testimonial-card {
  box-shadow: 0 4px 18px 0 rgba(122,62,42,0.08), 0 1.5px 6px rgba(151,87,39,0.13);
  border-radius: 26px 40px 23px 37px/37px 19px 36px 29px;
}
.section {
  background: linear-gradient(144deg, var(--secondary) 87%, #f8eabc 120%);
  border-left: 7px solid var(--primary);
  border-bottom: 3px dotted var(--accent);
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: -11px; top: 17px;
  width: 23px; height: 23px;
  background: var(--accent-alt);
  border-radius: 57% 43% 37% 63% / 53% 30% 70% 47%;
  opacity: 0.11;
  pointer-events: none;
  z-index: 0;
}
.section>* { position: relative; z-index: 2; }
.notice { border-radius: 31px 67px 39px 51px/30px 33px 60px 60px; background: var(--accent); }

h2, .section h2 {
  font-family: var(--f-display),serif;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0.01em;
  text-shadow: 1px 1px 0 #fff, 0 2px 6px #c9a68a19;
  position: relative;
}
h1 {
  color: var(--primary);
  font-family: var(--f-display),serif;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 8px #7a3e2a1b;
}
.service-card, .card, .testimonial-card, .notice {
  font-family: var(--f-body);
}

.cta-btn {
  box-shadow: 0 8px 28px rgba(151,87,39,0.10);
  border-radius: 30px 47px 21px 32px/30px 30px 30px 36px;
  font-family: var(--f-display);
  letter-spacing: 0.04em;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-btn:after {
  content: '';
  position: absolute;
  right: -12px; top: -5px;
  width: 36px; height: 16px;
  background: var(--accent);
  opacity: 0.19;
  border-radius: 66px 10px 9px 20px/20px 10px 66px 9px;
  z-index: 1;
}

/* --- Artistic fonts for headings --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Roboto:wght@400;700&display=swap');

h1, h2, .cta-btn, .service-card h3, .category-list li, .mobile-nav a {
  font-family: var(--f-display), serif !important;
}

.category-list li {
  font-family: var(--f-display) !important;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* --- UNIQUE DECORATIVE ELEMENTS --- */
.service-card:after {
  content: '';
  display: block;
  position: absolute;
  right: 18px; bottom: 11px;
  width: 31px; height: 16px;
  background: var(--accent);
  opacity: 0.09;
  border-radius: 100px 10px 20px 10px/33px 16px 19px 8px;
  z-index: 0;
}
.service-card img {
  filter: drop-shadow(0 2px 9px rgba(151,87,39,0.10));
}

/* --- FORMS (for future use/expansion) --- */
form {
  width: 100%;
  max-width: 420px;
  margin-top: 21px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
button[type="submit"] {
  align-self: flex-end;
}

/* --- SCROLLBAR (for creative touch, only for desktop) --- */
@media (pointer: fine) {
  ::-webkit-scrollbar {
    width: 11px;
    background: var(--secondary);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent-alt);
  }
}

/* --- END OF STYLE --- */
