@charset "UTF-8";
nav {
  box-shadow: var(--box-shadow);
}
nav ul {
  list-style-type: none;
  padding: 0;
}
nav a {
  color: var(--color-link);
}
nav a.active, nav a:has(+ ul a.active) {
  color: var(--color-text);
}
nav .nav-thumbnails a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
nav .nav-thumbnails .image-wrapper {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}
nav .nav-thumbnails .image-wrapper picture,
nav .nav-thumbnails .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
nav .nav-thumbnails span {
  flex: 1;
}
@media screen and (max-width: 650px) {
  nav .nav-thumbnails .image-wrapper {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  html:has(body.sticky-mobile-nav) {
    scroll-padding-top: 5rem;
  }
  body.sticky-mobile-nav {
    padding-top: 5rem;
  }
  body.sticky-mobile-nav nav {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-bg);
    padding: 0.5rem;
    height: 3rem;
  }
  body.sticky-mobile-nav nav .toggle {
    display: none;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ ul {
    right: 0;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ .toggle-label span {
    background: transparent;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ .toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }
  body.sticky-mobile-nav nav .toggle:checked ~ .toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
  body.sticky-mobile-nav nav .toggle-label {
    display: block !important;
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 1000;
    height: 24px;
    width: 30px;
    cursor: pointer;
  }
  body.sticky-mobile-nav nav .toggle-label span,
  body.sticky-mobile-nav nav .toggle-label span::before,
  body.sticky-mobile-nav nav .toggle-label span::after {
    display: block;
    background: var(--color-text);
    height: 2px;
    width: 30px;
    position: absolute;
    transition: all 0.3s ease;
  }
  body.sticky-mobile-nav nav .toggle-label span {
    top: 11px;
  }
  body.sticky-mobile-nav nav .toggle-label span::before, body.sticky-mobile-nav nav .toggle-label span::after {
    content: "";
  }
  body.sticky-mobile-nav nav .toggle-label span::before {
    top: -8px;
  }
  body.sticky-mobile-nav nav .toggle-label span::after {
    top: 8px;
  }
  body.sticky-mobile-nav nav > ul {
    position: fixed;
    background: var(--color-bg);
    top: 3rem;
    right: -100%; /* Start off-screen */
    bottom: 0;
    width: 70%;
    overflow-x: scroll;
    max-width: 300px;
    flex-direction: column;
    padding: 1rem;
    transition: right 0.3s ease-in-out;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body.sticky-mobile-nav nav > ul .toggle-label {
    display: block;
  }
  body.sticky-mobile-nav nav > ul li {
    text-align: right;
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body.sticky-mobile-nav nav > ul li ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul {
    padding-right: 3rem;
  }
  body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul li:has(> ul) {
    position: relative;
  }
  body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul li:has(> ul) > .mobile-menu-toggle {
    position: absolute;
    right: -2.5rem;
    top: 1rem;
    width: 2.5rem;
    height: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul li:has(> ul) > .mobile-menu-toggle::after {
    content: "";
    border: solid var(--color-link);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }
  body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul li:has(> ul).expanded > .mobile-menu-toggle::after {
    transform: rotate(-135deg);
  }
  body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul li:has(> ul) > ul {
    display: none;
  }
  body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul li:has(> ul).expanded > ul, body.sticky-mobile-nav nav:has(.mobile-menu-toggle) > ul li:has(> ul):has(> ul a.active) > ul {
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  .toggle-label {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  body.left-nav nav {
    align-items: start;
    margin-bottom: 1rem;
  }
  body.left-nav nav ul {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  body.left-nav nav ul,
  body.left-nav nav ul li {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  body.left-nav nav ul li ul {
    padding-left: 1rem;
    font-size: 1rem;
  }
  body.horizontal-nav nav {
    margin-bottom: 1rem;
    justify-content: center;
  }
  body.horizontal-nav nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0 2rem;
    flex-wrap: wrap;
  }
  body.horizontal-nav nav ul li {
    text-align: left;
    position: relative;
    /* First-level dropdown - only direct child ul */
  }
  body.horizontal-nav nav ul li > ul {
    flex-direction: column;
    gap: 0.5rem;
    background: var(--color-bg);
    border: var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: none;
    height: auto;
    left: -2px;
    padding: 0.5rem;
    position: absolute;
    top: 1.7rem;
    white-space: nowrap;
    width: auto;
    z-index: 1;
    box-shadow: none;
  }
  body.horizontal-nav nav ul li > ul::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.5rem;
    height: 0.5rem;
  }
  body.horizontal-nav nav ul li > ul {
    /* Second-level dropdown - positioned to the right */
  }
  body.horizontal-nav nav ul li > ul li {
    position: relative;
  }
  body.horizontal-nav nav ul li > ul li > ul {
    flex-direction: column;
    gap: 0.5rem;
    top: -0.5rem;
    left: 100%;
    margin-left: 0.5rem;
  }
  body.horizontal-nav nav ul li > ul li > ul::before {
    top: 0;
    bottom: 0;
    left: -0.5rem;
    right: auto;
    width: 0.5rem;
    height: auto;
  }
  body.horizontal-nav nav ul li > ul li:hover > ul {
    display: flex;
  }
  body.horizontal-nav nav ul li:hover > ul {
    display: flex;
  }
}
:root {
  --color-bg: #efefef;
  --color-text: #111111;
  --color-link: var(--color-text);
  --color-link-hover: var(--color-link);
  --color-accent: var(--color-bg);
  --color-error: #c00;
  --font-family-heading: system-ui, sans-serif;
  --font-family-body: system-ui, sans-serif;
  --line-height: 1.5;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
  --border-radius: 3px;
  --border-radius-small: 2px;
  --border: 2px solid var(--color-text);
  --box-shadow: none;
  --justify-normal: left;
  --justify-important: center;
  --width-content: 1300px;
  --width-card: 285px;
  --width-card-medium: 460px;
  --width-card-wide: 800px;
}

/* MVP.css v1.17.2 - https://github.com/andybrewer/mvp */
html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family-body);
  line-height: var(--line-height);
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

footer,
header,
main {
  margin: 0 auto;
  max-width: var(--width-content);
}

hr {
  background-color: var(--color-bg);
  border: none;
  height: 1px;
  margin: 2.5rem 0;
}

[hidden] {
  display: none;
}

/* Headers */
article header,
div header,
main header {
  padding-top: 0;
}

/* Typography */
code,
samp {
  background-color: var(--color-bg);
  border-radius: var(--border-radius);
  color: var(--color-text);
  display: inline-block;
  margin: 0 0.1rem;
  padding: 0 0.5rem;
}

details {
  margin: 1.5rem 0;
}
details summary {
  font-weight: bold;
  cursor: pointer;
  padding: 0.25rem 0;
}

pre {
  margin: 1rem 0;
  max-width: var(--width-card-wide);
  padding: 1rem 0;
}
pre code,
pre samp {
  display: block;
  max-width: var(--width-card-wide);
  padding: 0.5rem 2rem;
  white-space: pre-wrap;
}

sup {
  font-size: xx-small;
  font-weight: bold;
  margin: 0.2rem;
  padding: 0.2rem 0.3rem;
  position: relative;
  top: -2px;
}

a {
  color: var(--color-link);
  text-decoration: var(--link-decoration);
  text-decoration-style: var(--link-decoration-style);
}
a:hover, a:active {
  color: var(--color-link-hover);
  text-decoration: var(--link-decoration-hover);
}

button,
.button,
input[type=submit] {
  border-radius: var(--border-radius);
  font-family: var(--font-family-body);
  background-color: var(--color-bg);
  border: var(--border);
  color: var(--color-link);
  line-height: var(--line-height);
  display: inline-block;
  font-size: medium;
  font-weight: bold;
  margin: 0.5rem 0;
  width: fit-content;
  padding: 1rem 2rem;
  text-decoration: none;
  cursor: pointer;
}
button:hover, button:active,
.button:hover,
.button:active,
input[type=submit]:hover,
input[type=submit]:active {
  background-color: var(--color-bg);
  border: var(--border);
  color: var(--color-link-hover);
}
button:disabled,
.button:disabled,
input[type=submit]:disabled {
  background: var(--color-bg);
  border-color: var(--color-bg);
  cursor: not-allowed;
}

figure {
  margin: 0;
  padding: 0;
}
figure img {
  max-width: 100%;
}

form {
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: block;
  max-width: var(--width-card-wide);
  min-width: var(--width-card);
  padding: 1.25rem;
  text-align: var(--justify-normal);
  background: var(--color-bg);
  color: var(--color-text);
}
@media screen and (min-width: 651px) {
  form {
    padding: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  form {
    padding: 2rem;
  }
}
form header {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
}

input,
label,
select,
textarea {
  display: block;
  font-size: inherit;
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
}
input[type=checkbox] + label,
input[type=checkbox] + label,
input[type=radio] + label,
input[type=radio] + label {
  display: inline-block;
  font-weight: normal;
  position: relative;
  top: 1px;
}

input[type=range] {
  padding: 0.4rem 0;
}

input,
select,
textarea {
  border-radius: var(--border-radius);
  font-family: var(--font-family-body);
  margin-bottom: 1rem;
  padding: 0.6rem 0.8rem;
  background-color: var(--color-bg);
  color: var(--color-text);
  border: var(--border);
}

input[type=text],
input[type=password],
input[type=email],
textarea {
  width: calc(100% - 1.6rem);
}

input[readonly],
textarea[readonly] {
  background-color: var(--color-bg);
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

dialog {
  max-width: 90%;
  max-height: 85dvh;
  margin: auto;
  padding-block: 0;
  padding-inline: 20px;
  border: var(--border);
  border-radius: var(--border-radius);
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-color: transparent transparent;
  animation: bottom-to-top 0.25s ease-in-out forwards;
}
@media screen and (min-width: 651px) {
  dialog {
    max-width: 39rem;
  }
}
dialog hr {
  margin-block: 1rem;
}
dialog::-webkit-scrollbar {
  width: 0;
  display: none;
}
dialog::-webkit-scrollbar-track {
  background: transparent;
}
dialog::-webkit-scrollbar-thumb {
  background-color: transparent;
}
dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

@keyframes bottom-to-top {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.scrollable-table {
  overflow-x: auto;
  margin: 1.5rem auto;
  max-width: 100%;
}
.scrollable-table > table {
  margin: 0;
}

table {
  border: var(--border);
  border-radius: var(--border-radius);
  border-spacing: 0;
  margin: 1.5rem auto;
  max-width: 100%;
  padding: 0;
  white-space: nowrap;
}
table td,
table th,
table tr {
  padding: 0.6rem 1rem;
  text-align: var(--justify-important);
}
table thead {
  background-color: var(--color-bg);
  border-collapse: collapse;
  border-radius: var(--border-radius);
  margin: 0;
  padding: 0;
}
table thead tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius);
}
table thead tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius);
}
table thead th:first-child,
table tr td:first-child {
  text-align: var(--justify-normal);
}
table tr:nth-child(even) {
  background-color: var(--color-accent);
}

blockquote {
  display: block;
  font-size: x-large;
  line-height: var(--line-height);
  margin: 1.5rem auto;
  max-width: var(--width-card-medium);
  padding: 1.75rem 1.5rem;
  text-align: var(--justify-important);
}
blockquote footer {
  display: block;
  font-size: small;
  line-height: var(--line-height);
  padding: 1.5rem 0;
}
blockquote footer .reviewer-avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 1rem auto 0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-text) transparent;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-text);
  border-radius: 10px;
}

* {
  box-sizing: border-box;
}

body {
  padding: 0.5rem;
}
@media screen and (min-width: 651px) {
  body {
    padding: 0.75rem;
  }
}
@media screen and (min-width: 769px) {
  body {
    padding: 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
nav {
  font-family: var(--font-family-heading);
  font-weight: normal;
  line-height: var(--line-height);
  text-wrap: balance;
}
main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main nav {
  color: var(--color-text);
}
.headings-centered main h1,
.headings-centered main h2,
.headings-centered main h3,
.headings-centered main h4,
.headings-centered main h5,
.headings-centered main h6,
.headings-centered main nav {
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-top: 1.5rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

h4,
h5,
h6 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

header {
  background: var(--color-bg);
  border-radius: var(--border-radius);
  border: var(--border);
  box-shadow: var(--box-shadow);
  color: var(--color-text);
  text-align: var(--justify-important);
  width: var(--width-content);
  padding: 2rem 1rem;
  margin-top: 1rem;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  header .desktop-image {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  header .mobile-image {
    display: none;
  }
}
header h1 {
  z-index: 2;
  position: relative;
  font-family: var(--font-family-heading);
}
.header-centered header h1 {
  text-align: center;
}
.header-centered-dark header h1 {
  text-align: center;
  padding: 0.5rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  width: fit-content;
  margin: 0 auto;
  border: var(--border);
  border-color: var(--color-text);
}
header .banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
  max-width: none;
}
header .banner img {
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  background-size: cover !important;
  color: transparent;
  position: relative;
}
img.fade-in {
  animation: 0.1s linear fade-in 0s 1;
}

body > footer {
  background: var(--color-bg);
  border-radius: var(--border-radius);
  border: var(--border);
  width: var(--width-content);
  box-shadow: var(--box-shadow);
  max-width: 100%;
  margin-bottom: 1rem;
  text-align: center;
  padding: 1rem;
}
body > footer p {
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
body > footer .socials {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
body > footer .socials li {
  padding: 0;
}
body > footer .socials li a img {
  width: 3rem;
  height: auto;
  filter: invert(99%) sepia(47%) saturate(588%) hue-rotate(9deg) brightness(108%) contrast(95%);
  transition: all 0.3s ease-in-out;
}
body > footer .socials li a:hover img {
  transform: scale(120%);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  filter: invert(99%) sepia(47%) saturate(588%) hue-rotate(9deg) brightness(108%) contrast(95%) drop-shadow(0px 0px 3px #fff);
}

article {
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 2rem;
  background: var(--color-bg);
  border: var(--border);
  color: var(--color-text);
  box-shadow: var(--box-shadow);
}
@media screen and (min-width: 651px) {
  article {
    padding: 1.25rem;
  }
}
@media screen and (min-width: 769px) {
  article {
    padding: 1.5rem;
  }
}

nav {
  border-radius: var(--border-radius);
  border: var(--border);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 1rem 0.75rem;
  margin-bottom: 2rem;
  background: var(--color-bg);
  flex-wrap: wrap;
  font-size: 1.2rem;
  color: var(--color-text);
}
@media screen and (min-width: 651px) {
  nav {
    padding: 1.25rem 1rem;
  }
}
nav .toggle-label,
nav .toggle {
  display: none;
}
nav a {
  color: var(--color-link);
}
nav a.active {
  color: var(--color-text);
}

@media screen and (min-width: 769px) {
  body.left-nav.one-column main {
    grid-template-columns: 10rem 1fr;
    grid-template-areas: "nav content";
  }
}
@media screen and (min-width: 769px) and (min-width: 1001px) {
  body.left-nav.one-column main {
    grid-template-columns: 13rem 1fr;
  }
}
@media screen and (min-width: 769px) {
  body.left-nav.two-columns main {
    grid-template-columns: 10rem 1fr;
    grid-template-rows: 1fr min-content;
    grid-template-areas: "nav content" "nav right";
  }
}
@media screen and (min-width: 769px) and (min-width: 1001px) {
  body.left-nav.two-columns main {
    grid-template-columns: 13rem 1fr 16rem;
    grid-template-areas: "nav content right";
  }
}
@media screen and (min-width: 769px) {
  body.horizontal-nav.one-column main {
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    grid-template-areas: "nav" "content";
  }
  body.horizontal-nav.two-columns main {
    grid-template-columns: 1fr 16rem;
    grid-template-areas: "nav nav" "content right";
  }
  main {
    display: grid;
    gap: 0 1rem;
    min-height: 30rem;
    padding: 1rem 0 0;
  }
  main nav {
    border: var(--border);
    grid-area: nav;
  }
  main .content {
    grid-area: content;
    margin: 0 0 1rem;
    padding-bottom: 2rem;
  }
  main .right {
    grid-area: right;
    margin: 0 0 1rem;
  }
  main .right h3 {
    text-align: center;
  }
  main .right ul {
    list-style-type: none;
    padding: 0;
  }
}
.contact-form {
  max-width: var(--width-card-medium);
  margin: 4rem auto 0;
  padding: 1rem;
  min-width: min-content;
}
.contact-form input[type=text],
.contact-form input[type=password],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
}

.form-missing-notice {
  font-style: italic;
}

ul.items {
  display: flex;
  list-style-type: none;
  margin: 0 0 2rem;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
}
ul.items > * {
  width: 14rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}
ul.items > * > * {
  margin: 0;
}
ul.items h3,
ul.items p {
  margin-bottom: 0;
}
ul.items .image-link img {
  object-fit: cover;
}
ul.items ul.list-item-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.items ul.list-item-specs li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
  opacity: 0.7;
}
ul.items ul.list-item-specs li svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
ul.items ul.list-item-specs li span {
  white-space: nowrap;
}

a.image-link {
  display: block;
}

#item {
  display: grid;
  gap: 4rem;
  grid-template-areas: "title" "gallery" "description" "contact" "faqs";
}
#item .title {
  grid-area: title;
}
#item .title h1 {
  margin: 0;
  padding: 0;
}
#item .gallery {
  grid-area: gallery;
}
#item .description {
  grid-area: description;
}
#item .contact {
  grid-area: contact;
}
#item .contact .contact-form {
  margin-top: 0;
}
#item .faqs {
  grid-area: faqs;
}

