/* Basics */
.mapboxgl-ctrl-geocoder,
.mapboxgl-ctrl-geocoder *,
.mapboxgl-ctrl-geocoder *:after,
.mapboxgl-ctrl-geocoder *:before {
  box-sizing: border-box;
}

.mapboxgl-ctrl-geocoder {
  font-size: 18px;
  line-height: 24px;
  font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
  position: relative;
  background-color: #fff;
  width: 100%;
  min-width: 240px;
  z-index: 1;
  border-radius: 4px;
  transition: width .25s, min-width .25s;
}

.mapboxgl-ctrl-geocoder--input {
  font: inherit;
  width: 100%;
  border: 0;
  background-color: transparent;
  margin: 0;
  height: 50px;
  color: #404040; /* fallback */
  color: rgba(0, 0, 0, 0.75);
  padding: 6px 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mapboxgl-ctrl-geocoder--input::-ms-clear {
  display: none; /* hide input clear button in IE */
}

.mapboxgl-ctrl-geocoder--input:focus {
  color: #404040; /* fallback */
  color: rgba(0, 0, 0, 0.75);
  outline: 0;
  box-shadow: none;
  outline: thin dotted\8;
}

.mapboxgl-ctrl-geocoder .mapboxgl-ctrl-geocoder--pin-right > * {
  z-index: 2;
  position: absolute;
  right: 8px;
  top: 7px;
  display: none;
}

.mapboxgl-ctrl-geocoder,
.mapboxgl-ctrl-geocoder .suggestions {
  box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
}

/* Collapsed */
.mapboxgl-ctrl-geocoder.mapboxgl-ctrl-geocoder--collapsed {
  width: 50px;
  min-width: 50px;
  transition: width .25s, min-width .25s;
}

/* Suggestions */
.mapboxgl-ctrl-geocoder .suggestions {
  background-color: #fff;
  border-radius: 4px;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  top: 110%; /* fallback */
  top: calc(100% + 6px);
  z-index: 1000;
  overflow: hidden;
  font-size: 15px;
}

.mapboxgl-ctrl-bottom-left .suggestions,
.mapboxgl-ctrl-bottom-right .suggestions {
  top: auto;
  bottom: 100%;
}

.mapboxgl-ctrl-geocoder .suggestions > li > a {
  cursor: default;
  display: block;
  padding: 6px 12px;
  color: #404040;
}

.mapboxgl-ctrl-geocoder .suggestions > .active > a,
.mapboxgl-ctrl-geocoder .suggestions > li > a:hover {
  color: #404040;
  background-color: #f3f3f3;
  text-decoration: none;
  cursor: pointer;
}

.mapboxgl-ctrl-geocoder--suggestion-title {
  font-weight: bold;
}

.mapboxgl-ctrl-geocoder--suggestion-title,
.mapboxgl-ctrl-geocoder--suggestion-address {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Icons */
.mapboxgl-ctrl-geocoder--icon {
  display: inline-block;
  vertical-align: middle;
  speak: none;
  fill: #757575;
  top: 15px;
}

.mapboxgl-ctrl-geocoder--icon-search {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 23px;
  height: 23px;
}

.mapboxgl-ctrl-geocoder--button {
  padding: 0;
  margin: 0;
  border: none;
  cursor: pointer;
  background: #fff;
  line-height: 1;
}

.mapboxgl-ctrl-geocoder--icon-close {
  width: 20px;
  height: 20px;
  margin-top: 8px;
  margin-right: 3px;
}

.mapboxgl-ctrl-geocoder--button:hover .mapboxgl-ctrl-geocoder--icon-close {
  fill: #909090;
}

.mapboxgl-ctrl-geocoder--icon-loading {
  width: 26px;
  height: 26px;
  margin-top: 5px;
  margin-right: 0px;
  -moz-animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
  -webkit-animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
  animation: rotate 0.8s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

/* Animation */
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Media queries*/
@media screen and (min-width: 640px) {

  .mapboxgl-ctrl-geocoder.mapboxgl-ctrl-geocoder--collapsed {
    width: 36px;
    min-width: 36px;
  }

  .mapboxgl-ctrl-geocoder {
    width: 33.3333%;
    font-size: 15px;
    line-height: 20px;
    max-width: 360px;
  }
  .mapboxgl-ctrl-geocoder .suggestions {
    font-size: 13px;
  }

  .mapboxgl-ctrl-geocoder--icon {
    top: 8px;
  }

  .mapboxgl-ctrl-geocoder--icon-close {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    margin-right: 0;
  }

  .mapboxgl-ctrl-geocoder--icon-search {
    left: 7px;
    width: 20px;
    height: 20px;
  }

  .mapboxgl-ctrl-geocoder--input {
    height: 36px;
    padding: 6px 35px;
  }

  .mapboxgl-ctrl-geocoder--icon-loading {
    width: 26px;
    height: 26px;
    margin-top: -2px;
    margin-right: -5px;
  }

  .mapbox-gl-geocoder--error{
    color:#909090;
    padding: 6px 12px;
    font-size: 16px;
    text-align: center
  }

}

.mapboxgl-map {
    font: 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
    overflow: hidden;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mapboxgl-map:-webkit-full-screen {
    width: 100%;
    height: 100%;
}

.mapboxgl-canary {
    background-color: salmon;
}

.mapboxgl-canvas-container.mapboxgl-interactive,
.mapboxgl-ctrl-group > button.mapboxgl-ctrl-compass {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mapboxgl-canvas-container.mapboxgl-interactive:active,
.mapboxgl-ctrl-group > button.mapboxgl-ctrl-compass:active {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas {
    touch-action: pan-x pan-y;
}

.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas {
    touch-action: pinch-zoom;
}

.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,
.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas {
    touch-action: none;
}

.mapboxgl-ctrl-top-left,
.mapboxgl-ctrl-top-right,
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right { position: absolute; pointer-events: none; z-index: 2; }
.mapboxgl-ctrl-top-left     { top: 0; left: 0; }
.mapboxgl-ctrl-top-right    { top: 0; right: 0; }
.mapboxgl-ctrl-bottom-left  { bottom: 0; left: 0; }
.mapboxgl-ctrl-bottom-right { right: 0; bottom: 0; }

.mapboxgl-ctrl { clear: both; pointer-events: auto; }
.mapboxgl-ctrl-top-left .mapboxgl-ctrl     { margin: 10px 0 0 10px; float: left; }
.mapboxgl-ctrl-top-right .mapboxgl-ctrl    { margin: 10px 10px 0 0; float: right; }
.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl  { margin: 0 0 10px 10px; float: left; }
.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl { margin: 0 10px 10px 0; float: right; }

.mapboxgl-ctrl-group {
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.mapboxgl-ctrl-group:not(:empty) {
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.mapboxgl-ctrl-group > button {
    width: 30px;
    height: 30px;
    display: block;
    padding: 0;
    outline: none;
    border: 0;
    box-sizing: border-box;
    background-color: transparent;
    cursor: pointer;
}

.mapboxgl-ctrl-group > button + button {
    border-top: 1px solid #ddd;
}

/* https://bugzilla.mozilla.org/show_bug.cgi?id=140562 */
.mapboxgl-ctrl > button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.mapboxgl-ctrl > button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mapboxgl-ctrl-icon,
.mapboxgl-ctrl-icon > .mapboxgl-ctrl-compass-arrow {
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mapboxgl-ctrl-icon {
    padding: 5px;
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-out {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath style='fill:%23333333;' d='m 7,9 c -0.554,0 -1,0.446 -1,1 0,0.554 0.446,1 1,1 l 6,0 c 0.554,0 1,-0.446 1,-1 0,-0.554 -0.446,-1 -1,-1 z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-zoom-in {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath style='fill:%23333333;' d='M 10 6 C 9.446 6 9 6.4459904 9 7 L 9 9 L 7 9 C 6.446 9 6 9.446 6 10 C 6 10.554 6.446 11 7 11 L 9 11 L 9 13 C 9 13.55401 9.446 14 10 14 C 10.554 14 11 13.55401 11 13 L 11 11 L 13 11 C 13.554 11 14 10.554 14 10 C 14 9.446 13.554 9 13 9 L 11 9 L 11 7 C 11 6.4459904 10.554 6 10 6 z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-geolocate {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E %3Cpath d='M10 4C9 4 9 5 9 5L9 5.1A5 5 0 0 0 5.1 9L5 9C5 9 4 9 4 10 4 11 5 11 5 11L5.1 11A5 5 0 0 0 9 14.9L9 15C9 15 9 16 10 16 11 16 11 15 11 15L11 14.9A5 5 0 0 0 14.9 11L15 11C15 11 16 11 16 10 16 9 15 9 15 9L14.9 9A5 5 0 0 0 11 5.1L11 5C11 5 11 4 10 4zM10 6.5A3.5 3.5 0 0 1 13.5 10 3.5 3.5 0 0 1 10 13.5 3.5 3.5 0 0 1 6.5 10 3.5 3.5 0 0 1 10 6.5zM10 8.3A1.8 1.8 0 0 0 8.3 10 1.8 1.8 0 0 0 10 11.8 1.8 1.8 0 0 0 11.8 10 1.8 1.8 0 0 0 10 8.3z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-geolocate:disabled {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E %3Cpath d='M10 4C9 4 9 5 9 5L9 5.1A5 5 0 0 0 5.1 9L5 9C5 9 4 9 4 10 4 11 5 11 5 11L5.1 11A5 5 0 0 0 9 14.9L9 15C9 15 9 16 10 16 11 16 11 15 11 15L11 14.9A5 5 0 0 0 14.9 11L15 11C15 11 16 11 16 10 16 9 15 9 15 9L14.9 9A5 5 0 0 0 11 5.1L11 5C11 5 11 4 10 4zM10 6.5A3.5 3.5 0 0 1 13.5 10 3.5 3.5 0 0 1 10 13.5 3.5 3.5 0 0 1 6.5 10 3.5 3.5 0 0 1 10 6.5zM10 8.3A1.8 1.8 0 0 0 8.3 10 1.8 1.8 0 0 0 10 11.8 1.8 1.8 0 0 0 11.8 10 1.8 1.8 0 0 0 10 8.3z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M10 4C9 4 9 5 9 5L9 5.1A5 5 0 0 0 5.1 9L5 9C5 9 4 9 4 10 4 11 5 11 5 11L5.1 11A5 5 0 0 0 9 14.9L9 15C9 15 9 16 10 16 11 16 11 15 11 15L11 14.9A5 5 0 0 0 14.9 11L15 11C15 11 16 11 16 10 16 9 15 9 15 9L14.9 9A5 5 0 0 0 11 5.1L11 5C11 5 11 4 10 4zM10 6.5A3.5 3.5 0 0 1 13.5 10 3.5 3.5 0 0 1 10 13.5 3.5 3.5 0 0 1 6.5 10 3.5 3.5 0 0 1 10 6.5zM10 8.3A1.8 1.8 0 0 0 8.3 10 1.8 1.8 0 0 0 10 11.8 1.8 1.8 0 0 0 11.8 10 1.8 1.8 0 0 0 10 8.3z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E %3Cpath d='M10 4C9 4 9 5 9 5L9 5.1A5 5 0 0 0 5.1 9L5 9C5 9 4 9 4 10 4 11 5 11 5 11L5.1 11A5 5 0 0 0 9 14.9L9 15C9 15 9 16 10 16 11 16 11 15 11 15L11 14.9A5 5 0 0 0 14.9 11L15 11C15 11 16 11 16 10 16 9 15 9 15 9L14.9 9A5 5 0 0 0 11 5.1L11 5C11 5 11 4 10 4zM10 6.5A3.5 3.5 0 0 1 13.5 10 3.5 3.5 0 0 1 10 13.5 3.5 3.5 0 0 1 6.5 10 3.5 3.5 0 0 1 10 6.5zM10 8.3A1.8 1.8 0 0 0 8.3 10 1.8 1.8 0 0 0 10 11.8 1.8 1.8 0 0 0 11.8 10 1.8 1.8 0 0 0 10 8.3z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E %3Cpath d='M 10,4 C 9,4 9,5 9,5 L 9,5.1 C 7.0357113,5.5006048 5.5006048,7.0357113 5.1,9 L 5,9 c 0,0 -1,0 -1,1 0,1 1,1 1,1 l 0.1,0 c 0.4006048,1.964289 1.9357113,3.499395 3.9,3.9 L 9,15 c 0,0 0,1 1,1 1,0 1,-1 1,-1 l 0,-0.1 c 1.964289,-0.400605 3.499395,-1.935711 3.9,-3.9 l 0.1,0 c 0,0 1,0 1,-1 C 16,9 15,9 15,9 L 14.9,9 C 14.499395,7.0357113 12.964289,5.5006048 11,5.1 L 11,5 c 0,0 0,-1 -1,-1 z m 0,2.5 c 1.932997,0 3.5,1.5670034 3.5,3.5 0,1.932997 -1.567003,3.5 -3.5,3.5 C 8.0670034,13.5 6.5,11.932997 6.5,10 6.5,8.0670034 8.0670034,6.5 10,6.5 Z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E %3Cpath d='M 10,4 C 9,4 9,5 9,5 L 9,5.1 C 7.0357113,5.5006048 5.5006048,7.0357113 5.1,9 L 5,9 c 0,0 -1,0 -1,1 0,1 1,1 1,1 l 0.1,0 c 0.4006048,1.964289 1.9357113,3.499395 3.9,3.9 L 9,15 c 0,0 0,1 1,1 1,0 1,-1 1,-1 l 0,-0.1 c 1.964289,-0.400605 3.499395,-1.935711 3.9,-3.9 l 0.1,0 c 0,0 1,0 1,-1 C 16,9 15,9 15,9 L 14.9,9 C 14.499395,7.0357113 12.964289,5.5006048 11,5.1 L 11,5 c 0,0 0,-1 -1,-1 z m 0,2.5 c 1.932997,0 3.5,1.5670034 3.5,3.5 0,1.932997 -1.567003,3.5 -3.5,3.5 C 8.0670034,13.5 6.5,11.932997 6.5,10 6.5,8.0670034 8.0670034,6.5 10,6.5 Z'/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting {
    -webkit-animation: mapboxgl-spin 2s infinite linear;
    -moz-animation: mapboxgl-spin 2s infinite linear;
    -o-animation: mapboxgl-spin 2s infinite linear;
    -ms-animation: mapboxgl-spin 2s infinite linear;
    animation: mapboxgl-spin 2s infinite linear;
}

@-webkit-keyframes mapboxgl-spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes mapboxgl-spin {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); }
}

@-o-keyframes mapboxgl-spin {
    0% { -o-transform: rotate(0deg); }
    100% { -o-transform: rotate(360deg); }
}

@-ms-keyframes mapboxgl-spin {
    0% { -ms-transform: rotate(0deg); }
    100% { -ms-transform: rotate(360deg); }
}

@keyframes mapboxgl-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-fullscreen {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M 5 4 C 4.5 4 4 4.5 4 5 L 4 6 L 4 9 L 4.5 9 L 5.7773438 7.296875 C 6.7771319 8.0602131 7.835765 8.9565728 8.890625 10 C 7.8257121 11.0633 6.7761791 11.951675 5.78125 12.707031 L 4.5 11 L 4 11 L 4 15 C 4 15.5 4.5 16 5 16 L 9 16 L 9 15.5 L 7.2734375 14.205078 C 8.0428931 13.187886 8.9395441 12.133481 9.9609375 11.068359 C 11.042371 12.14699 11.942093 13.2112 12.707031 14.21875 L 11 15.5 L 11 16 L 14 16 L 15 16 C 15.5 16 16 15.5 16 15 L 16 14 L 16 11 L 15.5 11 L 14.205078 12.726562 C 13.177985 11.949617 12.112718 11.043577 11.037109 10.009766 C 12.151856 8.981061 13.224345 8.0798624 14.228516 7.3046875 L 15.5 9 L 16 9 L 16 5 C 16 4.5 15.5 4 15 4 L 11 4 L 11 4.5 L 12.703125 5.7773438 C 11.932647 6.7864834 11.026693 7.8554712 9.9707031 8.9199219 C 8.9584739 7.8204943 8.0698767 6.7627188 7.3046875 5.7714844 L 9 4.5 L 9 4 L 6 4 L 5 4 z '/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-shrink {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath style='fill:%23000000;' d='M 4.2421875 3.4921875 A 0.750075 0.750075 0 0 0 3.71875 4.78125 L 5.9648438 7.0273438 L 4 8.5 L 4 9 L 8 9 C 8.500001 8.9999988 9 8.4999992 9 8 L 9 4 L 8.5 4 L 7.0175781 5.9550781 L 4.78125 3.71875 A 0.750075 0.750075 0 0 0 4.2421875 3.4921875 z M 15.734375 3.4921875 A 0.750075 0.750075 0 0 0 15.21875 3.71875 L 12.984375 5.953125 L 11.5 4 L 11 4 L 11 8 C 11 8.4999992 11.499999 8.9999988 12 9 L 16 9 L 16 8.5 L 14.035156 7.0273438 L 16.28125 4.78125 A 0.750075 0.750075 0 0 0 15.734375 3.4921875 z M 4 11 L 4 11.5 L 5.9648438 12.972656 L 3.71875 15.21875 A 0.75130096 0.75130096 0 1 0 4.78125 16.28125 L 7.0273438 14.035156 L 8.5 16 L 9 16 L 9 12 C 9 11.500001 8.500001 11.000001 8 11 L 4 11 z M 12 11 C 11.499999 11.000001 11 11.500001 11 12 L 11 16 L 11.5 16 L 12.972656 14.035156 L 15.21875 16.28125 A 0.75130096 0.75130096 0 1 0 16.28125 15.21875 L 14.035156 12.972656 L 16 11.5 L 16 11 L 12 11 z '/%3E %3C/svg%3E");
}

.mapboxgl-ctrl-icon.mapboxgl-ctrl-compass > .mapboxgl-ctrl-compass-arrow {
    width: 20px;
    height: 20px;
    margin: 5px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E %3Cpolygon fill='%23333333' points='6,9 10,1 14,9'/%3E %3Cpolygon fill='%23CCCCCC' points='6,11 10,19 14,11 '/%3E %3C/svg%3E");
    background-repeat: no-repeat;
    display: inline-block;
}

a.mapboxgl-ctrl-logo {
    width: 85px;
    height: 21px;
    margin: 0 0 -3px -3px;
    display: block;
    background-repeat: no-repeat;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 84.49 21' style='enable-background:new 0 0 84.49 21;' xml:space='preserve'%3E%3Cg%3E %3Cpath class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' d='M83.25,14.26c0,0.12-0.09,0.21-0.21,0.21h-1.61c-0.13,0-0.24-0.06-0.3-0.17l-1.44-2.39l-1.44,2.39 c-0.06,0.11-0.18,0.17-0.3,0.17h-1.61c-0.04,0-0.08-0.01-0.12-0.03c-0.09-0.06-0.13-0.19-0.06-0.28l0,0l2.43-3.68L76.2,6.84 c-0.02-0.03-0.03-0.07-0.03-0.12c0-0.12,0.09-0.21,0.21-0.21h1.61c0.13,0,0.24,0.06,0.3,0.17l1.41,2.36l1.4-2.35 c0.06-0.11,0.18-0.17,0.3-0.17H83c0.04,0,0.08,0.01,0.12,0.03c0.09,0.06,0.13,0.19,0.06,0.28l0,0l-2.37,3.63l2.43,3.67 C83.24,14.18,83.25,14.22,83.25,14.26z'/%3E %3Cpath class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' d='M66.24,9.59c-0.39-1.88-1.96-3.28-3.84-3.28c-1.03,0-2.03,0.42-2.73,1.18V3.51c0-0.13-0.1-0.23-0.23-0.23h-1.4 c-0.13,0-0.23,0.11-0.23,0.23v10.72c0,0.13,0.1,0.23,0.23,0.23h1.4c0.13,0,0.23-0.11,0.23-0.23V13.5c0.71,0.75,1.7,1.18,2.73,1.18 c1.88,0,3.45-1.41,3.84-3.29C66.37,10.79,66.37,10.18,66.24,9.59L66.24,9.59z M62.08,13c-1.32,0-2.39-1.11-2.41-2.48v-0.06 c0.02-1.38,1.09-2.48,2.41-2.48s2.42,1.12,2.42,2.51S63.41,13,62.08,13z'/%3E %3Cpath class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' d='M71.67,6.32c-1.98-0.01-3.72,1.35-4.16,3.29c-0.13,0.59-0.13,1.19,0,1.77c0.44,1.94,2.17,3.32,4.17,3.3 c2.35,0,4.26-1.87,4.26-4.19S74.04,6.32,71.67,6.32z M71.65,13.01c-1.33,0-2.42-1.12-2.42-2.51s1.08-2.52,2.42-2.52 c1.33,0,2.42,1.12,2.42,2.51S72.99,13,71.65,13.01L71.65,13.01z'/%3E %3Cpath class='st1' style='opacity:0.35; enable-background:new;' d='M62.08,7.98c-1.32,0-2.39,1.11-2.41,2.48v0.06C59.68,11.9,60.75,13,62.08,13s2.42-1.12,2.42-2.51 S63.41,7.98,62.08,7.98z M62.08,11.76c-0.63,0-1.14-0.56-1.17-1.25v-0.04c0.01-0.69,0.54-1.25,1.17-1.25 c0.63,0,1.17,0.57,1.17,1.27C63.24,11.2,62.73,11.76,62.08,11.76z'/%3E %3Cpath class='st1' style='opacity:0.35; enable-background:new;' d='M71.65,7.98c-1.33,0-2.42,1.12-2.42,2.51S70.32,13,71.65,13s2.42-1.12,2.42-2.51S72.99,7.98,71.65,7.98z M71.65,11.76c-0.64,0-1.17-0.57-1.17-1.27c0-0.7,0.53-1.26,1.17-1.26s1.17,0.57,1.17,1.27C72.82,11.21,72.29,11.76,71.65,11.76z'/%3E %3Cpath class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' d='M45.74,6.53h-1.4c-0.13,0-0.23,0.11-0.23,0.23v0.73c-0.71-0.75-1.7-1.18-2.73-1.18 c-2.17,0-3.94,1.87-3.94,4.19s1.77,4.19,3.94,4.19c1.04,0,2.03-0.43,2.73-1.19v0.73c0,0.13,0.1,0.23,0.23,0.23h1.4 c0.13,0,0.23-0.11,0.23-0.23V6.74c0-0.12-0.09-0.22-0.22-0.22C45.75,6.53,45.75,6.53,45.74,6.53z M44.12,10.53 C44.11,11.9,43.03,13,41.71,13s-2.42-1.12-2.42-2.51s1.08-2.52,2.4-2.52c1.33,0,2.39,1.11,2.41,2.48L44.12,10.53z'/%3E %3Cpath class='st1' style='opacity:0.35; enable-background:new;' d='M41.71,7.98c-1.33,0-2.42,1.12-2.42,2.51S40.37,13,41.71,13s2.39-1.11,2.41-2.48v-0.06 C44.1,9.09,43.03,7.98,41.71,7.98z M40.55,10.49c0-0.7,0.52-1.27,1.17-1.27c0.64,0,1.14,0.56,1.17,1.25v0.04 c-0.01,0.68-0.53,1.24-1.17,1.24C41.08,11.75,40.55,11.19,40.55,10.49z'/%3E %3Cpath class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' d='M52.41,6.32c-1.03,0-2.03,0.42-2.73,1.18V6.75c0-0.13-0.1-0.23-0.23-0.23h-1.4c-0.13,0-0.23,0.11-0.23,0.23 v10.72c0,0.13,0.1,0.23,0.23,0.23h1.4c0.13,0,0.23-0.1,0.23-0.23V13.5c0.71,0.75,1.7,1.18,2.74,1.18c2.17,0,3.94-1.87,3.94-4.19 S54.58,6.32,52.41,6.32z M52.08,13.01c-1.32,0-2.39-1.11-2.42-2.48v-0.07c0.02-1.38,1.09-2.49,2.4-2.49c1.32,0,2.41,1.12,2.41,2.51 S53.4,13,52.08,13.01L52.08,13.01z'/%3E %3Cpath class='st1' style='opacity:0.35; enable-background:new;' d='M52.08,7.98c-1.32,0-2.39,1.11-2.42,2.48v0.06c0.03,1.38,1.1,2.48,2.42,2.48s2.41-1.12,2.41-2.51 S53.4,7.98,52.08,7.98z M52.08,11.76c-0.63,0-1.14-0.56-1.17-1.25v-0.04c0.01-0.69,0.54-1.25,1.17-1.25c0.63,0,1.17,0.58,1.17,1.27 S52.72,11.76,52.08,11.76z'/%3E %3Cpath class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' d='M36.08,14.24c0,0.13-0.1,0.23-0.23,0.23h-1.41c-0.13,0-0.23-0.11-0.23-0.23V9.68c0-0.98-0.74-1.71-1.62-1.71 c-0.8,0-1.46,0.7-1.59,1.62l0.01,4.66c0,0.13-0.11,0.23-0.23,0.23h-1.41c-0.13,0-0.23-0.11-0.23-0.23V9.68 c0-0.98-0.74-1.71-1.62-1.71c-0.85,0-1.54,0.79-1.6,1.8v4.48c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23V6.74 c0.01-0.13,0.1-0.22,0.23-0.22h1.4c0.13,0,0.22,0.11,0.23,0.22V7.4c0.5-0.68,1.3-1.09,2.16-1.1h0.03c1.09,0,2.09,0.6,2.6,1.55 c0.45-0.95,1.4-1.55,2.44-1.56c1.62,0,2.93,1.25,2.9,2.78L36.08,14.24z'/%3E %3Cpath class='st1' style='opacity:0.35; enable-background:new;' d='M84.34,13.59l-0.07-0.13l-1.96-2.99l1.94-2.95c0.44-0.67,0.26-1.56-0.41-2.02c-0.02,0-0.03,0-0.04-0.01 c-0.23-0.15-0.5-0.22-0.78-0.22h-1.61c-0.56,0-1.08,0.29-1.37,0.78L79.72,6.6l-0.34-0.56C79.09,5.56,78.57,5.27,78,5.27h-1.6 c-0.6,0-1.13,0.37-1.35,0.92c-2.19-1.66-5.28-1.47-7.26,0.45c-0.35,0.34-0.65,0.72-0.89,1.14c-0.9-1.62-2.58-2.72-4.5-2.72 c-0.5,0-1.01,0.07-1.48,0.23V3.51c0-0.82-0.66-1.48-1.47-1.48h-1.4c-0.81,0-1.47,0.66-1.47,1.47v3.75 c-0.95-1.36-2.5-2.18-4.17-2.19c-0.74,0-1.46,0.16-2.12,0.47c-0.24-0.17-0.54-0.26-0.84-0.26h-1.4c-0.45,0-0.87,0.21-1.15,0.56 c-0.02-0.03-0.04-0.05-0.07-0.08c-0.28-0.3-0.68-0.47-1.09-0.47h-1.39c-0.3,0-0.6,0.09-0.84,0.26c-0.67-0.3-1.39-0.46-2.12-0.46 c-1.83,0-3.43,1-4.37,2.5c-0.2-0.46-0.48-0.89-0.83-1.25c-0.8-0.81-1.89-1.25-3.02-1.25h-0.01c-0.89,0.01-1.75,0.33-2.46,0.88 c-0.74-0.57-1.64-0.88-2.57-0.88H28.1c-0.29,0-0.58,0.03-0.86,0.11c-0.28,0.06-0.56,0.16-0.82,0.28c-0.21-0.12-0.45-0.18-0.7-0.18 h-1.4c-0.82,0-1.47,0.66-1.47,1.47v7.5c0,0.82,0.66,1.47,1.47,1.47h1.4c0.82,0,1.48-0.66,1.48-1.48l0,0V9.79 c0.03-0.36,0.23-0.59,0.36-0.59c0.18,0,0.38,0.18,0.38,0.47v4.57c0,0.82,0.66,1.47,1.47,1.47h1.41c0.82,0,1.47-0.66,1.47-1.47 l-0.01-4.57c0.06-0.32,0.25-0.47,0.35-0.47c0.18,0,0.38,0.18,0.38,0.47v4.57c0,0.82,0.66,1.47,1.47,1.47h1.41 c0.82,0,1.47-0.66,1.47-1.47v-0.38c0.96,1.29,2.46,2.06,4.06,2.06c0.74,0,1.46-0.16,2.12-0.47c0.24,0.17,0.54,0.26,0.84,0.26h1.39 c0.3,0,0.6-0.09,0.84-0.26v2.01c0,0.82,0.66,1.47,1.47,1.47h1.4c0.82,0,1.47-0.66,1.47-1.47v-1.77c0.48,0.15,0.99,0.23,1.49,0.22 c1.7,0,3.22-0.87,4.17-2.2v0.52c0,0.82,0.66,1.47,1.47,1.47h1.4c0.3,0,0.6-0.09,0.84-0.26c0.66,0.31,1.39,0.47,2.12,0.47 c1.92,0,3.6-1.1,4.49-2.73c1.54,2.65,4.95,3.53,7.58,1.98c0.18-0.11,0.36-0.22,0.53-0.36c0.22,0.55,0.76,0.91,1.35,0.9H78 c0.56,0,1.08-0.29,1.37-0.78l0.37-0.61l0.37,0.61c0.29,0.48,0.81,0.78,1.38,0.78h1.6c0.81,0,1.46-0.66,1.45-1.46 C84.49,14.02,84.44,13.8,84.34,13.59L84.34,13.59z M35.86,14.47h-1.41c-0.13,0-0.23-0.11-0.23-0.23V9.68 c0-0.98-0.74-1.71-1.62-1.71c-0.8,0-1.46,0.7-1.59,1.62l0.01,4.66c0,0.13-0.1,0.23-0.23,0.23h-1.41c-0.13,0-0.23-0.11-0.23-0.23 V9.68c0-0.98-0.74-1.71-1.62-1.71c-0.85,0-1.54,0.79-1.6,1.8v4.48c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23 V6.74c0.01-0.13,0.11-0.22,0.23-0.22h1.4c0.13,0,0.22,0.11,0.23,0.22V7.4c0.5-0.68,1.3-1.09,2.16-1.1h0.03 c1.09,0,2.09,0.6,2.6,1.55c0.45-0.95,1.4-1.55,2.44-1.56c1.62,0,2.93,1.25,2.9,2.78l0.01,5.16C36.09,14.36,35.98,14.46,35.86,14.47 L35.86,14.47z M45.97,14.24c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23V13.5c-0.7,0.76-1.69,1.18-2.72,1.18 c-2.17,0-3.94-1.87-3.94-4.19s1.77-4.19,3.94-4.19c1.03,0,2.02,0.43,2.73,1.18V6.74c0-0.13,0.1-0.23,0.23-0.23h1.4 c0.12-0.01,0.22,0.08,0.23,0.21c0,0.01,0,0.01,0,0.02v7.51h-0.01V14.24z M52.41,14.67c-1.03,0-2.02-0.43-2.73-1.18v3.97 c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.1-0.23-0.23V6.75c0-0.13,0.1-0.22,0.23-0.22h1.4c0.13,0,0.23,0.11,0.23,0.23v0.73 c0.71-0.76,1.7-1.18,2.73-1.18c2.17,0,3.94,1.86,3.94,4.18S54.58,14.67,52.41,14.67z M66.24,11.39c-0.39,1.87-1.96,3.29-3.84,3.29 c-1.03,0-2.02-0.43-2.73-1.18v0.73c0,0.13-0.1,0.23-0.23,0.23h-1.4c-0.13,0-0.23-0.11-0.23-0.23V3.51c0-0.13,0.1-0.23,0.23-0.23 h1.4c0.13,0,0.23,0.11,0.23,0.23v3.97c0.71-0.75,1.7-1.18,2.73-1.17c1.88,0,3.45,1.4,3.84,3.28C66.37,10.19,66.37,10.8,66.24,11.39 L66.24,11.39L66.24,11.39z M71.67,14.68c-2,0.01-3.73-1.35-4.17-3.3c-0.13-0.59-0.13-1.19,0-1.77c0.44-1.94,2.17-3.31,4.17-3.3 c2.36,0,4.26,1.87,4.26,4.19S74.03,14.68,71.67,14.68L71.67,14.68z M83.04,14.47h-1.61c-0.13,0-0.24-0.06-0.3-0.17l-1.44-2.39 l-1.44,2.39c-0.06,0.11-0.18,0.17-0.3,0.17h-1.61c-0.04,0-0.08-0.01-0.12-0.03c-0.09-0.06-0.13-0.19-0.06-0.28l0,0l2.43-3.68 L76.2,6.84c-0.02-0.03-0.03-0.07-0.03-0.12c0-0.12,0.09-0.21,0.21-0.21h1.61c0.13,0,0.24,0.06,0.3,0.17l1.41,2.36l1.41-2.36 c0.06-0.11,0.18-0.17,0.3-0.17h1.61c0.04,0,0.08,0.01,0.12,0.03c0.09,0.06,0.13,0.19,0.06,0.28l0,0l-2.38,3.64l2.43,3.67 c0.02,0.03,0.03,0.07,0.03,0.12C83.25,14.38,83.16,14.47,83.04,14.47L83.04,14.47L83.04,14.47z'/%3E %3Cpath class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' d='M10.5,1.24c-5.11,0-9.25,4.15-9.25,9.25s4.15,9.25,9.25,9.25s9.25-4.15,9.25-9.25 C19.75,5.38,15.61,1.24,10.5,1.24z M14.89,12.77c-1.93,1.93-4.78,2.31-6.7,2.31c-0.7,0-1.41-0.05-2.1-0.16c0,0-1.02-5.64,2.14-8.81 c0.83-0.83,1.95-1.28,3.13-1.28c1.27,0,2.49,0.51,3.39,1.42C16.59,8.09,16.64,11,14.89,12.77z'/%3E %3Cpath class='st1' style='opacity:0.35; enable-background:new;' d='M10.5-0.01C4.7-0.01,0,4.7,0,10.49s4.7,10.5,10.5,10.5S21,16.29,21,10.49C20.99,4.7,16.3-0.01,10.5-0.01z M10.5,19.74c-5.11,0-9.25-4.15-9.25-9.25s4.14-9.26,9.25-9.26s9.25,4.15,9.25,9.25C19.75,15.61,15.61,19.74,10.5,19.74z'/%3E %3Cpath class='st1' style='opacity:0.35; enable-background:new;' d='M14.74,6.25C12.9,4.41,9.98,4.35,8.23,6.1c-3.16,3.17-2.14,8.81-2.14,8.81s5.64,1.02,8.81-2.14 C16.64,11,16.59,8.09,14.74,6.25z M12.47,10.34l-0.91,1.87l-0.9-1.87L8.8,9.43l1.86-0.9l0.9-1.87l0.91,1.87l1.86,0.9L12.47,10.34z'/%3E %3Cpolygon class='st0' style='opacity:0.9; fill: %23FFFFFF; enable-background: new;' points='14.33,9.43 12.47,10.34 11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 '/%3E%3C/g%3E%3C/svg%3E");
}

a.mapboxgl-ctrl-logo.mapboxgl-compact {
    width: 21px;
    height: 21px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 21 21' style='enable-background:new 0 0 21 21;' xml:space='preserve'%3E%3Cg transform='translate(0,0.01)'%3E%3Cpath d='m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z' style='opacity:0.9;fill:%23ffffff;enable-background:new' class='st0'/%3E%3Cpath d='M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z' style='opacity:0.35;enable-background:new' class='st1'/%3E%3Cpath d='M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z' style='opacity:0.35;enable-background:new' class='st1'/%3E%3Cpolygon points='11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 ' style='opacity:0.9;fill:%23ffffff;enable-background:new' class='st0'/%3E%3C/g%3E%3C/svg%3E");
}

.mapboxgl-ctrl.mapboxgl-ctrl-attrib {
    padding: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media screen {
    .mapboxgl-ctrl-attrib.mapboxgl-compact {
        margin: 10px;
        position: relative;
        background-color: #fff;
        border-radius: 3px 12px 12px 3px;
    }

    .mapboxgl-ctrl-attrib.mapboxgl-compact:hover {
        padding: 2px 24px 2px 4px;
        visibility: visible;
    }

    .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:hover,
    .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact:hover {
        padding: 2px 4px 2px 24px;
        border-radius: 12px 3px 3px 12px;
    }

    .mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner {
        display: none;
    }

    .mapboxgl-ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner {
        display: block;
    }

    .mapboxgl-ctrl-attrib.mapboxgl-compact::after {
        content: '';
        cursor: pointer;
        position: absolute;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath fill='%23333333' fill-rule='evenodd' d='M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0'/%3E %3C/svg%3E");
        background-color: rgba(255, 255, 255, 0.5);
        width: 24px;
        height: 24px;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .mapboxgl-ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after {
        bottom: 0;
        right: 0;
    }

    .mapboxgl-ctrl-top-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after {
        top: 0;
        right: 0;
    }

    .mapboxgl-ctrl-top-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after {
        top: 0;
        left: 0;
    }

    .mapboxgl-ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after {
        bottom: 0;
        left: 0;
    }
}

.mapboxgl-ctrl-attrib a {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
}

.mapboxgl-ctrl-attrib a:hover {
    color: inherit;
    text-decoration: underline;
}

/* stylelint-disable-next-line selector-class-pattern */
.mapboxgl-ctrl-attrib .mapbox-improve-map {
    font-weight: bold;
    margin-left: 2px;
}

.mapboxgl-attrib-empty {
    display: none;
}

.mapboxgl-ctrl-scale {
    background-color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    border-width: medium 2px 2px;
    border-style: none solid solid;
    border-color: #333;
    padding: 0 5px;
    color: #333;
    box-sizing: border-box;
}

.mapboxgl-popup {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
    will-change: transform;
    pointer-events: none;
}

.mapboxgl-popup-anchor-top,
.mapboxgl-popup-anchor-top-left,
.mapboxgl-popup-anchor-top-right {
    -webkit-flex-direction: column;
    flex-direction: column;
}

.mapboxgl-popup-anchor-bottom,
.mapboxgl-popup-anchor-bottom-left,
.mapboxgl-popup-anchor-bottom-right {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.mapboxgl-popup-anchor-left {
    -webkit-flex-direction: row;
    flex-direction: row;
}

.mapboxgl-popup-anchor-right {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.mapboxgl-popup-tip {
    width: 0;
    height: 0;
    border: 10px solid transparent;
    z-index: 1;
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
    -webkit-align-self: center;
    align-self: center;
    border-top: none;
    border-bottom-color: #fff;
}

.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip {
    -webkit-align-self: flex-start;
    align-self: flex-start;
    border-top: none;
    border-left: none;
    border-bottom-color: #fff;
}

.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip {
    -webkit-align-self: flex-end;
    align-self: flex-end;
    border-top: none;
    border-right: none;
    border-bottom-color: #fff;
}

.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
    -webkit-align-self: center;
    align-self: center;
    border-bottom: none;
    border-top-color: #fff;
}

.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip {
    -webkit-align-self: flex-start;
    align-self: flex-start;
    border-bottom: none;
    border-left: none;
    border-top-color: #fff;
}

.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip {
    -webkit-align-self: flex-end;
    align-self: flex-end;
    border-bottom: none;
    border-right: none;
    border-top-color: #fff;
}

.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
    -webkit-align-self: center;
    align-self: center;
    border-left: none;
    border-right-color: #fff;
}

.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
    -webkit-align-self: center;
    align-self: center;
    border-right: none;
    border-left-color: #fff;
}

.mapboxgl-popup-close-button {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    border-radius: 0 3px 0 0;
    cursor: pointer;
    background-color: transparent;
}

.mapboxgl-popup-close-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mapboxgl-popup-content {
    position: relative;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    padding: 10px 10px 15px;
    pointer-events: auto;
}

.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content {
    border-top-left-radius: 0;
}

.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content {
    border-top-right-radius: 0;
}

.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content {
    border-bottom-left-radius: 0;
}

.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content {
    border-bottom-right-radius: 0;
}

.mapboxgl-marker {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
}

.mapboxgl-user-location-dot {
    background-color: #1da1f2;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}

.mapboxgl-user-location-dot::before {
    background-color: #1da1f2;
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: absolute;
    -webkit-animation: mapboxgl-user-location-dot-pulse 2s infinite;
    -moz-animation: mapboxgl-user-location-dot-pulse 2s infinite;
    -ms-animation: mapboxgl-user-location-dot-pulse 2s infinite;
    animation: mapboxgl-user-location-dot-pulse 2s infinite;
}

.mapboxgl-user-location-dot::after {
    border-radius: 50%;
    border: 2px solid #fff;
    content: '';
    height: 19px;
    left: -2px;
    position: absolute;
    top: -2px;
    width: 19px;
    box-sizing: border-box;
}

@-webkit-keyframes mapboxgl-user-location-dot-pulse {
    0%   { -webkit-transform: scale(1); opacity: 1; }
    70%  { -webkit-transform: scale(3); opacity: 0; }
    100% { -webkit-transform: scale(1); opacity: 0; }
}

@-ms-keyframes mapboxgl-user-location-dot-pulse {
    0%   { -ms-transform: scale(1); opacity: 1; }
    70%  { -ms-transform: scale(3); opacity: 0; }
    100% { -ms-transform: scale(1); opacity: 0; }
}

@keyframes mapboxgl-user-location-dot-pulse {
    0%   { transform: scale(1); opacity: 1; }
    70%  { transform: scale(3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.mapboxgl-user-location-dot-stale {
    background-color: #aaa;
}

.mapboxgl-user-location-dot-stale::after {
    display: none;
}

.mapboxgl-crosshair,
.mapboxgl-crosshair .mapboxgl-interactive,
.mapboxgl-crosshair .mapboxgl-interactive:active {
    cursor: crosshair;
}

.mapboxgl-boxzoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: #fff;
    border: 2px dotted #202020;
    opacity: 0.5;
}

@media print {
    /* stylelint-disable-next-line selector-class-pattern */
    .mapbox-improve-map {
        display: none;
    }
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
:root {

    --header-h: 3.5em;

    --utility-h: 34px;

    --oz-container: 1180px;
}

#header {
    height: var(--header-h);
    line-height: var(--header-h);
    background-color: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);

    box-shadow: none;
    color: var(--ink);
    text-transform: none;
    font-weight: 700;
}

#header h1,
#header nav > ul > li a {
    color: var(--ink);
}

#header #desktopCartSlot a,
#header #customerMobileSlot a,
#header #desktopCartSlot .fa-shopping-basket,
#header #customerMobileSlot .fa-user-circle,
#header a.navPanelToggle {
    color: var(--ink) !important;
}

#header #desktopCartSlot a:hover,
#header #customerMobileSlot a:hover,
#header a.navPanelToggle:hover {
    color: var(--blue) !important;
}

#header h1 a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1.8px;
    color: var(--ink);
}

@media screen and (min-width: 510px) {
    #header h1 {
        font-size: 24px;
    }
}

#header nav > ul > li > a {
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

#header nav > ul > li > a:hover,
#header nav > ul > li:hover > a {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

#header .cart-count-mobile {
    background: var(--blue);
    color: var(--white);
}

#header :focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1004;
    background: var(--ink);
    color: #dceaf4;
    font-family: var(--font-display);
    font-size: 12px;

    line-height: 1.2;
    text-transform: none;
}

.utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--utility-h);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.utility-inner p {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.utility-links {
    display: flex;
    gap: 24px;
}

.utility-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    color: #dceaf4;
    text-decoration: none;
    white-space: nowrap;
}

.utility-links a:hover {
    color: var(--white);
}

.utility-links i {
    color: inherit;
}

#header {
    top: var(--utility-h);
}

.promoBar {
    top: calc(var(--utility-h) + var(--header-h)) !important;
}

#header + #banner {
    margin-top: calc(-1 * (var(--header-h) + var(--utility-h)));
}

@media screen and (max-width: 736px) {
    .utility-inner {
        justify-content: flex-start;
    }

    .utility-inner > p,
    .utility-links a.utility-account {
        display: none;
    }
}

@media screen and (max-width: 1450px) {
    #desktopCartSlot,
    #customerMobileSlot {
        top: calc(var(--utility-h) + 13px) !important;
    }
}

#header nav {
    top: var(--utility-h);
}

#header h1 {
    width: max-content;
    max-width: 60%;
}

