/* === 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: #F5F6FA;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  background: none;
  border: none;
}


/* === BRAND VARIABLES (with fallbacks) === */
:root {
  --primary: #263359;
  --secondary: #158D7E;
  --accent: #F5F6FA;
  --gold: #D4AF37;
  --gold-rgb: 212,175,55;
  --text-dark: #222;
  --text-light: #F5F6FA;
  --card-bg: #fff;
  --shadow: 0 3px 12px rgba(38,51,89,0.08);
  --rounded: 16px;
  --border: 1.5px solid #E0E2EB;
  --max-width: 1200px;
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  background: var(--accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; margin-bottom: 12px; }

p, li{
  font-size: 1rem;
  margin-bottom: 0.5em;
}
strong { font-weight: 600; }

/* Luxury Gold Highlighted underline for headings */
h1, h2 {
  position: relative;
  padding-bottom: 8px;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb),0.85), rgba(var(--gold-rgb),0.40));
  border-radius: 2px;
  margin-top: 10px;
}

/* === LAYOUT STRUCTURE === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEX COLUMN GAPS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  border: var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(38,51,89,0.14);
  border-color: var(--gold);
}

.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 {
  background: #fff;
  border-radius: var(--rounded);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(38,51,89,0.11);
  border-left-color: var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  padding: 20px;
  border: var(--border);
}

/* === HEADER & NAV === */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(38,51,89,0.06);
  position: sticky;
  top: 0;
  z-index: 29;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  font-size: 1rem;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(var(--gold-rgb),0.13);
  color: var(--secondary);
}
header img {
  height: 36px;
  margin-right: 24px;
}
.cta-btn {
  background: linear-gradient(90deg, #D4AF37 18%, #FFD700 100%);
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 28px;
  padding: 12px 32px;
  box-shadow: 0 4px 14px -7px #D4AF37;
  margin-left: 24px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFD700 0%, #D4AF37 79%);
  color: var(--primary);
  box-shadow: 0 6px 24px -7px #FFD700;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  position: relative;
  font-size: 2.2rem;
  padding: 6px 12px;
  background: none;
  color: var(--primary);
  border: none;
  cursor: pointer;
  z-index: 51;
  margin-left: 20px;
  transition: color 0.25s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,51,89,0.98);
  color: var(--text-light);
  z-index: 50;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 30px 0 #2227;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--gold);
  font-size: 2.4rem;
  margin: 22px 28px 10px 0;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover {
  color: #FFD700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 40px 0 0 40px;
}
.mobile-nav a {
  color: var(--text-light);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 14px 10px;
  border-radius: 7px;
  transition: background .19s, color .19s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(var(--gold-rgb),0.19);
  color: #FFD700;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 11px;
  }
  .cta-btn {
    padding: 12px 19px;
    margin-left: 10px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.96rem; padding: 7px 7px; }
  .cta-btn { padding: 10px 13px; margin-left: 8px; font-size: 0.95rem; }
}
@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .mobile-menu {
    display: flex;
  }
}


/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(100deg, #fff 55%, #F2F4FA 100%);
  padding: 54px 0 54px 0;
  margin-bottom: 38px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--primary);
}
.hero p {
  font-size: 1.17rem;
  color: var(--secondary);
  max-width: 610px;
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 10px;
}

/* === FEATURES LIST === */
.features .content-wrapper, .features .container .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-left: 0;
}
.features ul li {
  background: #fff;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 18px;
  padding: 24px 20px 20px 20px;
  border: var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  transition: box-shadow .26s, border-color .21s;
}
.features ul li img {
  width: 36px;
  height: 36px;
  margin-bottom: 11px;
}
.features ul li strong {
  font-size: 1.09rem;
  color: var(--primary);
}
.features ul li:hover {
  border-color: var(--gold);
  box-shadow: 0 7px 18px 0 rgba(212,175,55,0.07), var(--shadow);
}


/* === SERVICES/CTA/OTHER UL LISTS === */
.services ul,
.team ul,
.about-info ul, .about ul, .about .content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.services ul li,
.team ul li,
.about-info ul li, .about ul li, .about .content-wrapper ul li {
  background: #fff;
  border-radius: 11px;
  padding: 16px 14px;
  box-shadow: var(--shadow);
  border: 1.2px solid #ececec;
  color: var(--primary);
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  gap: 11px;
}
.services ul li strong,
.team ul li strong {
  color: var(--secondary);
}
.services ul li:hover, .about-info ul li:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 18px 0 rgba(212,175,55,0.07), var(--shadow);
}