@media screen and (min-width: 1001px) {
  body.one-column #item {
    gap: 2rem;
    grid-template-areas: "title title" "gallery description" "contact description" "faqs faqs";
    grid-template-columns: 300px 1fr;
    grid-template-rows: min-content min-content 1fr;
  }
}
@media screen and (min-width: 1201px) {
  body.two-columns #item {
    gap: 2rem;
    grid-template-areas: "title title" "gallery description" "contact description" "faqs faqs";
    grid-template-columns: 350px 1fr;
    grid-template-rows: min-content min-content 1fr;
  }
}
ul.image-gallery {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
ul.image-gallery li {
  width: calc((100% - 1rem) / 3);
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 769px) {
  ul.image-gallery li {
    width: calc((100% - 1.5rem) / 4);
  }
}
ul.image-gallery li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease-in;
}
ul.image-gallery li a img {
  object-fit: cover;
  transition: all 0.3s ease-in;
  border-radius: var(--border-radius-small);
}
ul.image-gallery li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 3px rgba(0, 0, 0, 0.2);
}
ul.image-gallery li a:hover img {
  transform: scale(1.2);
}
ul.image-gallery li figcaption {
  font-weight: bold;
  color: var(--color-bg);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--border-radius-small);
}

ul.team {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.team li {
  margin: 2rem 0;
  padding: 0;
}
ul.team li::after {
  content: "";
  display: block;
  clear: both;
}
ul.team li.has-image {
  padding-left: 11rem;
  min-height: 10rem;
  position: relative;
}
ul.team li.has-image .image-link {
  position: absolute;
  width: 10rem;
  left: 0;
  top: 0;
}

ul.news-posts {
  list-style-type: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (min-width: 651px) {
  ul.news-posts li {
    display: flex;
    gap: 1rem;
  }
  ul.news-posts li .thumbnail {
    flex-shrink: 0;
    width: 200px;
  }
  ul.news-posts li .details {
    flex: 1;
  }
}
@media screen and (min-width: 1001px) {
  ul.news-posts li .thumbnail {
    width: 300px;
  }
}

.post-meta {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--color-accent);
  border-radius: var(--border-radius);
  border: var(--border);
}
.post-meta address {
  font-style: normal;
  font-weight: bold;
}
.post-meta time {
  opacity: 0.8;
}
.post-meta figure a {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.post-meta figure img {
  display: block;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.post-meta.with-thumbnail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 651px) {
  .post-meta.with-thumbnail {
    grid-template-columns: 80px 1fr;
  }
}

dl dt {
  font-weight: bold;
}

body.team-member .content .image-wrapper {
  width: 50%;
  margin: 2rem auto;
}
body.item .current-image {
  margin-bottom: 1rem;
}
body.item .gallery-full-size-images {
  display: none;
}
body.page .content img,
body.page .content .image-wrapper {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 695px;
  height: auto;
}

main {
  width: var(--width-content);
  max-width: 100%;
}

.gallery-single-image {
  max-width: 100%;
  margin: 2rem 0;
}
.gallery-single-image figure {
  margin: 0;
}
.gallery-single-image img.full-size-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.gallery-single-image figcaption {
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

.gallery-navigation {
  margin: 2rem 0;
}
.gallery-navigation a {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 3px;
}
.gallery-navigation a:hover {
  text-decoration: underline;
}

.stripe-button {
  width: 288px;
  margin: 0 auto;
}

.purchase-button {
  margin: 2rem 0;
}
.purchase-button .button {
  margin: 0 auto;
}

#theme-switcher-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--color-bg);
  color: var(--color-text);
  border: var(--border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  padding: 0;
}
#theme-switcher-button:hover {
  transform: scale(1.1);
  border: var(--border);
}
#theme-switcher-button:active {
  transform: scale(0.95);
}
@media screen and (max-width: 768px) {
  #theme-switcher-button {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

.quote-checkout-summary,
.hire-dates-section {
  margin: 1.5rem 0;
  padding: 1rem;
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--color-accent);
}
.quote-checkout-summary h3,
.hire-dates-section h3 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}
@media screen and (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 650px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
body.item .reviews-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  body.item .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.reviews-grid > li {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--color-accent);
  border: var(--border);
  border-radius: var(--border-radius);
}
@media screen and (max-width: 650px) {
  .reviews-grid > li {
    text-align: center;
  }
}
.reviews-grid .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews-grid .rating {
  font-size: 1.25rem;
}
.reviews-grid .date {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-left: auto;
}
.reviews-grid .review {
  font-size: 1rem;
  line-height: var(--line-height);
}
.reviews-grid .products {
  flex: 1;
  font-size: 0.875rem;
  font-style: italic;
}
.reviews-grid .products a:hover {
  text-decoration: underline;
}
.reviews-grid .author-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: auto;
}
@media screen and (max-width: 650px) {
  .reviews-grid .author-info {
    flex-direction: column;
    align-items: center;
  }
}
.reviews-grid .author-info .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviews-grid .author-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.875rem;
}
.reviews-grid .name {
  font-weight: bold;
}
.reviews-grid .review-link {
  font-size: 0.875rem;
}

