/* ==== 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,
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;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  width: 100%;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
body {
  min-height: 100vh;
  background: #f2eee5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #192450;
  line-height: 1.7;
  letter-spacing: .01em;
  background-color: #fdf7ee;
}

/* ==== VINTAGE RETRO PALETTE & FONTS (with Brand colors) ==== */
:root {
  --brand-primary: #192450;
  --brand-secondary: #00C98B;
  --brand-accent: #F2F5FA;
  --vintage-cream: #fdf7ee;
  --vintage-mustard: #e7c374;
  --vintage-orange: #e26d2b;
  --vintage-brown: #77634f;
  --vintage-red: #bc2434;
  --vintage-blue: #50769e;
  --card-bg: #fffdfa;
  --card-shadow: 0 3px 16px 0 rgba(120,70,30,0.08);
  --heading-font: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  --body-font: 'Roboto', 'Arial', sans-serif;
}


/* ==== GENERAL LAYOUT STRUCTURE ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: #192450;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 1px 2px 0 #ecdcb1, 0 0 8px #e7c3743e;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, dl, dt, dd {
  font-family: var(--body-font);
  color: #604d38;
  font-size: 1rem;
}
p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}
a, .primary-cta {
  font-family: var(--heading-font);
}
strong, b {
  font-weight: 700;
}

/* ====== RETRO PATTERNS/DECOR ======= */
.hero,
.section {
  position: relative;
  background: var(--vintage-cream);
  box-shadow: 0 12px 32px 0 rgba(120,70,30,0.05), 0 1px 0 #e7c374;
  border-radius: 18px;
  margin-bottom: 48px;
}
.hero {
  background: linear-gradient(120deg, #ffd98e 0%, #ffefc3 100%);
  border: 3px solid var(--brand-primary);
  box-shadow: 0 8px 34px 0 rgba(120,70,30,0.07), 0 1.5px 0 #bc243422;
  border-radius: 28px;
  margin-bottom: 64px;
}
.hero .content-wrapper {
  align-items: flex-start;
}


/* ===== BUTTONS & CTA STYLES ===== */
.primary-cta,
.product-card a,
.blog-card a {
  display: inline-block;
  background: var(--vintage-orange);
  color: #fffdfa;
  border: 2px solid var(--vintage-mustard);
  font-family: var(--heading-font);
  font-size: 1.125rem;
  padding: 13px 36px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 32px;
  box-shadow: 0 2px 0 #e7c374, 0 3px 12px 0 #b8733133;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .22s, color .22s, box-shadow .22s, transform .15s;
  outline: none;
}
.primary-cta:hover,
.product-card a:hover, .blog-card a:hover {
  background: var(--vintage-red);
  box-shadow: 0 6px 22px 0 #bc243422, 0 2px 0 #77634f;
  color: #fffffa;
  transform: translateY(-3px) scale(1.05) rotate(-1.2deg);
}
button,
.filters button {
  font-family: var(--heading-font);
  background: var(--vintage-mustard);
  color: #77634f;
  border-radius: 20px;
  padding: 7px 22px;
  margin-right: 8px;
  font-size: 1rem;
  border: 2px solid #ddb95a;
  box-shadow: 0 1.5px 0 #e7c37433;
  cursor: pointer;
  transition: background .2s, color .2s, transform .18s;
}
.filters button:active,
.filters button:focus,
.filters button:hover {
  background: var(--vintage-orange);
  color: #fffdfa;
  transform: scale(1.04);
}

/* ===== FLEXBOX LAYOUTS FOR GRIDS, CARDS, and CONTENT ===== */
.product-cards,
.blog-preview-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.product-card,
.blog-card {
  flex: 1 1 310px;
  min-width: 245px;
  background: var(--card-bg);
  border: 2.5px solid #ecdcb1;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 32px 20px 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow .18s, border-color .2s, transform .23s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.product-card:hover,
.blog-card:hover {
  box-shadow: 0 8px 32px 0 #77634f31;
  border-color: var(--vintage-orange);
  transform: translateY(-5px) rotate(-0.75deg) scale(1.02);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 17px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.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;
}

/* == Feature & Service List = */
.feature-grid,
.product-categories,
.service-list,
.benefit-list,
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li,
.product-categories li,
.service-list li,
.benefit-list li,
.usp-list li {
  flex: 1 1 220px;
  background: #fff7e5;
  border: 2px dashed #e7c374;
  border-radius: 16px;
  box-shadow: 0px 2px 10px 0 #e7c37428;
  padding: 19px 15px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.feature-grid img,
.service-list img {
  max-width: 48px;
  filter: sepia(.38) contrast(1.02) brightness(1.16);
  margin-right: 9px;
  margin-bottom: 10px;
}

/* == Testimonial Card == */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f9f4ef;
  border-radius: 16px;
  border: 2px solid #e7c374;
  box-shadow: 0 2px 24px 0 #ecdcb110;
  color: #192450;
  font-size: 1.08rem;
  max-width: 350px;
  flex: 1 1 280px;
}
.testimonial-card p {
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--vintage-orange);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: .55px;
}

/* == FAQ and Timeline == */
.faq-list dt {
  font-weight: bold;
  font-family: var(--heading-font);
  color: #bc2434;
  margin-top: 18px;
  font-size: 1.07rem;
}
.faq-list dd {
  margin-left: 10px;
  margin-bottom: 8px;
  font-size: 0.97rem;
}
.timeline ul {
  margin-bottom: 18px;
}
.timeline li {
  margin-bottom: 7px;
  padding-left: 6px;
  border-left: 3px solid var(--vintage-blue);
  margin-left: 7px;
  color: #50769e;
}

/* == Comparison Table == */
.comparison-table {
  background: #fcf6e8;
  border-radius: 14px;
  border: 2px solid #e7c374;
  box-shadow: 0 2px 24px 0 #ecdcb110;
  margin: 28px 0 20px 0;
  font-family: var(--body-font);
}
.comparison-table th, .comparison-table td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid #f3e0ab;
  font-size: 1rem;
}
.comparison-table th {
  background: #ffecc9;
  font-family: var(--heading-font);
  color: #bc2434;
  font-size: 1.07rem;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* == Cards, Newsletter, Social Links == */
.newsletter-section {
  background: #fffbef;
  border-radius: 16px;
  padding: 20px 16px;
  margin: 32px 0 14px 0;
  text-align: center;
  box-shadow: 0 1px 20px #ddd6bf55;
}
.newsletter-section h3 {
  margin-bottom: 6px;
  color: #bc2434;
}
.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 24px 0 14px 0;
}
.social-links a img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(1px 2px 0 #ecdcb1) sepia(0.5);
  transition: filter .2s, transform .13s;
}
.social-links a:hover img {
  filter: drop-shadow(2px 4px 0 #e7c374) sepia(.9)  hue-rotate(-12deg);
  transform: scale(1.12) rotate(-6deg);
}

/* == Footer == */
footer {
  background: #f2eee5;
  border-top: 3px double #bc2434;
  margin-top: 38px;
  padding: 36px 0 18px 0;
  font-size: 0.97rem;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #e26d2b;
  font-family: var(--heading-font);
  font-size: 1.02em;
  letter-spacing: .36px;
  transition: color .19s;
}
.footer-nav a:hover {
  color: #bc2434;
}
.footer-contact p {
  margin-bottom: 4.5px;
  font-size: 0.96em;
  color: #604d38;
  display: flex;
  gap: 7px;
  align-items: center;
}
footer .copyright {
  text-align: center;
  color: #bc2434;
  letter-spacing: .31px;
  font-size: 0.97em;
  margin-top: 16px;
}

/* ===== NAVIGATION & HEADER RETRO STYLE ===== */
header {
  background: #ffecc9;
  border-bottom: 4px solid #bc2434;
  box-shadow: 0 3px 16px 0 #bc24341c;
  padding: 0;
  position: sticky;
  top: 0; z-index: 20;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 9px 0;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.desktop-nav a {
  font-family: var(--heading-font);
  color: #192450;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 12px;
  border-bottom: 3px solid transparent;
  transition: color .19s, background .17s, border-bottom .18s;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: #e26d2b;
  background: #fff5e1;
  border-bottom: 3px solid #e26d2b;
}
header img[alt="Illume Peak"] {
  height: 42px;
  margin-right: 8px;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 19px;
  top: 20px;
  background: #bc2434;
  color: #fffdfa;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  font-size: 2.05em;
  z-index: 41;
  box-shadow: 0 2px 12px #bc243423;
  align-items: center;
  justify-content: center;
  transition: background .17s, color .13s, transform .18s;
  border: 2.5px solid #ffecc9;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: #e26d2b;
  color: #fff7e5;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(109deg,#e7c374 70%,#ffecc9 100%);
  z-index: 90;
  transform: translateX(-100vw);
  transition: transform .42s cubic-bezier(.86,-0.01,.41,1.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 46px 24px 28px 24px;
  box-shadow: 6px 0 38px #bc24342c;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform .48s cubic-bezier(.4,1.2,.33,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #bc2434;
  color: #fffdfa;
  font-size: 2em;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  margin-top: 7px;
  margin-bottom: 17px;
  margin-right: 0;
  transition: background .13s, color .13s, transform .17s;
  border: 2.5px solid #ffecc9;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #e26d2b;
  color: #fff7e5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-size: 1.19em;
  color: #bc2434;
  font-weight: bold;
  background: #fffdfa;
  border-radius: 11px;
  padding: 11px 15px 10px 15px;
  margin-bottom: 2px;
  box-shadow: 0 2px 8px #d8b3621b;
  transition: background .18s, color .14s, transform .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e7c374;
  color: #192450;
  transform: translateX(7px) scale(1.07) rotate(-2deg);
}

/* ==== COOKIE CONSENT BANNER & MODAL ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  padding: 20px 18px 16px 18px;
  background: #fffdfa;
  border-top: 3px solid #e7c374;
  box-shadow: 0 -5px 32px #bc243419;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  animation: cookieFadeIn .8s cubic-bezier(.77,0,.18,1.1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #604d38;
  font-size: 1.1em;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 3px;
}
.cookie-btn {
  font-family: var(--heading-font);
  background: var(--vintage-mustard);
  color: #bc2434;
  padding: 9px 30px;
  border-radius: 22px;
  border: 2px solid #e7c374;
  font-size: 1.05em;
  margin: 0 6px;
  min-width: 111px;
  cursor: pointer;
  box-shadow: 0 1.5px 0 #bc243420;
  transition: background .2s, color .2s, border-color .19s;
}
.cookie-btn.primary {
  background: #e26d2b;
  border-color: #e7c374;
  color: #fffdfa;
}
.cookie-btn.primary:hover {
  background: #bc2434;
  color: #fffdfa;
}
.cookie-btn.secondary:hover {
  background: #ffecc9;
  color: #e26d2b;
  border-color: #e26d2b;
}
.cookie-btn.settings:hover {
  background: #fffdfa;
  color: #77634f;
  border-color: #77634f;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(28,23,15,0.25);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
.cookie-modal {
  background: #fffdfa;
  border: 3px solid #e7c374;
  border-radius: 19px;
  box-shadow: 0 18px 48px #bc24341f;
  width: 98vw;
  max-width: 415px;
  padding: 32px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalIn .44s cubic-bezier(.26,1.13,.41,1);
}
@keyframes modalIn { from {transform: scale(0.98) translateY(90px); opacity: 0;} to{transform:none; opacity:1;} }
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #bc2434;
  margin-bottom: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-family: var(--body-font);
  color: #604d38;
}
.cookie-switch {
  width: 42px;
  height: 21px;
  background: #ece2c4;
  border-radius: 13px;
  position: relative;
  transition: background .16s;
}
.cookie-switch input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
}
.cookie-switch span {
  display: block;
  width: 21px;
  height: 21px;
  background: #e26d2b;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: left .19s, background .18s;
}
.cookie-switch input:checked + span {
  left: 21px;
  background: #00C98B;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}

/* ====== UTILITY & GENERIC ===== */
.call-to-action {
  background: #ffecc9;
  border: 2px dashed #e7c374;
  border-radius: 14px;
  box-shadow: 0 3px 16px 0 #ecdcb120;
  text-align: center;
  align-items: center !important;
  justify-content: center !important;
  padding: 32px 8px;
}
.thank-you-message {
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 18px;
  background: #ffecc9;
  border: 2.5px dashed #e7c374;
  border-radius: 19px;
  box-shadow: 0 3px 24px 0 #ecdcb133;
  margin: 38px 0;
  padding: 36px 10px 40px 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.content-wrapper {
  gap: 24px;
}
.benefit-list,
.usp-list {
  gap: 17px;
  flex-wrap: wrap;
}
.contact-info {
  background: #fffdfa;
  border: 2px dashed #e7c374;
  border-radius: 13px;
  padding: 22px 14px 14px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5.7px;
  font-size: 1.09em;
}
.contact-info strong {
  color: #bc2434;
}

/* == List Decorations == */
ul li::before, ol li::before {
  content: '\2738\00a0';
  color: #e26d2b;
  font-weight: bold;
  font-size: 1.0em;
  vertical-align: middle;
}
ul.feature-grid li::before, ul.product-categories li::before,
ul.usp-list li::before, ul.benefit-list li::before,
ul.service-list li::before{
  content: none;
}

/* === FORM ELEMENTS (for newsletters etc) === */
input, textarea, select {
  border: 2px solid #e7c374;
  background: #fffdfa;
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--body-font);
  font-size: 1em;
  outline: none;
  margin-bottom: 8px;
}
input:focus, textarea:focus, select:focus {
  border-color: #e26d2b;
  box-shadow: 0 1.5px 0 #ecdcb1;
}

/* === PROCESS STEPS === */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
  counter-reset: stepnum;
  list-style: none;
}
.process-steps li {
  position: relative;
  padding-left: 36px;
  background: #fffdfa;
  min-height: 30px;
  border-left: 3.5px dashed #e7c374;
  border-radius: 2px;
  margin-bottom: 6px;
}
.process-steps li::before {
  counter-increment: stepnum;
  content: counter(stepnum) '.';
  position: absolute;
  left: 10px;
  top: 0;
  color: #e26d2b;
  font-size: 1.08em;
  font-weight: bold;
  font-family: var(--heading-font);
}

/* == Desktop/Mobile RESPONSIVENESS (MOBILE-FIRST) == */
@media (max-width: 980px) {
  .container {
    max-width: 94vw;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .desktop-nav {
    gap: 11px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.44rem; }
  h3 { font-size: 1.13rem; }
  .section, .hero { padding: 28px 2vw; border-radius: 15px; }
  .content-wrapper { gap: 18px; }
  .product-cards, .blog-preview-cards, .testimonials { flex-direction: column; gap: 20px; }
  .card-container { flex-direction: column; gap: 21px; }
  .feature-grid, .product-categories, .service-list,
  .benefit-list, .usp-list { flex-direction: column; gap: 16px; }
  .feature-grid li, .product-categories li, .service-list li, .benefit-list li, .usp-list li {
    min-width: unset; width: 100%;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-flex { gap: 16px; }
  .newsletter-section { padding: 16px 6px; }
  .call-to-action { padding: 18px 8px; }
  .comparison-table th, .comparison-table td { padding: 7px 7px; font-size: 0.97em; }
}

@media (max-width: 580px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .section, .hero { padding: 12px 2px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.1rem; }
  .product-card, .blog-card { padding: 17px 7px; font-size: .97em; }
  .mobile-menu-toggle {
    width: 36px; height: 36px;
    font-size: 1.62em;
  }
  .mobile-menu { padding: 44px 8px 8px 8px; }
}

/* === HIDE/SHOW mobile/desktop nav === */
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* === Animations, Focus, and Micro-Interactions === */
a, button, .primary-cta, .filters button, .blog-card, .product-card, .card, .mobile-nav a {
  transition: box-shadow .14s, background .19s, color .17s, border-color .14s, transform .14s;
}
a:focus, button:focus, .primary-cta:focus {
  outline: 3px solid #bc2434;
}
::-webkit-scrollbar { width: 11px; background: #ffecc9; }
::-webkit-scrollbar-thumb { background: #e7c374; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #e26d2b; }

