/* ================================================================
   CSS RESET & NORMALIZE (MOBILE-FIRST)
   ================================================================ */
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.5;
  background: #fff;
  color: #22223B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
ul, ol { list-style: none; }
img { 
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Montserrat', serif;
  color: #22223B;
}

/* ================================================================
   MONOCHROME SOPHISTICATED BRAND SYSTEM
   ================================================================ */
:root {
  --brand-primary: #22223B;
  --brand-secondary: #F2E9E4;
  --brand-accent: #9A8C98;
  --neutral-900: #111;
  --neutral-800: #1B1B1F;
  --neutral-600: #444;
  --neutral-100: #F9F9FA;
  --border-radius: 14px;
  --shadow: 0 2px 12px 0 rgba(34,34,59,0.10);
  --shadow-card: 0 8px 32px -4px rgba(34,34,59,0.13);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Fallbacks for custom properties (for older browsers) */
body { background: #fff; }

/* Typography hierarchy */
h1 {
  font-size: 2.4rem;
  letter-spacing: -1.2px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.14;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.17;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.2;
}
h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
}
p, li, blockquote, cite, span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #22223B;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
strong, b { font-weight: 700; }
blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brand-primary);
  border-left: 4px solid var(--brand-accent);
  padding-left: 18px;
  margin-bottom: 12px;
  line-height: 1.6;
}
cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  color: #555;
  margin-top: 6px;
  margin-left: 2px;
}

/* ================================================================
   HEADER AND NAVIGATION
   ================================================================ */
header {
  background: #fff;
  border-bottom: 1px solid #e6e6eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 998;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding-left: 20px;
  padding-right: 20px;
}
header > a img {
  height: 44px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 4px 8px;
  color: var(--brand-primary);
  font-size: 1rem;
  border-radius: 5px;
  transition: background .18s, color .18s;
}
nav a:hover, nav a:focus {
  color: #fff;
  background: var(--brand-primary);
  outline: none;
}
.cta-button {
  font-family: var(--font-body);
  background: var(--brand-primary);
  color: #fff;
  border-radius: 30px;
  padding: 11px 26px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  margin-left: 10px;
  transition: background .18s, box-shadow .22s, color .18s;
  display: inline-block;
  letter-spacing: 1px;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-accent);
  color: var(--neutral-900);
  box-shadow: 0 4px 18px 0 rgba(154,140,152,0.14);
  outline: none;
}

/* ================================================================
   MOBILE NAVIGATION
   ================================================================ */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 50%;
  box-shadow: none;
  transition: background 0.18s;
  cursor: pointer;
  z-index: 1002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-accent);
  color: #fff;
  outline: none;
}
/* Hide burger on desktop */
@media(min-width: 1025px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,59,0.94);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.71,.01,.47,1.49);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  margin: 24px 26px 10px 0;
  cursor: pointer;
  transition: color .14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--brand-accent);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 38px 0 0 34px;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.18rem;
  color: #fff;
  padding: 8px 12px;
  border-radius: 7px;
  width: 100%;
  transition: background .13s, color .13s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
  outline: none;
}

/* Hide main nav on mobile */
@media(max-width: 1024px) {
  header nav {
    display: none !important;
  }
  .cta-button {
    display: none !important;
  }
}

/* ================================================================
   CONTAINER & SPACING
   ================================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

/* ================================================================
   CARDS, FLEX PATTERNS, AND STRUCTURE
   ================================================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .18s, transform .15s;
}
.card:hover {
  box-shadow: 0 10px 32px -2px rgba(34,34,59,0.18);
  transform: translateY(-4px) scale(1.008);
}
.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;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* Testimonials & Feature Items */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 0;
  max-width: 440px;
  transition: box-shadow .18s, transform .13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(34,34,59,0.15);
  transform: translateY(-2px) scale(1.012);
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    margin-bottom: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 18px 14px;
  margin-bottom: 16px;
}

/* Feature Grid (index.html) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .15s, transform .1s;
  border: 1px solid #ececf2;
}
.feature-grid li:hover {
  box-shadow: 0 10px 26px 0 rgba(154,140,152,0.11);
  transform: translateY(-2px) scale(1.011);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

/* Services Cards (index.html) */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-summary-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 21px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .13s, transform .1s;
}
.service-summary-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.service-summary-card:hover {
  box-shadow: 0 8px 20px 0 rgba(34,34,59,0.13);
  transform: scale(1.012);
}
@media (max-width: 900px) {
  .feature-grid, .services-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li, .service-summary-card {
    width: 100%;
    min-width: 0;
    flex: 1 1 100%;
  }
}