/**
 * Read More - CSS-only expandable content sections
 *
 * Uses the checkbox hack pattern for pure CSS toggling:
 * - Hidden checkbox inside the paragraph
 * - Label acts as the clickable trigger (inline with text)
 * - Sibling selectors show/hide content
 * - Label disappears when expanded (one-way toggle)
 *
 * Structure:
 * <p>Visible text <input><label>Read more…</label><span class="read-more-content">rest of line</span></p>
 * <div class="read-more-content">following paragraphs</div>
 */
.read-more-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.read-more-label {
  color: var(--color-link);
  cursor: pointer;
  text-decoration: var(--link-decoration);
  text-decoration-style: var(--link-decoration-style);
  font-weight: bold;
}
.read-more-label:hover, .read-more-label:focus {
  color: var(--color-link-hover);
  text-decoration: var(--link-decoration-hover);
}
.read-more-label:focus-visible {
  outline: 2px solid var(--color-link);
  outline-offset: 2px;
  border-radius: var(--border-radius-small);
}

.read-more-content {
  display: none;
}

.read-more-toggle:checked + .read-more-label {
  display: none;
}
.read-more-toggle:checked ~ .read-more-content {
  display: inline;
}

p:has(.read-more-toggle:checked) + .read-more-content {
  display: block;
}

img,
.image-wrapper {
  max-width: 100%;
  height: auto;
}

.image-wrapper {
  position: relative;
  display: block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.image-wrapper img {
  background-color: transparent;
}

.design-system {
  --bg: var(--color-bg, #fafafa);
  --bg-alt: var(--color-accent, #f3f4f6);
  --card-bg: var(--color-bg, #ffffff);
  --text: var(--color-text, #1f2937);
  --text-muted: #6b7280;
  --primary: var(--color-link, #2563eb);
  --primary-dark: var(--color-link-hover, #1d4ed8);
  --primary-light: #dbeafe;
  --secondary: var(--color-link, #7c3aed);
  --accent: var(--color-accent, #10b981);
  --hover-bg: rgba(0, 0, 0, 0.05);
  --font-sans: var(--font-family-body, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif);
  --font-heading: var(--font-family-heading, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif);
  --font-mono: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
}
.design-system *,
.design-system *::before,
.design-system *::after {
  box-sizing: border-box;
}
.design-system {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  .design-system {
    scroll-behavior: auto;
  }
}
.design-system {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.design-system h1,
.design-system h2,
.design-system h3,
.design-system h4,
.design-system h5,
.design-system h6 {
  margin: 0 0 24px;
  font-family: var(--font-heading, var(--font-sans));
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
.design-system h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .design-system h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1000px) {
  .design-system h1 {
    font-size: 4rem;
  }
}
.design-system h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .design-system h2 {
    font-size: 2.5rem;
  }
}
.design-system h2 {
  margin-bottom: 32px;
}
.design-system h3 {
  font-size: 1.5rem;
  line-height: 1.375;
  font-weight: 600;
}
@media (min-width: 768px) {
  .design-system h3 {
    font-size: 2rem;
  }
}
.design-system h4 {
  font-size: 1.25rem;
  line-height: 1.375;
  font-weight: 600;
}
.design-system p {
  margin: 0 0 24px;
  line-height: 1.625;
}
.design-system p:last-child {
  margin-bottom: 0;
}
.design-system a:not(.btn) {
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms ease;
}
.design-system a:not(.btn):hover {
  text-decoration: underline;
}
.design-system code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 0.2em 0.4em;
  background: var(--bg-alt);
  border-radius: 4px;
}
.design-system pre {
  margin: 32px 0;
  padding: 24px;
  background: #1f2937;
  color: #f9fafb;
  border-radius: 8px;
  overflow-x: auto;
}
.design-system pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.design-system img {
  max-width: 100%;
  height: auto;
  display: block;
}
.design-system ul,
.design-system ol {
  margin: 0 0 24px;
  padding-left: 32px;
}
.design-system li {
  margin-bottom: 8px;
}
.design-system [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.design-system [data-reveal=left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal=left].is-visible {
  opacity: 1;
  transform: translateX(0);
}
.design-system [data-reveal=right] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal=right].is-visible {
  opacity: 1;
  transform: translateX(0);
}
.design-system [data-reveal=scale] {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal=scale].is-visible {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .design-system [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.design-system .container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .design-system .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.design-system .container--narrow {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .design-system .container--narrow {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.design-system .container--default {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .design-system .container--default {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.design-system section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .design-system section {
    padding-top: 57.6px;
    padding-bottom: 57.6px;
  }
}
.design-system section.compact {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .design-system section.compact {
    padding-top: 38.4px;
    padding-bottom: 38.4px;
  }
}
.design-system section.alt {
  background: var(--bg-alt);
}
.design-system section.dark {
  background: #1f2937;
  color: #f9fafb;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --card-bg: #374151;
}
.design-system section.gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, #faf5ff 100%);
}
.design-system > .section-header {
  padding: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  text-align: center;
}
.design-system > .section-header h1, .design-system > .section-header h2, .design-system > .section-header h3, .design-system > .section-header h4, .design-system > .section-header h5, .design-system > .section-header h6 {
  margin-bottom: 16px;
}
.design-system > .section-header h1:last-child, .design-system > .section-header h2:last-child, .design-system > .section-header h3:last-child, .design-system > .section-header h4:last-child, .design-system > .section-header h5:last-child, .design-system > .section-header h6:last-child {
  margin-bottom: 0;
}
.design-system > .section-header p {
  margin-bottom: 0;
}
.design-system > .section-header.gradient h1, .design-system > .section-header.gradient h2, .design-system > .section-header.gradient h3, .design-system > .section-header.gradient h4, .design-system > .section-header.gradient h5, .design-system > .section-header.gradient h6 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.design-system > .section-header,
.design-system > .features,
.design-system > ul.features,
.design-system > .stats,
.design-system > dl.stats,
.design-system > .code-block,
.design-system > .split,
.design-system > .grid {
  margin-bottom: 64px;
}
.design-system > .section-header:last-child,
.design-system > .features:last-child,
.design-system > ul.features:last-child,
.design-system > .stats:last-child,
.design-system > dl.stats:last-child,
.design-system > .code-block:last-child,
.design-system > .split:last-child,
.design-system > .grid:last-child {
  margin-bottom: 0;
}
.design-system > .features + .section-header,
.design-system > ul.features + .section-header,
.design-system > .stats + .section-header,
.design-system > dl.stats + .section-header,
.design-system > .code-block + .section-header {
  margin-top: 48px;
}

.design-system:nth-child(odd) {
  background: var(--bg);
}

.design-system:nth-child(even) {
  background: var(--bg-alt);
}

.design-system ol.breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0 0 24px 0;
  padding: 16px 24px;
  gap: 8px;
  font-size: 0.875rem;
}
.design-system ol.breadcrumbs li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.design-system ol.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms ease;
}
.design-system ol.breadcrumbs a:hover {
  text-decoration: underline;
}
.design-system ol.breadcrumbs .separator {
  color: var(--text-muted);
}
.design-system ol.breadcrumbs span[aria-current] {
  color: var(--text);
  font-weight: 600;
}

.design-system .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn:focus {
  outline: none;
}
.design-system .btn:focus-visible {
  outline: 2px solid var(--primary, #2563eb);
  outline-offset: 2px;
}
.design-system .btn {
  text-decoration: none;
}
.design-system .btn:hover {
  text-decoration: none;
}
.design-system .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn--primary {
  background: var(--primary, #2563eb);
  color: #fff;
}
.design-system .btn--primary:hover:not(:disabled) {
  background: var(--primary-dark, #1d4ed8);
  transform: translateY(-1px);
}
.design-system .btn--primary:active:not(:disabled) {
  transform: translateY(0);
}
.design-system .btn--primary {
  color: #fff;
}
.design-system .btn--primary:hover {
  color: #fff;
  text-decoration: none;
}
.design-system .btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn--secondary {
  background: transparent;
  border-color: var(--primary, #2563eb);
  color: var(--primary, #2563eb);
}
.design-system .btn--secondary:hover:not(:disabled) {
  background: var(--primary, #2563eb);
  color: #fff;
}
.design-system .btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn--ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn--ghost {
  background: transparent;
  color: var(--text, #1f2937);
}
.design-system .btn--ghost:hover:not(:disabled) {
  background: var(--hover-bg, rgba(0, 0, 0, 0.05));
}
.design-system .btn--lg {
  padding: 24px 48px;
  font-size: 1.125rem;
}
.design-system .btn--sm {
  padding: 8px 24px;
  font-size: 0.875rem;
}

.design-system .hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 128px 24px;
}
@media (min-width: 769px) {
  .design-system .hero {
    min-height: 70vh;
    padding: 128px 32px;
  }
}
.design-system .hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
}
.design-system .hero .lead {
  font-size: 1.125rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .design-system .hero .lead {
    font-size: 1.25rem;
  }
}
.design-system .hero .lead {
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 48px;
}
.design-system .badge {
  font-size: 0.875rem;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 24px;
}
.design-system .actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.design-system ul.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.design-system ul.features > li {
  margin: 0;
  padding: 0;
}
.design-system div.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.design-system .feature {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  transition: transform 250ms ease, border-color 250ms ease;
}
.design-system .feature:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.2);
}
.design-system .feature {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 8px 24px;
  align-items: start;
}
.design-system .feature .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 8px;
  font-size: 1.25rem;
  grid-row: 1;
  grid-column: 1;
}
.design-system .feature h3,
.design-system .feature h4 {
  font-size: 1.25rem;
  line-height: 1.375;
  font-weight: 600;
  margin: 0;
  grid-row: 1;
  grid-column: 2;
  align-self: center;
}
.design-system .feature p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  grid-row: 2;
  grid-column: 1/-1;
}
.design-system .feature pre {
  margin: 0;
  grid-column: 1/-1;
}
.design-system .feature h3:first-child,
.design-system .feature h4:first-child {
  grid-column: 1/-1;
}

.design-system dl.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.design-system div.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}
.design-system .stat {
  text-align: center;
  min-width: 150px;
  padding: 8px 16px;
}
.design-system .stat dd {
  margin: 0;
}
.design-system .stat strong {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .design-system .stat strong {
    font-size: 4rem;
  }
}
.design-system .stat span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.design-system .cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: #fff;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
}
.design-system .cta h2 {
  margin-bottom: 16px;
}
.design-system .cta p {
  font-size: 1.125rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .design-system .cta p {
    font-size: 1.25rem;
  }
}
.design-system .cta p {
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 32px;
}
.design-system .cta .btn--secondary {
  border-color: #fff;
  color: #fff;
}
.design-system .cta .btn--secondary:hover {
  background: #fff;
  color: var(--primary);
}

.design-system .split {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 64px;
  align-items: start;
}
@media (min-width: 769px) {
  .design-system .split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
  }
}
@media (min-width: 769px) {
  .design-system .split--reverse > :first-child {
    order: 2;
  }
  .design-system .split--reverse > :last-child {
    order: 1;
  }
}
.design-system .split > figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.design-system .split > figure img {
  width: 100%;
  height: auto;
}
.design-system .split-full {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .design-system .split-full {
    flex-direction: row;
  }
}
.design-system .split-full__left,
.design-system .split-full__right {
  flex: 1;
  padding: 96px 24px;
  display: flex;
}
@media (min-width: 769px) {
  .design-system .split-full__left,
  .design-system .split-full__right {
    padding: 96px 32px;
  }
}
.design-system .split-full__left {
  background: var(--bg-alt);
  justify-content: flex-end;
}
.design-system .split-full__left > * {
  width: 100%;
  max-width: calc(1200px / 2);
}
@media (min-width: 769px) {
  .design-system .split-full__left > * {
    padding-right: 64px;
  }
}
.design-system .split-full__right {
  background: var(--card-bg);
  justify-content: flex-start;
}
.design-system .split-full__right > * {
  width: 100%;
  max-width: calc(1200px / 2);
}
@media (min-width: 769px) {
  .design-system .split-full__right > * {
    padding-left: 64px;
  }
}
.design-system .split-full--dark-left .split-full__left {
  background: #1f2937;
  color: #f9fafb;
  --text: #f9fafb;
  --text-muted: #9ca3af;
}
.design-system .split-full--dark-left .split-full__right {
  background: var(--bg);
}
.design-system .split-full--dark-right .split-full__left {
  background: var(--bg);
}
.design-system .split-full--dark-right .split-full__right {
  background: #1f2937;
  color: #f9fafb;
  --text: #f9fafb;
  --text-muted: #9ca3af;
}
.design-system .split-full--primary-left .split-full__left {
  background: var(--primary);
  color: #fff;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
}
.design-system .split-full--primary-right .split-full__right {
  background: var(--primary);
  color: #fff;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
}

.design-system .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 769px) {
  .design-system .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1001px) {
  .design-system .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.design-system .grid--2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 769px) {
  .design-system .grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
.design-system .grid--4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 769px) {
  .design-system .grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.design-system .slider-container {
  position: relative;
}
.design-system .slider-container:not(:has(.slider.overflowing)) .slider-nav {
  display: none;
}
.design-system .slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--text-muted) transparent;
}
.design-system .slider::-webkit-scrollbar {
  height: 6px;
}
.design-system .slider::-webkit-scrollbar-track {
  background: transparent;
}
.design-system .slider::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 9999px;
}
@media (prefers-reduced-motion: reduce) {
  .design-system .slider {
    scroll-behavior: auto;
  }
}
.design-system .slider > * {
  flex-shrink: 0;
  scroll-snap-align: start;
}
.design-system .slider > .feature,
.design-system .slider > article,
.design-system .slider > li {
  width: 300px;
}
@media (min-width: 769px) {
  .design-system .slider > .feature,
  .design-system .slider > article,
  .design-system .slider > li {
    width: 340px;
  }
}
.design-system .slider-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.design-system .slider-prev,
.design-system .slider-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .slider-prev:disabled,
.design-system .slider-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .slider-prev:focus,
.design-system .slider-next:focus {
  outline: none;
}
.design-system .slider-prev:focus-visible,
.design-system .slider-next:focus-visible {
  outline: 2px solid var(--primary, #2563eb);
  outline-offset: 2px;
}
.design-system .slider-prev,
.design-system .slider-next {
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--card-bg);
  border: 1px solid var(--bg-alt);
  border-radius: 9999px;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .slider-prev:hover:not([disabled]),
.design-system .slider-next:hover:not([disabled]) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.design-system .slider-prev[disabled],
.design-system .slider-next[disabled] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.design-system .dark .slider-prev,
.design-system .dark .slider-next {
  background: var(--card-bg);
  border-color: #4b5563;
  color: #f9fafb;
}
.design-system .dark .slider-prev:hover:not([disabled]),
.design-system .dark .slider-next:hover:not([disabled]) {
  background: var(--primary);
  border-color: var(--primary);
}

.design-system ul.items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  gap: 32px;
}
.design-system ul.items:not(.slider) > li {
  flex: 1 1 280px;
  max-width: 100%;
}
@media (min-width: 769px) {
  .design-system ul.items:not(.slider) > li {
    max-width: calc(50% - 16px);
  }
}
@media (min-width: 1001px) {
  .design-system ul.items:not(.slider) > li {
    max-width: calc(33.333% - 21.3333333333px);
  }
}
.design-system ul.items.slider {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--text-muted) transparent;
}
@media (prefers-reduced-motion: reduce) {
  .design-system ul.items.slider {
    scroll-behavior: auto;
  }
}
.design-system ul.items.slider > li {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 280px;
}
@media (min-width: 769px) {
  .design-system ul.items.slider > li {
    width: 320px;
  }
}
.design-system ul.items > li {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  transition: transform 250ms ease, border-color 250ms ease;
}
.design-system ul.items > li:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.2);
}
.design-system ul.items > li {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.design-system ul.items > li .image-link {
  display: block;
  overflow: hidden;
}
.design-system ul.items > li .image-link .image-wrapper {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.design-system ul.items > li .image-link .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  background-color: transparent;
}
.design-system ul.items > li .image-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 150ms ease;
}
.design-system ul.items > li .image-link:hover img {
  transform: scale(1.05);
}
.design-system ul.items > li h3 {
  font-size: 1.25rem;
  line-height: 1.375;
  font-weight: 600;
  margin: 0;
  padding: 24px 24px 0;
}
.design-system ul.items > li h3 a {
  color: var(--text);
  text-decoration: none;
}
.design-system ul.items > li h3 a:hover {
  color: var(--primary);
}
.design-system ul.items > li .price {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--primary);
  margin: 8px 0 0;
  padding: 0 24px 24px;
}
.design-system ul.items > li p:not(.price) {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 8px 0 0;
  padding: 0 24px 24px;
}
.design-system ul.items > li ul.list-item-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 24px 24px;
  margin-top: auto;
  list-style: none;
}
.design-system ul.items > li ul.list-item-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.design-system ul.items > li ul.list-item-specs li svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.design-system ul.items > li ul.list-item-specs li span {
  white-space: nowrap;
}
.design-system ul.items > li .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.design-system ul.items > li .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.design-system ul.items > li .video-facade {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.design-system ul.items > li .video-facade .image-wrapper {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.design-system ul.items > li .video-facade .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  background-color: transparent;
}
.design-system ul.items > li .video-facade .image-wrapper {
  aspect-ratio: 16/9;
}
.design-system ul.items > li .video-facade .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 150ms ease;
}
.design-system ul.items > li .video-facade:hover .image-wrapper img {
  transform: scale(1.05);
}
.design-system ul.items > li .video-facade .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 150ms ease, opacity 150ms ease;
}
.design-system ul.items > li .video-facade .video-play-button svg {
  display: block;
}
.design-system ul.items > li .video-facade .video-play-button .video-play-bg {
  fill: #212121;
  fill-opacity: 0.8;
}
.design-system ul.items > li .video-facade .video-play-button .video-play-icon {
  fill: #fff;
}
.design-system ul.items > li .video-facade:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.1);
}
.design-system ul.items > li .video-facade:hover .video-play-button .video-play-bg {
  fill: #f00;
  fill-opacity: 1;
}
.design-system ul.items.video-cards > li:hover {
  transform: none;
}

