/*
  SHIMMER TRAIL ZEGAR-MISTRZ LUXURY PREMIUM THEME
  -----------------------------------------------------
  Color Palette:
    Primary: #2D2D2D (Dark Charcoal)
    Secondary/Gold Accent: #C0A971
    Accent/White: #FFFFFF
  Fonts:
    Display: 'Merriweather', serif
    Body: 'Roboto', sans-serif
  Luxury/Premium Inspiration: Gold borders, subtle shadows, refined type and padding
*/

/* CSS Reset and 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;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #2d2d2d;
  background: #f7f6f4;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #C0A971;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #8c7d4e;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #2D2D2D;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; }

p, li, blockquote, cite {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #312e2b;
}
blockquote {
  border-left: 3px solid #C0A971;
  margin-left: 0;
  padding-left: 16px;
  font-style: italic;
  color: #3a3530;
  background: #fffdf6;
}
cite {
  display: block;
  font-size: 0.97em;
  color: #816e41;
  margin-top: 10px;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(44, 39, 28, 0.07);
  border: 1px solid rgba(192,169,113,0.14);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(192,169,113,0.18);
  border-color: #C0A971;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1.5px solid #C0A971;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(44, 39, 28, 0.10);
  margin-bottom: 20px;
  max-width: 600px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(192,169,113,0.16);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------- HEADER / NAVIGATION ---------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(44, 39, 28, 0.05);
  border-bottom: 2px solid #F3EEE3;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 24px;
  padding: 12px 20px;
  flex-wrap: wrap;
}
.main-nav > a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2D2D2D;
  padding: 8px 10px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.main-nav > a:hover,
.main-nav > a:focus {
  background: #f8f4ea;
  color: #C0A971;
}
.main-nav .btn-primary {
  background: #C0A971;
  color: #fff;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 12px;
  margin-left: 10px;
  border: none;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(192,169,113,0.10);
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #a08c56;
  color: #fffbea;
}

.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 17px;
  background: transparent;
  border: none;
  color: #C0A971;
  font-size: 2.2rem;
  z-index: 51;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #a08c56;
}

.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fffefc;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.4,1,.6,1);
  box-shadow: -2px 0 16px 0 rgba(44, 39, 28, 0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #C0A971;
  padding: 24px 26px 4px 6px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #a08c56;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Roboto', sans-serif;
  color: #2D2D2D;
  background: none;
  padding: 10px 0;
  min-width: 44px;
  border-radius: 5px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #C0A971;
  background: #faf7f2;
}

/* ---------- BUTTONS & LINKS ---------- */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.22s, color 0.19s, box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(192,169,113,0.10);
  margin-top: 8px;
}
.btn-primary {
  background: #C0A971;
  color: #fff;
  padding: 13px 32px;
  border: 1.5px solid #bfab82;
  letter-spacing: 0.01em;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #a08c56;
  color: #fffbea;
}
.btn-secondary {
  background: #fff;
  color: #C0A971;
  border: 1.5px solid #C0A971;
  padding: 11px 30px;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #f7ebc5;
  color: #a08c56;
}
.btn-link {
  background: transparent;
  color: #C0A971;
  border: none;
  padding: 0;
  text-decoration: underline;
  font-weight: 400;
  font-size: 1rem;
  border-radius: 0;
  box-shadow: none;
}
.btn-link:hover,
.btn-link:focus {
  color: #816e41;
  text-decoration: underline wavy;
}

/* ---------- HERO/CTA/SECTIONS ---------- */
.hero, .cta, .confirmation, .blog-cta {
  background: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 18px 0 rgba(192,169,113,0.04);
  padding: 48px 0 32px 0;
  margin-bottom: 40px;
}
.hero h1, .cta h2, .confirmation h1, .blog-cta h2 {
  color: #2D2D2D;
  text-shadow: 0 1px 0 #fffefc;
}
.hero p, .cta p, .confirmation p, .blog-cta p {
  max-width: 640px;
  font-size: 1.18rem;
  color: #594f37;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.features {
  background: #f8f4ea;
  border-radius: 28px;
  margin-bottom: 56px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 24px;
}
.features .feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border: 1.5px solid #F3EEE3;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(192,169,113,0.06);
  padding: 22px 20px 20px 20px;
  min-width: 210px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.features .feature-grid > div:hover {
  border-color: #C0A971;
  box-shadow: 0 6px 20px 0 rgba(192,169,113,0.11);
}
.features img {
  width: 46px;
  height: 46px;
}

.services-overview, .about-preview, .brands-preview, .contact-preview { margin-bottom: 56px; }
.services-overview {
  background: #fffefc;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(44,39,28,0.06);
}
.services-overview .service-list {
  margin: 18px 0 24px 0;
  padding-left: 22px;
}
.service-list li {
  font-size: 1.05rem;
  margin-bottom: 11px;
  color: #3f3926;
}