/* Testimonial Slider (index.html) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}

/* Steps and Custom Package Cards (services.html) */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.services-grid > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #ececf2;
  transition: box-shadow .13s, transform .1s;
}
.services-grid > div:hover {
  box-shadow: 0 8px 20px 0 rgba(154,140,152,0.13);
  transform: scale(1.009);
}
.services-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}
@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    gap: 14px;
  }
  .services-grid > div {
    width: 100%;
    min-width: 0;
  }
}

.package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.package-cards > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 14px 16px 14px;
  gap: 10px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #ececf2;
  transition: box-shadow .14s, transform .11s;
}
.package-cards > div:hover {
  box-shadow: 0 12px 28px 0 rgba(34,34,59,0.13);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 900px) {
  .package-cards {
    flex-direction: column;
    gap: 14px;
  }
  .package-cards > div {
    width: 100%;
    min-width: 0;
  }
}

/* ================================================================
   BLOG GRID & ARTICLE TEASERS
   ================================================================ */
.blog-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.blog-teasers > div {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
  transition: box-shadow .13s, transform .1s;
}
.blog-teasers > div:hover {
  box-shadow: 0 10px 30px 0 rgba(34,34,59,0.12);
  transform: translateY(-1px) scale(1.012);
}
.blog-teasers a {
  color: var(--brand-accent);
  font-weight: 600;
  padding: 4px 2px;
  transition: color .13s;
}
.blog-teasers a:hover, .blog-teasers a:focus {
  color: var(--brand-primary);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .blog-teasers {
    flex-direction: column;
    gap: 12px;
  }
  .blog-teasers > div {
    width: 100%;
    min-width: 0;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--brand-primary);
  color: #fff;
  margin-top: 48px;
  padding: 44px 0 16px 0;
  box-shadow: 0 -2px 22px 0 rgba(34,34,59,0.08);
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(242,233,228,0.16);
}
.brand-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
}
.brand-identity img {
  width: 46px;
  height: auto;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
  color: #e5e5ec;
}
.contact-short img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.quick-links a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 3px 0;
  border-radius: 3px;
  transition: color .13s, background .13s;
}
.quick-links a:hover, .quick-links a:focus {
  color: var(--brand-accent);
  background: rgba(242,233,228,0.08);
  outline: none;
}
.legal {
  margin-top: 16px;
  color: #b2b0bd;
  text-align: center;
  font-size: 0.96rem;
}
@media (max-width: 860px) {
  .footer-info {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  footer { padding: 28px 0 12px 0; }
}

/* ================================================================
   LEGAL TEXTS & PAGE CONTENT
   ================================================================ */
.legal-text {
  font-size: 1rem;
  color: var(--neutral-800);
  line-height: 1.7;
}
.legal-text h2,
.legal-text h3 {
  color: var(--brand-primary);
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: var(--font-display);
}
.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: var(--neutral-900);
}
.map-location, .contact-information, .faq-list {
  margin-bottom: 18px;
  font-size: 1rem;
}
.contact-information ul, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 0;
  padding-left: 0;
}
.contact-information ul li img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.faq-list > div {
  background: #f6f6f8;
  border-left: 4px solid var(--brand-accent);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 17px 14px 11px 18px;
  box-shadow: 0 2px 10px 0 rgba(34,34,59,0.03);
}

/* Success stories - portfolio */
.success-stories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.success-stories-list .text-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 18px 14px;
  margin-bottom: 0;
  flex: 1 1 280px;
  min-width: 220px;
  transition: box-shadow .13s, transform .1s;
}
.success-stories-list .text-section:hover {
  box-shadow: 0 8px 30px 0 rgba(34,34,59,0.11);
  transform: scale(1.008);
}
@media (max-width: 900px) {
  .success-stories-list {
    flex-direction: column;
    gap: 14px;
  }
  .success-stories-list .text-section {
    width: 100%;
    min-width: 0;
  }
}
.styled-look-descriptions {
  background: #f0f0f3;
  border-radius: 10px;
  padding: 18px 14px;
  margin-bottom: 16px;
}

.category-navigation {
  margin-top: 12px;
  padding-bottom: 5px;
  gap: 12px;
}
.category-navigation strong {
  font-family: var(--font-body);
  font-weight: 700;
}
.category-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.category-navigation a {
  color: var(--brand-accent);
  font-weight: 600;
  border-radius: 4px;
  padding: 3px 9px;
  transition: color .12s, background .13s;
}
.category-navigation a:hover, .category-navigation a:focus {
  color: var(--brand-primary);
  background: #ececf2;
  outline: none;
}