.design-system .reviews-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 769px) {
  .design-system .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1001px) {
  .design-system .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
body.item .design-system .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  body.item .design-system .reviews-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
.design-system .reviews-grid > li {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .design-system .reviews-grid > li {
    text-align: center;
  }
}
.design-system .reviews-grid .review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.design-system .reviews-grid .rating {
  font-size: 1.25rem;
}
.design-system .reviews-grid .date {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-left: auto;
}
.design-system .reviews-grid .review {
  font-size: 1rem;
  line-height: 1.5;
  line-height: 1.625;
}
.design-system .reviews-grid .products {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-muted);
}
.design-system .reviews-grid .products a {
  color: var(--primary);
  text-decoration: none;
}
.design-system .reviews-grid .products a:hover {
  text-decoration: underline;
}
.design-system .reviews-grid .author-info {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: auto;
}
@media (max-width: 768px) {
  .design-system .reviews-grid .author-info {
    flex-direction: column;
    align-items: center;
  }
}
.design-system .reviews-grid .author-info .reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}
.design-system .reviews-grid .author-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  justify-content: flex-start;
  font-size: 0.875rem;
}
.design-system .reviews-grid .name {
  font-weight: 600;
  color: var(--text);
}
.design-system .reviews-grid .review-link {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--primary);
  text-decoration: none;
}
.design-system .reviews-grid .review-link:hover {
  text-decoration: underline;
}

.design-system .code-block {
  position: relative;
}
.design-system .code-block .code-block-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #374151;
  border-radius: 8px 8px 0 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.design-system .code-block .dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.design-system .code-block .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.design-system .code-block .dots span:nth-child(1) {
  background: #ef4444;
}
.design-system .code-block .dots span:nth-child(2) {
  background: #f59e0b;
}
.design-system .code-block .dots span:nth-child(3) {
  background: #10b981;
}
.design-system .code-block pre {
  margin: 0;
  padding: 24px;
  background: #1f2937;
  border-radius: 0 0 8px 8px;
  color: #e5e7eb;
}
.design-system .code-block pre code {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #e5e7eb;
  background: none;
  white-space: pre-wrap;
  word-break: break-word;
}

.design-system footer.site-footer {
  padding: 64px 0;
  background: #1f2937;
  color: #9ca3af;
}
.design-system footer.site-footer a {
  color: #d1d5db;
}
.design-system footer.site-footer a:hover {
  color: #fff;
}
.design-system footer.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
@media (min-width: 769px) {
  .design-system footer.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    text-align: left;
  }
}
.design-system footer.site-footer nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 769px) {
  .design-system footer.site-footer nav {
    justify-content: flex-start;
  }
}