/* === TESTIMONIALS === */
.testimonials .content-wrapper, .testimonials .container .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--gold);
  padding: 20px 26px 20px 22px;
  min-width: 250px;
  max-width: 370px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card span {
  color: var(--secondary);
  margin-left: 4px;
  font-size: 0.98em;
}
.testimonial-card img {
  height: 20px;
  margin-left: 10px;
  display: inline-block;
}
/* Extra distinction for stars */
.testimonial-card img[alt^="Ocena"] {
  filter: drop-shadow(0 0 1px #FFD700) brightness(0.98);
}
.testimonials .partnerships-list {
  margin-top: 18px;
  font-size: 1.07rem;
  color: var(--secondary);
}

/* === ABOUT / LEGAL / TEAM === */
.about .content-wrapper,
.about-info .content-wrapper,
.legal-info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  border: var(--border);
  padding: 34px 25px;
}
.team ul {
  gap: 14px;
}
.team ul li {
  padding: 12px 11px;
  font-size: 1.05rem;
  background: #F7F5ED;
  border: 1px solid #E3DBC3;
  border-radius: 8px;
  color: var(--primary);
}

/* === BLOG === */
.blog-posts .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.blog-posts ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-posts ul li {
  background: #fff;
  border-radius: 10px;
  padding: 14px 13px 13px 13px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.blog-posts ul li a {
  color: var(--primary);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.19s;
}
.blog-posts ul li a:hover {
  color: var(--gold);
}
.blog-posts .featured-post {
  background: #161A24;
  color: var(--text-light);
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 3px 12px #0002;
}
.blog-posts .featured-post a {
  color: #FFD700;
  font-weight: 700;
}

/* === BADGES === */
.badges {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  align-items: center;
}
.badges img {
  height: 36px;
  border-radius: 8px;
  background: #f9f9f9;
  padding: 3px 7px;
}

/* === COMPARISON CHART / PARTNERSHIPS === */
.comparison-chart {
  background: #fff7eb;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  margin-top: 22px;
  padding: 19px 21px;
  font-size: 1.07rem;
  box-shadow: var(--shadow);
  color: var(--primary);
}
.partnerships-list {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 12px 0;
  font-size: 1.08rem;
}

/* === CONTACT DETAILS === */
.contact .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 19px;
  background: #fff;
  border-radius: var(--rounded);
  padding: 28px 25px 25px 25px;
  box-shadow: var(--shadow);
}
.contact a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
  transition: color .17s;
}
.contact a:hover {
  color: var(--gold);
}
.contact img {
  height: 22px;
  margin-right: 8px;
  display: inline-block;
}