.about-preview p,
.contact-preview p { color: #453f33; }

.brand-logos-inline {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.brands-list, .brand-names {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
}
.brands-list li,
.brand-names li {
  font-family: 'Roboto', sans-serif;
  background: #f3eee3;
  border-radius: 9px;
  padding: 8px 14px;
  color: #816e41;
  font-size: 0.97rem;
  margin: 0 0 10px 0;
  box-shadow: 0 1px 4px 0 rgba(192,169,113,0.06);
}

.contact-short-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 15px 0 18px 0;
}
.contact-short-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #67541d;
  font-family: 'Roboto', sans-serif;
}
.contact-short-info img {
  width: 20px;
}

/* --- Blog --- */
.search-form {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px 0;
  padding: 8px 0;
}
.search-form input[type="text"] {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 9px 16px;
  border: 1.5px solid #C0A971;
  border-radius: 12px 0 0 12px;
  outline: none;
  background: #fff;
}
.search-form button {
  background: #C0A971;
  border: none;
  border-radius: 0 12px 12px 0;
  padding: 8px 18px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.search-form button:hover,
.search-form button:focus {
  background: #a08c56;
}

.featured-posts {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.featured-posts article {
  background: #fffefc;
  border: 1.2px solid #C0A971;
  border-radius: 14px;
  padding: 22px 20px 19px 20px;
  box-shadow: 0 1px 8px 0 rgba(192,169,113,0.07);
  transition: border-color 0.13s, box-shadow 0.12s;
}
.featured-posts article:hover {
  border-color: #a08c56;
  box-shadow: 0 6px 18px 0 rgba(192,169,113,0.12);
}
.categories-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 14px 0 0 0;
}
.categories-list li {
  list-style: none;
}
.categories-list a {
  background: #C0A971;
  color: #fff;
  font-size: 0.98rem;
  border-radius: 22px;
  padding: 5px 17px;
  font-family: 'Roboto', sans-serif;
  transition: background 0.19s, color 0.18s;
}
.categories-list a:hover,
.categories-list a:focus {
  background: #fff;
  color: #C0A971;
  border: 1.2px solid #C0A971;
}

/* ----- Testimonials ----- */
.testimonials {
  background: #fbf8f2;
  border-radius: 18px;
  padding: 36px 0 40px 0;
  margin-bottom: 64px;
}
.testimonials h2 {
  color: #332a10;
}
.testimonial-card {
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  color: #23221e;
  background: transparent;
  font-size: 1.08rem;
  border-left: 4px solid #C0A971;
  padding-left: 16px;
}
.testimonial-card cite {
  color: #816e41;
  font-style: normal;
  letter-spacing: 0.02em;
  margin-top: 5px;
  font-size: 1rem;
}

/* ----- Brand Grids ----- */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.brand-grid > div {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  border: 1.2px solid #eaddb6;
  box-shadow: 0 1px 8px 0 rgba(192,169,113,0.06);
  gap: 13px;
  font-family: 'Merriweather', serif;
  font-size: 1.12rem;
  color: #816e41;
  padding: 11px 24px;
  min-width: 140px;
}
.brand-grid > div img {
  width: 34px;
  height: 34px;
}

.highlighted-brands p {
  font-style: italic;
  font-size: 1.03rem;
  color: #453f33;
  margin-top: 5px;
}

/* ----- Contact, Location ----- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.contact-details li {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #67541d;
}
.opening-hours,
.address {
  background: #f8f4ea;
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 12px;
}
.opening-hours h3 {
  margin-bottom: 6px;
  color: #C0A971;
  font-size: 1.09rem;
}

.public-transport-info h3 {
  font-size: 1.05rem;
  color: #ba9a55;
}
.public-transport-info ul {
  margin-left: 15px;
}
.static-map {
  margin: 18px 0;
  display: flex;
  align-items: center;
}

/* ---------- Footer ---------- */
footer {
  background: #2D2D2D;
  color: #fff;
  padding: 38px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1.5px solid #67541d;
}
.footer-nav a {
  color: #fffbe5;
  font-size: 1rem;
  opacity: 0.82;
  transition: color 0.18s, opacity 0.18s;
  padding: 2px 9px;
  border-radius: 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 1;
  color: #C0A971;
  background: #332a10;
}
.footer-contact p {
  font-size: 0.94rem;
  color: #d2c197;
  margin: 0;
}

/* ---------- Legal Sections ---------- */
.legal {
  background: #f8f3e7;
  border-radius: 19px;
  padding: 40px 22px;
  margin-bottom: 38px;
  font-size: 1rem;
}
.legal h1, .legal h2 {
  color: #2D2D2D;
}
.legal ul {
  margin-left: 20px;
  margin-bottom: 16px;
}
.legal ul li {
  color: #7a6840;
  margin-bottom: 8px;
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #f8f3e7;
  border-top: 2.5px solid #C0A971;
  box-shadow: 0 -1px 12px 0 rgba(44, 39, 28, 0.06);
  padding: 26px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
  gap: 30px;
  animation: cookie-slide-in 0.44s cubic-bezier(.3,1,.5,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1em;
  color: #554714;
  max-width: 690px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  border-radius: 11px;
  border: none;
  padding: 10px 22px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(192,169,113,0.09);
  transition: background 0.18s, color 0.17s;
}
.cookie-banner .accept {
  background: #C0A971;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #a08c56;
}
.cookie-banner .reject {
  background: #fff;
  color: #C0A971;
  border: 1.2px solid #C0A971;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f7ebc5;
  color: #a08c56;
}
.cookie-banner .settings {
  background: transparent;
  color: #816e41;
  text-decoration: underline;
  border: none;
  padding: 10px 20px;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  color: #2D2D2D;
  background: #fff3e4;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2200;
  background: rgba(44,39,28,0.42);
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: cookie-fade-in 0.34s cubic-bezier(.2,1,.45,1);
}
@keyframes cookie-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fffefc;
  border-radius: 16px;
  box-shadow: 0 6px 44px 0 rgba(192,169,113,0.18);
  padding: 36px 30px 30px 30px;
  min-width: 320px;
  max-width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.07em;
  color: #3f3926;
}
.cookie-modal .cookie-modal-content h2 {
  margin-bottom: 14px;
  color: #C0A971;
  font-size: 1.34em;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 7px 0 7px 0;
}
.cookie-modal .category label {
  font-weight: 500;
  font-size: 1em;
}
.cookie-modal .toggle {
  width: 42px; height: 22px;
  border-radius: 11px;
  background: #f8f4ea;
  border: 1.2px solid #C0A971;
  cursor: pointer;
  position: relative;
}
.cookie-modal .toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #C0A971;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-modal .toggle input[type="checkbox"]:checked + .slider {
  transform: translateX(20px);
  background: #a08c56;
}
.cookie-modal .close-modal {
  position: absolute; top: 16px; right: 19px;
  font-size: 1.5em;
  background: none;
  border: none;
  color: #C0A971;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: #a08c56;
}
.cookie-modal .btn-group {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn-group button {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  border-radius: 9px;
  border: none;
  padding: 8px 18px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1px 4px 0 rgba(192,169,113,0.08);
  transition: background 0.16s, color 0.17s;
}
.cookie-modal .btn-group .accept {
  background: #C0A971;
  color: #fff;
}
.cookie-modal .btn-group .accept:hover, .cookie-modal .btn-group .accept:focus {
  background: #a08c56;
}
.cookie-modal .btn-group .reject {
  background: #fff;
  color: #C0A971;
  border: 1.1px solid #C0A971;
}
.cookie-modal .btn-group .reject:hover, .cookie-modal .btn-group .reject:focus {
  background: #f7ebc5;
  color: #a08c56;
}

/* ----- Responsive (MOBILE FIRST) ----- */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .main-nav {
    gap: 16px 10px;
  }
  .features .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px 9px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero, .cta, .confirmation, .blog-cta {
    padding: 18px 0 20px 0;
    border-radius: 0 0 16px 16px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    right: 18px;
    top: 20px;
    background: transparent;
  }
  .features .feature-grid {
    flex-direction: column;
    gap: 28px;
  }
  .brands-list,
  .brand-names {
    flex-direction: column;
    gap: 10px;
  }
  .brand-grid {
    flex-direction: column;
    gap: 12px;
  }
  .categories-list {
    flex-direction: column;
    gap: 10px;
  }
  .featured-posts {
    gap: 15px;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 95vw;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 22px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 10px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 17px 7vw;
    min-width: 0;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.08rem; }
  .card,
  .features .feature-grid > div,
  .testimonial-card {
    padding: 16px 10px;
    border-radius: 10px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 12px 4vw;
  }
}

/* Utility and Spacing Consistency */
.mb-30 { margin-bottom: 30px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mt-24 { margin-top: 24px!important; }
.mt-40 { margin-top: 40px!important; }
.gap-20 { gap: 20px!important; }
.gap-30 { gap: 30px!important; }

/* Hide outline for mouse, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #C0A971;
  outline-offset: 2px;
}

/* Subtle button press animation for micro-interaction */
.btn-primary:active,
.btn-secondary:active {
  transform: translateY(1px) scale(0.98);
}
.btn-link:active {
  text-shadow: 0 1px 0 #ded0a7;
}

/* Transition for all button/links */
button, a, .btn-link, .btn-primary, .btn-secondary {
  transition: background 0.21s, color 0.19s, box-shadow 0.18s, border 0.14s;
}

/* Accessibility: Selection coloring */
::selection {
  background: #C0A971;
  color: #fff;
}

/* Hide mobile menu overlays on desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Z-index for overlays */
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 2200; }
.mobile-menu { z-index: 2100; }

/* Clean icon-only images (e.g. for navigation lists) */
li img, .contact-details img {
  vertical-align: middle;
  margin-right: 7px;
}