.design-system .text-center {
  text-align: center;
}
.design-system .text-muted {
  color: var(--text-muted);
}
.design-system .text-primary {
  color: var(--primary);
}
.design-system .mt-0 {
  margin-top: 0;
}
.design-system .mb-0 {
  margin-bottom: 0;
}
.design-system .mt-lg {
  margin-top: 32px;
}
.design-system .mb-lg {
  margin-bottom: 32px;
}
.design-system .mt-xl {
  margin-top: 48px;
}
.design-system .mb-xl {
  margin-bottom: 48px;
}
.design-system .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.map-embed {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin: 2rem 0;
}
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.items > li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.items > li.scroll-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (prefers-reduced-motion: reduce) {
  .items > li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.cart-icon {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  margin: 0;
  cursor: pointer;
  display: flex;
  z-index: 999;
  border-radius: var(--border-radius);
  gap: 0.5rem;
}
.cart-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.cart-icon .cart-count {
  font-size: 0.75rem;
  height: 1.25rem;
}

@keyframes cartBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
.cart-icon.cart-bounce {
  animation: cartBounce 0.6s ease;
}

dialog.cart-overlay {
  background: var(--color-bg);
  color: var(--color-text);
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 40rem;
  width: calc(100% - 2rem);
  max-height: 90vh;
  padding: 0;
  margin: auto;
}
dialog.cart-overlay[open] {
  display: flex;
  flex-direction: column;
}
dialog.cart-overlay::backdrop {
  background: rgba(0, 0, 0, 0.85);
}
dialog.cart-overlay > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--border);
}
dialog.cart-overlay > header h2 {
  margin: 0;
}
dialog.cart-overlay > header form {
  display: contents;
}
dialog.cart-overlay > header .close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 2rem;
  height: 2rem;
}
dialog.cart-overlay > header {
  padding: 2rem 1rem;
  border: 0;
  margin: 0;
  box-shadow: none;
}

html:has(dialog.cart-overlay[open]) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  min-height: 15rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  border: var(--border);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 769px) {
  .cart-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cart-item-info {
  flex: 1;
}
.cart-item-info .cart-item-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.cart-item-controls {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.cart-item-remove {
  margin: 0;
  padding: 0.5rem 1rem;
}

.cart-footer {
  padding: 1.5rem;
  border-top: var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
}

.cart-checkout-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-checkout {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.cart-checkout .payment-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.cart-checkout-paypal {
  background-color: #0070ba;
  border-color: #0070ba;
  color: #fff;
}
.cart-checkout-paypal:hover:not(:disabled) {
  background-color: #005ea6;
  border-color: #005ea6;
}
.cart-checkout-paypal:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cart-checkout-stripe {
  background-color: #635bff;
  border-color: #635bff;
  color: #fff;
}
.cart-checkout-stripe:hover:not(:disabled) {
  background-color: #4f46e5;
  border-color: #4f46e5;
}
.cart-checkout-stripe:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  .cart-icon {
    bottom: 1rem;
    left: 1rem;
  }
  dialog.cart-overlay {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  dialog.cart-overlay > header {
    padding: 1rem;
  }
  .cart-body,
  .cart-footer {
    padding: 1rem;
  }
}
.list-item-cart-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
  margin-top: auto;
}
@media screen and (min-width: 651px) {
  .list-item-cart-controls {
    flex-direction: row;
    align-items: center;
  }
}

.item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
}
.item-quantity button,
.item-quantity input {
  height: 2.25rem;
  margin: 0;
}
.item-quantity .quantity-decrease {
  padding: 0.25rem 0.5rem;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.item-quantity .quantity-input {
  width: 3rem;
  border-radius: 0;
  text-align: center;
}
.item-quantity .quantity-input::-webkit-inner-spin-button, .item-quantity .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.item-quantity .quantity-input {
  -moz-appearance: textfield;
}
.item-quantity .quantity-increase {
  padding: 0.25rem 0.5rem;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.quote-cart-empty {
  text-align: center;
  padding: 2rem 1rem;
  border: var(--border);
  border-radius: var(--border-radius);
}

.quote-cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.quote-cart-items:not(:empty) {
  animation: slideInFade 0.4s ease-out forwards;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 2000px;
  }
}
.quote-cart-item {
  border: var(--border);
  border-radius: var(--border-radius);
  padding: 1rem;
}
.quote-cart-item > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 651px) {
  .quote-cart-item > ul {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.quote-cart-item .quote-cart-item-info {
  display: flex;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
  font-weight: bold;
}
@media screen and (min-width: 651px) {
  .quote-cart-item .quote-cart-item-info {
    flex: 1;
    min-width: 0;
  }
}
.quote-cart-item .quote-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0;
}
.quote-cart-item .quote-cart-item-actions button {
  margin: 0;
  height: 2.5rem;
}
.quote-cart-item .quote-cart-item-actions .quantity-decrease {
  padding: 0.25rem 0.75rem;
  width: 2rem;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.quote-cart-item .quote-cart-item-actions .quantity-increase {
  padding: 0.25rem 0.75rem;
  width: 2rem;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.quote-cart-item .quote-cart-item-actions input[type=number] {
  width: 3rem;
  height: 2.5rem;
  margin: 0;
  border-radius: 0;
  text-align: center;
}
.quote-cart-item .quote-cart-item-actions input[type=number]::-webkit-inner-spin-button, .quote-cart-item .quote-cart-item-actions input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quote-cart-item .quote-cart-item-actions input[type=number] {
  -moz-appearance: textfield;
}
.quote-cart-item .quote-cart-item-actions button[data-action=remove] {
  margin-left: 0.75rem;
  padding: 0 1rem;
}
.quote-cart-item .quote-cart-item-specs {
  font-size: 0.9em;
  color: var(--color-text);
  opacity: 0.8;
}
@media screen and (min-width: 651px) {
  .quote-cart-item .quote-cart-item-specs {
    flex-basis: 100%;
  }
}
.quote-cart-item .quote-cart-item-subtitle {
  width: 100%;
}

.quote-cart-actions {
  margin-top: 1.5rem;
  text-align: center;
  animation: slideInFade 0.4s ease-out forwards;
  justify-content: end;
}

.quote-checkout-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-checkout-item {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: var(--border);
}
.quote-checkout-item:last-child {
  border-bottom: none;
}

.quote-checkout-item-name {
  flex: 1;
}

.quote-checkout-item-qty {
  color: var(--color-text);
  opacity: 0.6;
}

.quote-checkout-item-price {
  font-weight: bold;
}

.quote-price {
  list-style: none;
  padding: 1rem;
  margin: 1rem 0;
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--color-accent);
}
.quote-price > li {
  padding: 0.25rem 0;
}
.quote-price ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}
.quote-price ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
}

@media screen and (min-width: 769px) {
  body.one-column .quote-layout {
    display: grid;
    grid-template-areas: "progress progress" "main sidebar";
    grid-template-columns: 1fr min-content;
    gap: 2rem;
  }
  body.one-column .quote-layout .quote-steps-progress {
    grid-area: progress;
  }
  body.one-column .quote-layout .quote-main,
  body.one-column .quote-layout .quote-steps,
  body.one-column .quote-layout .contact-form {
    margin: 0;
    grid-area: main;
    max-width: 100%;
    width: 100%;
  }
  body.one-column .quote-layout .quote-sidebar {
    grid-area: sidebar;
  }
  body.one-column .quote-main,
  body.one-column .quote-layout > form {
    flex: 1;
    min-width: 0;
  }
  body.one-column .quote-sidebar {
    width: 16rem;
    flex-shrink: 0;
    position: sticky;
    top: 1rem;
  }
  body.one-column .quote-sidebar .quote-price {
    margin-top: 0;
  }
}

.hire-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--color-accent);
}

.hire-dates-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hire-dates-fields label {
  flex: 1;
  min-width: 10rem;
}
.hire-dates-fields input[type=date] {
  width: 100%;
  margin-top: 0.25rem;
}

.hire-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: var(--border);
  font-weight: bold;
}

@media screen and (max-width: 650px) {
  .hire-dates-fields {
    flex-direction: column;
  }
}
.quote-steps {
  max-width: var(--width-card-wide);
}