/* Step-by-step and benefits lists (services.html) */
.step-by-step-process {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 13px;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.benefits-list li {
  background: #f4f4f6;
  color: var(--brand-primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.98rem;
}
.customization-options {
  margin-top: 18px;
  background: #fbfbfc;
  border-radius: 9px;
  padding: 13px 11px;
}
.customization-options h3 {
  margin-bottom: 7px;
}
.customization-options ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
}

/* Testimonials page card list */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 12px;
  }
}
.featured-quotes {
  margin-top: 18px;
  background: #f3f3f8;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(34,34,59,0.06);
  padding: 18px 15px;
}
.featured-quotes ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: italic;
  color: var(--brand-primary);
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================ */
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.01rem; }
  .content-wrapper, .section, .card, .card-container, .footer-info { gap: 10px; }
  .brand-identity img { width: 36px; }
  header { padding-left: 8px; padding-right: 8px; }
  .footer-info { padding-bottom: 8px; }
}

/* ===============================================================
   BUTTONS, LINKS, FORMS
   =============================================================== */
button, .cta-button, input[type="submit"], input[type="button"] {
  font-family: var(--font-body);
  border: none;
  outline: none;
  cursor: pointer;
}
button:focus-visible { outline: 2px solid var(--brand-accent); }

/* ===============================================================
   ANIMATIONS & MICRO-INTERACTIONS
   =============================================================== */
.cta-button, .card, .service-summary-card, .testimonial-card, .feature-grid li {
  transition: box-shadow .25s, background .16s, color .14s, transform .13s;
}

/* Simple fade-in for main sections */
main > section, .section {
  animation: fadein-section .5s 0.13s both;
}
@keyframes fadein-section {
  0% { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: none; }
}

/* ===============================================================
   COOKIE CONSENT BANNER
   =============================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: var(--brand-primary);
  box-shadow: 0 -6px 34px 0 rgba(34,34,59,0.15), 0 -1px 0 #eaeaec;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 18px 20px 18px;
  z-index: 3002;
  font-size: 1rem;
  animation: fadein-cookie .45s both;
}
@keyframes fadein-cookie {
  0% { opacity: 0; transform: translateY(44px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner-message {
  flex: 1 1 180px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-button {
  min-width: 115px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  transition: background .14s, color .14s;
  margin: 0 2px;
}
.cookie-banner .accept {
  background: var(--brand-primary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cookie-banner .reject {
  background: #e9e9ec;
  color: var(--brand-primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #d0d0db;
  color: var(--brand-primary);
}
.cookie-banner .cookie-settings-button {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  padding: 8px 14px;
}
.cookie-banner .cookie-settings-button:hover, .cookie-banner .cookie-settings-button:focus {
  background: var(--brand-accent);
  color: #fff;
  border-color: var(--brand-accent);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 15px 6px 10px 6px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; bottom: 0; top: 0;
  background: rgba(34,34,59,0.84);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-cookie-modal .35s both;
}
@keyframes fadein-cookie-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 36px 0 rgba(154,140,152,0.15);
  padding: 32px 28px 20px 28px;
  max-width: 420px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--brand-primary);
  position: relative;
  animation: scalein-cookie-modal .25s both;
}
@keyframes scalein-cookie-modal {
  0% { opacity: 0; transform: scale(.90); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-dialog h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--brand-primary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  background: #f6f4f3;
  padding: 10px 13px;
  border-radius: 8px;
}
.cookie-modal-category label {
  font-weight: 600;
  color: var(--brand-primary);
}
.cookie-toggle {
  accent-color: var(--brand-accent);
  width: 22px;
  height: 22px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--brand-primary);
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-accent);
  outline: none;
}
@media (max-width: 480px) {
  .cookie-modal-dialog { padding: 13vw 3vw 4vw 3vw; gap: 13px; }
}

/* State: Hide elements with .hidden when necessary (JS should toggle this) */
.hidden { display: none !important; }

/* ===== Scrollbar (for modern, non-webkit browsers) ===== */
body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-thumb { background: #ccc; border-radius: 8px; }
body::-webkit-scrollbar-track { background: #f7f7fa; }

/* ===== Selection ===== */
::selection { background: var(--brand-accent); color: #fff; }

/* ===== Custom utility classes for vertical margin spacing ===== */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* =================== THE END =================== */