/* === CTA SECTIONS === */
.cta {
  background: linear-gradient(90deg, #fffbe8 38%, #F5F6FA 100%);
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  padding: 34px 0 30px 0;
  margin-bottom: 46px;
}
.cta .content-wrapper {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
}

/* === FOOTER === */
footer {
  background: #161A24;
  color: #F5F6FA;
  padding: 36px 0 16px 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F5F6FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 0.84;
  border-radius: 7px;
  padding: 8px 12px;
  transition: background 0.16s, color 0.13s;
}
.footer-nav a:hover {
  background: rgba(var(--gold-rgb),0.13);
  color: var(--gold);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 3px;
  font-size: 0.98rem;
  flex-wrap: wrap;
}
.footer-contact img {
  height: 30px;
  margin-right: 7px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1001;
  background: #fffbe9;
  color: var(--primary);
  padding: 22px 18px 16px 18px;
  box-shadow: 0 -3px 18px rgba(38,51,89,0.11);
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1.5px solid #DFD0A9;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  opacity: 1;
  animation: cookieBannerIn .5s;
}
@keyframes cookieBannerIn {
  from { transform: translateY(60px); opacity:0 }
  to   { transform: translateY(0); opacity:1 }
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 30px;
  margin: 0 7px;
  padding: 8px 24px;
  cursor: pointer;
  background: var(--gold);
  color: #262525;
  border: none;
  box-shadow: 0 2px 6px rgba(212,175,55,0.09);
  transition: background .17s, color .12s, box-shadow .18s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD700;
  color: var(--primary);
  box-shadow: 0 2px 9px #FFD70077;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: var(--primary);
  border: 1.2px solid var(--gold);
  padding: 7px 19px;
  margin-left: 2px;
}
.cookie-banner .cookie-settings:hover {
  background: var(--gold);
  color: #232323;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,51,89, 0.68);
  z-index: 1102;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  transition: opacity 0.4s;
}
.cookie-modal.open {
  display: flex;
  animation: cookieModalIn .4s;
}
@keyframes cookieModalIn {
  from { opacity: 0 }
  to   { opacity: 1 }
}
.cookie-modal-dialog {
  background: #fff;
  min-width: 320px;
  max-width: 99vw;
  border-radius: 18px;
  box-shadow: 0 4px 44px rgba(38,51,89,0.13);
  padding: 42px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-dialog h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-modal-category label {
  font-size: 1.13rem;
  color: var(--primary);
}
.cookie-modal-category .toggle {
  width: 38px; height: 20px;
  border-radius: 12px;
  background: #ece6d2;
  position: relative;
  border: 1px solid #dfd0a9;
  margin-right: 2px;
}
.cookie-modal-category .toggle input[type=checkbox] {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal-category .toggle span {
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s;
  box-shadow: 0 0 2px #bababa;
}
.cookie-modal-category .toggle input[type=checkbox]:checked + span {
  left: 21px;
  background: var(--gold);
}
.cookie-modal-dialog .cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 18px;
}
.cookie-modal-dialog button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 32px;
  padding: 8px 22px;
  background: var(--gold);
  color: #232323;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-dialog button:hover {
  background: #FFD700;
  color: var(--primary);
}
.cookie-modal-dialog .cookie-modal-close {
  background: none;
  color: var(--primary);
  border: none;
  position: absolute;
  right: 17px; top: 15px;
  font-size: 1.5em;
  cursor: pointer;
}
.cookie-modal-dialog .cookie-modal-close:hover {
  color: var(--gold);
}

/* === ANIMATIONS, EFFECTS, MICRO-INTERACTIONS === */
a, .cta-btn, button, .card, .testimonial-card, .feature-item, .services ul li, .about-info ul li, .footer-nav a, .cookie-banner button {
  transition: color .18s, background .19s, box-shadow .22s, border-color .19s;
}
.card:active, .testimonial-card:active, .feature-item:active {
  transform: translateY(2px) scale(0.99);
}

/* === MEDIA QUERIES FOR RESPONSIVE LAYOUT === */
@media (max-width: 1020px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.45rem; }
  .hero h1 { font-size: 2.03rem; }
  .section, .about .content-wrapper, .legal-info .content-wrapper {
    padding: 30px 10px;
  }
}
@media (max-width: 900px) {
  .features ul, .features .content-wrapper, .testimonials .content-wrapper {
    gap: 15px;
  }
  .testimonial-card, .card {
    min-width: 200px;
    padding: 18px 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.15rem; }
  .hero h1 { font-size: 1.34rem; }
  .section { margin-bottom: 32px; padding: 15px 5px; }
  .about .content-wrapper, .legal-info .content-wrapper {
    padding: 14px 7px;
  }
  .hero, .cta {
    padding: 24px 0;
  }
  .features ul, .features .content-wrapper, .testimonials .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start !important;
  }
  .features ul li, .card, .testimonial-card, .feature-item {
    min-width: unset;
    width: 100%;
    padding: 15px 8px 13px 8px;
  }
  .cta .content-wrapper { flex-direction: column; gap: 15px; align-items: flex-start; }
  .footer-nav { gap: 14px; padding: 0 3px; font-size: 0.96rem; }
}
@media (max-width: 520px) {
  .container { padding: 0 1.5vw; }
  .hero, .cta, .features, .testimonials, .about, .services { padding: 0; margin-bottom: 16px; }
  .footer-contact { flex-direction: column; gap: 5px; }
  .cookie-banner { flex-direction: column; gap: 13px; }
}

/* === FORM ELEMENTS (for generic inputs if present) === */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  background: #FBFAF6;
  border: 1.3px solid #DCD9C4;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1.04rem;
  color: var(--primary);
  margin-bottom: 13px;
  transition: border-color .19s, box-shadow .14s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1.5px #FFD70044;
}

/* === CONFIRMATION PAGE .confirmation-info === */
.confirmation-info {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  margin-top: 25px;
  color: var(--primary);
  box-shadow: var(--shadow);
  border: 1.2px solid #ececec;
}
.confirmation-info h2 {
  color: var(--secondary);
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.confirmation-info ul {
  margin-top: 5px;
  gap: 13px;
}
.confirmation-info ul li {
  font-size: 1.02rem;
  color: var(--primary);
  margin-bottom: 0;
}

/* === Z-INDEX LAYERS === */
header { z-index: 29; }
.mobile-menu { z-index: 50; }
.cookie-banner { z-index: 1001; }
.cookie-modal { z-index: 1102; }

/* === MISC === */
::-webkit-scrollbar {
  width: 11px;
  background: #f5f5f8;
}
::-webkit-scrollbar-thumb {
  background: #d4af37cc;
  border-radius: 7px;
}
::-webkit-input-placeholder { color: #bcbcbc; }
::placeholder { color: #bcbcbc; }

.hidden { display: none !important; }

/* === END OF CSS === */