.quote-steps-progress {
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.quote-steps-progress ul {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.quote-steps-progress li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
.quote-steps-progress li [data-name=name] {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  text-align: center;
  max-width: 5rem;
  line-height: 1.2;
  order: -1;
}
.quote-steps-progress li [data-name=index] {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: var(--border);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1;
  transition: all 0.2s ease;
}
.quote-steps-progress li[aria-current=step] [data-name=name] {
  opacity: 1;
  font-weight: bold;
}
.quote-steps-progress li[aria-current=step] [data-name=index] {
  background: var(--color-text);
  color: var(--color-bg);
}
.quote-steps-progress li.completed {
  cursor: pointer;
}
.quote-steps-progress li.completed [data-name=index] {
  background: var(--color-accent);
}
.quote-steps-progress li.completed:hover {
  opacity: 0.8;
}

.quote-step {
  display: none;
}
.quote-step.active {
  display: block;
}

.quote-step-title {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
}

.quote-step-body {
  margin: -1rem 0 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.quote-step-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
.quote-step-fields > * {
  width: 100%;
}
@media screen and (min-width: 651px) {
  .quote-step-fields > .field-half {
    width: calc(50% - 0.5rem);
  }
}

.quote-steps-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: var(--border);
}
.quote-steps-nav .button {
  width: 100%;
}
@media screen and (min-width: 651px) {
  .quote-steps-nav {
    flex-direction: row;
  }
  .quote-steps-nav .button {
    width: auto;
  }
  .quote-steps-nav .quote-step-back-to-items,
  .quote-steps-nav .quote-step-prev {
    order: 1;
  }
  .quote-steps-nav .quote-step-next,
  .quote-steps-nav .quote-step-submit {
    order: 2;
    margin-left: auto;
  }
}

.quote-recap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-recap-section {
  padding: 1rem;
  border: var(--border);
  border-radius: var(--border-radius);
  background: var(--color-accent);
}
.quote-recap-section h4 {
  margin: 0 0 1rem;
}

.quote-recap-list {
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.quote-recap-list dt {
  font-weight: bold;
  margin-top: 0.5rem;
}
.quote-recap-list dt:first-child {
  margin-top: 0;
}
.quote-recap-list dd {
  margin: 0;
}

.radio-group {
  border: none;
  padding: 0;
  margin: 0 0 1rem;
}
.radio-group legend {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.radio-option input[type=radio] {
  margin: 0;
}
.radio-option label {
  margin: 0;
  font-weight: normal;
}

.quote-step select {
  width: 100%;
}

.field-error:is(input, select, textarea) {
  border-color: var(--color-error);
  outline: 2px solid var(--color-error);
  outline-offset: -2px;
}
.field-error:is(label, fieldset) {
  color: var(--color-error);
}

ul.items.slider {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}
@media screen and (prefers-reduced-motion: reduce) {
  ul.items.slider {
    scroll-behavior: auto;
  }
}
ul.items.slider > * {
  flex-shrink: 0;
  scroll-snap-align: start;
}

.slider-container:not(:has(.slider:is(.overflowing))) .slider-nav {
  display: none;
}

.slider-nav {
  text-align: center;
  margin: 0.5rem 0 0;
}
.slider-nav a {
  cursor: pointer;
}
.slider-nav a[disabled] {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.stripe-checkout-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}
.stripe-checkout-page p {
  font-size: 1.25rem;
  margin: 0;
}
.stripe-checkout-page .error {
  color: #c41e3a;
}

noscript p {
  border: 2px solid #c41e3a;
  background-color: #ffe6e6;
  color: #c41e3a;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  padding: 1rem;
}

@media screen and (min-width: 651px) {
  .products-layout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

@media screen and (min-width: 651px) {
  .products-content {
    flex: 1;
    min-width: 0;
  }
}

.filtered-items .filter-spinner {
  display: block;
  margin: 16px auto;
  opacity: 0;
  animation: spinner-fade 0.5s ease-out forwards, spinner-rotate 1s linear infinite;
}
.filtered-items .filtered-content {
  opacity: 0;
  pointer-events: none;
  animation: content-fade 0.3s ease-out 0.5s forwards;
}
@media screen and (prefers-reduced-motion: reduce) {
  .filtered-items .filter-spinner {
    display: none;
  }
  .filtered-items .filtered-content {
    opacity: 1;
    pointer-events: auto;
    animation: none;
  }
}

@keyframes spinner-fade {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spinner-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes content-fade {
  from {
    opacity: 0;
    pointer-events: none;
  }
  to {
    opacity: 1;
    pointer-events: auto;
  }
}
.item-filter {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-bg);
  border: var(--border);
  border-radius: var(--border-radius);
}
@media screen and (min-width: 651px) {
  .item-filter {
    position: sticky;
    top: 1rem;
    width: 220px;
    flex-shrink: 0;
    margin-bottom: 0;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
}
.item-filter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.item-filter .filter-active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: var(--border);
}
.item-filter .filter-active li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--color-link);
  color: var(--color-bg);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
}
.item-filter .filter-active li a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}
.item-filter .filter-active li:last-child {
  background: transparent;
  color: var(--color-link);
  margin-left: auto;
  padding: 0;
}
@media screen and (min-width: 651px) {
  .item-filter .filter-active li:last-child {
    margin-left: 0;
    width: 100%;
  }
}
.item-filter .filter-groups > li {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 651px) {
  .item-filter .filter-groups > li {
    display: block;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .item-filter .filter-groups > li:last-child {
    margin-bottom: 0;
  }
}
.item-filter .filter-groups > li > span {
  font-weight: bold;
}
@media screen and (min-width: 651px) {
  .item-filter .filter-groups > li > span {
    display: block;
    margin-bottom: 0.5rem;
  }
}
.item-filter .filter-groups > li > ul {
  display: contents;
}
@media screen and (min-width: 651px) {
  .item-filter .filter-groups > li > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
}
.item-filter .filter-groups > li > ul li {
  padding: 0;
  border: var(--border);
  border-radius: var(--border-radius);
  font-size: 0.875rem;
}
.item-filter .filter-groups > li > ul li a {
  padding: 0.25rem 0.75rem;
  display: block;
  text-decoration: none;
}
.item-filter .filter-groups > li > ul li.active {
  padding: 0.25rem 0.75rem;
  background: var(--color-link);
  color: var(--color-bg);
}
.item-filter .sort-dropdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
@media screen and (min-width: 651px) {
  .item-filter .sort-dropdown {
    display: block;
  }
}
.item-filter .sort-dropdown span {
  font-weight: bold;
}
@media screen and (min-width: 651px) {
  .item-filter .sort-dropdown span {
    display: block;
    margin-bottom: 0.5rem;
  }
}
.item-filter .sort-dropdown select {
  margin: 0;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  width: auto;
}
@media screen and (min-width: 651px) {
  .item-filter .sort-dropdown select {
    width: 100%;
  }
}
.item-filter noscript p {
  margin: 0.5rem 0;
  padding: 0.5rem;
  font-size: 0.875rem;
}

dialog.availability-calendar {
  background: var(--color-bg);
  color: var(--color-text);
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 50rem;
  width: calc(100% - 2rem);
  max-height: 90vh;
  padding: 0;
  margin: auto;
}
dialog.availability-calendar[open] {
  display: flex;
  flex-direction: column;
}
dialog.availability-calendar::backdrop {
  background: rgba(0, 0, 0, 0.85);
}
dialog.availability-calendar > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: var(--border);
}
dialog.availability-calendar > header h2 {
  margin: 0;
}
dialog.availability-calendar > header form {
  display: contents;
}
dialog.availability-calendar > header .close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 2rem;
  height: 2rem;
}
dialog.availability-calendar > header {
  padding: 1.5rem;
}

html:has(dialog.availability-calendar[open]) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

.calendar-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.calendar-loading,
.calendar-error {
  text-align: center;
  padding: 3rem 1rem;
}

.calendar-months {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.5rem;
}

.calendar-month h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
  font-size: 0.875rem;
}

.calendar-day-header {
  font-weight: bold;
  padding: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-text);
  opacity: 0.6;
}

.calendar-day {
  padding: 0.35rem 0.25rem;
  border-radius: 3px;
}
.calendar-day.today {
  font-weight: bold;
  outline: 2px solid var(--color-link);
  outline-offset: -2px;
}
.calendar-day.past, .calendar-day.unavailable {
  opacity: 0.35;
  text-decoration: line-through;
}

@media screen and (max-width: 768px) {
  dialog.availability-calendar {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    height: 100vh;
  }
  dialog.availability-calendar > header,
  .calendar-content {
    padding: 1rem;
  }
  .calendar-months {
    grid-template-columns: 1fr;
  }
}
dialog.image-popup {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: auto;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  max-width: none;
  max-height: none;
}
@media screen and (min-width: 769px) {
  dialog.image-popup {
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
  }
}
dialog.image-popup[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
dialog.image-popup .popup-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  min-width: 0;
}
dialog.image-popup .image-wrapper {
  height: 100%;
  height: -webkit-fill-availble;
  height: -moz-available;
  height: stretch;
  width: 100%;
  width: -webkit-fill-availble;
  width: -moz-available;
  width: stretch;
  cursor: pointer;
}
dialog.image-popup img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
dialog.image-popup .popup-nav {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.2s;
}
@media screen and (min-width: 769px) {
  dialog.image-popup .popup-nav {
    width: 3rem;
    height: 3rem;
  }
}
dialog.image-popup .popup-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}
dialog.image-popup .popup-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 769px) {
  dialog.image-popup .popup-nav svg {
    width: 2rem;
    height: 2rem;
  }
}
dialog.image-popup [data-nav=prev] {
  margin-right: 0.5rem;
}
@media screen and (min-width: 769px) {
  dialog.image-popup [data-nav=prev] {
    margin-right: 1rem;
  }
}
dialog.image-popup [data-nav=next] {
  margin-left: 0.5rem;
}
@media screen and (min-width: 769px) {
  dialog.image-popup [data-nav=next] {
    margin-left: 1rem;
  }
}

html:has(dialog.image-popup[open]) {
  overflow: hidden;
  scrollbar-gutter: stable;
}

.current-image {
  cursor: zoom-in;
}

ul#guide-categories {
  padding: 0;
  list-style-type: none;
}
ul#guide-categories li {
  padding-left: 6rem;
  position: relative;
}
ul#guide-categories li svg {
  position: absolute;
  top: 0;
  width: 4rem;
  height: 4rem;
  left: 0;
}

#tabs {
  margin: 2rem 0;
}
#tabs > ul {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(0, auto));
  list-style-type: none;
  gap: 0.5rem;
  height: auto;
  padding-bottom: 17rem;
  position: relative;
}
#tabs > ul .tab {
  grid-row: 1;
  padding: 0;
}
#tabs > ul .tab a {
  padding: 0.5rem 1rem;
}
#tabs > ul .tab a:hover {
  background: var(--color-bg);
}
#tabs > ul .body {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 17rem;
  display: none;
  flex-direction: row;
  gap: 1rem;
}
#tabs > ul .body:target {
  display: flex;
}
#tabs > ul .body .image-wrapper {
  flex-shrink: 0;
  height: 100%;
}
#tabs > ul .body .tab-content {
  flex: 1;
  overflow-y: auto;
}
#tabs > ul:not(:has(.body:target)) .body:nth-of-type(2) {
  display: flex;
}

.menu-items {
  margin-bottom: 3rem;
  list-style: none;
  padding: 0;
}
.menu-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.menu-items li .name {
  grid-column: 1;
  text-align: left;
}
.menu-items li .price {
  grid-column: 2;
  text-align: right;
}
.menu-items li .description {
  grid-column: 1/-1;
  margin: 0;
  padding: 0;
}

.pdf-download {
  margin: 0.5rem 0 0;
}
.pdf-download a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  text-decoration: none;
}
.pdf-download a svg {
  width: 1rem;
  height: 1rem;
}
.pdf-download a:hover {
  text-decoration: underline;
}

.theme-editor .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.theme-editor small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  opacity: 0.8;
}
.theme-editor #bunny-fonts {
  width: 100%;
}
.theme-editor .border-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.theme-editor .border-width {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.theme-editor .border-width input {
  width: 4rem;
}
.theme-editor .border-style select {
  min-width: 5rem;
}
.theme-editor .border-color input {
  min-width: 2.5rem;
  height: 2.5rem;
}
.theme-editor #theme-output {
  margin: 1rem 0;
}
.theme-editor .editor-tabs ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.theme-editor .tab-link.active {
  font-weight: bold;
}
.theme-editor .tab-content {
  display: none;
}
.theme-editor .tab-content.active {
  display: block;
}
.theme-editor label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
  cursor: pointer;
}
.theme-editor label.no-checkbox {
  display: block;
}
.theme-editor input[type=checkbox] {
  margin: 0;
  cursor: pointer;
}
.theme-editor input:disabled,
.theme-editor select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (max-width: 650px) {
  .theme-editor .editor-tabs ul {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .theme-editor .grid {
    grid-template-columns: 1fr;
  }
  .theme-editor .border-controls {
    flex-wrap: wrap;
  }
}

body.property #item {
  display: grid;
  gap: 2rem;
  grid-template-areas: "title" "gallery" "description" "contact" "faqs";
}
body.property #item .property-gallery {
  grid-area: gallery;
}
body.property #item .title {
  grid-area: title;
}
body.property #item .description {
  grid-area: description;
}
body.property #item .contact {
  grid-area: contact;
}
body.property #item .faqs {
  grid-area: faqs;
}
@media screen and (min-width: 1001px) {
  body.property #item {
    gap: 2rem;
    grid-template-areas: "title title" "gallery gallery" "contact description" "faqs faqs";
    grid-template-columns: 300px 1fr;
    grid-template-rows: min-content min-content min-content 1fr;
  }
}
@media screen and (min-width: 1201px) {
  body.property #item {
    grid-template-columns: 350px 1fr;
  }
}

