/* MustangSafes manual overview pages */
html {
  scroll-behavior: smooth;
}

body.lang-nl .lang:not(.lang-nl),
body.lang-fr .lang:not(.lang-fr),
body.lang-en .lang:not(.lang-en),
body.lang-de .lang:not(.lang-de) {
  display: none !important;
}

.overview-page {
  min-height: 100vh;
  padding: 18mm 0 16mm;
  background: #fff;
}

.overview-wrap {
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: border-box;
}

.overview-site-container {
  width: 100%;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
  box-sizing: border-box;
}

.overview-site-header {
  display: block;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  overflow: visible;
}

.overview-site-row {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #1e3855;
}

.overview-site-topbar {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: rgba(255,255,255,.88);
}

.overview-site-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 20px;
}

.overview-site-review {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.overview-site-stars {
  display: inline-flex;
  gap: 3px;
  margin-left: 8px;
  color: #ffc928;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
}

.overview-site-contact-row {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.overview-site-contact-row .overview-site-language-select {
  margin-left: 14px;
}

.overview-site-contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #00b900 !important;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.overview-site-contact-icon {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview-site-mainbar {
  border-top: 0;
}

.overview-site-mainbar-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 0;
  align-items: center;
}

.overview-site-logo img {
  display: block;
  width: 174px;
  height: auto;
}

.overview-site-title {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: #fff;
  font-family: industry, azo-sans-web, system-ui, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
}

.overview-site-title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,.34);
}

.overview-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.overview-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  text-decoration: none;
}

.overview-site-nav a:hover {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.overview-site-category-nav {
  min-height: 52px;
  border-top: 1px solid rgba(255,255,255,.08);
  box-sizing: border-box;
}

.overview-site-category-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 50px;
}

.overview-site-category-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: #fff !important;
  font-size: 16px;
  font-weight: 300;
  line-height: 48px;
  text-decoration: none;
}

.overview-site-category-nav a:hover,
.overview-site-category-nav a.is-active {
  background: rgba(255,255,255,.10);
  color: #fff !important;
}

.overview-site-category-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
}

.overview-site-language-select {
  position: relative;
}

.overview-site-language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: 300 14px/20px azo-sans-web, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.overview-site-language-trigger::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .16s ease;
}

.overview-site-language-select.is-open .overview-site-language-trigger::after,
.overview-site-language-select:focus-within .overview-site-language-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.overview-site-language-panel {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 70;
  min-width: 260px;
  padding: 0;
  border: 1px solid #d7dde5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31,53,81,.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  overflow: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.overview-site-language-select.is-open .overview-site-language-panel,
.overview-site-language-select:focus-within .overview-site-language-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.overview-site-language-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-bottom: 1px solid #e3e8ee;
  color: #1f3551 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.overview-site-language-panel a:last-child {
  border-bottom: 0;
}

.overview-site-language-panel a:hover,
.overview-site-language-panel a.is-active {
  background: #f7f9fb;
  color: #1f3551 !important;
}

.overview-site-language-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  flex: 0 0 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1;
}

.overview-site-language-panel a[data-lang-target="en"] .overview-site-language-flag {
  background-size: 24px 16px;
}

body.lang-en .overview-site-language-trigger .overview-site-language-flag {
  background-size: 24px 16px;
}

.overview-page-title {
  margin: 0;
}

.overview-page-title h1 {
  margin: 0;
  color: #1f3551;
  font-size: 31px;
  line-height: 1.08;
}

.overview-page-title p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #52667d;
  font-size: 15px;
  line-height: 1.4;
}

.overview-intro-card {
  margin: 6mm 0 0;
  border-left: 4px solid #f1c47c;
  border-color: #f1c47c;
  background: #fffaf2;
  color: #1f3551;
}

.overview-intro-card strong {
  color: #b44a35;
}

.overview-section-title {
  margin: 8mm 0 4mm;
  font-size: 17pt;
  color: #1f3551;
}

.overview-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}

.overview-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(30,56,85,.18);
  border-radius: 0 8px 0 8px;
  background: linear-gradient(180deg,#fff 0%,#f3f6f9 100%);
  color: #1e3855;
  font: 800 12px/1 azo-sans-web, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset, 0 6px 16px rgba(30,56,85,.08);
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease, transform .16s ease;
}