.utility-inner {
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media screen and (min-width: 737px) {
    #navPanel .link.depth-2,
    #navPanel .link.depth-3 {
        display: none;
    }
}

#navPanel .link.depth-0 + .link.depth-1 {
    border-top: 0;
}

:root {
    --page-inset: calc((100% - min(1180px, 100% - 40px)) / 2);
}

.utility-inner {
    width: min(1180px, 100% - 40px);
    max-width: none;
    margin-inline: auto;
    padding-left: 0;
    padding-right: 0;
}

#header h1 {
    left: var(--page-inset);
}

#header nav {
    right: var(--page-inset);
}

:root {
    --header-h: 79px;
}

.dropotron.level-0 {
    margin-top: 1px !important;
}

.dropotron.level-0:before {
    display: none;
}

#header #customerMobileSlot .customer-label,
#header #desktopCartSlot span {
    display: none !important;
}

@media screen and (min-width: 1451px) {
    #header #desktopCartSlot,
    #header #customerMobileSlot {
        position: fixed !important;
        z-index: 99999 !important;
    }

    #header #desktopCartSlot {
        right: calc((100% - var(--oz-container)) / 2) !important;
    }

    #header #customerMobileSlot {
        right: calc((100% - var(--oz-container)) / 2 + 49px) !important;
    }

}