.property-gallery {
  width: 100%;
  min-width: 0;
}
.property-gallery .current-image {
  cursor: zoom-in;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.property-gallery .current-image .image-wrapper {
  aspect-ratio: 4/3;
  width: 100%;
}
.property-gallery .current-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.property-gallery .gallery-full-size-images {
  display: none;
}
.property-gallery .property-thumbnails {
  margin-top: 0.5rem;
}
.property-gallery .property-thumbnails ul.image-gallery.slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  list-style-type: none;
  margin: 0;
  padding: 0 0 0.5rem 0;
  gap: 0.5rem;
}
@media screen and (prefers-reduced-motion: reduce) {
  .property-gallery .property-thumbnails ul.image-gallery.slider {
    scroll-behavior: auto;
  }
}
.property-gallery .property-thumbnails ul.image-gallery.slider li {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 120px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .property-gallery .property-thumbnails ul.image-gallery.slider li {
    width: 150px;
  }
}
@media screen and (min-width: 1001px) {
  .property-gallery .property-thumbnails ul.image-gallery.slider li {
    width: 180px;
  }
}
.property-gallery .property-thumbnails ul.image-gallery.slider li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  transition: all 0.2s ease-in-out;
}
.property-gallery .property-thumbnails ul.image-gallery.slider li a figure {
  margin: 0;
  padding: 0;
}
.property-gallery .property-thumbnails ul.image-gallery.slider li a figure .image-wrapper {
  aspect-ratio: 4/3;
}
.property-gallery .property-thumbnails ul.image-gallery.slider li a figure .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-small);
  transition: transform 0.2s ease-in-out;
}
.property-gallery .property-thumbnails ul.image-gallery.slider li a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.property-gallery .property-thumbnails ul.image-gallery.slider li a:hover img {
  transform: scale(1.05);
}
.property-gallery .property-thumbnails ul.image-gallery.slider li a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.property-gallery .property-thumbnails .slider-nav {
  text-align: center;
  margin: 0.5rem 0 0;
}
.property-gallery .property-thumbnails .slider-nav a {
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
}
.property-gallery .property-thumbnails .slider-nav a[disabled] {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
.property-gallery .property-thumbnails:not(:has(.slider:is(.overflowing))) .slider-nav {
  display: none;
}

.search-box .search-error {
  color: red;
  display: none;
}

@font-face {
  font-family: "Fjalla One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/fjalla-one-latin-400-normal.woff2") format("woff2"), url("/assets/fonts/fjalla-one-latin-400-normal.woff") format("woff");
}
:root {
  --color-bg: #ffffff;
  --color-text: #444444;
  --color-link: #cd1314;
  --color-link-hover: #333;
  --border-radius: 5px;
  --border: 0px solid #58648c;
  --box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  --width-content: 1300px;
  --font-family-body:
    ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa, Manjari,
    "Arial Rounded MT", "Arial Rounded MT Bold", Calibri, source-sans-pro,
    sans-serif;
  --font-family-heading:
    "Fjalla One", ui-rounded, "Hiragino Maru Gothic ProN", Quicksand, Comfortaa,
    Manjari, "Arial Rounded MT", "Arial Rounded MT Bold", Calibri,
    source-sans-pro, sans-serif;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
  --header-text-color: #cd1314;
  --main-heading-color: #cd1314;
  --form-border: 1px solid #cd1314;
  --form-input-bg-color: #e0e0e0;
  --form-button-bg-color: #cd1314;
  --form-button-text-color: #ffffff;
  --form-button-border: 0px solid #cd1314;
  --form-button-hover-bg-color: #241f31;
  --form-button-hover-text-color: #ffffff;
  --form-button-hover-border: 0px solid #241f31;
}

@media (min-width: 769px) {
  body {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1005%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(255%2c 255%2c 255%2c 1)'%3e%3c/rect%3e%3cpath d='M277.92 432.51L342.87 470.01L342.87 545.01L277.92 582.51L212.96 545.01L212.96 470.01zM472.78 320.01L537.73 357.51L537.73 432.51L472.78 470.01L407.82 432.51L407.82 357.51zM537.73 -17.49L602.68 20.01L602.68 95.01L537.73 132.51L472.78 95.01L472.78 20.01zM602.68 320.01L667.64 357.51L667.64 432.51L602.68 470.01L537.73 432.51L537.73 357.51zM667.64 -17.49L732.59 20.01L732.59 95.01L667.64 132.51L602.68 95.01L602.68 20.01zM797.54 207.51L862.5 245.01L862.5 320.01L797.54 357.51L732.59 320.01L732.59 245.01zM862.5 545.01L927.45 582.51L927.45 657.51L862.5 695.01L797.54 657.51L797.54 582.51zM992.41 95.01L1057.36 132.51L1057.36 207.51L992.41 245.01L927.45 207.51L927.45 132.51zM1122.31 545.01L1187.27 582.51L1187.27 657.51L1122.31 695.01L1057.36 657.51L1057.36 582.51zM1252.22 545.01L1317.17 582.51L1317.17 657.51L1252.22 695.01L1187.27 657.51L1187.27 582.51zM1382.13 545.01L1447.08 582.51L1447.08 657.51L1382.13 695.01L1317.17 657.51L1317.17 582.51zM1512.04 320.01L1576.99 357.51L1576.99 432.51L1512.04 470.01L1447.08 432.51L1447.08 357.51zM1447.08 432.51L1512.04 470.01L1512.04 545.01L1447.08 582.51L1382.13 545.01L1382.13 470.01zM1512.04 545.01L1576.99 582.51L1576.99 657.51L1512.04 695.01L1447.08 657.51L1447.08 582.51z' stroke='rgba(226%2c 241%2c 255%2c 1)' stroke-width='2'%3e%3c/path%3e%3cpath d='M270.42 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM335.37 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM335.37 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM270.42 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM205.46 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM205.46 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM400.32 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM400.32 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 -17.49 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 20.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM530.23 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM465.28 20.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM595.18 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 -17.49 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 20.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM660.14 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 207.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 245.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM725.09 245.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM855 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM790.04 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM984.91 95.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 207.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM984.91 245.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 207.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM919.95 132.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1114.81 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1179.77 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1179.77 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1114.81 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1049.86 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1244.72 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1309.67 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1309.67 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1244.72 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1374.63 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1374.63 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 320.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 432.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1439.58 357.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 545.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1374.63 470.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 582.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1569.49 657.51 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0zM1504.54 695.01 a7.5 7.5 0 1 0 15 0 a7.5 7.5 0 1 0 -15 0z' fill='rgba(226%2c 241%2c 255%2c 1)'%3e%3c/path%3e%3cpath d='M135.91 -29.31L179.21 -4.31L179.21 45.69L135.91 70.69L92.6 45.69L92.6 -4.31zM179.21 195.69L222.51 220.69L222.51 270.69L179.21 295.69L135.91 270.69L135.91 220.69zM135.91 420.69L179.21 445.69L179.21 495.69L135.91 520.69L92.6 495.69L92.6 445.69zM179.21 495.69L222.51 520.69L222.51 570.69L179.21 595.69L135.91 570.69L135.91 520.69zM265.81 45.69L309.12 70.69L309.12 120.69L265.81 145.69L222.51 120.69L222.51 70.69zM265.81 195.69L309.12 220.69L309.12 270.69L265.81 295.69L222.51 270.69L222.51 220.69zM309.12 -29.31L352.42 -4.31L352.42 45.69L309.12 70.69L265.81 45.69L265.81 -4.31zM352.42 45.69L395.72 70.69L395.72 120.69L352.42 145.69L309.12 120.69L309.12 70.69zM309.12 120.69L352.42 145.69L352.42 195.69L309.12 220.69L265.81 195.69L265.81 145.69zM352.42 495.69L395.72 520.69L395.72 570.69L352.42 595.69L309.12 570.69L309.12 520.69zM439.02 45.69L482.33 70.69L482.33 120.69L439.02 145.69L395.72 120.69L395.72 70.69zM482.33 120.69L525.63 145.69L525.63 195.69L482.33 220.69L439.02 195.69L439.02 145.69zM482.33 270.69L525.63 295.69L525.63 345.69L482.33 370.69L439.02 345.69L439.02 295.69zM568.93 -29.31L612.23 -4.31L612.23 45.69L568.93 70.69L525.63 45.69L525.63 -4.31zM568.93 270.69L612.23 295.69L612.23 345.69L568.93 370.69L525.63 345.69L525.63 295.69zM568.93 420.69L612.23 445.69L612.23 495.69L568.93 520.69L525.63 495.69L525.63 445.69zM612.23 495.69L655.53 520.69L655.53 570.69L612.23 595.69L568.93 570.69L568.93 520.69zM655.53 -29.31L698.84 -4.31L698.84 45.69L655.53 70.69L612.23 45.69L612.23 -4.31zM698.84 195.69L742.14 220.69L742.14 270.69L698.84 295.69L655.53 270.69L655.53 220.69zM655.53 270.69L698.84 295.69L698.84 345.69L655.53 370.69L612.23 345.69L612.23 295.69zM742.14 120.69L785.44 145.69L785.44 195.69L742.14 220.69L698.84 195.69L698.84 145.69zM785.44 195.69L828.75 220.69L828.75 270.69L785.44 295.69L742.14 270.69L742.14 220.69zM785.44 345.69L828.75 370.69L828.75 420.69L785.44 445.69L742.14 420.69L742.14 370.69zM742.14 420.69L785.44 445.69L785.44 495.69L742.14 520.69L698.84 495.69L698.84 445.69zM828.75 -29.31L872.05 -4.31L872.05 45.69L828.75 70.69L785.44 45.69L785.44 -4.31zM915.35 -29.31L958.65 -4.31L958.65 45.69L915.35 70.69L872.05 45.69L872.05 -4.31zM958.65 195.69L1001.96 220.69L1001.96 270.69L958.65 295.69L915.35 270.69L915.35 220.69zM915.35 270.69L958.65 295.69L958.65 345.69L915.35 370.69L872.05 345.69L872.05 295.69zM958.65 345.69L1001.96 370.69L1001.96 420.69L958.65 445.69L915.35 420.69L915.35 370.69zM1045.26 45.69L1088.56 70.69L1088.56 120.69L1045.26 145.69L1001.96 120.69L1001.96 70.69zM1001.96 120.69L1045.26 145.69L1045.26 195.69L1001.96 220.69L958.65 195.69L958.65 145.69zM1001.96 420.69L1045.26 445.69L1045.26 495.69L1001.96 520.69L958.65 495.69L958.65 445.69zM1045.26 495.69L1088.56 520.69L1088.56 570.69L1045.26 595.69L1001.96 570.69L1001.96 520.69zM1088.56 -29.31L1131.86 -4.31L1131.86 45.69L1088.56 70.69L1045.26 45.69L1045.26 -4.31zM1131.86 45.69L1175.16 70.69L1175.16 120.69L1131.86 145.69L1088.56 120.69L1088.56 70.69zM1088.56 270.69L1131.86 295.69L1131.86 345.69L1088.56 370.69L1045.26 345.69L1045.26 295.69zM1088.56 420.69L1131.86 445.69L1131.86 495.69L1088.56 520.69L1045.26 495.69L1045.26 445.69zM1131.86 495.69L1175.16 520.69L1175.16 570.69L1131.86 595.69L1088.56 570.69L1088.56 520.69zM1175.16 -29.31L1218.47 -4.31L1218.47 45.69L1175.16 70.69L1131.86 45.69L1131.86 -4.31zM1218.47 195.69L1261.77 220.69L1261.77 270.69L1218.47 295.69L1175.16 270.69L1175.16 220.69zM1218.47 345.69L1261.77 370.69L1261.77 420.69L1218.47 445.69L1175.16 420.69L1175.16 370.69zM1218.47 495.69L1261.77 520.69L1261.77 570.69L1218.47 595.69L1175.16 570.69L1175.16 520.69zM1261.77 120.69L1305.07 145.69L1305.07 195.69L1261.77 220.69L1218.47 195.69L1218.47 145.69zM1305.07 195.69L1348.38 220.69L1348.38 270.69L1305.07 295.69L1261.77 270.69L1261.77 220.69zM1261.77 420.69L1305.07 445.69L1305.07 495.69L1261.77 520.69L1218.47 495.69L1218.47 445.69zM1391.68 45.69L1434.98 70.69L1434.98 120.69L1391.68 145.69L1348.38 120.69L1348.38 70.69zM1348.38 120.69L1391.68 145.69L1391.68 195.69L1348.38 220.69L1305.07 195.69L1305.07 145.69zM1391.68 345.69L1434.98 370.69L1434.98 420.69L1391.68 445.69L1348.38 420.69L1348.38 370.69zM1434.98 -29.31L1478.28 -4.31L1478.28 45.69L1434.98 70.69L1391.68 45.69L1391.68 -4.31zM1434.98 270.69L1478.28 295.69L1478.28 345.69L1434.98 370.69L1391.68 345.69L1391.68 295.69zM1434.98 420.69L1478.28 445.69L1478.28 495.69L1434.98 520.69L1391.68 495.69L1391.68 445.69z' stroke='rgba(240%2c 247%2c 255%2c 0.93)' stroke-width='2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1005'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
    background-attachment: fixed;
    background-size: cover;
  }
  body.horizontal-nav main {
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    grid-template-areas: "nav" "content";
  }
}
/* body_classes: header-centered */
/* Ensure content appears above snow effect */
header,
main,
body > footer {
  position: relative;
  z-index: 2;
}