.overview-filter-pill:hover {
  border-color: rgba(30,56,85,.30);
  background: linear-gradient(180deg,#fff 0%,#eaf0f5 100%);
  color: #1e3855;
  transform: translateY(-1px);
}

.overview-filter-pill:focus-visible {
  outline: 2px solid rgba(0,168,37,.65);
  outline-offset: 3px;
}

.overview-filter-pill.is-active {
  border-color: rgba(0,168,37,.42);
  background: linear-gradient(180deg,#15bd39 0%,#00a825 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 7px 18px rgba(0,168,37,.16);
}

.overview-filter-pill.is-active:hover {
  border-color: #008f20;
  background: linear-gradient(180deg,#18c93f 0%,#009d23 100%);
  color: #fff;
}

.overview-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(30,56,85,.08);
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.overview-filter-pill.is-active .overview-filter-count {
  background: rgba(255,255,255,.22);
}

.manual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 5mm;
  margin-top: 22px;
}

.manual-card {
  scroll-margin-top: 90px;
  display: grid;
  grid-template-columns: 1.45fr .72fr;
  gap: 5mm;
  align-items: start;
  min-height: 58mm;
  padding-top: 4mm;
}

.manual-grid .manual-card.is-filtered-out {
  display: none !important;
}

.manual-card:target {
  outline: 3px solid rgba(0,168,37,.28);
  outline-offset: 4px;
}

.manual-card h2 {
  min-height: calc(2em * 1.2);
  margin-top: 0;
  margin-bottom: 1.8mm;
  font-size: 13.2pt;
  line-height: 1.2;
  font-weight: 800;
}

.manual-main {
  display: grid;
  gap: 2mm;
}

.manual-side {
  display: grid;
  gap: 3mm;
  align-content: start;
  padding: 2.5mm;
  background: #f7f9fb;
  border: 1px solid #edf1f5;
  border-radius: 0 10px 0 10px;
}

.manual-thumb {
  display: block;
  width: 100%;
  max-height: 52mm;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 0;
  border-radius: 0 8px 0 8px;
  padding: 1mm;
}

.manual-subtitle,
.manual-description,
.manual-meta,
.manual-actions-label {
  color: #52667d;
}

.manual-subtitle {
  margin: 0;
  font-size: 9.4pt;
  line-height: 1.25;
}

.manual-description {
  margin: 0;
  font-size: 9.3pt;
}

.manual-meta {
  display: grid;
  gap: 1.3mm;
  margin-top: 1mm;
  font-size: 9pt;
}

.manual-meta strong {
  color: #1f3551;
}

.manual-actions {
  display: grid;
  gap: 2.5mm;
}

.manual-actions-label {
  font-size: 8.7pt;
  font-weight: 700;
}

.language-row {
  display: flex;
  gap: 2mm;
  flex-wrap: wrap;
}

.manual-card .language-row .pill {
  min-width: 42px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(30,56,85,.18);
  border-radius: 0 8px 0 8px;
  background: linear-gradient(180deg,#fff 0%,#f3f6f9 100%);
  color: #1e3855;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset, 0 6px 16px rgba(30,56,85,.10);
}

.manual-card .language-row .pill:hover {
  border-color: rgba(30,56,85,.30);
  background: linear-gradient(180deg,#fff 0%,#eaf0f5 100%);
  color: #1e3855;
  text-decoration: none;
  transform: translateY(-1px);
}

.manual-card .language-row .pill:focus {
  outline: 2px solid rgba(0,168,37,.65);
  outline-offset: 3px;
}

.manual-card .language-row .pill:first-child {
  border-color: rgba(0,168,37,.42);
  background: linear-gradient(180deg,#15bd39 0%,#00a825 100%);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 7px 18px rgba(0,168,37,.18);
}

.manual-card .language-row .pill:first-child:hover {
  border-color: #008f20;
  background: linear-gradient(180deg,#18c93f 0%,#009d23 100%);
  color: #fff;
}

.manual-card .overview-open-pill {
  width: auto;
  min-width: 156px;
  max-width: 220px;
  min-height: 38px;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border-color: rgba(0,168,37,.42);
  background: linear-gradient(180deg,#15bd39 0%,#00a825 100%);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 7px 18px rgba(0,168,37,.18);
}

.manual-card .overview-open-pill:hover {
  border-color: #008f20;
  background: linear-gradient(180deg,#18c93f 0%,#009d23 100%);
  color: #fff;
}

.manual-card .overview-open-pill .pill-icon {
  width: 13px;
  height: 13px;
  margin-left: 2px;
  transform: translateY(2px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manual-card:has(.overview-open-pill) {
  grid-template-columns: 1.45fr .72fr;
  min-height: 58mm;
}

.manual-card:has(.overview-open-pill) .manual-side:empty {
  display: none;
}

.manual-card:has(.overview-open-pill):has(.manual-side:empty) {
  grid-template-columns: 1fr;
  min-height: 56mm;
}

.manual-card:has(.overview-open-pill) .manual-side {
  align-self: start;
  align-content: start;
  padding: 0;
  background: transparent;
  border: 0;
}

.manual-card:has(.overview-open-pill) .manual-actions-label {
  text-align: left;
}

.manual-card:has(.overview-open-pill) .language-row {
  justify-content: flex-start;
}

.manual-card:has(.overview-open-pill) .manual-main {
  align-content: start;
}

.manual-card:has(.overview-open-pill) .manual-actions {
  width: fit-content;
  min-width: 156px;
  margin-top: 3mm;
}

.manual-card:has(.overview-open-pill) .manual-side:empty + * {
  display: none;
}

.overview-footer {
  margin-top: 9mm;
  color: #7a8796;
  font-size: 9pt;
}

.overview-footer a {
  color: #1e3855;
  font-weight: 700;
  text-decoration: none;
}

.overview-footer a:hover {
  text-decoration: underline;
}

/* Desktop phone tooltip */
@media screen and (min-width: 761px) {
  .overview-site-contact-row a[href="tel:+31743575799"] {
    position: relative;
    cursor: help;
  }

  .overview-site-contact-row a[href="tel:+31743575799"]::after {
    content: "+31 (0)74 357 5799";
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 9999;
    padding: 7px 11px;
    border: 1px solid #1e3855;
    border-radius: 0 7px 0 7px;
    background: #fff;
    color: #1e3855;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -4px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    pointer-events: none;
  }

  .overview-site-contact-row a[href="tel:+31743575799"]::before {
    content: "";
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    z-index: 10000;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -4px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    pointer-events: none;
  }

  .overview-site-contact-row a[href="tel:+31743575799"]:hover::after,
  .overview-site-contact-row a[href="tel:+31743575799"]:hover::before,
  .overview-site-contact-row a[href="tel:+31743575799"]:focus-visible::after,
  .overview-site-contact-row a[href="tel:+31743575799"]:focus-visible::before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 760px) {
  .overview-page {
    padding: 24px 0 86px;
  }

  .overview-wrap,
  .overview-site-container {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .overview-site-topbar-inner {
    min-height: 34px;
  }

  .overview-site-topbar,
  .overview-site-mainbar {
    border-top: 0;
    border-bottom: 0;
  }

  .overview-site-review {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
  }

  .overview-site-review-text {
    display: none;
  }

  .overview-site-stars {
    margin-left: 0;
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .overview-site-contact-row {
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: 8px;
    font-size: 11px;
    margin-left: auto;
  }
  .overview-site-contact-row > span {
    display: none;
  }

  .overview-site-contact-row .overview-site-language-select {
    position: absolute;
    right: 14px;
    top: 56px;
    z-index: 80;
    margin-left: 0;
  }

  .overview-site-language-trigger {
    gap: 7px;
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
    font-size: 0;
  }

  .overview-site-language-trigger::after {
    display: inline-block;
  }

  .overview-site-language-trigger .overview-site-language-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .overview-site-contact-icon {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
  }

  .overview-site-mainbar-inner {
    min-height: 86px;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    padding-right: 58px;
  }

  .overview-site-logo img {
    width: 150px;
  }

  .overview-site-title {
    font-size: 20px;
    gap: 10px;
  }

  .overview-site-title::before {
    width: 1px;
    min-width: 1px;
    flex: 0 0 1px;
    height: 24px;
    background: rgba(255,255,255,.42);
  }

  .overview-site-nav {
    display: none;
  }

  .overview-site-category-nav {
    border-top-color: rgba(255,255,255,.12);
  }

  .overview-site-category-nav a.is-active::after {
    height: 2px;
  }

  .overview-site-category-nav-inner {
    overflow-x: auto;
    min-height: 46px;
  }

  .overview-site-category-nav a {
    flex: 0 0 auto;
    padding: 0 13px;
    font-size: 14px;
  }

  .overview-site-language-panel {
    right: 0;
    min-width: min(230px, calc(100vw - 28px));
  }

  .overview-page-title {
    margin-top: 24px;
  }

  .overview-page-title h1 {
    font-size: 28px;
  }

  .overview-page-title p {
    font-size: 14px;
  }

  .overview-intro-card {
    margin-top: 18px;
  }

  .overview-section-title {
    margin-top: 26px;
    font-size: 21px;
  }

  .overview-filter-bar {
    flex-wrap: nowrap;
    gap: 8px;
    margin: 14px 0 18px;
    padding: 0 34px 3px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 34px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 calc(100% - 34px), transparent 100%);
  }

  .overview-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .overview-filter-pill {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 9px 13px;
    font-size: 13px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .manual-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .manual-card {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 16px;
    scroll-margin-top: 22px;
  }

  .manual-side {
    padding: 8px;
  }

  .manual-thumb {
    width: 100%;
    max-height: 150px;
    padding: 2px;
  }

  .manual-card .language-row {
    gap: 8px;
  }

  .manual-card .language-row .pill {
    flex: 1 1 0;
    min-width: 0;
    min-height: 40px;
    padding: 10px 8px;
    font-size: 13px;
  }

  .manual-card:has(.overview-open-pill) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 14px;
    align-items: start;
  }

  .manual-card:has(.overview-open-pill) .manual-main {
    display: contents;
  }

  .manual-card:has(.overview-open-pill) .manual-side {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .manual-card:has(.overview-open-pill) h2 {
    grid-column: 1;
    grid-row: 1;
  }

  .manual-card:has(.overview-open-pill) .manual-subtitle {
    grid-column: 1;
    grid-row: 2;
  }

  .manual-card:has(.overview-open-pill) .manual-description {
    grid-column: 1;
    grid-row: 3;
  }

  .manual-card:has(.overview-open-pill) .manual-actions {
    grid-column: 1;
    grid-row: 4;
    width: auto;
    margin-top: 2px;
  }

  .manual-card .language-row .overview-open-pill {
    flex: 0 0 auto;
    width: fit-content;
    min-width: 150px;
    max-width: 190px;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .manual-card:has(.overview-open-pill) .language-row {
    width: 100%;
  }

  .manual-card:has(.overview-open-pill) h2,
  .manual-card:has(.overview-open-pill) .manual-subtitle,
  .manual-card:has(.overview-open-pill) .manual-description {
    padding-right: 0;
  }

  .manual-card h2 {
    font-size: 18px;
    line-height: 1.2;
  }

  .manual-subtitle {
    font-size: 14px;
  }

  .manual-card:has(.overview-open-pill) .manual-meta {
    grid-column: 2;
    grid-row: 4;
    margin-top: 4px;
    font-size: 11px;
    padding-right: 0;
  }

  .manual-card:has(.overview-open-pill) .manual-description {
    font-size: 14px;
  }
}

@media screen and (max-width: 390px) {
  .overview-site-mainbar-inner {
    column-gap: 12px;
    padding-right: 42px;
  }

  .overview-site-logo img {
    width: 132px;
  }

  .overview-site-title {
    gap: 8px;
    font-size: 17px;
  }

  .overview-site-title::before {
    height: 22px;
  }

  .overview-site-contact-row .overview-site-language-select {
    right: 10px;
  }
}