#header #desktopCartSlot,
#header #customerMobileSlot {
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: calc(var(--utility-h) + ((var(--header-h) - 34px) / 2)) !important;
}

#header #desktopCartSlot a,
#header #customerMobileSlot a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 5px !important;
    border-bottom: 0 !important;
}

#header #customerMobileSlot .fa-user-circle,
#header #desktopCartSlot .fa-shopping-basket {
    font-size: 24px !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.header-actions {
    position: fixed;
    top: calc(var(--utility-h) + ((var(--header-h) - 34px) / 2));
    right: 172px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 34px;
}

.locale-picker,
.currency-picker {
    display: flex;
    align-items: center;
}

.locale-select,
.currency-select {
    height: 34px;
    padding: 0 22px 0 7px;
    border: 1px solid #dce5ec;
    border-radius: 7px;
    background-color: #ffffff;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;

    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%230b1b2a' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 8px 5px;
}

.locale-select:hover,
.locale-select:focus,
.currency-select:hover,
.currency-select:focus {
    border-color: #b9c9d6;
    outline: 0;
}

.locale-select option,
.currency-select option {
    color: var(--ink);
    background: #ffffff;
    font-weight: 600;
}

@media screen and (max-width: 1450px) {
    #header #customerMobileSlot,
    #header #desktopCartSlot {
        top: calc(var(--utility-h) + ((var(--header-h) - 34px) / 2)) !important;
    }

    #header #customerMobileSlot {
        right: 123px !important;
    }

    #header #desktopCartSlot {
        right: 74px !important;
    }
}

