/* Static-site glue + CookieYes-style consent banner */

/* language switcher uses links instead of Shopify form buttons */
.localization-form__content-item a {
  background-color: var(--color-background-main);
  display: block;
  padding: .4375rem .75rem;
  color: var(--color-text-main);
  text-align: start;
  width: 100%;
  cursor: pointer;
  text-transform: capitalize;
  text-decoration: none;
  transition: all .1s linear;
}
.localization-form__content-item.localization-form__content-item--selected a {
  font-weight: var(--font-weight-body-bold);
  background-color: var(--color-secondary-background-main);
}
.no-touchevents .localization-form__content-item:hover:not(.localization-form__content-item--selected) a {
  background-color: var(--color-third-background-main);
}
.footer-bottom .localization-form__content.content-opened {
  top: auto;
  bottom: calc(100% + .25rem);
}
.sidebar-menu__localization { margin-top: .625rem; }

/* black announcement bar */
.mount-announcement-bar {
  background: #000;
  color: #fff;
}
.mount-announcement-bar .announcement { color: #fff; }

/* nav overflow arrows are unused in the static build */
.scrollable-navigation-button { display: none !important; }

/* skip link */
.skip-to-content:focus {
  clip: auto !important;
  clip-path: none !important;
  height: auto !important;
  width: auto !important;
  position: fixed !important;
  top: 10px;
  left: 10px;
  z-index: 10000;
  background: #fff;
  padding: 10px 16px;
  border: 1px solid var(--color-borders-main);
  overflow: visible !important;
}

/* testimonials slider slides fill the viewport width */
.testimonials.grid--slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
}

/* Google reviews: static replica keeps original buttons as links */
.grw-write, .grw-load { text-decoration: none; display: inline-block; }
.grw-widget { font-family: var(--font-stack-body); }

/* ------------------------------------------------ cookie consent (CookieYes style) */
.cky-consent-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 2000;
  max-width: 440px;
  width: calc(100vw - 40px);
  background: #fff;
  color: #1d1d1d;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .16);
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
}
.cky-consent-bar[hidden], .cky-modal-backdrop[hidden] { display: none; }
.cky-title {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 8px;
}
.cky-text { margin: 0 0 16px; color: rgba(29, 29, 29, .8); }
.cky-text a { color: inherit; text-decoration: underline; }
.cky-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.cky-btn {
  font-family: var(--font-stack-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--border-radius-buttons, 30px);
  cursor: pointer;
  transition: all .12s linear;
  flex: 1 1 auto;
  text-align: center;
}
.cky-btn--solid {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.cky-btn--solid:hover { background: #333; }
.cky-btn--outline {
  background: transparent;
  color: #1d1d1d;
  border: 1px solid rgba(29, 29, 29, .3);
}
.cky-btn--outline:hover { border-color: #1d1d1d; }

.cky-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2001;
  background: rgba(0, 0, 0, .36);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cky-modal {
  background: #fff;
  color: #1d1d1d;
  border-radius: 10px;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  font-size: 14px;
}
.cky-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e9e9e9;
  position: sticky;
  top: 0;
  background: #fff;
}
.cky-modal__title { font-weight: 500; font-size: 16px; }
.cky-modal__close { background: none; border: 0; cursor: pointer; padding: 6px; line-height: 0; }
.cky-modal__body { padding: 8px 24px; }
.cky-category { padding: 16px 0; border-bottom: 1px solid #efefef; }
.cky-category:last-child { border-bottom: 0; }
.cky-category__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cky-category__title { font-weight: 500; }
.cky-category__desc { margin: 6px 0 0; color: rgba(29, 29, 29, .66); font-size: 13px; }
.cky-always { color: #298556; font-weight: 500; font-size: 13px; white-space: nowrap; }
.cky-modal__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 24px 20px;
  border-top: 1px solid #e9e9e9;
}
.cky-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: none; }
.cky-switch input { opacity: 0; width: 0; height: 0; }
.cky-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #cfcfcf;
  border-radius: 24px;
  transition: background .15s linear;
}
.cky-slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .15s linear;
}
.cky-switch input:checked + .cky-slider { background: #298556; }
.cky-switch input:checked + .cky-slider:before { transform: translateX(18px); }

@media (max-width: 500px) {
  .cky-consent-bar { left: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 18px; }
  .cky-buttons .cky-btn { flex: 1 1 100%; }
}