header {
  background: none !important;
  box-shadow: none !important;
  padding: 5px !important;
}
header img {
  display: block;
  margin: 0 auto 2rem;
  max-width: 150px;
  filter: drop-shadow(0 0 5px #fff);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: 400;
  color: #cd1314;
}

nav {
  --color-bg: #cd1314;
  --color-link: #ffffff;
  --color-text: #f5c211;
  font-family: var(--font-family-heading);
  font-weight: 400;
}
nav a {
  text-decoration: none;
}
nav a:hover {
  text-decoration: none;
}
nav a.active {
  font-weight: normal;
}
nav {
  /* 3-column layout for Service Areas dropdown - only on hover */
}
@media (min-width: 769px) {
  nav body.horizontal-nav nav ul {
    gap: 0.5rem;
  }
  nav body.horizontal-nav nav ul a {
    padding: 0.5rem;
  }
  body.horizontal-nav nav ul li:hover ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    white-space: normal;
    padding: 1rem;
    gap: 0.5rem;
    position: absolute;
    right: 0;
    left: auto;
    width: 390px;
    font-size: 16px;
  }
  body.horizontal-nav nav ul li:hover ul li {
    display: block;
  }
}

.centered {
  text-align: center;
}

.product-box, .featured article {
  padding: 0.5rem;
  background: var(--color-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.product-box h2, .featured article h2 {
  margin: 0 0 1rem 0;
  color: var(--color-link);
  text-align: center;
}

.home-banner {
  margin-bottom: 2rem;
}
.home-banner .special-offer {
  background: var(--color-link);
  color: var(--nav-link-color);
  padding: 1rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .home-banner .special-offer {
    flex-direction: column;
    text-align: center;
  }
}
.home-banner .special-offer p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
}
.home-banner .special-offer a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000000;
  color: #ffffff;
  border: 2px solid #000000;
  text-decoration: none;
  border-radius: var(--border-radius);
  white-space: nowrap;
  font-family: var(--font-family-heading);
}
.home-banner .special-offer a:hover {
  background: var(--nav-link-active-color);
  color: #000000;
  border: 2px solid #000000;
}
.home-banner .home-banner-inner {
  width: 100%;
  max-width: var(--width-content);
  aspect-ratio: 3;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  position: relative;
}
.home-banner .home-banner-inner .swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .home-banner .home-banner-inner .swiper .swiper-pagination {
    display: none;
  }
}
.home-banner .home-banner-inner .image-wrapper,
.home-banner .home-banner-inner img {
  width: 100%;
  max-width: var(--width-content) !important;
  height: 100%;
  object-fit: cover;
}
.home-banner .swiper-pagination-bullet-active {
  background: var(--color-link);
}

.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .featured {
    grid-template-columns: 1fr;
  }
}
.featured article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}
.featured article a:has(img) {
  text-decoration: none;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}
.featured article a:has(img):hover {
  text-decoration: none;
}
.featured article .image-wrapper,
.featured article .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured article img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
}
.featured article p {
  margin: 0 0 1rem 0;
}
.featured article p + a {
  align-self: end;
  justify-self: center;
}

.products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .products-list {
    grid-template-columns: 1fr;
  }
}
.products-list article {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}
.products-list article .image-link {
  display: block;
  text-decoration: none;
  aspect-ratio: 1;
  overflow: hidden;
}
.products-list article .image-link:hover {
  text-decoration: none;
}
.products-list article img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
}
.products-list article h2 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
}
.products-list article h2 a {
  color: var(--color-link);
  text-decoration: none;
}
.products-list article h2 a:hover {
  text-decoration: underline;
}
.products-list article .price {
  margin: 0 0 1rem 0;
  font-weight: bold;
  color: var(--color-link);
}
.products-list article .button-primary, .products-list article .read-more, .products-list .featured article p + a, .featured .products-list article p + a {
  align-self: end;
  justify-self: center;
}

.main-content {
  margin-bottom: 4rem;
}

.why-choose-us {
  margin-bottom: 4rem;
}
.why-choose-us ul {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 999px) {
  .why-choose-us ul {
    grid-template-columns: repeat(2, 200px);
  }
}
@media (max-width: 768px) {
  .why-choose-us ul {
    grid-template-columns: repeat(2, 180px);
    gap: 1rem;
  }
}
.why-choose-us li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
}
@media (max-width: 768px) {
  .why-choose-us li {
    height: 180px;
  }
}
.why-choose-us li img {
  width: 180px;
  height: 180px;
  color: var(--color-link);
}
@media (max-width: 768px) {
  .why-choose-us li img {
    width: 160px;
    height: 160px;
  }
}
.why-choose-us li h3 {
  margin-top: 1rem;
  color: var(--color-link);
  font-size: 0.9rem;
  text-align: center;
}

.button-primary, .read-more, .featured article p + a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-link);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: transform 0.2s ease, background 0.2s ease;
}
.button-primary:hover, .read-more:hover, .featured article p + a:hover {
  background: var(--form-button-hover-bg-color);
  color: var(--nav-link-color);
  text-decoration: none;
  transform: scale(1.05);
}

.read-more {
  display: block;
  text-align: center;
  margin: 2rem auto;
  max-width: max-content;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
body.item .reviews-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  body.item .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.reviews-grid li {
  display: grid;
  grid-template-columns: auto 110px;
  grid-template-rows: auto auto auto auto;
  grid-template-areas: "review review" "name rating" "date date" "products products";
  gap: 1rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: min-content;
}
@media (max-width: 768px) {
  .reviews-grid li {
    grid-template-columns: 1fr;
    grid-template-areas: "review" "name" "rating" "date" "products";
  }
}
.reviews-grid li .review {
  grid-area: review;
  font-family: var(--font-family-body);
  font-style: normal;
}
.reviews-grid li .review p {
  display: inline;
  margin: 0;
}
.reviews-grid li .review p:first-child::before {
  content: "“";
  font-size: 2rem;
  line-height: 0;
  vertical-align: baseline;
  margin-right: 0.25rem;
  color: var(--color-link);
  display: inline;
}
.reviews-grid li .review p:last-child::after {
  content: "”";
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-left: 0.25rem;
  color: var(--color-link);
  display: inline;
}
.reviews-grid li .name {
  grid-area: name;
  align-self: center;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.reviews-grid li .name .reviewer-avatar {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .reviews-grid li .name {
    text-align: center;
  }
}
.reviews-grid li .rating {
  grid-area: rating;
  align-self: center;
  justify-self: end;
  font-size: 1.5rem;
  color: var(--nav-link-active-color);
  line-height: 1;
}
@media (max-width: 768px) {
  .reviews-grid li .rating {
    justify-self: center;
    text-align: center;
  }
}
.reviews-grid li .date {
  grid-area: date;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}
.reviews-grid li .products {
  grid-area: products;
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.reviews-grid li .products a {
  color: #ccc;
}
.reviews-grid li .products a:hover {
  color: var(--color-link);
}

body > footer p {
  margin: 1.5rem auto;
}
body > footer .socials li a img, body > footer .socials li a:hover img {
  filter: invert(15%) sepia(100%) saturate(5294%) hue-rotate(352deg) brightness(99%) contrast(88%) !important;
}

body.home section {
  margin-bottom: 4rem;
}

.items a.image-link {
  aspect-ratio: 11/10;
  overflow: hidden;
  position: relative;
}
.items a.image-link .image-wrapper,
.items a.image-link .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.latest-news {
  text-align: center;
}
.latest-news .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}
.latest-news .items li {
  flex: 0 0 calc(25% - 0.75rem);
  max-width: calc(25% - 0.75rem);
}
@media (max-width: 999px) {
  .latest-news .items li {
    flex: 0 0 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}
@media (max-width: 768px) {
  .latest-news .items li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Hide Service Areas submenu on mobile */
@media (max-width: 768px) {
  nav li:has(> a[href="/service-areas/"]) > ul {
    display: none !important;
  }
}
body.news-post article.content img,
body.news-post article.content .image-wrapper {
  margin: 2rem auto;
}

@media screen and (min-width: 1001px) {
  body.one-column #item {
    grid-template-columns: 450px 1fr;
  }
}