@media screen and (min-width: 1451px) {
    .header-actions {
        right: calc((100% - var(--oz-container)) / 2 + 98px);
    }

    #header nav {
        right: calc((100% - var(--oz-container)) / 2 + 223px);
    }
}

@media screen and (max-width: 736px) {
    .header-actions {

        top: 5px;
        right: 1em;
        gap: 6px;
        height: 24px;
    }

    .locale-select,
    .currency-select {
        height: 24px;
        width: 44px;
        padding: 0 14px 0 4px;
        font-size: 9px;

        background-color: transparent;
        border-color: rgba(220, 234, 244, .38);
        color: #dceaf4;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23dceaf4' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
        background-position: right 4px center;
    }

    .locale-select:hover, .locale-select:focus,
    .currency-select:hover, .currency-select:focus {
        border-color: rgba(220, 234, 244, .75);
        color: #ffffff;
    }

    .locale-select option,
    .currency-select option {
        color: var(--ink);
        background: #ffffff;
    }

    #header #customerMobileSlot {
        right: 107px !important;
    }

    #header #desktopCartSlot {
        right: 67px !important;
    }

    .utility-inner {
        padding-right: 118px;
    }

    #header #customerMobileSlot .fa-user-circle,
    #header #desktopCartSlot .fa-shopping-basket {
        font-size: 22px !important;
    }
}

.currency-estimate-note {
    display: block;
    margin-top: .35em;
    color: #6b7b86;
    font-size: .78em;
    line-height: 1.35;
}

@keyframes reveal-header {
    0% {
        top: calc(var(--utility-h) - 4em);
        opacity: 0;
    }

    100% {
        top: var(--utility-h);
        opacity: 1;
    }
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
#banner > article:after {
    background: linear-gradient(
        90deg,
        rgba(3, 16, 28, .90) 0%,
        rgba(3, 16, 28, .68) 48%,
        rgba(3, 16, 28, .10) 78%
    );
    opacity: 1;
}

#banner > article h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.4vw, 58px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.052em;
    text-transform: none;
    text-shadow: 0 2px 18px rgba(3, 16, 28, .45);
}

#banner .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    line-height: 1;
    padding: 0 24px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

#banner .button.ebay {
    background-color: var(--blue);
    color: var(--white) !important;
}

#banner .button.ebay:hover {
    background-color: #1591e6;
    transform: translateY(-1px);
}

#banner .button.wise {
    background-color: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .65);
    color: var(--white);
}

#banner .button.wise:hover {
    background-color: rgba(255, 255, 255, .14);
    transform: translateY(-1px);
}

#banner .button:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

#banner > article {
    display: flex;
    align-items: center;
    text-align: left;
}

#banner > article:before {
    display: none;
}

#banner > article .inner {
    display: block;
    width: 100%;
    max-width: calc(var(--oz-container) + 3em);
    margin: 0 auto;
    padding: 0 1.5em;
}

#banner > article h2 {
    max-width: 760px;
    margin: 0;
}

#banner .slider-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    text-align: left;
}

#banner .eyebrow {
    margin-bottom: 16px;
}

@media screen and (max-width: 736px) {

    #banner > article:after {
        background: linear-gradient(
            180deg,
            rgba(3, 16, 28, .55) 0%,
            rgba(3, 16, 28, .75) 100%
        );
    }

    #banner > article h2 {
        max-width: none;
    }
}

#banner {
    min-height: 620px;
    height: 620px;
}

@media screen and (max-width: 980px) {
    #banner {
        min-height: 520px;
        height: 520px;
    }
}

@media screen and (max-width: 736px) {
    #banner {
        min-height: 460px;
        height: 460px;
    }
}

#banner .hero-copy {
    max-width: 650px;
    margin: 25px 0 31px;
    color: #e6eff5;
    font-size: 18px;
    line-height: 1.7;
}

@media screen and (max-width: 736px) {
    #banner .hero-copy {
        max-width: none;
        margin: 18px 0 24px;
        font-size: 15px;
    }
}

#banner > article {

    align-items: flex-start;

    padding-top: calc((var(--utility-h) + var(--header-h)) * 2 + 30px);
    padding-bottom: 48px;
}

#banner {
    min-height: calc(620px + (var(--utility-h) + var(--header-h)) * 2);
    height: calc(620px + (var(--utility-h) + var(--header-h)) * 2);
}

@media screen and (max-width: 980px) {
    #banner {
        min-height: calc(560px + (var(--utility-h) + var(--header-h)) * 2);
        height: auto;
    }
}

@media screen and (max-width: 736px) {
    #banner {
        min-height: calc(500px + (var(--utility-h) + var(--header-h)) * 2);
        height: auto;
    }
}

@media screen and (max-width: 560px) {
    #banner .hero-copy {
        display: none;
    }

    #banner > article h2 {
        font-size: clamp(26px, 7vw, 34px);
    }

    #banner > article {
        padding-top: calc((var(--utility-h) + var(--header-h)) * 2 + 24px);
        padding-bottom: 32px;
    }

    #banner .slider-actions {
        margin-top: 18px;
    }
}

#banner {
    height: auto;

    min-height: calc(749px + (var(--utility-h) + var(--header-h)) * 2);
    background: var(--ink);
}

#banner > article {
    padding-top: calc((var(--utility-h) + var(--header-h)) * 2 + 96px);
    padding-bottom: 142px;
}

#banner > article h2 {
    font-size: clamp(42px, 5vw, 70px);
}

@media screen and (max-width: 736px) {
    #banner > article {
        padding-top: calc((var(--utility-h) + var(--header-h)) * 2 + 48px);
        padding-bottom: 64px;
    }

    #banner > article h2 {
        font-size: clamp(28px, 7vw, 40px);
    }
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
section.wrapper,
section.wrapper.split,
section.wrapper.style2 {
    padding: 92px 0;
}

section.wrapper.style2 {
    background-color: var(--surface);
}

.counters {
    padding: 44px 0;
    background-color: var(--ink);
    color: var(--white);
}

.counters .counter {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--white);
}

.counters h3 {
    margin-top: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9fb3c2;
}

.counters center,
.counters p,
.counters .inner > center {
    color: #9fb3c2;
}

.counters a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

:is(#sets, .oz-grid) .posts,
:is(#sets, .oz-grid) .category-group-heading {
    flex: 0 0 100%;
    width: 100%;
}

:is(#sets, .oz-grid) .posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

:is(#sets, .oz-grid) .posts .post {
    width: auto;
}

:is(#sets, .oz-grid) .post.products {
    border: 0;
}

:is(#sets, .oz-grid) .post.products {
    border-radius: 13px;
    box-shadow: 0 5px 22px rgba(15, 34, 49, .07);
    transition: box-shadow .2s ease, transform .2s ease;
}

:is(#sets, .oz-grid) .post.products:hover {
    box-shadow: 0 10px 30px rgba(15, 34, 49, .12);
    transform: translateY(-2px);
}

:is(#sets, .oz-grid) .post.products {
    padding: 0;
}

:is(#sets, .oz-grid) .image-overlay-container {
    aspect-ratio: 1.2;
    height: auto;
    margin: -20px -20px 0;

    width: calc(100% + 40px);

    border-radius: 13px 13px 0 0;
    background: #f3f5f6;
    overflow: hidden;
}

:is(#sets, .oz-grid) .image-overlay-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

:is(#sets, .oz-grid) .overlay .text.button {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
    line-height: 40px;
}

:is(#sets, .oz-grid) .bigtitle {
    display: block;
    margin-top: 14px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

:is(#sets, .oz-grid) .post.products small a {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

:is(#sets, .oz-grid) .bigprice {
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.02em;
}

.benefits-section {
    padding-top: 75px;
    padding-bottom: 35px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.benefit {
    display: flex;
    gap: 14px;
    padding: 18px 22px;
    border-right: 1px solid var(--line);
}

.benefit:nth-child(3n) {
    border-right: 0;
}

.benefit:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
}

.benefit > span {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 29px;
    line-height: 1;
}

.benefit h3 {
    margin: 0 0 7px;
    font-size: 15px;
    line-height: 1.25;
}

.benefit p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

@media screen and (max-width: 980px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit:nth-child(3n) {
        border-right: 1px solid var(--line);
    }

    .benefit:nth-child(2n) {
        border-right: 0;
    }

    .benefit:nth-child(-n + 4) {
        border-bottom: 1px solid var(--line);
    }
}

@media screen and (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
    }

    .benefit:last-child {
        border-bottom: 0;
    }
}

#spotlight > .inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(45px, 8vw, 100px);
}

#spotlight .confidence-image {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

#spotlight .confidence-image {
    min-height: 520px;
    border-radius: 14px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#spotlight .confidence-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    border-radius: 7px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

#spotlight .confidence-badge i {
    color: var(--blue);
}

#spotlight .confidence-copy > p {
    margin: 23px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

#spotlight .confidence-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

#spotlight .confidence-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

#spotlight .confidence-points li i {
    flex: 0 0 auto;
    margin-top: .15em;
    color: var(--blue);
    font-size: 15px;
}

#spotlight .button-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 8px;
    background-color: var(--ink);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
}

#spotlight .button-dark:hover {
    background-color: var(--ink-soft);
}

@media screen and (max-width: 980px) {
    #spotlight > .inner {
        grid-template-columns: 1fr;
    }

    #spotlight .confidence-image img {
        min-height: 400px;
    }
}

@media screen and (max-width: 640px) {
    #spotlight .confidence-points {
        grid-template-columns: 1fr;
    }
}

.category-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 440px;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background-color: var(--ink);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(9, 28, 43, .16);
}

.category-card > div {
    padding: 28px;
}

.category-card p {
    margin: 0 0 6px;
    color: #dce9f2;
    font-size: 13px;
    line-height: 1.5;
}

.category-card h3 {
    margin: 0 0 19px;
    color: var(--white);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.category-card > div > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

#skus .category-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .07);
}

#skus .category-card h3 {
    color: var(--ink);
    margin: 0 0 12px;
}

#skus .category-card p {
    color: var(--muted);
    margin: 0 0 19px;
}

#skus .category-card-cta {
    color: var(--blue);
}

.category-card-image {
    display: block;
    aspect-ratio: 1.2;
    background: #f3f5f6;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.category-card-body {
    display: block;
    padding: 28px;
}

.category-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 800;
}

@media screen and (max-width: 980px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 320px;
    }
}

@media screen and (max-width: 980px) {
    :is(#sets, .oz-grid) .posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    :is(#sets, .oz-grid) .posts {
        grid-template-columns: 1fr;
    }
}

:is(#sets, .oz-grid) .post.products > div {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

:is(#sets, .oz-grid) .post.products small:first-of-type {
    flex: 1 0 auto;
}

:is(#sets, .oz-grid) .bigprice {
    margin: 0 0 4px;
    font-size: 21px;
}

:is(#sets, .oz-grid) .post.products .stock-shipping-row {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.product-card-actions {
    display: flex;

    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

:is(#sets, .oz-grid) .product-card-actions .value-button {
    flex: 0 0 auto;
    width: 34px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    user-select: none;
}

:is(#sets, .oz-grid) .product-card-actions .form-control {
    flex: 0 0 44px;
    width: 44px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
}

.product-card-actions .form-control::-webkit-inner-spin-button,
.product-card-actions .form-control::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

:is(#sets, .oz-grid) .product-card-actions .button {
    flex: 1 1 auto;
    min-height: 40px;
    margin: 0 !important;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 8px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    text-transform: none;
    white-space: nowrap;
}

:is(#sets, .oz-grid) .product-card-actions .button:hover {
    background-color: #1591e6;
}

:is(#sets, .oz-grid) .product-card-actions .button.blue {
    flex: 1 1 100%;
    margin-top: 8px !important;
    background-color: var(--ink);
}

:is(#sets, .oz-grid) .product-card-actions .button.blue:hover {
    background-color: var(--ink-soft);
}

@media screen and (max-width: 400px) {
    .product-card-actions {
        flex-wrap: wrap;
    }
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    max-width: 1180px;
    margin: 0 auto 34px;
    padding: 0 1.5em;
}

.section-heading h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.section-heading .eyebrow {
    color: var(--blue);
}

.bundles-teaser-section {
    padding-top: 0;
}

.bundles-teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 46px 50px;
    border-radius: 14px;
    background: var(--ink);
    color: var(--white);
}

.bundles-teaser .eyebrow {
    color: #9fd6ff;
}

.bundles-teaser h2 {
    max-width: 620px;
    margin: 0 0 14px;
    color: var(--white);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.bundles-teaser p {
    max-width: 520px;
    margin: 0;
    color: #b7c8d4;
    font-size: 14px;
    line-height: 1.7;
}

.bundles-teaser .button-primary {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 8px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
}

.bundles-teaser .button-primary:hover {
    background-color: #1591e6;
}

#spotlight > .inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(45px, 8vw, 100px);
    max-width: 1180px;
    margin: 0 auto;
}

@media screen and (max-width: 860px) {
    .bundles-teaser {
        flex-direction: column;
        align-items: flex-start;
        padding: 34px 26px;
    }
}

.catalogue-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto 18px;
}

.catalogue-search {
    display: flex;
    align-items: center;
    gap: 9px;
    width: min(350px, 100%);
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ccd8e0;
    border-radius: 9px;
    background: var(--white);
    color: var(--muted);
}

.catalogue-search input {
    flex: 1;
    min-width: 0;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: none;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 14px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.category-tabs button {
    min-height: 39px;
    padding: 0 15px;
    border: 1px solid #ccd8e0;
    border-radius: 20px;
    background: var(--white);
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    text-transform: none;
    cursor: pointer;
}

.category-tabs button.active {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.catalogue-result-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto 18px;
    color: var(--muted);
    font-size: 12px;
}

.catalogue-result-line strong {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

.empty-catalogue {
    max-width: 1180px;
    margin: 0 auto;
    padding: 75px 20px;
    border: 1px dashed #c6d3db;
    border-radius: 13px;
    background: var(--white);
    color: var(--muted);
    text-align: center;
}

.empty-catalogue h3 {
    margin: 0 0 6px;
    color: var(--ink);
}

.empty-catalogue p {
    margin: 0;
    font-size: 12px;
}

.empty-catalogue button {
    min-height: 42px;
    margin-top: 12px;
    padding: 0 17px;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    text-transform: none;
    cursor: pointer;
}

.empty-catalogue[hidden],
.category-tabs button[hidden] {
    display: none;
}

@media screen and (max-width: 760px) {
    .catalogue-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .category-tabs {
        justify-content: flex-start;
    }
}

.section-subtitle {
    max-width: 1180px;
    margin: -22px auto 26px;
    padding: 0 1.5em;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.vehicle-products-note {
    max-width: 1180px;

    margin: 28px auto 22px;
    padding: 0 1.5em;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
}

@media (max-width: 640px) {
    .vehicle-products-note {
        font-size: 15px;
    }
}

:is(#sets, .oz-grid) .section-heading,
#gallery .section-heading,
.categories-section .section-heading {
    padding-left: 0;
    padding-right: 0;
}

#gallery .posts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}

#gallery .posts .post {
    width: auto;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

#gallery .image-box,
#gallery .image.fit {
    display: block;
    height: 100%;
    margin: 0;
}

#gallery .posts .post img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 11px;
    background: #f3f5f6;
}

#gallery .overlay .text.button {
    margin-bottom: 0 !important;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    line-height: 40px;
    text-transform: none;
}

@media screen and (max-width: 860px) {
    #gallery .posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shine {
    overflow: hidden;
}

:is(#sets, .oz-grid) .image-coming {
    display: grid;
    place-items: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: #e8edf0;
}

:is(#sets, .oz-grid) .image-coming i {
    font-size: 26px;
    color: #b6c4ce;
}

@media screen and (max-width: 980px) {
    #spotlight > .inner {
        grid-template-columns: 1fr;
    }

    #spotlight .confidence-image {
        min-height: 320px;
    }
}

#spotlight > .inner > * {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

#spotlight .confidence-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 3.2vw, 44px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

#spotlight .confidence-copy > p {
    margin: 0 0 26px;
}

:is(#sets, .oz-grid) .section-heading,
:is(#sets, .oz-grid) .section-subtitle,
:is(#sets, .oz-grid) .catalogue-tools,
:is(#sets, .oz-grid) .catalogue-result-line,
:is(#sets, .oz-grid) .empty-catalogue,
:is(#sets, .oz-grid) .posts,
:is(#sets, .oz-grid) .category-group-heading {
    box-sizing: border-box;
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

:is(#sets, .oz-grid) .section-heading {
    display: block;
}

:is(#sets, .oz-grid) .section-heading h2 {
    max-width: 760px;
}

:is(#sets, .oz-grid) .section-subtitle {
    max-width: 1180px;
}

:is(#sets, .oz-grid) > .inner > .row,
:is(#sets, .oz-grid) .row {
    margin-left: 0;
    margin-right: 0;
}

:is(#sets, .oz-grid) .post.products[hidden],
:is(#sets, .oz-grid) .posts[hidden],
:is(#sets, .oz-grid) .category-group-heading[hidden],
:is(#sets, .oz-grid) [hidden] {
    display: none !important;
}

:is(#sets, .oz-grid) .posts {
    align-items: stretch;
}

:is(#sets, .oz-grid) .post.products .max {
    flex: 1 0 auto;
}

.counters > .inner,
.counters .container {
    width: min(1180px, 100% - 40px);
    max-width: none;
    margin-inline: auto;
}

.categories-section,
:is(#sets, .oz-grid),
.selfserve-band {
    background: var(--band);
}

#gallery,
.share-band,
.bundles-teaser-section {
    background: none;
}

.bundles-teaser-section {
    padding-left: 1.5em;
    padding-right: 1.5em;
}

@media screen and (max-width: 860px) {
    .bundles-teaser-section {
        padding-left: 1.15em;
        padding-right: 1.15em;
    }
}

:is(#sets, .oz-grid) .product-card-actions {
    flex-wrap: wrap;
}

:is(#sets, .oz-grid) .product-card-actions .button.primary {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}

:is(#sets, .oz-grid) .product-card-actions .btn-text-full {
    margin-left: .28em;
}

:is(#sets, .oz-grid) .posts.posts-apart {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media screen and (max-width: 980px) {
    :is(#sets, .oz-grid) .posts.posts-apart {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 700px) {
    :is(#sets, .oz-grid) .posts.posts-apart {
        grid-template-columns: 1fr;
    }
}

:is(#sets, .oz-grid) .posts.posts-apart .post.products {
    padding: 0;
    overflow: hidden;
    text-align: left;
    border-radius: 12px;
}

:is(#sets, .oz-grid) .posts.posts-apart .post.products > div {
    padding: 0;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    align-items: start;
    /*
        No column-gap: the inset from the photo is the text's own left padding
        instead, so the SKU and the description below it are held apart from
        the image by one number rather than two that have to agree.
    */
    column-gap: 0;
    height: 100%;
    min-height: 132px;
}

/*
    min-width: 0 is the fix, not decoration. A grid item defaults to
    min-width: auto, which refuses to shrink below its content -- this box
    measured 156px inside its own 116px track and spilled 40px over the text
    column, so every SKU and description was printed underneath the photo. The
    same trap the .posts grids hit with minmax(min(Npx, 100%), 1fr).
*/
:is(#sets, .oz-grid) .posts.posts-apart .image-overlay-container {
    grid-area: 1 / 1 / 3 / 2;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
}

:is(#sets, .oz-grid) .posts.posts-apart .image-overlay-container a {
    display: block;
    height: 100%;
}

/*
    BOTH layers, sized identically.

    The main grid gives .image-main object-fit: contain with .25em of padding
    and .image-hover object-fit: cover, which is fine at 300px and wrong here --
    at 116px the swap would visibly jump between two fit modes and two paddings.
    Matching them means the hover reads as the same photo changing, not the box
    resizing.
*/
:is(#sets, .oz-grid) .posts.posts-apart .image-overlay-container img.image-main,
:is(#sets, .oz-grid) .posts.posts-apart .image-overlay-container img.image-hover {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    border-radius: 0;
}

/*
    The "View OZxx" button stays hidden -- it is sized for a 300px tile and
    would cover most of a 116px one. The image swap is the whole hover here.
*/
:is(#sets, .oz-grid) .posts.posts-apart .overlay {
    display: none;
}

/*
    SKU and price share the top line, so they need the SAME box offsets. The
    SKU arrives with a 14px top margin from the main-grid styling and the price
    with none, which is what put them on visibly different lines.
*/
:is(#sets, .oz-grid) .posts.posts-apart .bigtitle {
    display: block;
    grid-area: 1 / 2 / 2 / 3;
    min-width: 0;
    margin: 0;
    padding: 13px 8px 0 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-align: left;
}

:is(#sets, .oz-grid) .posts.posts-apart .bigprice {
    grid-area: 1 / 3 / 2 / 4;
    margin: 0;
    padding: 15px 14px 0 0;
    font-size: 15px !important;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
}

/*
    justify-self: stretch is doing real work here. Without it this <small>
    rendered 11px to the right of the SKU above it, in the same grid track: a
    plain <div> placed at the identical grid position sat at the correct offset,
    so it is the element, not the grid. Left as "auto" the description simply
    would not line up with its own heading.
*/
:is(#sets, .oz-grid) .posts.posts-apart .post.products small {
    display: block;
    grid-area: 2 / 2 / 3 / 4;
    justify-self: stretch;
    width: auto;
    min-width: 0;
    margin: 0;
    padding: 4px 14px 13px 12px;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.35;
}

/*
    The anchor inside carries the card's title weight, so the rule has to reach
    it as well -- setting font-weight on the <small> alone leaves the link bold.
*/
:is(#sets, .oz-grid) .posts.posts-apart .post.products small,
:is(#sets, .oz-grid) .posts.posts-apart .post.products small a,
:is(#sets, .oz-grid) .posts.posts-apart .post.products small span {
    font-weight: 400;
}

:is(#sets, .oz-grid) .posts.posts-apart .post.products small a {
    color: inherit;
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
h1, h2, h3, h4, h5, h6 {
    text-transform: none;
    letter-spacing: -.04em;
    line-height: 1.14;
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
    font-family: var(--font-display);
    text-transform: none;
    letter-spacing: 0;
}

label {
    text-transform: none;
    letter-spacing: 0;
}

.dropotron,
#navPanel {
    text-transform: none;
    letter-spacing: 0;
}

table th,
table.checkout thead th {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
}

.tabset > label {
    text-transform: none;
    letter-spacing: 0;
}

h2.maxred,
h2.maxgreen,
.subscribe_now input.button {
    text-transform: none;
    letter-spacing: -.04em;
}

.stockongrill {
    text-transform: none;
    letter-spacing: 0;
}

input[type="number"] {
    text-transform: none;
}

.image-overlay-container .overlay .text {
    text-transform: none;
    letter-spacing: 0;
}

.eyebrow {
    display: block;
    margin: 0 0 16px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero .eyebrow,
#banner .eyebrow,
.counters .eyebrow {
    color: #9fd6ff;
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
body {
    line-height: 1.5;
}

#header,
.utility-bar,
.button,
button,
input,
select,
.counter,
.bigprice {
    line-height: normal;
}

#header {
    line-height: var(--header-h);
}

.utility-bar {
    line-height: 1.2;
}

.wrapper > .inner,
#main > .inner {
    max-width: 1180px;
    width: 100%;
}

p {
    margin: 0 0 1.15em;
}

p:last-child {
    margin-bottom: 0;
}

#header + *:not(#banner) {
    padding-top: calc(var(--utility-h) + var(--header-h) + 30px);
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact input[type="number"],
#contact select,
#contact textarea {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #cedae3;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 15px;
}

#contact textarea {
    min-height: 140px;
    padding: 14px;
    line-height: 1.6;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 119, 201, .14);
}

#contact ::placeholder {
    color: var(--muted);
    opacity: 1;
}

#contact label {
    display: block;
    margin: 0 0 7px;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

#contact button,
#contact input[type="submit"],
#contact .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
    transition: background-color .2s ease, transform .2s ease;
}

#contact button:hover,
#contact input[type="submit"]:hover,
#contact .button:hover {
    background-color: #1591e6;
    transform: translateY(-1px);
}

#uploadPanelOverlay {
    background: rgba(11, 27, 42, .55);
}

body #uploadPanel {
    width: 430px;
    padding: 0;
    color: var(--ink);
    box-shadow: -18px 0 48px rgba(11, 27, 42, .22);
}

#uploadPanel #photo-content {
    padding: 0 20px 28px;
}

#uploadPanel #photo-content > h2 {
    margin: 0 -20px 20px;
    padding: 20px 58px 18px 20px;
    background: var(--ink);
    border-bottom: 2px solid var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    text-transform: none;
}

body #uploadPanel .upload-panel-close {
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    font-size: 15px;
    transition: background-color .18s ease;
}

body #uploadPanel .upload-panel-close:hover {
    background: rgba(255, 255, 255, .22);
    color: var(--white);
}

#uploadPanel #photo-content label {
    margin-top: 16px;
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
}

#uploadPanel #photo-content > form > small,
#uploadPanel #photo-content small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.5;
}

#uploadPanel input[type="text"],
#uploadPanel input[type="tel"],
#uploadPanel input[type="search"],
#uploadPanel select {
    min-height: 44px;
    padding: 0 13px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 14px;
}

#uploadPanel input[type="text"]:focus,
#uploadPanel input[type="tel"]:focus,
#uploadPanel input[type="search"]:focus,
#uploadPanel select:focus {
    outline: 3px solid var(--focus);
    outline-offset: 1px;
    border-color: var(--blue);
}

#uploadPanel #photo-content .phone-row select {
    max-width: 42%;
}

#uploadPanel #dropzone {
    margin-top: 12px;
    padding: 30px 20px;
    border: 2px dashed var(--line);
    border-radius: 14px;
    background: var(--surface);
}

#uploadPanel #dropzone:hover {
    border-color: var(--blue);
    background: var(--sky);
}

#uploadPanel #dropzone.dragover {
    border-color: var(--blue);
    background: var(--sky);
}

#uploadPanel .dropzone-icon {
    font-size: 26px;
    line-height: 1;
}

#uploadPanel .dropzone-text {
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.6;
}

#uploadPanel #dropzone:hover .dropzone-text {
    color: var(--ink);
}

#uploadPanel #dropzone.dragover .dropzone-icon {
    color: var(--blue);
}

#uploadPanel button[type="submit"],
#uploadPanel #photo-content .button {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
    transition: background-color .18s ease;
}

#uploadPanel button[type="submit"]:hover,
#uploadPanel #photo-content .button:hover {
    background: #1591e6;
    color: var(--white);
}

#uploadPanel #loading {
    margin-top: 12px;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
}

#uploadPanel #preview img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--line);
}

@media screen and (max-width: 480px) {
    #uploadPanel {
        width: 100vw;
        max-width: 100vw;
    }
}

.customer-context {
    margin-top: 22px;
    padding: 4px 0 0;
    border-top: 1px solid var(--line);
}

.customer-context-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 2px 10px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.customer-context-row:last-child {
    border-bottom: 0;
}

.customer-context-label {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.customer-context-value {
    min-width: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.customer-context-value.is-empty {
    color: var(--muted);
    font-weight: 400;
    font-size: 13px;
}

.customer-context-value a {
    color: var(--ink);
    text-decoration: none;
}

.customer-context-value a:hover {
    color: var(--blue);
    text-decoration: underline;
}

.customer-context-clear {
    align-self: center;
    color: #c0392b;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
}

.customer-context-clear:hover {
    color: #8f2519;
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
.slider-address-fixed {
    opacity:0;
    visibility:hidden;

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;

    transform:
        translate(-50%, -46%);
	position:absolute;
    z-index:50;
    left:50%;
    top:45%;
    transform:translate(-50%, -50%);
    width:100%;
    max-width:540px;
    pointer-events:auto;
}
.slider-address-fixed.loaded {
    opacity:1;
    visibility:visible;

    transform:
        translate(-50%, -50%);
}

.slider-address-box {
    width:100%;
    margin:0 auto;
    padding:22px 20px;
    background:rgba(255,255,255,0.96);
    border-radius:14px;
    box-shadow:0 18px 44px rgba(3,16,28,0.28), 0 2px 6px rgba(3,16,28,0.10);
    text-align:center;
}

.slider-address-title {
    margin:0 0 0.3em 0 !important;
    font-family:var(--font-display);
    font-size:20px !important;
    font-weight:800;
    line-height:1.2;
    letter-spacing:-0.02em;
    color:var(--ink) !important;
    text-transform:none !important;
    text-shadow:none !important;
}

.slider-address-subtitle {
    margin:0 0 0.85em 0;
    font-size:13px;
    line-height:1.5;
    color:var(--muted);
}

.slider-vehicle-step[hidden],
.slider-address-step[hidden] {
    display:none !important;
}

.slider-vehicle-help {
    display:inline-flex;
    align-items:center;
    gap:4px;
    margin:0 0 0.6em;
    margin-left:3px;
    font-size:12px !important;
    font-weight:700;
    text-transform:none;
    color:var(--blue) !important;
    text-decoration:none;
}

.slider-vehicle-help:hover {
    text-decoration:underline;
}

.slider-vehicle-search-wrap {
    position:relative;
    text-align:left;
}

#slider-address-fixed ~ article .hero-headline,
#slider-address-fixed ~ article .slider-actions {
    display:none !important;
}

.slider-vehicle-search-wrap .vp-search-input {
    width:100%;
    height:48px;
    margin:0;
    padding:0 12px;
    border:1px solid #cedae3;
    border-radius:8px;
    background:#fff;
    color:var(--ink);
}

.slider-vehicle-search-wrap .vp-search-input:focus {
    border-color:var(--blue);
    outline:none;
    box-shadow:0 0 0 3px rgba(8,119,201,0.14);
}

.slider-vehicle-search-wrap .vp-search-results {
    max-height:260px;
    overflow-y:auto;
    z-index:999999;
}

.slider-vehicle-staged {
    display:flex;
    margin:0 0 0.75em;
    border:1px solid var(--line);
    border-radius:8px;
    box-shadow:none;
    color:var(--ink) !important;
    text-decoration:none;
}

.slider-vehicle-staged .vp-search-result-label,
.slider-vehicle-staged .vp-search-result-sub {
    color:var(--ink) !important;
}

.slider-vehicle-staged .vp-search-result-label {
    display:flex;
    align-items:center;
    gap:8px;
}

.slider-vehicle-staged .ozfa-reset-vehicle {
    margin-left:auto;
    color:#c62828 !important;
    font-size:1.05em;
    line-height:1;
    text-decoration:none;
}

.slider-vehicle-staged[hidden] {
    display:none !important;
}

.slider-vehicle-staged::after {
    content:'View compatible products';
    margin-left:auto;
    align-self:center;
    padding-left:10px;
    color:var(--blue);
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

.slider-vehicle-error {
    margin:0.55em 0 0;
    color:#a23a3a;
    font-size:0.82em;
}

.slider-address-box #checkout-warning,
.slider-address-box #map,
.slider-address-box #logger,
.slider-address-box #badder,
.slider-address-box .success,
.slider-address-box .warning {
    display:none !important;
}

.slider-address-box .col-12 {
    margin:0 !important;
}

.slider-address-box .address-topline {
    width:100% !important;
    max-width:100% !important;
    justify-content:center;
    margin:0 0 0.45em 0 !important;
}

.slider-address-box .address-note {
    color:#444 !important;
    font-size:0.82em !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
}

.slider-address-box .address-row {
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
    justify-content:center !important;
}

.slider-address-box .geocoder,
.slider-address-box .mapboxgl-ctrl-geocoder,
.slider-address-box input.mapboxgl-ctrl-geocoder--input,
.slider-address-box input#address {
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
}

.slider-address-box input.mapboxgl-ctrl-geocoder--input,
.slider-address-box input#address {
    height:48px !important;
    font-size:0.95em !important;
    color:var(--ink) !important;
    background:#fff !important;
    border:1px solid #cedae3 !important;
    border-radius:8px !important;
}

.slider-address-box .geomarker {
    right:13px !important;
    color:var(--blue) !important;
}

.slider-actions {
    margin-top:0.7em;
}

@media screen and (max-width:768px) {

    .slider-address-fixed {
        top:46%;
        width:92%;
        max-width:92%;
    }

    .slider-address-box {
        padding:0.9em;
    }

    .slider-address-title {
        font-size:17px !important;
    }

    .slider-address-subtitle {
        font-size:0.82em;
    }

    .slider-address-box input.mapboxgl-ctrl-geocoder--input,
    .slider-address-box input#address {
        height:46px !important;
    }

}

.slider-address-box .mapboxgl-ctrl-geocoder {
    position:relative !important;
    text-align:left !important;
}

.slider-address-box .mapboxgl-ctrl-geocoder .suggestions {
    position:absolute !important;

    top:100% !important;
    left:0 !important;

    width:100% !important;

    background:#fff !important;

    border:1px solid var(--line) !important;
    border-radius:0 0 10px 10px !important;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18) !important;

    overflow:hidden !important;

    z-index:999999 !important;

    text-align:left !important;
}

.slider-address-box .suggestions > li,
.slider-address-box .suggestions .mapboxgl-ctrl-geocoder--suggestion {
    color:var(--ink) !important;

    border:0 !important;

    text-align:left !important;

    font-size:1em !important;
    line-height:1.35 !important;

    cursor:pointer !important;
}

.slider-address-box .suggestions > li:hover,
.slider-address-box .suggestions .mapboxgl-ctrl-geocoder--suggestion:hover,
.slider-address-box .active {
    background:var(--surface) !important;
    color:var(--ink) !important;
}

.slider-address-box .mapboxgl-ctrl-geocoder--suggestion-title {
    color:var(--ink) !important;
    font-weight:700 !important;
}

.slider-address-box .mapboxgl-ctrl-geocoder--suggestion-address {
    color:var(--muted) !important;
    font-size:0.82em !important;
}

.slider-address-box .address-row {
    align-items:flex-start !important;
}

@media screen and (max-width:768px) {

    .slider-address-fixed {
        transition:
            top 0.35s ease,
            left 0.35s ease,
            right 0.35s ease,
            width 0.35s ease,
            max-width 0.35s ease,
            transform 0.35s ease;
    }

    .slider-address-box {
        transition:
            border-radius 0.35s ease,
            box-shadow 0.35s ease;
    }

    body.geocoder-mobile-focus .slider-address-fixed {
        position:fixed !important;

        top:4em !important;
        left:12px !important;
        right:12px !important;

        width:auto !important;
        max-width:none !important;

        transform:none !important;

        z-index:999999 !important;
    }

    body.geocoder-mobile-focus .slider-address-box {
        border-radius:12px !important;

        box-shadow:
            0 12px 40px rgba(0,0,0,0.22) !important;
    }

    body.geocoder-mobile-focus .mapboxgl-ctrl-geocoder .suggestions {
        max-height:40vh !important;
        overflow-y:auto !important;
    }

}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
.finder-wrap {
    position: relative;
    z-index: 5;
    max-width: 1180px;
    margin: 24px auto 0;
    padding: 0 1.5em;
}

#banner + .finder-wrap {
    margin-top: -64px;
}

.finder {
    display: grid;
    grid-template-columns: auto 1.2fr 1.2fr auto;
    align-items: end;
    gap: 12px 18px;
    padding: 24px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(3, 16, 28, .18), 0 2px 6px rgba(3, 16, 28, .08);
}

.finder-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: center;
}

.finder-heading[hidden] {
    display: none;
}

.finder-heading strong,
.finder-heading small {
    display: block;
}

.finder-heading strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em;
}

.finder-heading small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.finder-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    color: var(--blue);
    background: var(--sky);
    font-size: 18px;
}

.finder-field {
    display: block;
    margin: 0;
    min-width: 0;
}

.finder-field > span {
    display: block;
    margin: 0 0 7px;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.finder-help {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: center;
    white-space: nowrap;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    border: 0;
}

.finder .compat-carousel-wrap {
    grid-column: 1 / -1;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

@media screen and (max-width: 1100px) {
    .finder {
        grid-template-columns: 1fr 1fr;
    }

    .finder-heading,
    .finder-help {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 736px) {
    #banner + .finder-wrap {
        margin-top: -40px;
    }

    .finder {
        grid-template-columns: 1fr;
        padding: 18px;
    }
}

.finder-step {
    grid-column: 1 / -1;
    min-width: 0;
}

.finder-step[hidden] {
    display: none;
}

.finder-selects {
    display: grid;
    grid-template-columns: repeat(4, .85fr) 1.3fr;
    align-items: end;
    gap: 12px;
}

.finder select {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    border: 1px solid #cedae3;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 14px;
}

.finder select:disabled {
    color: #8997a2;
    background: #f3f6f8;
    cursor: not-allowed;
}

.finder select:focus {
    border-color: var(--blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(8, 119, 201, .14);
}

.finder button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: none;
    cursor: pointer;
}

.finder button[type="submit"]:disabled {
    background: #aab9c4;
    cursor: not-allowed;
}

.finder button[type="submit"]:not(:disabled):hover {
    background: #1591e6;
}

@media screen and (max-width: 1100px) {
    .finder-selects {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .finder-selects {
        grid-template-columns: 1fr;
    }
}

.finder .address-icon {
    display: none;
}

.finder-help[hidden] {
    display: none;
}

.finder #sliderVehicleStaged {
    grid-column: 1 / -1;
    margin-bottom: 12px;
    padding: 10px 14px;
    cursor: pointer;
}

.finder .button.green,
.finder .button.blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
}

.finder .button.green {
    background-color: var(--blue);
    color: var(--white) !important;
}

.finder .button.green:hover {
    background-color: #1591e6;
}

.finder .button.blue {
    border: 1px solid #cedae3;
    background-color: var(--white);
    color: var(--ink) !important;
}

.finder .button.blue:hover {
    border-color: var(--blue);
    color: var(--blue) !important;
}

.finder center {
    text-align: left;
}

@media screen and (max-width: 1100px) {
    .finder {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

@media screen and (max-width: 736px) {
    .finder {
        grid-template-columns: minmax(0, 1fr);
    }
}

.finder > * {
    min-width: 0;
}

.finder {
    box-shadow: none;
}

.finder-ready {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 45px;
}

.finder-ready .finder-icon {
    flex: 0 0 auto;
    background: #e7f6ec;
    color: #1c7a3e;
}

.finder-ready-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 34px;
    min-width: 0;
}

.finder-ready-fact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.finder-ready-fact.is-open {
    align-items: flex-start;
}

.finder-vehicle-search {
    position: relative;
    min-width: 0;
}

.finder-vehicle-search input[type="search"] {
    width: 100%;
    height: 36px;
    margin: 0;
    padding: 0 0.9em;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #f6f6f6;
    box-shadow: none;
    font-size: 14px;
    -webkit-appearance: none;
    appearance: none;
}

.finder-vehicle-search input[type="search"]:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
}

.finder-vehicle-search-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999998;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    text-align: left;
}

.finder-vehicle-search-list[hidden] {
    display: none;
}

.finder-vehicle-search-list li {
    display: block;
    padding: 7px 10px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    line-height: 1.3;
}

.finder-vehicle-search-list li:last-child {
    border-bottom: none;
}

.finder-vehicle-search-list li span {
    display: block;
    color: #111;
    font-weight: 600;
    font-size: 13px;
}

.finder-vehicle-search-list li small {
    display: block;
    color: #666;
    font-size: 11.5px;
}

.finder-vehicle-search-list li:hover,
.finder-vehicle-search-list li.is-active {
    background: #f5f5f5;
}

.finder-vehicle-search-status {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.3;
}

.finder-vehicle-search-status.is-error {
    color: #b42318;
}

.finder-ready-value--editable {
    cursor: text;
    margin-left: -4px;
    padding: 1px 4px;
    border-radius: 4px;
    border-bottom: 1px dashed rgba(3, 16, 28, .28);
}

.finder-ready-value--editable:hover,
.finder-ready-value--editable:focus-visible {
    background: var(--sky);
    border-bottom-color: var(--blue);
    outline: none;
}

.finder-ready-pen {
    margin-left: 7px;
    font-size: 10px;
    color: var(--blue);
    opacity: .55;
}

.finder-ready-value[hidden] {
    display: none;
}

.finder-ready-slot {
    display: none;
    min-width: 0;
}

.finder-ready-slot.is-open {
    display: block;
    margin-top: 2px;
}

.finder-ready-slot .finder-step {
    margin: 0;
}

.finder-ready-slot .address-topline,
.finder-ready-slot #map,
.finder-ready-slot #locator > .curved.info {
    display: none !important;
}

.finder-ready-slot .address-row {
    margin: 0;
    max-width: none;
    justify-content: flex-start;
}

.finder-ready-slot #locator > .col-12 {
    margin-top: 0 !important;
}

.finder-ready-text {
    position: relative;
}

.finder-ready-hint {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    z-index: 6;
    padding: 7px 11px;
    background: #111;
    color: #fff;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.3;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    pointer-events: none;
}

.finder-ready-hint:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 18px;
    border-width: 7px 7px 0 7px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

.finder-ready-hint[hidden] {
    display: none;
}

.finder-ready-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.finder-ready .finder-icon--vehicle {
    background: var(--sky);
    color: var(--blue);
}

.finder-ready .finder-icon--vehicle .fa-shuttle-van {
    font-size: 17px;
}

.finder-ready-label {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.finder-ready-value {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.finder-ready-change {
    margin-left: auto;
    flex: 0 0 auto;
    align-self: center;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: underline;
}

.finder-ready-change:hover {
    color: var(--ink);
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
#about.wrapper,
#about > .inner {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

.info-hero {
    padding: 92px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 84% 30%, #175477 0, transparent 34%),
        var(--ink);
}

.info-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.info-hero .eyebrow {
    color: #9fd6ff;
}

.info-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--white);
    font-size: clamp(43px, 5.5vw, 72px);
    line-height: 1.03;
    letter-spacing: -.052em;
    text-transform: none;
}

.info-hero p {
    max-width: 700px;
    margin: 25px 0 0;
    color: #bed0db;
    font-size: 16px;
    line-height: 1.75;
}

.about-story {
    padding: 92px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(50px, 9vw, 120px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.story-grid h2 {
    margin: 0 0 20px;
    font-size: clamp(31px, 3.8vw, 48px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.story-grid > div:first-child p {
    color: var(--muted);
    line-height: 1.8;
}

.story-points {
    display: grid;
    gap: 13px;
}

.story-points article {
    display: flex;
    gap: 15px;
    padding: 21px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--blue);
}

.story-points i {
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1.2;
}

.story-points h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font-size: 16px;
}

.story-points p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.values-band {
    padding: 48px 0;
    background: var(--sky);
}

.values-band-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.values-band-inner > div {
    padding: 6px 25px;
    border-right: 1px solid #c9dfed;
}

.values-band-inner > div:last-child {
    border-right: 0;
}

.values-band strong,
.values-band span {
    display: block;
}

.values-band strong {
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 15px;
}

.values-band span {
    color: var(--muted);
    font-size: 11px;
}

.product-details-section {
    padding: 92px 0;
    background: #f5f8fa;
}

.product-details-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.detail-heading {
    max-width: 740px;
    margin-bottom: 38px;
}

.detail-heading h2 {
    margin: 0;
    font-size: clamp(31px, 3.6vw, 47px);
    line-height: 1.13;
    letter-spacing: -.04em;
}

.detail-heading p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.detail-card {
    padding: 31px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .06);
}

.detail-card h3 {
    margin: 0 0 18px;
    font-size: 21px;
}

.detail-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

.detail-card li i {
    flex: 0 0 auto;
    margin-top: .15em;
    color: var(--blue);
}

.about-founder {
    padding: 92px 0;
}

.founder-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(40px, 7vw, 88px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.founder-media {
    position: sticky;
    top: 24px;
    margin: 0;
}

.founder-media a {
    display: block;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 5px 22px rgba(15, 34, 49, .1);
}

.founder-media img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .45s ease;
}

.founder-media a:hover img {
    transform: scale(1.03);
}

.founder-media figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .02em;
}

.founder-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(31px, 3.8vw, 48px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.page-shell .founder-copy p {
    color: var(--muted);
    line-height: 1.8;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: start;
    gap: 20px clamp(34px, 6vw, 70px);
    margin: 34px 0 30px;
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.founder-stats strong,
.founder-stats span {
    display: block;
}

.founder-stats strong {
    margin-bottom: 5px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    letter-spacing: -.03em;
    line-height: 1.1;
}

.founder-stats span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.page-shell .about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
}

.page-shell .about-button:hover,
.page-shell .about-button:active,
.page-shell .about-button:focus {
    background-color: #1591e6;
    color: var(--white);
}

.page-shell .about-button i {
    color: var(--white);
    font-size: 12px;
}

.about-place {
    padding: 92px 0;
    background: var(--band);
}

.about-place-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.place-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.place-grid a {
    display: block;
    overflow: hidden;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .06);
}

.place-grid img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .45s ease;
}

.place-grid a:hover img {
    transform: scale(1.04);
}

.page-shell .place-caption {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .02em;
    text-align: center;
}

.place-detail {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    margin-top: 32px;
}

.place-facts {
    display: grid;
    align-content: start;
    gap: 12px;
    margin: 0;
    padding: 31px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .06);
    list-style: none;
}

.page-shell .place-facts li {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

.place-facts i {
    flex: 0 0 auto;
    margin-top: .15em;
    color: var(--blue);
}

.place-address {
    padding: 31px;
    border-radius: 13px;
    background: var(--sky);
}

.place-address span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.place-address strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.45;
}

.page-shell .place-address p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.about-beyond {
    padding: 92px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 20%, #175477 0, transparent 38%),
        var(--ink);
}

.about-beyond-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.about-beyond .eyebrow {
    color: #9fd6ff;
}

.beyond-copy h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.page-shell .beyond-copy p {
    color: #bed0db;
    font-size: 15px;
    line-height: 1.8;
}

.beyond-links-label {
    display: block;
    margin-bottom: 14px;
    color: #8fa6b6;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.beyond-links .venture {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 17px 21px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 11px;
    color: var(--white);
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.beyond-links .venture + .venture {
    margin-top: 11px;
}

.beyond-links .venture:hover {
    border-color: rgba(159, 214, 255, .5);
    background-color: rgba(255, 255, 255, .05);
    color: var(--white);
}

.beyond-links .venture span {
    display: block;
    color: #bed0db;
    font-size: 12px;
    line-height: 1.5;
}

.beyond-links .venture strong {
    display: block;
    margin-bottom: 3px;
    color: var(--white);
    font-size: 15px;
}

.beyond-links .venture i {
    flex: 0 0 auto;
    color: #9fd6ff;
    font-size: 13px;
}

.about-expect {
    padding: 92px 0;
}

.about-expect-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.page-shell .expect-lead {
    max-width: 900px;
    margin: 0 0 42px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.8;
}

.expect-block + .expect-block {
    margin-top: 46px;
    padding-top: 46px;
    border-top: 1px solid var(--line);
}

.expect-block h3 {
    margin: 0 0 12px;
    font-size: 21px;
}

.page-shell .expect-block > p {
    max-width: 860px;
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.75;
}

.expect-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.expect-card {
    display: flex;
    gap: 16px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
}

.expect-n {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sky);
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
}

.expect-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 16px;
}

.page-shell .expect-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.page-shell .expect-block > .expect-note {
    max-width: 900px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.about-legal {
    padding: 92px 0;
    background: var(--sky);
}

.about-legal-inner {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.legal-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.page-shell .legal-copy p {
    color: var(--ink-soft);
    line-height: 1.8;
}

.page-shell .legal-copy .legal-fine {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.legal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-shell .legal-badges li {
    margin-bottom: 0;
    padding: 9px 15px;
    border: 1px solid #c9dfed;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.35;
}

.page-shell .legal-insurance {
    margin: 22px 0 0;
    padding: 21px;
    border-radius: 13px;
    background: var(--white);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.legal-insurance strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.page-shell .info-hero p {
    color: #bed0db;
    font-size: 16px;
    line-height: 1.75;
}

.page-shell .story-grid > div:first-child p {
    color: var(--muted);
    line-height: 1.8;
}

.page-shell .story-points p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.page-shell .detail-heading p {
    color: var(--muted);
    line-height: 1.7;
}

.page-shell .detail-card li {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.5;
}

@media screen and (max-width: 980px) {
    .story-grid,
    .detail-columns,
    .values-band-inner,
    .founder-grid,
    .place-detail,
    .about-beyond-inner,
    .about-legal-inner,
    .expect-cards {
        grid-template-columns: 1fr;
    }

    .founder-media {
        position: static;
        max-width: 480px;
    }

    .values-band-inner > div {
        padding: 6px 0;
        border-right: 0;
    }

    .place-grid {
        grid-template-columns: 1fr 1fr;
    }

    .place-grid a:first-child {
        grid-column: 1 / -1;
    }

    .place-grid img {
        height: 210px;
    }
}

@media screen and (max-width: 640px) {
    .about-founder,
    .about-place,
    .about-beyond,
    .about-expect,
    .about-legal {
        padding: 58px 0;
    }

    .founder-stats,
    .place-grid {
        grid-template-columns: 1fr;
    }

    .place-grid a:first-child {
        grid-column: auto;
    }

    .founder-stats {
        gap: 16px;
    }

    .expect-block + .expect-block {
        margin-top: 34px;
        padding-top: 34px;
    }
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
#sets .carousel,
.reviews-carousel {
    position: static;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
}

#sets .carousel-track {
    display: block;
    transform: none !important;
    overflow: visible;
}

#sets .carousel-track .slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: auto;
    min-width: 0;
    flex: none;
}

#sets .carousel-track .slide:nth-child(n + 3) {
    display: none;
}

#sets .carousel-track .slide + .slide {
    margin-top: 18px;
}

#sets .carousel .nav,
#sets .carousel .dots {
    display: none;
}

#sets .review-card {
    display: flex;
    flex-direction: column;
    width: auto;
    min-width: 0;
    flex: 0 1 auto;
    padding: 24px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .06);
}

@media screen and (max-width: 980px) {
    #sets .carousel-track .slide {
        grid-template-columns: 1fr;
    }

    #sets .review-card:nth-child(n + 2) {
        display: flex;
    }
}

#sets .review-stars {
    margin-bottom: 10px;
    color: #00b67a;
    font-size: 16px;
    letter-spacing: 2px;
}

#sets .review-title {
    margin: 0 0 8px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

#sets .review-text {
    margin: 0 0 14px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.6;
}

#sets .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

#sets .review-name {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

#footer {
    padding: 44px 0;
    background: var(--ink);
    color: var(--white);
}

#footer > .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

#footer .row {
    display: grid;

    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 38px;
    padding-bottom: 42px;
}

#footer .row > div {
    width: auto;
    padding: 0;
}

#footer h2,
#footer h3,
#footer h4 {
    margin: 4px 0 17px;
    color: #8fa5b5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

#footer a {
    color: #dce6ec;
    border-bottom: 0;
}

#footer a:hover {
    color: var(--white);
}

#footer li a,
#footer .col-3 > a {
    display: block;
    width: fit-content;
    margin: 11px 0;
    font-size: 12px;
}

#footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer p,
#footer span {
    color: #8fa5b5;
    font-size: 11px;
    line-height: 1.7;
}

#footer hr {
    margin: 18px 0 14px;
    border: 0;
    border-top: 1px solid #2a3f52;
}

.footer-brand strong {
    display: block;
    margin: 8px 0 15px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 1.5em 0;
    border-top: 1px solid #253a4b;
    color: #7890a1;
    font-size: 10px;
}

.footer-bottom a {
    color: #7890a1;
}

@media screen and (max-width: 980px) {
    #footer .row {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

@media screen and (max-width: 560px) {
    #footer .row {
        grid-template-columns: 1fr;
    }
}

.footer-legalinfo {
    display: block;
    margin-top: 16px;
    font-style: normal;
}

.footer-legalinfo span,
.footer-legalinfo a {
    display: block;
    margin: 6px 0;
    color: #8fa5b5;
    font-size: 11px;
    line-height: 1.7;
}

.footer-legalinfo strong {
    color: #dce6ec;
    font-weight: 700;
}

.footer-legalinfo a {
    width: fit-content;
}

.footer-legalinfo a:hover {
    color: #dce6ec;
}

.share-band {
    padding: 72px 0;
    background: var(--surface);
}

.share-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
}

.share-band-copy h2 {
    max-width: 520px;
    margin: 0 0 12px;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.share-band-copy p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.share-band-copy > br {
    display: none;
}

.share-band-copy .sharethis-share-buttons {
    margin-top: 18px;
}

.share-band-qr img {
    display: block;
    padding: 12px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .07);
}

.selfserve-band {
    padding: 0 0 72px;
    background: var(--surface);
}

.selfserve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.selfserve-card {
    padding: 31px;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 5px 22px rgba(15, 34, 49, .06);
}

.selfserve-icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 16px;
    border-radius: 10px;
    color: var(--blue);
    background: var(--sky);
    font-size: 18px;
}

.selfserve-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.2;
}

.selfserve-card > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.selfserve-card .slider-address-fixed,
.selfserve-card .slider-address-box {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: auto;
    max-width: none;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-align: left;
}

.selfserve-card .slider-address-title {
    display: none;
}

.selfserve-card input[type="text"],
.selfserve-card input[type="tel"],
.selfserve-card input[type="email"] {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid #cedae3;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 14px;
}

.selfserve-card .button {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    background-color: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
}

@media screen and (max-width: 860px) {
    .share-band-inner,
    .selfserve-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
}

#footer,
#footer p,
#footer span,
#footer li,
#footer a {
    line-height: 1.35;
}

#footer li a,
#footer .col-3 > a {
    margin: 8px 0;
}

.footer-legalinfo span,
.footer-legalinfo a {
    margin: 4px 0;
    line-height: 1.45;
}

.footer-legalinfo a {
    min-height: 24px;
    padding: 4px 0;
    margin: 0;
}

.selfserve-card #orr-tracking-panel > h2,
.selfserve-card .slider-address-subtitle {
    display: block;
    margin: 0 0 8px !important;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 13px !important;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
}

.selfserve-card #orr-tracking-panel,
.selfserve-card form {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
}

.selfserve-card form {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: stretch !important;
}

.selfserve-card form input:not([type="hidden"]),
.selfserve-card form .button,
.selfserve-card form button,
.selfserve-card form input[type="submit"] {
    width: 100% !important;
    max-width: none !important;
    flex: 0 0 auto !important;
}

#sets .carousel {
    padding: 0;
}

#sets .section-heading {
    margin-top: 0;
}

.footer-legalinfo i {
    width: 14px;
    margin-right: 4px;
    color: #8fa5b5;
    text-align: center;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-policy-links a {
    color: #7890a1;
}

.footer-policy-links a:hover {
    color: #dce6ec;
}

.footer-brand .footer-tagline {
    display: block;
    margin: 2px 0 12px;
    color: #8fa5b5;
    font-size: 12px;
    font-style: normal;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-contact p {
    display: block;
    max-width: 320px;
    margin: 0 0 10px;
    color: #8fa5b5;
    font-size: 11px;
    line-height: 1.7;
}

.footer-contact > a:first-of-type {
    display: flex !important;
    align-items: center;
    gap: 7px;
    color: var(--white) !important;
    font-weight: 800;
}

.footer-link-gap {
    display: block;
    width: 34px;
    height: 1px;
    margin: 18px 0 14px;
    background: #2a3f52;
}

#footer,
#footer .row,
#footer .row > div,
#footer .footer-bottom {
    text-align: left;
}

#footer .row > div > a,
#footer .footer-contact > a,
#footer .row > div li a {
    display: block;
    width: fit-content;
    margin: 11px 0;
    font-size: 12px;
}

#footer .row > div > h2 {
    text-align: left;
}

#footer .footer-brand > a {
    display: inline;
    margin: 0;
}

#footer .footer-brand > a.footer-reseller {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0;
    padding: 9px 16px;
    border: 1px solid #2a3f52;
    border-radius: 999px;
    color: #dce6ec;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

#footer .footer-brand > a.footer-reseller:hover,
#footer .footer-brand > a.footer-reseller:focus-visible {
    border-color: var(--blue);
    background: rgba(8, 119, 201, .14);
    color: var(--white);
}

.footer-reseller i {
    color: #8fa5b5;
    font-size: 12px;
}

#footer .footer-brand > a.footer-reseller:hover i,
#footer .footer-brand > a.footer-reseller:focus-visible i {
    color: var(--white);
}

.footer-downloads li a,
#footer .footer-downloads a {
    margin: 5px 0;
    font-size: 11px;
    line-height: 1.3;
}

.footer-downloads ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-downloads li {
    margin: 0;
    line-height: 1.3;
}

.share-band {
    background: none;
}

.selfserve-band {
    background: var(--band);
}

.selfserve-card .button.is-danger {
    background-color: #d63a45;
    color: var(--white);
}

.selfserve-card .button.is-danger:hover {
    background-color: #c22e39;
    color: var(--white);
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
#main .productes .max {
    margin: 0 0 6px;
    font-family: var(--font-display);
    font-size: clamp(23px, 2.5vw, 33px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.03em;
    color: var(--ink);
    text-transform: none;
}

#main .productes > small:first-of-type {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

#main .productes .bigprice,
#main #bigprice {
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--ink);
}

.product-sections {
    margin-top: 54px;
}

.product-section {
    padding: 62px 0;
}

.product-section {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.product-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.product-details-section,
.downloads-section {
    background: var(--white);
}

.compatible-section {
    background: var(--sky);
}

.product-section .detail-heading {
    max-width: 860px;
}

.product-section .detail-heading {
    margin-bottom: 34px;
}

.product-section .eyebrow {
    display: block;
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.product-section .eyebrow.blue {
    color: var(--blue);
}

.product-section h2 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.035em;
    color: var(--ink);
    text-transform: none;
}

.product-section .detail-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.detail-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 20px;
    align-items: start;
}

.detail-columns.is-single {
    grid-template-columns: minmax(0, 760px);
}

.detail-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.detail-card.is-wide {
    grid-column: 1 / -1;
}

.downloads-split.is-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

@media screen and (max-width: 860px) {
    .downloads-split.is-split {
        grid-template-columns: minmax(0, 1fr);
    }
}

.detail-body h2,
.detail-body h3 {
    margin: 26px 0 12px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .01em;
    color: var(--ink);
    text-transform: none;
}

.detail-body > *:first-child {
    margin-top: 0;
}

.detail-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--sky);
    color: var(--blue);
    font-size: 19px;
}

.detail-card h3 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--ink);
    text-transform: none;
}

.detail-body {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

.detail-body p:last-child {
    margin-bottom: 0;
}

.detail-body img,
.downloads-body img,
.specs-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.detail-body ul,
.detail-body ol {
    margin: 0 0 1em;
    padding-left: 1.2em;
}

.detail-body li {
    margin-bottom: 7px;
}

.specs-body {
    overflow-x: auto;
}

.detail-body table {
    width: 100%;
    margin: 0;
    background: none;
    border: 0;
    border-collapse: collapse;
    font-size: 14px;
}

.detail-body th,
.detail-body td {
    padding: 13px 16px 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    line-height: 1.5;
    vertical-align: top;
}

.detail-body tr:last-child th,
.detail-body tr:last-child td {
    border-bottom: 0;
}

.detail-body th {
    width: 42%;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.detail-body td {
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.detail-body tr:nth-child(even) th,
.detail-body tr:nth-child(even) td,
.detail-body tr:nth-child(odd) th,
.detail-body tr:nth-child(odd) td {
    background: none;
}

.compatible-section .ozfa-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 12px;
    margin-top: 0;
}

.compatible-section .ozfa-product {
    background: var(--white);
}

.compatible-section .ozfa-about-panel {
    margin-top: 22px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .6);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.downloads-body ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.downloads-body li {
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.downloads-body li:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 18px rgba(11, 27, 42, .07);
}

.downloads-body li a {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
    text-decoration: none;
}

.downloads-body li:hover a {
    color: var(--blue);
}

.oz-glb-link {
    margin: 14px 0 0;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.oz-glb-link:hover {
    border-color: var(--blue);
    box-shadow: 0 6px 18px rgba(11, 27, 42, .07);
}

.oz-glb-link a {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
    text-decoration: none;
}

.oz-glb-link:hover a {
    color: var(--blue);
}

.oz-glb-link small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.downloads-body li small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.downloads-body li br {
    display: none;
}

@media screen and (max-width: 736px) {
    .product-sections {
        margin-top: 34px;
    }

    .product-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .detail-card {
        padding: 22px;
    }
}

#main .productes .stock-badge {
    display: inline-block;
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .1em;
    text-transform: uppercase;
}

#main .productes .stock-badge.is-instock {
    background: #e7f6ec;
    color: #1c7a3e;
}

#main .productes .stock-badge.is-low {
    background: #fdeaea;
    color: #b3261e;
}

#main .productes .stock-badge.is-out {
    background: var(--surface);
    color: var(--muted);
}

#main .productes .stock-badge.is-presale {
    background: #fff3e0;
    color: #a35200;
}

.stock-badge-note {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: none;
    opacity: .85;
}

#main .productes .stock-badge .blink-hard {
    animation: oz-stock-pulse 1.4s ease-in-out infinite;
}

@keyframes oz-stock-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .45; }
}

@media (prefers-reduced-motion: reduce) {
    #main .productes .stock-badge .blink-hard {
        animation: none;
    }
}

.compatible-section .oz-compat-about-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    text-decoration: underline;
    cursor: pointer;
}

.compatible-section .oz-compat-about-toggle:hover,
.compatible-section .oz-compat-about-toggle:focus-visible {
    color: var(--blue);
}

.compatible-section .oz-compat-about-toggle::before {
    content: "\25B8";
    font-size: 11px;
    text-decoration: none;
    transition: transform .18s ease;
}

.compatible-section .oz-compat-about-toggle[aria-expanded="true"]::before {
    transform: rotate(90deg);
}

.compatible-section .ozfa-about-panel {
    margin-top: 12px;
}

.bundle-photo-pending {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    padding: 24px;
    border: 1px dashed var(--line);
    border-radius: 14px;
    background: var(--surface);
    text-align: center;
}

.bundle-photo-pending span {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--muted);
}

.fitment-container {
    width: min(1180px, 100% - 40px);
    margin-inline: auto;
}

.fitment-hero {
    padding: calc(var(--utility-h) + var(--header-h) + 46px) 0 46px;
    background: var(--ink);
    color: var(--white);
}

.fitment-hero .eyebrow {
    display: block;
    margin: 0 0 12px;
    color: #7cc4f5;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.fitment-hero h1 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: var(--white);
    text-transform: none;
}

.fitment-vehicle {
    margin: 0;
    color: #b8ccdb;
    font-size: 16px;
    line-height: 1.6;
}

.fitment-vehicle span {
    padding: 0 4px;
    opacity: .6;
}

.fitment-band {

    padding: 34px 0;
}

.fitment-status {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 5px 22px rgba(15, 34, 49, .06);
}

.fitment-status.is-match {
    border-left: 3px solid #1c7a3e;
}

.fitment-status-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--sky);
    color: var(--blue);
    font-size: 20px;
}

.fitment-status h2 {
    margin: 0 0 4px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--ink);
    text-transform: none;
}

.fitment-status p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.fitment-status .button {
    margin: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    white-space: nowrap;
}

.fitment-status .button:hover {
    border-color: var(--blue);
    background: var(--sky);
    color: var(--ink);
}

@media screen and (max-width: 760px) {
    .fitment-status {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .fitment-status .button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

.fitment-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
    gap: 14px;
    margin-top: 14px;
}

.fitment-facts article {
    padding: 18px 20px;
    background: var(--surface);
    border-radius: 12px;
}

.fitment-facts small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.fitment-facts strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--ink);

}

.fitment-heading {
    max-width: 620px;
    margin: 0 0 26px;
}

.fitment-heading .eyebrow {
    display: block;
    margin: 0 0 10px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.fitment-heading h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.03em;
    color: var(--ink);
    text-transform: none;
}

.fitment-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

.related-section {

    width: auto;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.related-section > .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5em;
}

.compatible-section .section-head-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 34px;
}

.compatible-section .section-head-row .detail-heading {
    margin-bottom: 0;
}

.oz-viewswitch {
    display: inline-flex;
    flex: none;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.oz-viewswitch button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: none;
    border: 0;
    color: var(--ink);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.oz-viewswitch button + button {
    border-left: 1px solid var(--line);
}

.oz-viewswitch button:hover {
    background: #f2f4f6;
}

.oz-viewswitch button[aria-pressed="true"] {
    background: #63666a;
    color: #fff;
}

.oz-viewswitch button[aria-pressed="true"]:hover {
    background: #55585c;
}

@media screen and (max-width: 560px) {

    .oz-viewswitch button span {
        display: none;
    }
}

.compatible-section .ozfa-products.is-gallery {
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: 18px;
}

.compatible-section .ozfa-products.is-gallery .ozfa-product {
    display: block;
    min-height: 0;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.compatible-section .ozfa-products.is-gallery .ozfa-product:hover {
    box-shadow: 0 10px 26px rgba(11, 27, 42, .10);
    transform: translateY(-2px);
}

.compatible-section .ozfa-products.is-gallery .ozfa-product img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;

    background: #ffffff;
    border-radius: 0;
}

.compatible-section .ozfa-products.is-gallery .ozfa-product > span {
    display: block;
    margin-top: 0;
    padding: 14px 16px 16px;
}

.compatible-section .ozfa-products.is-gallery .ozfa-product strong {
    font-size: .95rem;
    line-height: 1.3;
}

.compatible-section .ozfa-products.is-gallery .ozfa-product span span {
    margin-top: 4px;
    font-size: .8rem;
}

.product-tags-section {
    background: var(--band);
}

.product-tag-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-tag-chips li {
    margin: 0;
    padding: 0;
}

.product-tag-chip {
    display: inline-block;
    padding: 9px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.01em;
    text-decoration: none;
    text-transform: none;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.product-tag-chip:hover,
.product-tag-chip:focus {
    border-color: var(--blue);
    background: var(--sky);
    color: var(--blue-dark);
    text-decoration: none;
}

.product-tag-note {
    display: block;
    max-width: 860px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.tag-index-group {
    margin: 0 0 38px;
}

.tag-index-group h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    text-transform: none;
}

.tag-page .detail-heading {
    max-width: 860px;
    margin-bottom: 34px;
}

.tag-page .eyebrow {
    display: block;
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.tag-page .eyebrow.blue,
.tag-page .eyebrow.blue a {
    color: var(--blue);
    text-decoration: none;
}

.tag-page .eyebrow.blue a:hover {
    text-decoration: underline;
}

.tag-page .detail-heading h1 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.035em;
    color: var(--ink);
    text-transform: none;
}

.tag-page .detail-heading > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.tag-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.tag-actions .button {
    margin: 0;
}

.mainpic-wrap {
    position: relative;
    display: inline-block;
}

.mainpic-wrap .favourite-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.price-track-toggle {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin: 0 0 0 8px;
    padding: 6px 12px;
    border: 1px solid #cedae3;
    border-radius: 999px;
    background: #fff;
    color: #333;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
}

.price-track-toggle.is-tracking {
    border-color: #198754;
    color: #198754;
    background: #eafaf1;
}

/* fitting cards + specs table (product/parts/fitting-awnings.php, specs-table.php) */
.detail-extra {
    margin-top: 1rem;
}

.detail-extra > .oz-fitting:first-child {
    margin-top: 0;
}

.oz-fitting,
.oz-specs {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin: 2.5rem 0 0;
    padding: 0;
}

.oz-fitting-title,
.oz-specs-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ink);
    margin: 0 0 1rem;
    letter-spacing: 0;
    text-transform: none;
}

.oz-fitting-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.oz-fitting-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.oz-fitting-card:hover {
    box-shadow: 0 10px 24px rgba(11, 27, 42, .1);
    transform: translateY(-2px);
}

.oz-fitting-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--surface);
    cursor: zoom-in;
    border: 0;
}

.oz-fitting-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.oz-fitting-card:hover .oz-fitting-media img {
    transform: scale(1.05);
}

.oz-fitting-body {
    padding: 1rem 1.1rem 1.2rem;
    border-top: 4px solid var(--oz-fit-accent, var(--blue));
    flex: 1;
}

.oz-fitting-card--ok   { --oz-fit-accent: #1f9d55; --oz-fit-soft: #e6f6ec; }
.oz-fitting-card--warn { --oz-fit-accent: #d98a00; --oz-fit-soft: #fff4de; }
.oz-fitting-card--no   { --oz-fit-accent: #c8372d; --oz-fit-soft: #fdeceb; }

.oz-fitting-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--oz-fit-accent);
    background: var(--oz-fit-soft);
    border-radius: 999px;
    padding: .2rem .65rem;
    margin-bottom: .6rem;
}

.oz-fitting-body h4 {
    font-size: 1rem;
    line-height: 1.35;
    color: var(--ink);
    margin: 0 0 .45rem;
    letter-spacing: 0;
    text-transform: none;
}

.oz-fitting-body h4:last-child {
    margin-bottom: 0;
}

.oz-fitting-body p {
    text-align: left;
    font-size: .88rem;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}

.oz-specs .table-wrapper {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.oz-specs-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .9rem;
}

.oz-specs-table th,
.oz-specs-table td {
    padding: .7rem 1rem;
    border: 0;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.oz-specs-table thead th {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    border-bottom-color: rgba(255, 255, 255, .12);
}

.oz-specs-table thead th.oz-specs-group {
    font-family: var(--font-display);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
}

.oz-specs-table tbody tr,
.oz-specs-table tbody tr:nth-child(2n + 1) {
    background: var(--white);
}

.oz-specs-table tbody tr:nth-child(2n) {
    background: var(--band);
}

.oz-specs-table tbody tr:hover {
    background: var(--sky);
}

.oz-specs-table tbody td:first-child {
    font-weight: 600;
    color: var(--ink);
    min-width: 14rem;
}

.oz-specs-table tbody td:first-child small {
    display: block;
    margin-top: .35rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.5;
}

.oz-specs-table tbody td:not(:first-child) {
    text-align: center;
    white-space: nowrap;
    color: var(--ink-soft);
}

/* the viewed product's column */
.oz-specs--col-2 thead tr:last-child th:nth-child(2),
.oz-specs--col-3 thead tr:last-child th:nth-child(3),
.oz-specs--col-4 thead tr:last-child th:nth-child(4) {
    background: var(--blue);
}

.oz-specs--col-2 tbody td:nth-child(2),
.oz-specs--col-3 tbody td:nth-child(3),
.oz-specs--col-4 tbody td:nth-child(4) {
    background: rgba(8, 113, 191, .07);
    font-weight: 600;
    color: var(--ink);
}

.oz-specs .oz-specs-table tfoot td {
    text-align: center;
    background: var(--surface);
    color: var(--muted);
    border-bottom: 0;
    padding: .9rem 1rem;
}

@media screen and (max-width: 980px) {
    .oz-fitting-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .oz-fitting-grid {
        grid-template-columns: 1fr;
    }

    .oz-fitting-media {
        aspect-ratio: 16 / 9;
    }

    .oz-specs-table th,
    .oz-specs-table td {
        padding: .6rem .7rem;
    }

    .oz-specs-table tbody td:first-child {
        min-width: 11rem;
    }
}

/* Comments for this file live in .claude/comment.md -- moved there so they
   stop shipping to every visitor. Search it for the selector you are about
   to change; several of these decisions were reverted once already. */
.page-shell > .inner {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.page-shell {
    padding-bottom: 78px;
}

.page-shell > .inner > h2:first-child,
.page-shell > .inner > *:first-child > h2:first-child {
    margin: 0 0 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(27px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
    color: var(--ink);
    text-transform: none;
}

.page-shell h2,
.page-shell h3,
.page-shell h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--ink);
    text-transform: none;
}

.page-shell h2 {
    margin: 46px 0 14px;
    font-size: clamp(21px, 2.2vw, 27px);
    line-height: 1.2;
}

.page-shell h3 {
    margin: 34px 0 12px;
    font-size: 17px;
    line-height: 1.35;
}

.page-shell h4 {
    margin: 26px 0 10px;
    font-size: 15px;
}

.page-shell p,
.page-shell li {

    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.78;
}

.page-shell p,
.page-shell h2,
.page-shell h3,
.page-shell h4,
.page-shell hr,
.page-shell ul,
.page-shell ol,
.page-shell blockquote,
.page-shell .installation-disclaimer,
.page-shell .curved,
.page-shell .install-guides {

    margin-left: auto;
    margin-right: auto;
}

.page-shell p {
    margin: 0 0 1.2em;
}

.page-shell ul,
.page-shell ol {
    margin: 0 0 1.4em;
    padding-left: 1.4em;
}

.page-shell li {
    margin-bottom: .55em;
}

.page-shell a {
    color: var(--blue);
}

.page-shell strong {
    color: var(--ink);
    font-weight: 700;
}

.page-shell .image,
.page-shell span.image {
    display: block;
    max-width: 820px;
    margin: 22px 0 30px;
}

.page-shell .image img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
}

.page-shell .image a {
    display: block;
}

.page-shell .post .image,
.page-shell .posts .image {
    max-width: none;
    margin: 0;
}

.page-shell .post .image img,
.page-shell .posts .image img {
    border: 0;
    border-radius: 18px 18px 0 0;
    background: none;
}

.page-shell table {
    width: 100%;

    max-width: none;
    margin: 0 0 28px;
    background: none;
    border: 0;
    border-collapse: collapse;
    font-size: 14px;
}

.page-shell th,
.page-shell td {
    padding: 12px 16px 12px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    line-height: 1.55;
    vertical-align: top;
}

.page-shell thead th,
.page-shell tr:first-child th {
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.page-shell td {
    color: var(--ink);
    font-weight: 600;
}

.page-shell tr:last-child th,
.page-shell tr:last-child td {
    border-bottom: 0;
}

.page-shell#contact p,
.page-shell#contact li {
    max-width: none;
}

.page-shell#contact .image,
.page-shell#contact span.image {
    max-width: none;
    margin: 0;
}

@media screen and (max-width: 736px) {
    .page-shell {
        padding-bottom: 48px;
    }

    .page-shell > .inner > h2:first-child,
    .page-shell > .inner > *:first-child > h2:first-child {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .page-shell h2 {
        margin-top: 34px;
    }
}

.page-shell #policies .row {
    display: block;
    margin: 0;
}

.page-shell #policies .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding-left: 0;
    padding-right: 0;
}

.page-shell #policies .row > [class*="col-"] + [class*="col-"] {
    margin-top: 1.75em;
    padding-top: 1.75em;
    border-top: 1px solid var(--line);
}

.page-shell #policies p {
    line-height: 1.6;
}

.page-shell #policies p strong {
    display: inline-block;
    margin-bottom: .15em;
}

.page-shell table.alt thead th:not(:first-child),
.page-shell table.alt tbody td:not(:first-child) {
    text-align: center;
}

.page-shell b {
    font-weight: 700;
    color: var(--ink);
}

.page-shell small {
    color: var(--ink-soft);
}

.install-guides {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.08);
    padding: 1.5em;
    margin: 0 0 2em;
}

.install-guides h3 {
    margin: 0 0 .4em;
    color: #0a1928;
    font-size: 1.2em;
    line-height: 1.3;
    font-weight: 700;
}

.install-guides > p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 1em;
}

.page-shell .install-guides ul {
    max-width: none;
}

.install-guides ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.install-guides li {
    margin: 0;
    padding: 0;
}

.install-guides li::before {
    content: none;
}

.install-guides a {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: .7em 1em;
    text-decoration: none;
    color: #0a1928;
    line-height: 1.3;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.install-guides a:hover {
    border-color: #1976d2;
    box-shadow: 0 5px 18px rgba(15,34,49,.10);
    transform: translateY(-1px);
}

.install-guides a i {
    color: #1976d2;
}

@media screen and (max-width: 736px) {
    .install-guides a {
        width: 100%;
    }
}

.downloads-list {
    list-style: none;
    margin: 0 0 2em;
    padding: 0;
}

.downloads-list li {
    margin: 0 0 10px;
    padding: 0;
}

.downloads-list li::before {
    content: none;
}

.downloads-list a {
    display: flex;
    align-items: flex-start;
    gap: .85em;
    background: #fff;
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 12px;
    padding: .9em 1.1em;
    text-decoration: none;
    color: var(--ink, #0a1928);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.downloads-list a:hover {
    border-color: var(--blue, #1976d2);
    box-shadow: 0 5px 18px rgba(15,34,49,.10);
    transform: translateY(-1px);
}

.downloads-list a i {
    color: var(--blue, #1976d2);
    font-size: 1.15em;
    line-height: 1.5;
    flex: none;
}

.downloads-item-text {
    display: flex;
    flex-direction: column;
    gap: .15em;
}

.downloads-item-text strong {
    font-weight: 700;
    line-height: 1.35;
}

.downloads-item-text small {
    color: var(--ink-soft, #555);
    font-size: 13.5px;
    line-height: 1.55;
}

.returns-qr-card {
    background: #fff;
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.08);
    padding: 1.5em;
    margin: 0 0 2em;
}

.returns-qr-card h3 {
    margin: 0 0 .4em;
    color: var(--ink, #0a1928);
    font-size: 1.2em;
    line-height: 1.3;
    font-weight: 700;
}

.returns-qr-card > p {
    color: var(--ink-soft, #555);
    line-height: 1.6;
    margin: 0 0 1.1em;
}

.returns-qr-card a {
    display: block;
    border: 1px solid var(--line, #e5e7eb);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.returns-qr-card a:hover {
    border-color: var(--blue, #1976d2);
    box-shadow: 0 5px 18px rgba(15,34,49,.10);
    transform: translateY(-1px);
}

.returns-qr-card img {
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

