:root {
    --color-primary: #4285f4;
    --color-primary-dark: #2f75eb;
    --color-secondary: #ffd700;
    --color-accent: #ffffff;
    --color-text: #1a1c1e;
    --color-muted: #505766;
    --color-surface: #ffffff;
}

.fw-black {
    font-weight: 900;
}

@keyframes od-subnavigation-page-enter-next {
    from {
        opacity: 0;
        transform: translate3d(1.75rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes od-subnavigation-page-enter-previous {
    from {
        opacity: 0;
        transform: translate3d(-1.75rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

main.od-subnavigation-page-enter--next {
    animation: od-subnavigation-page-enter-next 420ms cubic-bezier(.16, 1, .3, 1) both;
    will-change: opacity, transform;
}

main.od-subnavigation-page-enter--previous {
    animation: od-subnavigation-page-enter-previous 420ms cubic-bezier(.16, 1, .3, 1) both;
    will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
    main.od-subnavigation-page-enter--next,
    main.od-subnavigation-page-enter--previous {
        transition: none;
        animation: none;
    }
}

.od-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(180, 0, 18, 0.12);
    z-index: 1030;
    transition: transform 240ms ease, opacity 240ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
    will-change: transform, opacity;
}

.od-navbar.od-navbar--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.od-main--with-navbar-margin {
    margin-top: clamp(4.5rem, 6vw, 6rem);
}

.od-navbar .navbar-brand {
    color: var(--color-text) !important;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}

.od-navbar .container-fluid {
    position: relative;
}

.od-navbar__logo {
    display: block;
    width: clamp(12rem, 20vw, 18rem);
    height: auto;
    max-height: 2.35rem;
    max-width: 58vw;
    object-fit: contain;
}

.od-navbar__brand-text {
    display: inline-block;
    color: #eaf2ff;
    text-transform: uppercase;
    font-size: clamp(0.92rem, 1.45vw, 1.2rem);
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 800;
    white-space: nowrap;
}

.od-navbar-quickmenu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 1.25rem;
    z-index: 2;
}

.od-navbar-quickmenu__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.od-navbar-quickmenu__icon {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.od-navbar-quickmenu__label {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translate(-50%, -0.25rem);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    background: rgba(24, 28, 34, 0.9);
    color: #fff;
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 0.5rem;
    border-radius: 0.3rem;
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 6;
}

.od-navbar-quickmenu__item:hover .od-navbar-quickmenu__label,
.od-navbar-quickmenu__item:focus-visible .od-navbar-quickmenu__label {
    opacity: 1;
    transform: translate(-50%, 0);
}

.od-navbar.od-navbar--on-top {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.od-navbar.od-navbar--on-top .od-navbar__logo {
    max-height: 3.8rem;
    width: clamp(14rem, 24vw, 22rem);
    max-width: 62vw;
}

.od-navbar.od-navbar--on-top .od-navbar-quickmenu__icon {
    width: 2.1rem;
    height: 2.1rem;
    filter: brightness(0) invert(1);
}

.od-navbar.od-navbar--on-top .od-menu-toggle {
    color: #fff;
}

.od-navbar.od-navbar--on-top .od-menu-toggle-btn .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.od-menu-toggle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
}

.od-menu-toggle-btn .navbar-toggler-icon {
    width: 1.15em;
    height: 1.15em;
}

.od-navbar-cart {
    position: relative;
    color: #e9f2ff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.od-navbar-cart .cart-bubble {
    position: absolute;
    top: -0.35rem;
    right: -0.5rem;
    display: block;
    width: 1.1rem;
    height: 1.1rem;
    padding: 0;
    border: 1px solid #ffffff;
    border-radius: 999px;
    background: #f58220;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease;
}

.od-navbar-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.5rem 0.95rem;
    background: #8ed73a;
    color: #173100;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
}

.od-navbar-booking:hover {
    background: #7ec734;
    color: #132a00;
}

.od-navbar-cart .bi {
    font-size: 1rem;
    line-height: 1;
}

.od-navbar-cart:hover {
    color: var(--color-primary);
}

.od-offcanvas-nav {
    max-width: 26rem;
    background: var(--color-surface);
}

.od-offcanvas-nav .btn-close {
    filter: none;
    opacity: 1;
}

@media (max-width: 1412.98px) {
    .od-navbar .od-menu-toggle-btn .navbar-toggler-icon,
    .od-navbar.od-navbar--on-top .od-menu-toggle-btn .navbar-toggler-icon {
        filter: none;
    }
}

.od-nav-list > .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.od-nav-list .nav-link {
    padding: 0.75rem 0;
}

.od-navbar .nav-link {
    color: #3d3a3a;
}

.od-navbar .nav-link.active,
.od-navbar .nav-link:hover {
    color: var(--color-primary-dark);
}

.od-subnav-list {
    padding-left: 0.75rem;
}

.od-subnav-list .nav-link {
    color: var(--color-muted);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.od-subnav-toggle-icon {
    margin-left: 0.5rem;
    transition: transform 180ms ease;
}

[aria-expanded="true"] .od-subnav-toggle-icon {
    transform: rotate(180deg);
}

.od-language-switcher__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 4.8rem;
    height: 1.9rem;
    padding: 0.2rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-text);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 3px 10px rgba(0, 0, 0, 0.09);
    cursor: pointer;
    list-style: none;
}

.od-language-switcher__toggle::-webkit-details-marker {
    display: none;
}

.od-navbar-language .od-language-switcher__toggle {
    height: 2.25rem;
    border-color: rgba(10, 31, 51, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

.od-language-switcher__toggle:hover,
.od-language-switcher__toggle:focus,
.od-language-switcher__toggle:active,
.od-language-switcher[open] .od-language-switcher__toggle {
    background: rgba(255, 255, 255, 0.62) !important;
    color: var(--color-text) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65), 0 4px 12px rgba(0, 0, 0, 0.11) !important;
}

.od-language-switcher__toggle::after {
    display: inline-block;
    margin-left: 0.45rem;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    transition: transform 160ms ease;
}

.od-language-switcher[open] .od-language-switcher__toggle::after {
    transform: rotate(180deg);
}

.od-language-switcher {
    position: relative;
    z-index: 1040;
}

.od-language-switcher__menu {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    left: auto;
    z-index: 1045;
    min-width: 100%;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.6rem;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.od-language-switcher[open] > .od-language-switcher__menu {
    display: block;
}

.od-language-switcher__item {
    border-radius: 0.45rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--color-text);
}

.od-language-switcher__item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text);
}

.od-language-switcher__item.active,
.od-language-switcher__item:active {
    background: var(--color-primary);
    color: #fff;
}

.od-hero {
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
}

.od-hero-carousel {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}

.frame-type-sitepackage_hero,
.frame-type-sitepackage-hero {
    width: 100%;
    max-width: none;
}

.od-hero-carousel .od-hero-carousel__swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.od-hero-carousel .od-hero-carousel__swiper,
.od-hero-carousel .swiper-wrapper,
.od-hero-carousel .od-hero-carousel__slide {
    min-height: 86vh;
}

.od-hero-carousel .od-hero-carousel__swiper {
    position: relative;
}

.od-hero-carousel .od-hero-carousel__slide {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    overflow: hidden;
}

.od-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.od-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 20, 35, 0.92) 0%, rgba(11, 20, 35, 0.84) 36%, rgba(11, 20, 35, 0.5) 62%, rgba(11, 20, 35, 0.2) 80%, rgba(11, 20, 35, 0.05) 100%),
        linear-gradient(180deg, rgba(7, 14, 26, 0.55) 0%, rgba(7, 14, 26, 0.35) 50%, rgba(7, 14, 26, 0.7) 100%);
}

.od-hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    min-height: 86vh;
}

.od-hero-content__inner {
    width: min(100%, 1280px);
    display: flex;
    align-items: center;
    min-height: 100%;
}

.od-hero-glass-card {
    width: min(100%, 40rem);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
}

.od-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.6rem;
    padding: 0.18rem 0.8rem;
    border: 1px solid rgba(142, 215, 58, 0.35);
    background: rgba(31, 45, 22, 0.25);
    color: #8ed73a;
    font-size: 0.8rem;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.od-hero-title {
    margin: 0;
    color: #d5deef;
    font-size: clamp(2rem, 4.4vw, 4.1rem);
    font-weight: 800;
    line-height: 0.98;
    text-transform: uppercase;
    max-width: 35rem;
}

.od-hero-title strong,
.od-hero-title em,
.od-hero-title span {
    color: #8ed73a;
    font-style: normal;
}

.od-hero-copy {
    margin: 0;
    color: #c0ccdd;
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    line-height: 1.45;
    max-width: 33rem;
}

.od-hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
}

.od-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4.2rem;
    padding: 1rem 3rem;
    border-radius: 0;
    font-size: 1.9rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.od-hero-btn--primary {
    background: #8ed73a;
    color: #173100;
    box-shadow: 0 0 20px rgba(147, 218, 66, 0.3);
}

.od-hero-btn--secondary {
    display: none;
}

.od-hero-btn:hover {
    transform: translateY(-1px);
}

.od-hero-btn--primary:hover {
    color: #132b00;
    background: #7ec734;
}

.od-hero-status {
    position: absolute;
    right: clamp(1rem, 2.2vw, 2rem);
    bottom: clamp(1rem, 2.2vw, 1.8rem);
    z-index: 4;
}

.od-hero-status__link {
    min-width: min(100%, 23.5rem);
    background: rgba(17, 27, 44, 0.92);
    border: 1px solid rgba(141, 164, 190, 0.2);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.od-hero-status__icon {
    width: 3.15rem;
    height: 3.15rem;
    background: #8ed73a;
    color: #173100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.od-hero-status__meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.od-hero-status__label {
    color: #8ed73a;
    font-size: 0.9rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.od-hero-status__value {
    color: #d5deef;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 800;
}

.od-hero-status__link:hover .od-hero-status__icon {
    background: #7ec734;
}

.od-hero-carousel__controls {
    position: absolute;
    right: clamp(1rem, 4vw, 2.6rem);
    bottom: 2.2rem;
    z-index: 4;
    gap: 0.5rem;
}

.od-hero-carousel__next,
.od-hero-carousel__prev {
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(20, 28, 36, 0.45);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.od-hero-carousel__next:hover,
.od-hero-carousel__prev:hover {
    background: rgba(20, 28, 36, 0.68);
    border-color: rgba(255, 255, 255, 0.7);
}

.od-hero-carousel > .od-hero-carousel__pagination.swiper-pagination {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 2.35rem !important;
    transform: none !important;
    z-index: 12 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet {
    width: 0.55rem;
    height: 0.55rem;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.od-hero-carousel .od-hero-carousel__pagination.swiper-pagination-lock {
    display: inline-flex !important;
}

@media (max-width: 767.98px) {
    .od-hero-content {
        min-height: 74vh;
    }

    .od-hero-glass-card {
        width: 100%;
        padding: 0;
    }

    .od-hero-pill {
        font-size: 0.9rem;
        line-height: 1.35rem;
    }

    .od-hero-title {
        font-size: clamp(1.7rem, 8.8vw, 2.55rem);
    }

    .od-hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .od-hero-btn {
        width: 100%;
        flex: 0 0 100%;
        min-height: 3.45rem;
        padding: 0.8rem 1rem;
        font-size: clamp(1rem, 6.6vw, 1.4rem);
    }

    .od-hero-carousel > .od-hero-carousel__pagination.swiper-pagination {
        bottom: 1.35rem !important;
    }

    .od-hero-status {
        position: static;
        margin: 1rem 0 0;
    }

    .od-hero-status__link {
        min-width: 0;
        width: 100%;
    }

    .od-hero-status__value {
        font-size: clamp(1.15rem, 6.4vw, 1.65rem);
    }
}

@media (max-width: 575.98px) {
    html,
    body {
        overflow-x: hidden;
    }

    .od-navbar .container-fluid,
    .od-hero-content.container-fluid,
    .od-textpic-section .container-fluid,
    .od-bento .container-fluid,
    .od-cta-section .container-fluid,
    .od-footer .container-fluid,
    .od-footer-subline .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .od-hero-carousel {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .od-hero-carousel .od-hero-carousel__swiper,
    .od-hero-carousel .od-hero-carousel__slide {
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .od-hero-title {
        font-size: clamp(1.5rem, 8.8vw, 1.95rem);
        line-height: 1.05;
    }

    .od-textmedia__headline,
    .od-textpic-title,
    .od-bento-feature__title {
        font-size: clamp(1.35rem, 7.5vw, 1.8rem) !important;
        line-height: 1.12 !important;
    }

    .od-bento-mini h3 {
        font-size: 1.45rem;
    }

    .od-rental-static__bar {
        padding: 12px;
        gap: 12px;
    }

    .od-rental-static__field {
        font-size: 12px;
        letter-spacing: 0.45px;
        padding: 10px 12px;
        width: 100%;
    }

    .od-rental-static__field--date {
        display: flex;
        flex-wrap: nowrap;
        column-gap: 8px;
        row-gap: 0;
        align-items: center;
    }

    .od-rental-static__field--date .bi-calendar3 {
        margin-top: 0;
    }

    .od-rental-static__field--date input {
        min-width: 0;
        width: 0;
        flex: 1 1 0;
    }

    .od-rental-static__date-sep {
        display: inline;
    }

    .od-rental-static__cta {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        letter-spacing: 0.9px;
    }
}

@media (max-width: 360px) {
    .od-navbar-booking {
        display: none;
    }

    .od-menu-toggle {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }
}

.od-teaser {
    min-height: auto;
    overflow: hidden;
}

.od-teaser-large {
    min-height: auto;
}

.od-teaser .card-img {
    height: auto;
    transform: scale(1);
    transition: transform 450ms cubic-bezier(.2, .65, .2, 1), filter 450ms ease;
    will-change: transform;
    border-radius: 0 !important;
}

.od-teaser::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16));
}

.od-teaser .card-img-overlay {
    position: absolute;
    z-index: 2;
    border-radius: 0 !important;
}

.od-teaser-cards__kicker {
    color: var(--color-primary);
}

.od-teaser-cards__link-label {
    border-color: var(--color-primary) !important;
}

.od-teaser-cards .od-teaser:hover .card-img {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
}

.od-teaserswiper .od-teaser:hover .card-img {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
}

@media (min-width: 992px) {
    .od-teaser-cards .row {
        align-items: stretch;
    }

    .od-teaser-cards .col-lg-8,
    .od-teaser-cards .col-lg-4 {
        min-height: 100%;
    }

    .od-teaser-cards .col-lg-4.d-grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .od-teaser-cards .col-lg-8 > a,
    .od-teaser-cards .col-lg-4 > a,
    .od-teaser-cards .col-lg-8 .od-teaser,
    .od-teaser-cards .col-lg-4 .od-teaser {
        height: 100%;
    }

    .od-teaser-cards .od-teaser .card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.od-live-bar {
    background: rgba(18, 18, 18, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    transition: transform 240ms ease, opacity 240ms ease;
    will-change: transform, opacity;
}

.od-live-bar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.od-live-bar__item .bi {
    font-size: 0.95rem;
    line-height: 1;
}

.od-live-bar.od-live-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.od-prefooter,
.od-prefooter__inner {
    padding: 0;
    margin: 0;
    background: #ffffff;
}

.btn-danger {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-danger:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.od-split-feature-title {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    letter-spacing: 0;
}

.od-split-feature-line-lg {
    background-color: var(--color-primary);
    width: 3rem;
    height: 0.5rem;
}

.od-split-feature-line-sm {
    width: 1.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
}

.od-split-feature-copy p {
    margin-bottom: 1rem;
}

.od-split-feature-link {
    transition: gap 250ms ease;
}

.od-split-feature-link:hover {
    gap: 2rem !important;
}

.od-split-feature-image-frame {
    aspect-ratio: 4 / 5;
    border-radius: 0 !important;
}

.od-split-feature-badge {
    background-color: var(--color-primary);
    left: -2.5rem;
    bottom: -2.5rem;
    padding: 2rem 2.25rem;
}

.od-split-feature-badge-value {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
}

.od-split-feature-badge-text {
    letter-spacing: 0;
    font-size: 0.65rem;
}

.od-split-feature-image-frame img,
.od-teaser-cards .card,
.od-teaser-cards .card-img,
.od-teaserswiper .card,
.od-teaserswiper .card-img {
    border-radius: 0 !important;
}

.od-textpic-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.od-textpic-split--media-right .od-textpic-media {
    order: 2;
}

.od-textpic-split--media-right .od-textpic-content {
    order: 1;
}

.od-textpic-split--media-right .od-textpic-badge {
    right: auto;
    left: clamp(1rem, 2.5vw, 2rem);
}

.od-textpic-media {
    position: relative;
}

.od-textpic-media-inner {
    position: relative;
    border-radius: 2.25rem;
    overflow: hidden;
    background: #0f1b2f;
    border: 1px solid var(--af-outline-variant);
}

.od-textpic-media-inner::before,
.od-textpic-media-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3rem;
    z-index: 2;
    pointer-events: none;
}

.od-textpic-media-inner::before {
    top: 0;
    background: linear-gradient(180deg, rgba(11, 18, 30, 0.72) 0%, rgba(11, 18, 30, 0) 100%);
}

.od-textpic-media-inner::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(11, 18, 30, 0.72) 0%, rgba(11, 18, 30, 0) 100%);
}

.od-textpic-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.od-textpic-badge {
    position: absolute;
    right: clamp(1rem, 2.5vw, 2rem);
    bottom: clamp(-1.5rem, -1.5vw, -1rem);
    z-index: 20;
    min-width: 13rem;
    max-width: 18rem;
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--af-outline-variant);
    box-shadow: 0 10px 24px rgba(26, 28, 30, 0.12);
}

.od-textpic-badge-value,
.od-textpic-badge-text {
    margin: 0;
    color: var(--af-on-surface);
    font-size: 1.1rem;
    line-height: 1.35;
    font-weight: 600;
}

.od-textpic-badge-text {
    margin-top: 0.2rem;
    color: var(--af-on-surface-variant);
    font-size: 0.95rem;
    font-weight: 500;
}

.od-textpic-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.od-textpic-title {
    margin: 0;
    color: var(--af-on-surface);
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    font-weight: 600;
}

.od-textpic-copy,
.od-textpic-copy p {
    margin: 0;
    color: var(--af-on-surface-variant);
    font-size: 1rem;
    line-height: 1.5;
}

.od-textpic-copy p + p {
    margin-top: 1rem;
}

.od-textpic-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1.15rem;
    color: var(--color-primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-textpic-eyebrow::before {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.od-textpic-copy ul,
.od-textmedia__body ul {
    margin: 0.75rem 0 0;
    padding-left: 1.35rem;
    list-style: disc;
}

.od-textpic-copy li,
.od-textmedia__body li {
    padding-left: 0.15rem;
    min-height: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: var(--af-on-surface-variant);
}

.od-textpic-copy li + li,
.od-textmedia__body li + li {
    margin-top: 0.45rem;
}

.od-textpic-cta {
    padding-top: 0.25rem;
}

.od-textpic-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 3.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background: var(--af-primary);
    color: var(--af-on-primary);
    text-decoration: none;
}

.od-textpic-btn:hover {
    background: var(--af-primary-container);
    color: var(--af-on-primary);
}

.od-textpic-btn .bi {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .od-textpic-split {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .od-textpic-split--media-right .od-textpic-media,
    .od-textpic-split--media-right .od-textpic-content {
        order: initial;
    }

    .od-textpic-badge {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .od-textpic-btn {
        width: 100%;
        justify-content: center;
    }
}

.od-bento-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.od-bento-feature {
    grid-row: 1 / 3;
    position: relative;
    min-height: 34rem;
    border: 1px solid rgba(141, 164, 190, 0.24);
    background: #0f1d31;
    overflow: hidden;
}

.od-bento-feature__hit {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-indent: -9999px;
    overflow: hidden;
}

.od-bento-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 420ms cubic-bezier(.2, .65, .2, 1);
}

.od-bento-feature__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.7rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(7, 14, 27, 0.06) 35%, rgba(7, 14, 27, 0.82) 100%);
}

.od-bento-feature__overlay > .bi {
    color: #8ed73a;
    font-size: 1.15rem;
    line-height: 1;
}

.od-bento-feature__title {
    margin: 0;
    color: #f2f8ff;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.1;
}

.od-bento-feature__text {
    margin: 0;
    color: #c0cee0;
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.45;
}

.od-bento-feature__cta {
    align-self: flex-start;
    margin-top: 0.35rem;
    background: #8ed73a;
    color: #152208;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.85rem;
    padding: 0.8rem 1.25rem;
}

.od-bento-feature__cta:hover {
    background: #7ec734;
    color: #121d07;
}

.od-bento-feature--linked {
    cursor: pointer;
}

.od-bento-feature--linked:hover .od-bento-feature__image,
.od-bento-feature--linked:focus-within .od-bento-feature__image {
    transform: scale(1.06);
}

.od-bento-right-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.od-bento-mini {
    background: #2a3447;
    border: 1px solid rgba(141, 164, 190, 0.2);
    padding: 1rem 1.1rem 1.2rem;
    min-height: 17rem;
}

.od-bento-mini__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d8e4f6;
    margin-bottom: 0.9rem;
}

.od-bento-mini__head .bi {
    color: #8ed73a;
}

.od-bento-mini__head span {
    font-size: 0.8rem;
    color: #b4c4da;
}

.od-bento-mini h3 {
    margin: 0 0 0.45rem;
    color: #edf4ff;
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 1.05;
}

.od-bento-mini p {
    margin: 0;
    color: #c2d0e2;
    line-height: 1.45;
}

.od-bento-concierge {
    background: #71bb1b;
    border: 1px solid rgba(109, 184, 19, 0.9);
    min-height: 13rem;
    padding: 2rem 2.3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    transform: scale(1);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.od-bento-concierge__hit {
    position: absolute;
    inset: 0;
    z-index: 5;
    text-indent: -9999px;
    overflow: hidden;
}

.od-bento-concierge h3 {
    margin: 0;
    color: #173100;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.od-bento-concierge > .bi {
    color: #173100;
    font-size: 1.1rem;
    line-height: 1;
}

.od-bento-concierge p {
    margin: 0;
    color: rgba(22, 43, 0, 0.85);
    line-height: 1.45;
}

.od-bento-concierge__cta {
    align-self: flex-start;
    margin-top: 0.4rem;
    background: #173100;
    color: #8fd53c;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 0.82rem;
    padding: 0.8rem 1.2rem;
}

.od-bento-concierge__cta:hover {
    color: #a3eb4c;
    background: #102400;
}

.od-bento-concierge--linked {
    cursor: pointer;
}

.od-bento-concierge--linked:hover,
.od-bento-concierge--linked:focus-within {
    transform: scale(1.015);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991.98px) {
    .od-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .od-bento-feature {
        grid-row: auto;
        min-height: 26rem;
    }

    .od-bento-right-top {
        grid-template-columns: 1fr;
    }
}

.od-cta-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #ffffff !important;
}

.od-cta-section--frame-default {
    padding: clamp(1.25rem, 3vw, 2.25rem) 0;
}

.od-cta-section--frame-none,
.od-cta-section--frame-no-frame {
    background: #f39200 !important;
}

.od-cta-section > .container,
.od-cta-section__inner {
    position: relative;
    z-index: 2;
}

.od-cta-section__inner {
    width: 100%;
}

.od-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 0;
    padding: clamp(2.4rem, 4vw, 4rem) clamp(2.75rem, 5vw, 5.5rem);
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .2), transparent 30%),
        #f39200;
    box-shadow: none;
}

.od-cta-section--frame-none .od-cta,
.od-cta-section--frame-no-frame .od-cta {
    padding: clamp(3.75rem, 6vw, 5.25rem) clamp(1.5rem, 4.8vw, 6.25rem);
    border-radius: 0;
}

.od-cta__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}

.od-cta__content {
    min-width: 0;
    max-width: 58rem;
}

.od-cta__bg-image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .16;
    pointer-events: none;
}

.od-cta__kicker {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 .55rem;
    color: rgba(255, 255, 255, .82) !important;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-cta__kicker::before {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.od-cta__title {
    margin: 0;
    max-width: 54rem;
    color: #ffffff !important;
    font-size: clamp(2.45rem, 5vw, 5rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
    text-transform: none;
    text-wrap: balance;
}

.od-cta__copy,
.od-cta__copy p {
    margin: 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, .84) !important;
    font-size: clamp(1.03rem, 1.25vw, 1.18rem);
    line-height: 1.6;
}

.od-cta__title + .od-cta__copy {
    margin-top: clamp(.7rem, 1.25vw, 1.15rem);
}

.od-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
    justify-self: end;
    padding-top: 0;
}

.od-cta__btn {
    min-height: 3.5rem;
    padding: .95rem 1.95rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: none;
    font-size: .98rem;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 800;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.od-cta__btn--primary {
    background: #ffffff !important;
    color: #0a1f33 !important;
    box-shadow: 0 16px 34px rgba(10, 31, 51, .16);
}

.od-cta-section--frame-default .od-cta__btn--primary {
    min-width: 10rem;
}

.od-cta-section--frame-none .od-cta__btn--primary,
.od-cta-section--frame-no-frame .od-cta__btn--primary {
    min-width: 10.25rem;
    min-height: 3.75rem;
    padding-inline: 2.35rem;
    font-size: 1.04rem;
}

.od-cta__btn--primary:hover {
    background: #0a1f33 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .od-cta__inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .od-cta__actions {
        grid-column: auto;
        grid-row: auto;
        justify-content: flex-start;
        padding-top: .75rem;
    }
}

@media (max-width: 767.98px) {
    .od-cta {
        padding: 2.2rem 1.35rem;
        border-radius: 1.6rem;
    }

    .od-cta-section--frame-none .od-cta,
    .od-cta-section--frame-no-frame .od-cta {
        padding: 3rem 1.25rem;
        border-radius: 0;
    }

    .od-cta__title {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
        line-height: 1;
    }

    .od-cta__actions,
    .od-cta__btn {
        width: 100%;
    }

    .od-cta__btn {
        min-height: 3.35rem;
        font-size: .95rem;
    }
}

.od-product-teaser__swiper {
    overflow: visible;
}

.od-product-card {
    height: 100%;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #c2c6d5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.od-product-card__media {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.od-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.od-product-card__badge {
    position: absolute;
    left: 1rem;
    top: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: #fcd400;
    color: #6e5c00;
    font-size: 0.75rem;
    line-height: 0.75rem;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.od-product-card__body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 0.5rem;
    column-gap: 0.75rem;
}

.od-product-card__title {
    margin: 0;
    color: #1a1c1e;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}

.od-product-card__price {
    color: #0058bd;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    text-align: right;
}

.od-product-card__price-note {
    grid-column: 2;
    color: #424753;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: right;
    margin-top: -0.25rem;
}

.od-product-card__desc {
    grid-column: 1 / -1;
    color: #424753;
    font-size: 1rem;
    line-height: 1.6rem;
    min-height: 5.8rem;
}

.od-product-card__desc p {
    margin: 0;
}

.od-product-card__button {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #0058bd;
    color: #fff;
    text-decoration: none;
    min-height: 3rem;
}

.od-product-card__button:hover {
    background: #014ca4;
    color: #fff;
}

.od-product-teaser__controls {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.od-product-teaser__prev,
.od-product-teaser__next {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #c2c6d5;
    border-radius: 0.5rem;
    background: #fff;
    color: #1a1c1e;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .od-navbar {
        background: rgba(255, 255, 255, 0.94);
    }

    .od-navbar.od-navbar--on-top {
        background: transparent;
    }

    .od-navbar__logo {
        width: min(58vw, 13rem);
        max-height: 1.95rem;
    }

    .od-navbar.od-navbar--on-top .od-navbar__logo {
        width: min(72vw, 15rem);
        max-height: 2.9rem;
    }

    .od-hero {
        min-height: 74vh;
    }

    .od-hero-carousel .od-hero-carousel__swiper,
    .od-hero-carousel .swiper-wrapper,
    .od-hero-carousel .od-hero-carousel__slide {
        min-height: 74vh;
    }

    .od-hero-title {
        font-size: clamp(2.1rem, 8vw, 3.6rem);
    }

    .py-lg-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}


.container{
    max-width: 1200px;
}

/*Teaserswiper css*/
.od-teaserswiper {
    --swiper-theme-color: var(--color-primary);
}

.od-teaserswiper .swiper {
    overflow: hidden;
}

.od-teaserswiper-feature,
.od-teaserswiper-card {
    background: #fff;
    overflow: hidden;
}

.od-teaserswiper-feature__image,
.od-teaserswiper-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms cubic-bezier(.2, .65, .2, 1), filter 450ms ease;
}

.od-teaserswiper-feature {
    min-height: 520px;
}

.od-teaserswiper-feature picture,
.od-teaserswiper-card picture {
    display: block;
    height: 100%;
    overflow: hidden;
}

.od-teaserswiper-feature__content,
.od-teaserswiper-card__content {
    height: 100%;
    padding: clamp(2rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.od-teaserswiper-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.od-teaserswiper-card picture {
    aspect-ratio: 4 / 3;
}

.od-teaserswiper-card__content {
    flex: 1;
    justify-content: space-between;
    min-height: 280px;
}

.od-teaserswiper__kicker {
    color: var(--color-primary);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.od-teaserswiper__headline {
    color: var(--color-text);
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.od-teaserswiper__text {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.od-teaserswiper__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 250ms ease, color 250ms ease;
}

.od-teaserswiper__link:hover {
    gap: 1.5rem;
    color: var(--color-primary-dark);
}

.od-teaserswiper__link-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 1;
}

.od-teaserswiper-card:hover .od-teaserswiper-card__image,
.od-teaserswiper-feature:hover .od-teaserswiper-feature__image {
    transform: scale(1.06);
    filter: contrast(1.05) saturate(1.05);
}

.od-teaserswiper__nav {
    color: var(--color-primary);
}

@media (max-width: 767.98px) {
    .od-teaserswiper-feature {
        min-height: auto;
    }

    .od-teaserswiper-feature picture {
        aspect-ratio: 4 / 3;
    }

    .od-teaserswiper-feature__content,
    .od-teaserswiper-card__content {
        padding: 2rem;
    }
}

.od-teaserswiper__next,
.od-teaserswiper__prev {
    position: absolute;
    color: #e6f0ff;
    background: transparent;
    border: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 0;
    margin: auto;
    --swiper-navigation-size: 2.6rem;
}

.od-teaserswiper__next:hover,
.od-teaserswiper__prev:hover {
    color: #ffffff;
    background: transparent;
    border: 0;
}

.od-teaserswiper__next::after,
.od-teaserswiper__prev::after {
    font-size: 2.6rem !important;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.od-rental-static {
    width: 100%;
}

.od-rental-static__bar {
    width: 100%;
    padding: 20px;
    margin: 0;
    box-sizing: border-box;
    background: #232a36;
    outline: 1px rgba(66, 73, 55, 0.3) solid;
    outline-offset: -1px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.od-rental-static__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}

.od-rental-static__label {
    color: #93da42;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.6px;
}

.od-rental-static__field {
    min-height: 40px;
    box-sizing: border-box;
    background: #141c27;
    outline: 1px rgba(66, 73, 55, 0.3) solid;
    outline-offset: -1px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dbe3f3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.7px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.od-rental-static__field .bi {
    color: #c1cab2;
    font-size: 16px;
    line-height: 1;
}

.od-rental-static__field input,
.od-rental-static__field select {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    color: #dbe3f3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 0;
}

.od-rental-static__field input[type="number"] {
    text-transform: none;
}

.od-rental-static__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 22px;
}

.od-rental-static__field select::-ms-expand {
    display: none;
}

.od-rental-static__field--select {
    position: relative;
}

.od-rental-static__field--select::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #8f9aad;
    border-bottom: 2px solid #8f9aad;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.od-rental-static__field--custom-select {
    position: relative;
    overflow: visible;
    padding-right: 36px;
    padding-left: 40px;
    cursor: pointer;
}

.od-rental-static__select-trigger {
    display: block;
    width: 100%;
    min-width: 0;
    background: transparent;
    border: 0;
    color: #dbe3f3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.od-rental-static__field--custom-select .bi {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.od-rental-static__field--custom-select::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #8f9aad;
    border-bottom: 2px solid #8f9aad;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
    transition: transform 140ms ease;
}

.od-rental-static__field--custom-select.is-open::after {
    transform: translateY(-40%) rotate(-135deg);
}

.od-rental-static__select-menu {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    position: absolute;
    left: -1px;
    right: -1px;
    top: calc(100% + 8px);
    background: #141c27;
    border: 1px solid rgba(66, 73, 55, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    display: none;
    z-index: 1200;
}

.od-rental-static__field--custom-select.is-open .od-rental-static__select-menu {
    display: block;
}

.od-rental-static__select-menu li {
    color: #dbe3f3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 10px 14px;
    cursor: pointer;
}

.od-rental-static__select-menu li:hover,
.od-rental-static__select-menu li[aria-selected="true"] {
    background: rgba(147, 218, 66, 0.14);
    color: #93da42;
}

/* Shared Clever & Sporty Flatpickr theme. */
.flatpickr-calendar {
    background: #ffffff;
    border: 1px solid #dce4ec;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(10, 31, 51, 0.16);
    color: #0a1f33;
}

.flatpickr-calendar.od-flatpickr-dark {
    background: #ffffff;
    color: #0a1f33;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-weekdays,
.flatpickr-weekday {
    background: #ffffff;
    color: #5d6875 !important;
    fill: #0a1f33;
}

.flatpickr-calendar .flatpickr-rContainer,
.flatpickr-calendar .flatpickr-days,
.flatpickr-calendar .dayContainer {
    background: #ffffff;
}

.flatpickr-calendar .flatpickr-prev-month svg,
.flatpickr-calendar .flatpickr-next-month svg {
    fill: #0a1f33;
}

.flatpickr-day {
    color: #0a1f33;
    border-color: transparent;
}

.flatpickr-day.today {
    border-color: #f39200;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #f39200;
    border-color: #f39200;
    color: #ffffff;
}

.flatpickr-day:hover {
    background: #fff0d8;
    border-color: #fff0d8;
}

.flatpickr-calendar .flatpickr-time {
    border-top: 1px solid #dce4ec;
}

.flatpickr-calendar .flatpickr-time input,
.flatpickr-calendar .flatpickr-time .flatpickr-am-pm {
    color: #0a1f33;
}

.od-rental-static__field--date {
    gap: 10px;
}

.od-rental-static__field--date input {
    min-width: 0;
    width: 0;
    flex: 1 1 0;
}

.od-rental-static__date-sep {
    color: #9fb0c7;
    font-weight: 700;
}

.od-rental-static__cta {
    min-height: 40px;
    box-sizing: border-box;
    padding: 0 30px;
    border: 0;
    background: #93da42;
    box-shadow: 0 0 20px rgba(147, 218, 66, 0.3);
    color: #1d3700;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    white-space: nowrap;
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 991.98px) {
    .od-rental-static__bar {
        grid-template-columns: 1fr;
    }

    .od-rental-static__cta {
        width: 100%;
    }

    .od-rental-static__field--date {
        flex-wrap: wrap;
        row-gap: 8px;
    }

    .od-rental-static__field--date input {
        flex: 1 1 calc(50% - 8px);
    }
}


.od-teaserswiper__swiper {
    width: 100%;
    overflow: hidden;
}

.od-teaserswiper .swiper-wrapper {
    display: flex;
}

.od-teaserswiper .swiper-slide {
    flex-shrink: 0;
    height: auto;
}
.od-textmedia__headline {
    color: var(--color-text);
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}

.od-textmedia__subheadline {
    color: var(--color-primary);
    letter-spacing: .12em;
    font-size: .78rem;
}

.od-textmedia__body {
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.625;
}

.od-textmedia__panel {
    background: transparent;
    padding: clamp(2rem, 4vw, 6rem);
    min-height: 100%;
}

.od-textmedia__media-panel {
    min-height: 100%;
}

.od-textmedia__media-panel .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.od-textmedia__media-panel .col {
    padding: 0;
}

.od-textmedia__cta {
    letter-spacing: 0.1em;
    line-height: 1.25rem;
    border-radius: 0;
}

.od-textmedia__figure {
    overflow: hidden;
    height: 100%;
}

.od-textmedia__image {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .12);
    border-radius: 0 !important;
}

.od-textmedia--split-feature .od-textmedia__image {
    aspect-ratio: 4 / 5;
}

.od-textmedia__media-panel .od-textmedia__image {
    aspect-ratio: 16 / 9;
}

.od-textmedia__media-wrap {
    width: min(100%, 840px);
}

.od-textmedia__split--beside .od-textmedia__media-panel .od-textmedia__image {
    aspect-ratio: 4 / 5;
}

@media (min-width: 992px) {
    .od-textmedia__split--beside > [class*="col-"] {
        display: flex;
    }

    .od-textmedia__split--beside .od-textmedia__gallery,
    .od-textmedia__split--beside .od-textmedia__media-panel,
    .od-textmedia__split--beside .od-textmedia__figure,
    .od-textmedia__split--beside .od-textmedia__media-panel > .row,
    .od-textmedia__split--beside .od-textmedia__media-panel > .row > .col {
        height: 100%;
    }

    .od-textmedia__split--beside .od-textmedia__media-panel > .row {
        margin-bottom: 0 !important;
    }

    .od-textmedia__split--beside .od-textmedia__image {
        aspect-ratio: auto !important;
        height: 100%;
        min-height: 100%;
    }
}

.od-textmedia__step--text {
    position: relative;
    z-index: 2;
}

.od-textmedia__step--media {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .od-textmedia__step--text {
        margin-left: -2.75rem;
    }

    .od-textmedia__step--media {
        margin-right: -2.75rem;
    }
}

@media (min-width: 1200px) {
    .od-textmedia__step--text {
        margin-left: -4rem;
    }

    .od-textmedia__step--media {
        margin-right: -4rem;
    }
}

.od-textmedia__caption {
    color: var(--color-muted);
}

.od-textmedia picture,
.od-textmedia .od-textmedia__figure {
    border-radius: 0 !important;
}

.od-text-split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(3rem, 9vw, 8rem);
    align-items: start;
}

.od-text-split__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1.15rem;
    color: #0a1f33;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-text__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1.15rem;
    color: #0a1f33;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-text-split__eyebrow::before,
.od-text__eyebrow::before {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-primary);
    content: "";
}

.od-text-split__title {
    max-width: 39rem;
    margin: 0;
    color: var(--color-text);
    font-size: clamp(2.7rem, 4.8vw, 4.8rem);
    font-weight: 800;
    line-height: .97;
    letter-spacing: -.06em;
    text-wrap: balance;
}

.od-text-split__body {
    max-width: 48rem;
    color: #0a1f33;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.7;
}

.od-text-split__body p:first-child {
    color: #0a1f33;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.55;
}

.od-text-split__body p {
    margin: 0 0 1.45rem;
}

.od-text-split__body p:last-child {
    margin-bottom: 0;
}

.od-text-split__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
    padding: .95rem 1.85rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #0a1f33;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.od-text-split__button:hover,
.od-text-split__button:focus-visible {
    background: var(--color-primary-dark);
    color: #0a1f33;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .od-text-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .od-text-split__title {
        max-width: 46rem;
    }
}

@media (max-width: 575.98px) {
    .od-text-split__title {
        font-size: clamp(2.35rem, 12vw, 3.45rem);
    }
}

.od-textmedia--imageorient-120 {
    width: min(calc(100% - 3rem), 1320px);
}

.od-textmedia-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(460px, .96fr);
    gap: clamp(2.5rem, 6vw, 6.5rem);
    align-items: center;
}

.od-textmedia-mosaic__text .od-textmedia__panel {
    padding: 0;
}

.od-textmedia-mosaic__text .od-textmedia__subheadline {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.4rem !important;
    color: var(--color-primary);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
}

.od-textmedia-mosaic__text .od-textmedia__subheadline::before {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.od-textmedia-mosaic__text .od-textmedia__headline {
    max-width: 720px;
    margin-bottom: clamp(1.75rem, 3vw, 2.75rem) !important;
    color: var(--color-text);
    font-size: clamp(3.5rem, 6.9vw, 5.8rem);
    line-height: .95;
    letter-spacing: -.06em;
    text-transform: none;
}

.od-textmedia-mosaic__text .od-textmedia__body {
    max-width: 720px;
    color: #082344;
    font-size: clamp(1.05rem, 1.5vw, 1.38rem);
    line-height: 1.58;
}

.od-textmedia-mosaic__text .od-textmedia__body p {
    margin-bottom: 1.55rem;
}

.od-textmedia-mosaic__text .od-textmedia__body p:last-child {
    margin-bottom: 0;
}

.od-textmedia__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
    align-items: center;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.od-textmedia__actions .od-textmedia__cta {
    margin-top: 0 !important;
}

.od-textmedia-mosaic__text .od-textmedia__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin-top: 0 !important;
    padding: .95rem 1.8rem !important;
    border: 0;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: .95rem;
    letter-spacing: 0;
    text-transform: none !important;
    box-shadow: none;
}

.od-textmedia__text-link {
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    color: #0a1f33;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.od-textmedia__text-link::after {
    margin-left: .45rem;
    content: "→";
}

.od-textmedia-mosaic__text .od-textmedia__cta:hover,
.od-textmedia-mosaic__text .od-textmedia__cta:focus-visible {
    background: #d97800;
    color: #fff;
    transform: translateY(-2px);
}

.od-textmedia__text-link:hover,
.od-textmedia__text-link:focus-visible {
    color: #d97800;
}

.od-textmedia-mosaic__media {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 12px;
    min-height: clamp(500px, 42vw, 600px);
}

.od-textmedia-mosaic__item {
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(8, 35, 68, .12);
    border-radius: 28px;
    background: #ffffff;
}

.od-textmedia-mosaic__item--large {
    grid-row: 1 / -1;
}

.od-textmedia-mosaic__item .od-textmedia__figure,
.od-textmedia-mosaic__item .od-textmedia__figure > a,
.od-textmedia-mosaic__link {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.od-textmedia-mosaic__item .od-textmedia__figure {
    overflow: hidden;
    border-radius: inherit !important;
    background: #ffffff;
}

.od-textmedia-mosaic__item .od-textmedia__image {
    width: clamp(12rem, 22vw, 17.25rem);
    height: auto;
    max-width: 150%;
    max-height: none;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    border-radius: 0 !important;
    box-shadow: none;
    transform: rotate(-90deg);
    transform-origin: center;
}

.od-textmedia-mosaic__item--large .od-textmedia__image {
    width: clamp(22rem, 42vw, 36rem);
    max-width: 190%;
    transform: rotate(90deg);
}

.od-textmedia-mosaic__item .od-textmedia__caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin: 0 !important;
    color: rgba(8, 35, 68, .68);
}

@media (max-width: 1199.98px) {
    .od-textmedia-mosaic {
        grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
        gap: clamp(2rem, 4vw, 4rem);
    }

    .od-textmedia-mosaic__media {
        min-height: 520px;
    }
}

@media (max-width: 991.98px) {
    .od-textmedia--imageorient-120 {
        width: min(calc(100% - 2rem), 720px);
    }

    .od-textmedia-mosaic {
        grid-template-columns: 1fr;
    }

    .od-textmedia-mosaic__media {
        grid-template-rows: repeat(3, 260px);
        min-height: 0;
    }

    .od-textmedia-mosaic__item--large {
        grid-row: auto;
    }

    .od-textmedia-mosaic__item--large .od-textmedia__image {
        width: clamp(13rem, 62vw, 22rem);
        max-width: 150%;
    }
}

@media (max-width: 575.98px) {
    .od-textmedia--imageorient-120 {
        width: min(calc(100% - 1.5rem), 100%);
    }

    .od-textmedia-mosaic__text .od-textmedia__headline {
        font-size: clamp(2.8rem, 16vw, 4rem);
    }

    .od-textmedia-mosaic__media {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 230px);
    }
}

.od-step-timeline {
    padding: clamp(5.5rem, 10vw, 9rem) 0 clamp(6rem, 10vw, 9.5rem);
    background: #f3f4f5;
    color: #0a1f33;
}

.od-step-timeline--light {
    background: #ffffff;
}

.od-step-timeline--dark {
    background: #0a1f33;
    color: #ffffff;
}

.od-step-timeline__header {
    max-width: 46rem;
    margin: 0 auto clamp(4.5rem, 8vw, 6.8rem);
    text-align: center;
}

.od-step-timeline__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin: 0 0 1.15rem;
    color: #f39200;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-step-timeline__eyebrow::before {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.od-step-timeline__title {
    margin: 0;
    color: inherit;
    font-size: clamp(3rem, 6vw, 5.3rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.06em;
    text-wrap: balance;
}

.od-step-timeline__intro {
    max-width: 42rem;
    margin: 1.5rem auto 0;
    color: #5c6672;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.7;
}

.od-step-timeline--dark .od-step-timeline__intro {
    color: rgba(255, 255, 255, .68);
}

.od-step-timeline__intro p:last-child {
    margin-bottom: 0;
}

.od-step-timeline__list {
    --step-gap: clamp(2rem, 5vw, 5rem);
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--step-count, 3), minmax(0, 1fr));
    gap: var(--step-gap);
    max-width: min(100%, calc(var(--step-count, 3) * 22rem));
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.od-step-timeline__list::before {
    position: absolute;
    top: 31px;
    left: calc(100% / var(--step-count, 3) / 2);
    right: calc(100% / var(--step-count, 3) / 2);
    height: 1px;
    background: #dce4ea;
    content: "";
}

.od-step-timeline--dark .od-step-timeline__list::before {
    background: rgba(255, 255, 255, .18);
}

.od-step-timeline__item {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 1.75rem;
    min-width: 0;
    text-align: center;
}

.od-step-timeline__marker {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 2px solid #f39200;
    border-radius: 50%;
    background: #f3f4f5;
    color: #f39200;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.od-step-timeline--light .od-step-timeline__marker {
    background: #ffffff;
}

.od-step-timeline--dark .od-step-timeline__marker {
    background: #0a1f33;
}

.od-step-timeline__content h3 {
    margin: 0 0 1rem;
    color: inherit;
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.od-step-timeline__content p {
    max-width: 18rem;
    margin: 0 auto;
    color: #4f5d6b;
    font-size: .98rem;
    line-height: 1.65;
}

.od-step-timeline--dark .od-step-timeline__content p {
    color: rgba(255, 255, 255, .68);
}

.od-step-timeline__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 1rem;
    color: #f39200;
    font-weight: 800;
    text-decoration: none;
}

.od-step-timeline__link:hover,
.od-step-timeline__link:focus-visible {
    color: #d97800;
}

@media (max-width: 991.98px) {
    .od-step-timeline__header {
        margin-bottom: 3rem;
    }

    .od-step-timeline__list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.75rem;
        max-width: 34rem;
    }

    .od-step-timeline__list::before {
        top: 32px;
        bottom: 0;
        left: 32px;
        right: auto;
        width: 1px;
        height: auto;
    }

    .od-step-timeline__item {
        grid-template-columns: 64px minmax(0, 1fr);
        justify-items: start;
        gap: 1.25rem;
        text-align: left;
    }

    .od-step-timeline__content p {
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .od-step-timeline__title {
        font-size: clamp(2.55rem, 13vw, 3.6rem);
    }
}

.od-table-ce {
    color: #0a1f33;
}

.od-table-ce__panel {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce4ec;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(10, 31, 51, 0.09);
}

.od-table-ce__panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #f39200 0%, #f39200 38%, #ffffff 100%);
    pointer-events: none;
}

.od-table-ce__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2.25rem);
    border-bottom: 1px solid #e8edf2;
}

.od-table-ce__kicker {
    margin: 0 0 0.45rem;
    color: #0a1f33;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-table-ce__title {
    margin: 0;
    color: #0a1f33;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    font-weight: 800;
    line-height: 1.1;
}

.od-table-ce__discount {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4rem;
    min-height: 2.5rem;
    padding: 0.5rem 0.9rem;
    color: #0a1f33;
    background: var(--color-primary);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(243, 146, 0, 0.24);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.od-table-ce__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
}

.od-table-ce__scroll:focus {
    outline: 3px solid rgba(243, 146, 0, 0.22);
    outline-offset: -3px;
}

.od-table-ce__scroll--mobile {
    display: none;
}

.od-table-ce__table {
    width: 100%;
    min-width: 900px;
    margin: 0;
    border-collapse: collapse;
    color: #33485d;
    font-size: 0.95rem;
    line-height: 1.45;
}

.od-table-ce__table caption {
    caption-side: top;
    padding: 1rem 1.4rem 0.75rem;
    color: #66788a;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
}

.od-table-ce__table th,
.od-table-ce__table td {
    padding: 1rem 1.4rem;
    vertical-align: middle;
    border-bottom: 1px solid #e8edf2;
}

.od-table-ce__table thead th {
    color: #0a1f33;
    background: #ffffff;
    border-bottom: 2px solid #f39200;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.od-table-ce__table thead th:first-child,
.od-table-ce__table tbody th {
    width: 12rem;
}

.od-table-ce__table tbody th {
    color: #0a1f33;
    background: #f8fafc;
    font-weight: 800;
}

.od-table-ce__table tbody td {
    color: #33485d;
}

.od-table-ce__table tbody tr:nth-child(even) th,
.od-table-ce__table tbody tr:nth-child(even) td {
    background-color: #fbfcfd;
}

.od-table-ce__table tbody tr:hover th,
.od-table-ce__table tbody tr:hover td {
    background-color: #fff6e8;
}

.od-table-ce__table tbody tr:last-child th,
.od-table-ce__table tbody tr:last-child td {
    border-bottom: 0;
}

.od-table-ce__price {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    white-space: nowrap;
}

.od-table-ce__price-original {
    color: #82909e;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.od-table-ce__price-discounted {
    color: #0a1f33;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

@media (max-width: 767.98px) {
    .od-table-ce__header {
        flex-direction: column;
        padding: 1.2rem;
    }

    .od-table-ce__discount {
        min-height: 2.125rem;
        font-size: 0.9rem;
    }

    .od-table-ce__scroll--desktop {
        display: none;
    }

    .od-table-ce__scroll--mobile {
        display: block;
        overflow-x: visible;
    }

    .od-table-ce__table {
        min-width: 0;
        font-size: 0.88rem;
    }

    .od-table-ce__table--transposed {
        width: 100%;
        min-width: 0;
        table-layout: auto;
    }

    .od-table-ce__table th,
    .od-table-ce__table td {
        padding: 0.75rem 0.7rem;
        hyphens: auto;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .od-table-ce__table.od-table-ce__table--transposed tbody tr > th:first-child {
        width: clamp(7.5rem, 34vw, 10rem);
        max-width: clamp(7.5rem, 34vw, 10rem);
        color: #0a1f33;
        background: #fff3df !important;
        border-right: 2px solid #f39200;
        font-size: 0.82rem;
        white-space: normal;
    }

    .od-table-ce__table--transposed tbody td {
        width: auto;
        font-size: 0.84rem;
    }
}

@media (max-width: 399.98px) {
    .od-table-ce__scroll--mobile {
        overflow-x: auto;
    }

    .od-table-ce__table--transposed {
        width: max-content;
        min-width: 420px;
    }

    .od-table-ce__table--transposed tbody td {
        min-width: 9rem;
    }
}

.icc-footer {
    text-align: center;
    margin-top: 0.5rem;
}

.icc-footer img {
    filter: brightness(0) saturate(100%);
}

@media (max-width: 991.98px) {
    .od-textmedia {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* ===== Clever & Sporty Alpine Rental Theme (color layer only) ===== */
:root {
    --color-primary: #f39200;
    --color-primary-dark: #d97f00;
    --color-secondary: #004c97;
    --color-accent: #ff5722;
    --color-text: #0a1f33;
    --color-muted: #424751;
    --color-surface: #ffffff;

    --af-primary: #f39200;
    --af-primary-container: #d97f00;
    --af-on-primary: #0a1f33;
    --af-on-surface: #0a1f33;
    --af-on-surface-variant: #424751;
    --af-surface-container-lowest: #ffffff;
    --af-surface-container-low: #f8f9fa;
    --af-surface-container-high: #f3f4f5;
    --af-secondary-container: #004c97;
    --af-outline-variant: #e1e3e4;
}

html,
body {
    background: #f8f9fa !important;
    color: #0a1f33 !important;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

main {
    background: #f8f9fa !important;
}

.od-section-heading {
    color: #0a1f33;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

.bg-white,
.bg-light,
.od-textpic-section.bg-white {
    background: #f8f9fa !important;
}

.od-navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(10, 31, 51, 0.1) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
}

.od-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1031;
    height: 2.75rem;
    overflow: hidden;
    background: #0a1f33;
    color: #ffffff;
    font-size: 0.8125rem;
    line-height: 1;
}

.od-topbar__viewport {
    height: 100%;
    overflow: hidden;
}

.od-topbar__items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: max-content;
    min-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.od-topbar__item,
.od-topbar__item a {
    color: #ffffff;
}

.od-topbar__item a {
    text-decoration: none;
}

.od-topbar__item a:hover,
.od-topbar__item a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: #f39200;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

.od-topbar__partner-logo {
    display: block;
    width: auto;
    height: 1.5625rem;
}

.od-topbar__benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.od-topbar__benefit img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.od-navbar {
    top: 2.75rem;
}

@media (max-width: 1200px) {
    .od-topbar__items {
        min-width: max-content;
        animation: od-topbar-loop 20s linear infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    .od-topbar__viewport {
        overflow-x: auto;
    }

    .od-topbar__items {
        animation: none;
    }
}

@keyframes od-topbar-loop {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

.od-navbar.od-navbar--on-top {
    background: rgba(255, 255, 255, 0.84) !important;
}

.od-navbar.od-navbar--top-solid.od-navbar--on-top {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom-color: rgba(10, 31, 51, 0.1) !important;
    backdrop-filter: blur(12px);
}

.od-navbar.od-navbar--top-solid.od-navbar--on-top .od-navbar__logo {
    width: clamp(12rem, 20vw, 18rem);
    max-width: 58vw;
    max-height: 2.35rem;
}

.od-navbar .navbar-brand,
.od-navbar .nav-link,
.od-menu-toggle {
    color: #0a1f33 !important;
}

.od-navbar__brand-text {
    color: #0a1f33;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1rem, 1.55vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.od-navbar-mainnav {
    position: static;
    display: none;
}

.od-navbar-mainnav__item {
    position: relative;
}

.od-navbar-quickmenu {
    position: static;
    display: none;
    transform: none;
    gap: 0.75rem;
}

.od-navbar-language {
    display: none;
}

.od-menu-toggle-btn {
    display: inline-flex;
}

@media (min-width: 1413px) {
    .od-navbar-mainnav,
    .od-navbar-quickmenu,
    .od-navbar-language {
        display: flex;
    }

    .od-menu-toggle-btn {
        display: none;
    }
}

.od-navbar-quickmenu__item {
    width: 2.25rem;
    height: 2.25rem;
}

.od-navbar-quickmenu__icon {
    filter: none !important;
    width: 1.2rem;
    height: 1.2rem;
}

.od-navbar-mainnav__link {
    color: #0a1f33 !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.5rem 0 0.6rem !important;
    border-bottom: 2px solid transparent;
}

.od-navbar-mainnav__link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.od-navbar-mainnav__chevron {
    color: currentColor;
    font-size: 0.7rem;
    transition: transform 160ms ease;
}

.od-navbar .nav-link.active,
.od-navbar .nav-link:hover,
.od-navbar-mainnav__link.active,
.od-navbar-mainnav__link:hover {
    color: #0a1f33 !important;
    border-bottom-color: #f39200;
}

.od-navbar-mainnav__item--has-children:hover .od-navbar-mainnav__chevron,
.od-navbar-mainnav__item--has-children:focus-within .od-navbar-mainnav__chevron {
    transform: rotate(180deg);
}

.od-navbar-dropdown {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    z-index: 1040;
    min-width: 14rem;
    margin: 0;
    padding: 0.55rem;
    display: block;
    list-style: none;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(10, 31, 51, 0.1);
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(10, 31, 51, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -0.35rem);
    transition: opacity 160ms ease, transform 160ms ease;
}

.od-navbar-dropdown::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 0.75rem;
    content: "";
}

.od-navbar-mainnav__item--has-children:hover .od-navbar-dropdown,
.od-navbar-mainnav__item--has-children:focus-within .od-navbar-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.od-navbar-dropdown__link {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 8px;
    color: #0a1f33;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.od-navbar-dropdown__link:hover,
.od-navbar-dropdown__link:focus,
.od-navbar-dropdown__link.active {
    background: rgba(243, 146, 0, 0.1);
    color: #0a1f33;
}

.od-offcanvas-nav {
    background: #ffffff !important;
    color: #0a1f33 !important;
}

.od-navbar .navbar-toggler-icon {
    filter: none;
}

.od-navbar-mainnav__link {
    border-bottom-color: transparent;
}

.od-hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 31, 51, 0.7) 0%, rgba(10, 31, 51, 0.46) 44%, rgba(10, 31, 51, 0.08) 100%),
        linear-gradient(180deg, rgba(10, 31, 51, 0.16), rgba(10, 31, 51, 0.34)) !important;
}

.od-hero-glass-card {
    width: min(100%, 42rem) !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.od-hero-pill {
    margin-top: 0.95rem;
    padding: 0 0 2.0625rem;
    display: block;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
}

.lead {
    color: #0a1f33 !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.625rem, 2.6vw, 1.875rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: none;
}

.od-hero-title,
.od-textmedia__headline,
.od-textpic-title,
.od-bento__title,
.od-product-card__title {
    color: #0a1f33 !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
}

.od-hero-title {
    color: #ffffff !important;
    max-width: 42rem;
    font-size: clamp(3.25rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.od-hero-copy,
.od-textmedia__body,
.od-textpic-copy,
.od-bento__text,
.od-product-card__desc,
.od-product-card__price-note {
    color: #424751 !important;
}

.od-hero-copy {
    max-width: 42rem;
    margin-top: 0.95rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1;
}

.btn-danger,
.od-hero-btn--primary,
.od-product-card__button {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    border-radius: 999px !important;
    color: #0a1f33 !important;
    box-shadow: 0 10px 15px -3px rgba(243, 146, 0, 0.24), 0 4px 6px -4px rgba(243, 146, 0, 0.24) !important;
}

.od-navbar-booking {
    background: var(--color-primary) !important;
    border-radius: 999px;
    color: #0a1f33 !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 0 10px 15px -3px rgba(243, 146, 0, 0.2), 0 4px 6px -4px rgba(243, 146, 0, 0.2);
}

.od-navbar-booking:hover {
    background: var(--color-primary-dark) !important;
    color: #0a1f33 !important;
}

.od-navbar-cart {
    color: #0a1f33 !important;
}

.od-hero-btn {
    min-height: 3rem;
    padding: 0.85rem 2.5rem;
    font-size: 1rem;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    letter-spacing: 0;
    text-transform: none;
}

.btn-danger:hover,
.od-hero-btn--primary:hover,
.od-product-card__button:hover {
    background: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark) !important;
    color: #0a1f33 !important;
}

.od-hero-btn--secondary {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.56) !important;
    color: #ffffff !important;
}

.od-hero-btn--secondary:hover {
    background: rgba(20, 36, 61, 0.96) !important;
    border-color: rgba(178, 200, 224, 0.52) !important;
    color: #f3f8ff !important;
}

.od-teaser-cards,
.od-textpic-section,
.od-bento,
.od-teaserswiper,
.od-product-teaser {
    background: #f8f9fa !important;
}

.od-teaser-cards .card,
.od-teaserswiper .card,
.od-bento__card,
.od-product-card,
.card {
    background: #ffffff !important;
    border-color: #e1e3e4 !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.od-product-card__media {
    background: #f3f4f5 !important;
}

.od-product-card__badge {
    background: rgba(243, 146, 0, 0.1) !important;
    color: #0a1f33 !important;
    font-family: "JetBrains Mono", "Inter", monospace;
}

.od-textmedia__subheadline,
.od-product-card__price,
.od-bento__icon,
.od-bento__link,
.od-bento__partner-value,
.od-teaser-cards__kicker,
.od-bento-feature__overlay > .bi,
.od-bento-mini__head .bi,
.od-hero-status__label {
    color: #0a1f33 !important;
}

.od-bento__bullet,
.od-bento-feature__cta,
.od-bento-concierge,
.od-bento-concierge__cta,
.od-hero-status__icon {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #0a1f33 !important;
}

.od-bento__bullet {
    color: #f39200 !important;
    background: transparent !important;
}

.od-bento__bullet::before {
    background: #f39200 !important;
}

.od-textpic-media-inner {
    background: #d7e5f3 !important;
    border-color: #e1e3e4 !important;
    border-radius: 16px !important;
}

.od-textpic-media-link,
.od-textpic-zoom-trigger {
    display: block;
}

.od-textpic-zoom-trigger {
    cursor: zoom-in;
}

.od-textpic-zoom-trigger:focus-visible {
    border-radius: 12px;
    outline: 3px solid #f39200;
    outline-offset: 4px;
}

body.od-lightbox-open {
    overflow: hidden;
}

.od-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(10, 31, 51, 0.94);
}

.od-lightbox.is-open {
    display: flex;
}

.od-lightbox__image {
    width: auto;
    height: auto;
    max-width: min(92vw, 2200px);
    max-height: 84vh;
    object-fit: contain;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.od-lightbox__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #f39200;
    color: #0a1f33;
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
}

.od-lightbox__close:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

.od-lightbox__caption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
}

.od-textpic-badge {
    background: rgba(10, 31, 51, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.2) !important;
}

.od-textpic-badge-value,
.od-textpic-badge-text {
    color: #dfe9f9 !important;
}

.od-rental-static__bar {
    padding: 1.5rem !important;
    background: #0a1f33 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    outline: 0 !important;
    backdrop-filter: blur(10px);
}

.od-rental-static__label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: "JetBrains Mono", "Inter", monospace;
}

.od-rental-static__field {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    outline: 0 !important;
    text-transform: none;
}

.od-rental-static__field input,
.od-rental-static__field select,
.od-rental-static__select-trigger {
    color: rgba(255, 255, 255, 0.9) !important;
    text-transform: none;
}

.od-rental-static__field .bi,
.od-rental-static__date-sep {
    color: rgba(255, 255, 255, 0.72) !important;
}

.od-rental-static__select-menu {
    background: #ffffff !important;
    border-color: #e1e3e4 !important;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(10, 31, 51, 0.18);
}

.od-rental-static__select-menu li {
    color: #0a1f33 !important;
    text-transform: none;
}

.od-rental-static__select-menu li:hover,
.od-rental-static__select-menu li[aria-selected="true"] {
    background: rgba(243, 146, 0, 0.1) !important;
    color: #0a1f33 !important;
}

.od-rental-static__cta {
    background: var(--color-primary) !important;
    border-radius: 8px !important;
    color: #0a1f33 !important;
    box-shadow: 0 10px 15px -3px rgba(243, 146, 0, 0.24), 0 4px 6px -4px rgba(243, 146, 0, 0.24) !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    letter-spacing: 0;
    text-transform: none;
}

.od-rental-static__cta:hover {
    background: var(--color-primary-dark) !important;
}

.flatpickr-day.today {
    border-color: #f39200 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #0a1f33 !important;
}

.flatpickr-day:hover {
    background: rgba(243, 146, 0, 0.16) !important;
    border-color: rgba(243, 146, 0, 0.16) !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #5d6875 !important;
    opacity: 1;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #667085 !important;
    background: transparent !important;
    border-color: transparent !important;
    opacity: 1;
    cursor: not-allowed;
}

.od-hero .od-hero-booking {
    width: min(100%, 42rem);
    min-height: 0;
    margin-top: 0;
    padding: 1.25rem !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 14rem);
    align-items: end;
    gap: 1rem !important;
    background: rgba(10, 31, 51, 0.66) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 12px !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(14px);
}

.od-hero .od-hero-booking .od-rental-static__label {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: "JetBrains Mono", "Inter", monospace;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: none;
}

.od-hero .od-hero-booking .od-rental-static__field {
    min-height: 3.5rem;
    padding: 0.75rem 0.875rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    letter-spacing: 0;
}

.od-hero .od-hero-booking .od-rental-static__field .bi,
.od-hero .od-hero-booking .od-rental-static__date-sep {
    color: rgba(255, 255, 255, 0.62) !important;
}

.od-hero .od-hero-booking .od-rental-static__field--date {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: 0.75rem;
}

.od-hero .od-hero-booking .od-rental-static__field--date .bi-calendar3 {
    position: absolute;
    top: 50%;
    left: 0.875rem;
    transform: translateY(-50%);
}

.od-hero .od-hero-booking .od-rental-static__field input {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.od-hero .od-hero-booking .od-rental-static__field--date input {
    width: 100%;
    text-align: center;
}

.od-hero .od-hero-booking .od-rental-static__date-sep {
    flex: 0 0 auto;
    line-height: 1;
}

.od-hero .od-hero-booking .od-rental-static__field input::placeholder {
    color: rgba(255, 255, 255, 0.55);
    opacity: 1;
}

.od-hero .od-hero-booking__cta {
    min-height: 3.5rem !important;
    height: 3.5rem;
    width: 100%;
    margin-bottom: 0;
    padding: 0 2rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

@media (max-width: 767.98px) {
    .od-hero-glass-card {
        width: 100% !important;
    }

    .od-hero-title {
        font-size: clamp(2.25rem, 12vw, 3.4rem) !important;
    }

    .od-hero-copy {
        font-size: clamp(1.15rem, 6vw, 1.55rem) !important;
        line-height: 1.2;
    }

    .od-hero .od-hero-booking {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 1rem !important;
        padding: 1rem !important;
    }

    .od-hero .od-hero-booking .od-rental-static__field--date {
        flex-wrap: nowrap;
    }

    .od-hero .od-hero-booking__cta {
        width: 100%;
    }
}

.od-live-bar {
    background: rgba(10, 31, 51, 0.94) !important;
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.od-footer,
.od-footer.bg-light {
    background: #0a1f33 !important;
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.od-footer {
    padding-top: clamp(2.75rem, 5vw, 4.5rem) !important;
    padding-bottom: clamp(2.75rem, 5vw, 4.5rem) !important;
}

.od-footer .row {
    --bs-gutter-x: clamp(2rem, 6vw, 5rem);
    --bs-gutter-y: 2rem;
    align-items: flex-start;
}

.od-footer .od-footer-col {
    min-width: 0;
}

.od-footer .od-footer-col:nth-child(4) {
    display: block;
}

.od-footer .frame,
.od-footer .frame-type-text,
.od-footer .od-textmedia {
    width: 100%;
}

.od-footer .od-textmedia {
    max-width: none;
    padding: 0 !important;
    margin: 0;
}

.od-footer .od-textmedia > .row {
    margin: 0;
}

.od-footer .od-textmedia > .row > [class*="col-"] {
    padding: 0;
}

.od-footer .od-textmedia__panel {
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.od-footer .frame-type-text h1,
.od-footer .frame-type-text h2,
.od-footer .frame-type-text h3,
.od-footer .frame-type-text h4,
.od-footer .frame-type-text h5,
.od-footer .frame-type-text h6,
.od-footer .frame-type-text strong,
.od-footer .frame-type-text b {
    color: #eaf2ff !important;
}

.od-footer .frame-type-text h1,
.od-footer .frame-type-text h2,
.od-footer .frame-type-text h3,
.od-footer .frame-type-text h4,
.od-footer .frame-type-text h5,
.od-footer .frame-type-text h6,
.od-footer .od-textmedia__headline {
    margin: 0 0 1rem !important;
    max-width: 100%;
    overflow-wrap: anywhere;
    color: #ffffff !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.05rem, 1.5vw, 1.5rem) !important;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: none;
}

.od-footer .od-textmedia__body {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.94rem !important;
    line-height: 1.65;
}

.od-footer .od-textmedia__body p {
    margin: 0 0 0.85rem;
}

.od-footer .od-textmedia__body p:last-child {
    margin-bottom: 0;
}

.od-footer .od-textmedia__body ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.od-footer .od-textmedia__body li {
    margin: 0 0 0.45rem;
    padding: 0;
}

.od-footer .frame-type-text p,
.od-footer .frame-type-text li,
.od-footer .frame-type-text a,
.od-footer .row > div {
    color: #97abc2 !important;
}

.od-footer .frame-type-text a,
.od-footer .od-textmedia__body a {
    color: #d8e5f5 !important;
    font-weight: 650;
    text-decoration-color: rgba(216, 229, 245, 0.32);
    text-decoration-thickness: 0.06em;
    text-underline-offset: 0.18em;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.od-footer .frame-type-text a:hover,
.od-footer .frame-type-text a:focus-visible,
.od-footer .od-textmedia__body a:hover,
.od-footer .od-textmedia__body a:focus-visible {
    color: #ffffff !important;
    text-decoration-color: var(--color-primary);
}

@media (min-width: 992px) {
    .od-footer .container {
        max-width: 1200px;
    }

    .od-footer .od-footer-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.od-footer-subline {
    background: #0a1f33 !important;
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.od-footer-subline__text {
    color: #97abc2 !important;
}

.icc-footer img {
    filter: brightness(0) invert(0.88) !important;
    opacity: 0.88;
}

/* TeaserSwiper product card hard fix */
.od-teaserswiper .od-product-card {
    position: relative;
    background: #ffffff !important;
    border: 1px solid #e1e3e4 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100% !important;
    box-shadow: 0 1px 2px rgba(10, 31, 51, 0.05) !important;
}

.od-teaserswiper .od-product-card--elite {
    box-shadow: 0 12px 28px rgba(10, 31, 51, 0.12) !important;
}

.od-teaserswiper .od-product-card--popular {
    border: 2px solid #f39200 !important;
    box-shadow: 0 18px 36px rgba(10, 31, 51, 0.14) !important;
}


.od-teaserswiper .od-product-card__head {
    min-height: 6.25rem;
    padding: 1.375rem 1.375rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: #ffffff;
}

.od-teaserswiper .od-product-card__media {
    height: 8.75rem !important;
    padding: 1.5rem 1.375rem 2rem;
    background: #ffffff !important;
}

.od-teaserswiper .od-product-card__image {
    object-fit: contain !important;
}

.od-teaserswiper .od-product-card__body {
    margin-top: auto;
    padding: 1.375rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 0.1rem 1rem;
    background: #f4f5f6 !important;
    color: #0a1f33 !important;
}

.od-teaserswiper .od-product-card__title {
    margin: 0 0 0.35rem;
    color: #0a1f33 !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.od-teaserswiper .od-product-card__stars {
    display: flex;
    gap: 0.2rem;
    color: rgba(243, 146, 0, 0.35);
    font-size: 0.8rem;
    line-height: 1;
}

.od-teaserswiper .od-product-card__star.is-active {
    color: #f39200;
}

.od-teaserswiper .od-product-card__desc,
.od-teaserswiper .od-product-card__price-note {
    color: #424751 !important;
}

.od-teaserswiper .od-product-card__price-wrap {
    min-width: 0;
}

.od-teaserswiper .od-product-card__regular-price {
    color: #424751;
    font-size: 0.75rem;
    line-height: 1;
    text-decoration: line-through;
}

.od-teaserswiper .od-product-card__price {
    margin-top: 0.25rem;
    color: #0a1f33 !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    text-align: left;
}

.od-teaserswiper .od-product-card__price-note {
    grid-column: 2;
    align-self: end;
    margin: 0 0 0.15rem;
    font-size: 0.75rem;
    line-height: 1;
}

.od-teaserswiper .od-product-card__badge {
    position: static;
    flex: 0 0 auto;
    height: 1.45rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px !important;
    font-family: "JetBrains Mono", "Inter", monospace;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: none;
}

.od-teaserswiper .od-product-card--basic .od-product-card__badge {
    background: #f4f5f6 !important;
    color: #0a1f33 !important;
}

.od-teaserswiper .od-product-card--popular .od-product-card__badge {
    background: rgba(243, 146, 0, 0.12) !important;
    color: #0a1f33 !important;
}

.od-teaserswiper .od-product-card--elite .od-product-card__badge {
    background: rgba(243, 146, 0, 0.12) !important;
    color: #0a1f33 !important;
}

.od-teaserswiper .od-product-card__desc {
    grid-column: 1 / -1;
    min-height: 0;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.od-teaserswiper .od-product-card__button {
    grid-column: 1 / -1;
    width: 100% !important;
    min-height: 2.75rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: transparent !important;
    border: 2px solid #0a1f33 !important;
    color: #0a1f33 !important;
    border-radius: 999px !important;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: none !important;
}

.od-teaserswiper .od-product-card--popular .od-product-card__button {
    background: #0a1f33 !important;
    border-color: #0a1f33 !important;
    color: #ffffff !important;
}

.od-teaserswiper .od-product-card--elite .od-product-card__button {
    border-color: var(--color-primary) !important;
    color: #0a1f33 !important;
}

.od-teaserswiper .od-product-card__button:hover,
.od-teaserswiper .od-product-card--popular .od-product-card__button:hover,
.od-teaserswiper .od-product-card--elite .od-product-card__button:hover {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #0a1f33 !important;
}

/* Key benefits CE */
.od-key-benefits {
    width: 100%;
    padding: clamp(5rem, 8vw, 7.5rem) 0;
    background: #0a1f33;
}

.od-key-benefits__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
}

.od-key-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.od-key-benefits__item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
}

.od-key-benefits__icon {
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    flex: 0 0 4rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #004c97;
    color: #ffffff;
    font-size: 1.65rem;
    line-height: 1;
}

.od-key-benefits__title {
    max-width: 17rem;
    min-height: 3.75rem;
    margin: 0;
    color: #ffffff;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
}

.od-key-benefits__text {
    max-width: 17rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.43;
}

@media (max-width: 991.98px) {
    .od-key-benefits__inner {
        padding: 0 2rem;
    }

    .od-key-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 3rem;
    }
}

@media (max-width: 575.98px) {
    .od-key-benefits {
        padding: 4rem 0;
    }

    .od-key-benefits__title {
        min-height: 0;
    }

    .od-key-benefits__inner {
        padding: 0 1.25rem;
    }

    .od-key-benefits__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .od-key-benefits__item {
        align-items: center;
        text-align: center;
    }
}

/* Editorial Item Grid CE */
.od-editorial {
    padding: clamp(5.25rem, 9vw, 9rem) 0;
    background: #ffffff;
    color: #424751;
}

.od-editorial--soft {
    background: #f3f4f5;
}

.od-editorial--dark {
    background: #0a1f33;
    color: rgba(255, 255, 255, 0.72);
}

.od-editorial__header {
    max-width: 58rem;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.od-editorial--media_cards .od-editorial__header,
.od-editorial--category_cards .od-editorial__header,
.od-editorial--advantage_grid .od-editorial__header {
    max-width: 56rem;
}

.od-editorial__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0 0 1rem;
    color: var(--color-primary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-editorial__eyebrow::before {
    display: inline-block;
    width: 1.875rem;
    height: 0.1875rem;
    background: currentColor;
    border-radius: 999px;
    content: "";
}

.od-editorial--light .od-editorial__eyebrow,
.od-editorial--soft .od-editorial__eyebrow,
.od-editorial--light .od-editorial-row__number,
.od-editorial--soft .od-editorial-row__number {
    color: #0a1f33;
}

.od-editorial--light .od-editorial__eyebrow::before,
.od-editorial--soft .od-editorial__eyebrow::before {
    background: var(--color-primary);
}

.od-editorial__title {
    max-width: 58rem;
    margin: 0;
    color: #0a1f33;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(2.1rem, 4.6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
    text-wrap: balance;
}

.od-editorial--dark .od-editorial__title {
    color: #ffffff;
}

.od-editorial__lead {
    max-width: 47rem;
    margin-top: 1.5rem;
    color: #102c4e;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.62;
}

.od-editorial__lead p:last-child {
    margin-bottom: 0;
}

.od-editorial--dark .od-editorial__lead {
    color: rgba(255, 255, 255, 0.72);
}

.od-editorial-card__hit {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.od-editorial-card__link {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    margin-top: 1.5rem;
    color: #0a1f33;
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 0.2em;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.od-editorial-card__link:hover,
.od-editorial-card__link:focus-visible {
    color: #0a1f33;
    text-decoration-thickness: 0.14em;
}

.od-editorial-card__link .bi {
    font-size: 1rem;
}

.od-editorial-rows {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.od-editorial--light .od-editorial-rows,
.od-editorial--soft .od-editorial-rows {
    border-top-color: #dce4ea;
}

.od-editorial-row {
    display: grid;
    grid-template-columns: 4.5rem minmax(14rem, 0.7fr) minmax(17rem, 1fr);
    gap: clamp(1.5rem, 5vw, 5rem);
    padding: 2.125rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.od-editorial--light .od-editorial-row,
.od-editorial--soft .od-editorial-row {
    border-bottom-color: #dce4ea;
}

.od-editorial-row__number {
    color: var(--color-primary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.od-editorial-row h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.od-editorial--light .od-editorial-row h3,
.od-editorial--soft .od-editorial-row h3 {
    color: #0a1f33;
}

.od-editorial-row__text {
    max-width: 39rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Inter", system-ui, sans-serif;
    line-height: 1.65;
}

.od-editorial--light .od-editorial-row__text,
.od-editorial--soft .od-editorial-row__text {
    color: #424751;
}

.od-editorial-row__text p:last-child {
    margin-bottom: 0;
}

.od-editorial-promo-grid,
.od-editorial-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.375rem;
}

.od-editorial-promo {
    position: relative;
    min-height: 27.5rem;
    padding: clamp(2rem, 4.5vw, 3.625rem);
    overflow: hidden;
    color: #ffffff;
    background: radial-gradient(circle at 88% 12%, rgba(49, 93, 143, 0.75), transparent 34%), #0a1f33;
    border-radius: 2rem;
}

.od-editorial-promo > :not(.od-editorial-card__hit),
.od-editorial-media-card__body,
.od-editorial-category-card > :not(.od-editorial-card__hit) {
    position: relative;
    z-index: 2;
}

.od-editorial-promo.od-editorial-card--orange {
    background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 32%), #f39200;
}

.od-editorial-promo.od-editorial-card--featured {
    background: radial-gradient(circle at 90% 10%, rgba(243, 146, 0, 0.26), transparent 32%), #0a1f33;
}

.od-editorial-promo__stat {
    display: block;
    margin-bottom: 2.625rem;
    color: currentColor;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.85;
}

.od-editorial-promo h3,
.od-editorial-media-card h3,
.od-editorial-category-card h3 {
    margin: 0 0 1.125rem;
    color: #0a1f33;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.7rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.od-editorial-promo h3 {
    max-width: 32rem;
    color: #ffffff;
    font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.od-editorial-promo__text {
    max-width: 35rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.od-editorial-promo__text p:last-child,
.od-editorial-media-card__text p:last-child,
.od-editorial-category-card__text p:last-child {
    margin-bottom: 0;
}

.od-editorial-promo .od-editorial-card__link {
    z-index: 3;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    margin-top: 1.75rem;
    padding: 0.9rem 1.35rem;
    color: #0a1f33;
    background: #ffffff;
    border-radius: 999px;
}

.od-editorial-promo .od-editorial-card__link:hover,
.od-editorial-promo .od-editorial-card__link:focus-visible {
    color: #ffffff;
    background: #0a1f33;
}

.od-editorial-media-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce4ea;
    border-radius: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(16, 44, 78, 0.1);
}

.od-editorial-media-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dce4ea;
}

.od-editorial-media-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-editorial-media-card__body {
    padding: clamp(1.75rem, 4vw, 3rem);
}

.od-editorial-media-card__text,
.od-editorial-category-card__text {
    color: #424751;
    line-height: 1.68;
}

.od-editorial-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.875rem;
}

.od-editorial-advantage {
    min-height: 12rem;
    padding: 1.625rem;
    background: #ffffff;
    border: 1px solid #dce4ea;
    border-radius: 1rem;
}

.od-editorial-advantage__icon {
    display: inline-flex;
    width: 2.875rem;
    height: 2.875rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.875rem;
    color: #ffffff;
    background: #f39200;
    border-radius: 999px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.82rem;
    font-weight: 900;
}

.od-editorial-advantage h3 {
    margin: 0;
    color: #0a1f33;
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}

.od-editorial-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.125rem;
}

.od-editorial-category-card {
    position: relative;
    padding: clamp(1.75rem, 4vw, 2.875rem);
    background: #f3f4f5;
    border-radius: 1.75rem;
}

.od-editorial-category-card.od-editorial-card--featured {
    color: #ffffff;
    background: #0a1f33;
}

.od-editorial-category-card__label {
    display: inline-block;
    margin-bottom: 1.875rem;
    color: #0a1f33;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.od-editorial-category-card.od-editorial-card--featured h3,
.od-editorial-category-card.od-editorial-card--featured .od-editorial-category-card__text,
.od-editorial-category-card.od-editorial-card--featured li {
    color: #ffffff;
}

.od-editorial-category-card ul {
    display: grid;
    gap: 0.8125rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.od-editorial-category-card li {
    display: grid;
    grid-template-columns: 1.375rem 1fr;
    gap: 0.625rem;
    line-height: 1.5;
}

.od-editorial-category-card li::before {
    color: #f39200;
    font-weight: 900;
    content: "✓";
}

@media (max-width: 1199.98px) {
    .od-editorial-advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .od-editorial-row {
        grid-template-columns: 3rem 1fr;
    }

    .od-editorial-row__text {
        grid-column: 2;
    }

    .od-editorial-category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .od-editorial-promo-grid,
    .od-editorial-media-grid,
    .od-editorial-advantage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .od-editorial-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .od-editorial-row__text {
        grid-column: auto;
    }
}
.od-subnavigation {
    padding: clamp(1.75rem, 4vw, 3.75rem) 0;
}

.od-subnavigation__header {
    max-width: 820px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.od-subnavigation__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    margin-bottom: .75rem;
    color: var(--bs-danger);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.od-subnavigation__title {
    margin: 0;
    font-family: "Sora", "Inter", sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.06em;
    text-wrap: balance;
}

.od-subnavigation__lead {
    margin-top: 1rem;
    color: var(--color-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    text-wrap: balance;
}

.od-subnavigation__lead p:last-child {
    margin-bottom: 0;
}

.od-subnavigation__nav {
    --od-subnav-track: rgba(10, 31, 51, .12);
    --od-subnav-active: #f39200;
    display: flex;
    justify-content: center;
    width: 100%;
}

.od-subnavigation__bar {
    position: relative;
    width: fit-content;
    max-width: min(100%, 58rem);
    overflow-x: auto;
    padding: 0 .25rem .7rem;
    border-bottom: 0;
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--od-subnav-track);
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.od-subnavigation__bar::-webkit-scrollbar {
    display: none;
}

.od-subnavigation__list {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 4vw, 3rem);
    min-width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
}

.od-subnavigation__item {
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.od-subnavigation__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: .25rem 0;
    border-radius: 0;
    background: transparent;
    color: rgba(10, 31, 51, .68);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(.88rem, 1vw, .98rem);
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.od-subnavigation__link:hover,
.od-subnavigation__link:focus-visible,
.od-subnavigation__link.is-active,
.od-subnavigation__link.is-current,
.od-subnavigation__item.is-active > .od-subnavigation__link,
.od-subnavigation__item.is-current > .od-subnavigation__link {
    color: var(--color-text);
}

.od-subnavigation__link:hover {
    color: #0a1f33;
    transform: translateY(-1px);
}

.od-subnavigation__link:focus-visible {
    outline: 2px solid rgba(255, 111, 0, .55);
    outline-offset: 2px;
}

.od-subnavigation__indicator {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--od-subnav-active);
    box-shadow: none;
    opacity: 0;
    transform: translateX(.25rem);
    transition: width .28s cubic-bezier(.2, .8, .2, 1), transform .28s cubic-bezier(.2, .8, .2, 1), opacity .18s ease;
    pointer-events: none;
}

.od-subnavigation__nav:not(.is-indicator-ready) .od-subnavigation__indicator {
    transition: none;
}

@media (max-width: 767.98px) {
    .od-subnavigation__header {
        text-align: left;
    }

    .od-subnavigation__nav {
        justify-content: flex-start;
    }

    .od-subnavigation__bar {
        width: 100%;
        max-width: 100%;
    }

    .od-subnavigation__list {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .od-subnavigation__bar {
        margin-right: calc(var(--bs-gutter-x, 1.5rem) * -.5);
        padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5);
    }
}
/* Sport Brugger content-element port — Clever & Sporty theme mapping.
 * Component selectors only; existing Clever & Sporty elements stay untouched. */
.od-rte-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.8rem 1.75rem;
    border: 1px solid var(--color-primary);
    border-radius: 999px;
    background: var(--color-primary);
    color: #0a1f33 !important;
    box-shadow: 0 10px 15px -3px rgb(243 146 0 / 24%), 0 4px 6px -4px rgb(243 146 0 / 24%);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.od-rte-button:hover,
.od-rte-button:focus-visible {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    color: #0a1f33 !important;
    box-shadow: 0 12px 20px -5px rgb(243 146 0 / 34%);
    text-decoration: none !important;
    transform: translateY(-2px);
}

.od-rte-button:focus-visible {
    outline: 3px solid rgb(0 76 151 / 35%);
    outline-offset: 3px;
}

.od-rte-button:active {
    box-shadow: 0 5px 10px -4px rgb(243 146 0 / 28%);
    transform: translateY(0);
}

.od-rte-button:disabled,
.od-rte-button[aria-disabled="true"] {
    opacity: 0.55;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

main :where(p, li, .od-textmedia__body, .od-seo-text-block__body, .od-background-text__body, .od-promo-text-image__body, .od-address__value) a:not(.btn):not(.od-rte-button) {
    color: #0a1f33;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.18em;
}

main :where(p, li, .od-textmedia__body, .od-seo-text-block__body, .od-background-text__body, .od-promo-text-image__body, .od-address__value) a:not(.btn):not(.od-rte-button):hover,
main :where(p, li, .od-textmedia__body, .od-seo-text-block__body, .od-background-text__body, .od-promo-text-image__body, .od-address__value) a:not(.btn):not(.od-rte-button):focus-visible {
    color: #0a1f33;
    text-decoration-thickness: 0.16em;
}

.od-group-rental {
    color: var(--color-text);
}

.od-group-rental__form {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    padding: clamp(1.25rem, 2.8vw, 2rem);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.od-group-rental__steps {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1.4rem;
}

.od-group-rental__step {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: var(--color-muted);
    font-weight: 900;
}

.od-group-rental__step.is-active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.od-group-rental__panel {
    display: none;
    min-inline-size: 0;
}

.od-group-rental__panel.is-active {
    display: block;
}

.od-group-rental__panel legend,
.od-group-rental__panel-title {
    margin-bottom: 1.2rem;
    color: #111827;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 1.1;
    font-weight: 900;
}

.od-group-rental .form-label {
    color: #374151;
    font-weight: 800;
}

.od-group-rental .form-control {
    min-height: 48px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
}

.od-group-rental .form-control::placeholder {
    color: #9ca3af;
}

.od-group-rental .form-control:focus {
    border-color: var(--color-primary);
    color: #111827;
    box-shadow: 0 0 0 0.2rem rgba(228, 42, 26, 0.16);
}

.od-group-rental .invalid-feedback {
    color: var(--color-primary);
}

.od-group-rental .alert-success {
    border-color: rgba(25, 135, 84, 0.28);
    background: rgba(25, 135, 84, 0.08);
    color: #0f5132;
}

.od-group-rental .alert-danger {
    border-color: rgba(228, 42, 26, 0.24);
    background: rgba(228, 42, 26, 0.08);
    color: #991b1b;
}

.od-group-rental .btn-danger,
.od-group-rental__next {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.od-group-rental .btn-danger:hover,
.od-group-rental .btn-danger:focus,
.od-group-rental__next:hover,
.od-group-rental__next:focus {
    border-color: var(--color-primary-dark);
    background: var(--color-primary-dark);
    color: #ffffff;
}

.od-group-rental .btn-outline-secondary {
    border-color: #d1d5db;
    color: #374151;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.od-group-rental .btn-outline-secondary:hover,
.od-group-rental .btn-outline-secondary:focus {
    border-color: var(--color-primary);
    background: rgba(228, 42, 26, 0.06);
    color: var(--color-primary);
}

.od-group-rental__equipment-grid {
    display: flex;
    align-items: stretch;
    row-gap: 1.5rem;
}

.od-group-rental__equipment-grid > .od-group-rental__equipment {
    flex: 0 0 auto;
    width: 100%;
}

.od-group-rental__equipment {
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    background: #f9fafb;
}

.od-group-rental__equipment h3 {
    margin-bottom: 0.85rem;
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 900;
}

.od-group-rental__equipment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.od-group-rental__equipment-row:last-child {
    margin-bottom: 0;
}

.od-group-rental__equipment-row .form-label {
    margin-bottom: 0;
    line-height: 1.35;
}

.od-group-rental__quantity {
    flex: 0 0 5.25rem;
    width: 5.25rem;
    min-height: 2.5rem;
    padding: 0.45rem 0.6rem;
    text-align: center;
}

@media (min-width: 992px) {
.od-group-rental__equipment-grid {
        column-gap: 1.5rem;
    }

.od-group-rental__equipment-grid > .od-group-rental__equipment {
        width: calc((100% - 3rem) / 3);
    }


}

@media (max-width: 767.98px) {
.od-group-rental__equipment-row {
        align-items: flex-start;
        flex-direction: column;
    }

.od-group-rental__quantity {
        width: 100%;
        flex-basis: auto;
    }


}

.od-promo-text-image {
    background: var(--color-surface);
}

.od-promo-text-image__split {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: clamp(34rem, 54vw, 45rem);
}

.od-promo-text-image--no-media .od-promo-text-image__split {
    grid-template-columns: 1fr;
}

.od-promo-text-image__split--has-badge {
    margin-top: clamp(4rem, 9vw, 8rem);
}

.od-promo-text-image__split--media-right .od-promo-text-image__media {
    order: 2;
}

.od-promo-text-image__split--media-right .od-promo-text-image__content {
    order: 1;
}

.od-promo-text-image__media {
    position: relative;
    min-height: 30rem;
    overflow: hidden;
    background: #0a1f33;
}

.od-promo-text-image__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-promo-text-image__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.od-promo-text-image__badge {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 50%;
    width: clamp(6.5rem, 12vw, 10.75rem);
    transform: translate(-50%, -55%);
    pointer-events: none;
}

.od-promo-text-image__badge-image {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 1rem 1.75rem rgba(26, 28, 28, 0.18));
}

.od-promo-text-image__badge-mobile {
    display: none;
}

.od-promo-text-image__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 7vw, 6rem);
    overflow: hidden;
    background: var(--color-surface);
    color: var(--color-text);
}

.od-promo-text-image--bg-1 .od-promo-text-image__content {
    background: var(--color-primary);
    color: #ffffff;
}

.od-promo-text-image--bg-2 .od-promo-text-image__content {
    background: var(--color-secondary);
    color: #ffffff;
}

.od-promo-text-image__content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    opacity: 0.1;
    border-top: 4.25rem solid currentColor;
    border-right: 4.25rem solid currentColor;
    transform: translate(2rem, -2rem) rotate(45deg);
    pointer-events: none;
}

.od-promo-text-image__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 36rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.od-promo-text-image__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.od-promo-text-image__label {
    margin: 0;
    padding: 0.25rem 0.75rem;
    background: #ffffff;
    color: var(--color-primary-dark);
    font-size: 0.875rem;
    line-height: 1.45;
    text-transform: uppercase;
}

.od-promo-text-image--bg-2 .od-promo-text-image__label {
    color: var(--color-secondary);
}

.od-promo-text-image__title {
    margin: 0;
    max-width: 32rem;
    font-size: clamp(1.65rem, 2.8vw, 2.6rem);
    line-height: 1.12;
    font-weight: 700;
}

.od-promo-text-image__body {
    color: rgba(26, 28, 28, 0.78);
    font-size: 1rem;
    line-height: 1.65;
}

.od-promo-text-image--bg-1 .od-promo-text-image__body,
.od-promo-text-image--bg-2 .od-promo-text-image__body {
    color: rgba(255, 255, 255, 0.95);
}

.od-promo-text-image__body p {
    margin: 0;
}

.od-promo-text-image__body p + p {
    margin-top: 1.5rem;
}

.od-promo-text-image__body em,
.od-promo-text-image__body i {
    color: rgba(26, 28, 28, 0.68);
}

.od-promo-text-image--bg-1 .od-promo-text-image__body em,
.od-promo-text-image--bg-1 .od-promo-text-image__body i,
.od-promo-text-image--bg-2 .od-promo-text-image__body em,
.od-promo-text-image--bg-2 .od-promo-text-image__body i {
    color: rgba(255, 255, 255, 0.8);
}

.od-promo-text-image__body a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

.od-promo-text-image__cta {
    padding-top: 1rem;
}

.od-promo-text-image__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 3.5rem;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.od-promo-text-image--bg-1 .od-promo-text-image__button,
.od-promo-text-image--bg-2 .od-promo-text-image__button {
    background: #ffffff;
    color: var(--color-primary);
}

.od-promo-text-image--bg-2 .od-promo-text-image__button {
    color: var(--color-secondary);
}

.od-promo-text-image__button:hover,
.od-promo-text-image__button:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
}

.od-promo-text-image--bg-1 .od-promo-text-image__button:hover,
.od-promo-text-image--bg-1 .od-promo-text-image__button:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
}

.od-promo-text-image--bg-2 .od-promo-text-image__button:hover,
.od-promo-text-image--bg-2 .od-promo-text-image__button:focus-visible {
    background: #ffffff;
    color: var(--color-primary);
}

.od-promo-text-image__button .bi {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
.od-promo-text-image__split {
        grid-template-columns: 1fr;
        min-height: 0;
    }

.od-promo-text-image__split--has-badge {
        margin-top: 0;
    }

.od-promo-text-image__split--media-right .od-promo-text-image__media,
    .od-promo-text-image__split--media-right .od-promo-text-image__content {
        order: initial;
    }

.od-promo-text-image__media {
        min-height: clamp(18rem, 62vw, 32rem);
    }

.od-promo-text-image__badge {
        display: none;
    }

.od-promo-text-image__badge-mobile {
        display: block;
        width: clamp(5.75rem, 20vw, 7.5rem);
        margin-block: 0.25rem;
    }

.od-promo-text-image__content {
        padding: clamp(2.5rem, 8vw, 4rem) clamp(1.5rem, 6vw, 3rem);
    }


}

@media (max-width: 767.98px) {
.od-promo-text-image__inner {
        gap: 1.5rem;
    }

.od-promo-text-image__button {
        width: 100%;
        padding-inline: 1.5rem;
    }


}

.od-shop-bento__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 1.6vw, 1.5rem);
    align-items: stretch;
}

.od-shop-bento__grid-item {
    min-width: 0;
    display: flex;
}

.od-shop-bento__card {
    background: #f5f5f5;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.od-shop-bento__media-wrap {
    position: relative;
}

.od-shop-bento__media {
    width: 100%;
    height: clamp(260px, 15vw, 340px);
    object-fit: cover;
    display: block;
}

.od-shop-bento__kicker {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    padding: 4px 13px 5px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    color: #191c1d;
}

.od-shop-bento__body {
    padding: clamp(18px, 1.35vw, 26px);
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.od-shop-bento__title {
    font-size: clamp(1.45rem, 1.25vw, 1.9rem);
    line-height: 1.15;
    margin: 0 0 10px;
    color: #191c1d;
    overflow-wrap: anywhere;
}

.od-shop-bento__address {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #59595b;
    font-size: 16px;
    line-height: 1.6;
}

.od-shop-bento__address .bi {
    font-size: 14px;
    margin-top: 5px;
}

.od-shop-bento__desc {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.od-shop-bento__services-near-address {
    margin-bottom: 16px;
}

.od-shop-bento__hours {
    margin-bottom: 24px;
}

.od-shop-bento__label {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #59595b;
    margin-bottom: 4px;
    font-weight: 500;
}

.od-shop-bento__value {
    font-size: 16px;
    line-height: 1.6;
    color: #191c1d;
    white-space: normal;
    overflow-wrap: anywhere;
}

.od-shop-bento__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.od-shop-bento__tag {
    font-size: 12px;
    line-height: 1.2;
    padding: 2px 8px;
    background: #eeeeee;
    border-radius: 2px;
    color: #191c1d;
    font-weight: 500;
}

.od-shop-bento__button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: auto;
}

.od-shop-bento__button--primary {
    background: #004c97;
    color: #ffffff;
    border: 1px solid #004c97;
}

.od-shop-bento__button--secondary {
    background: #ffffff;
    color: #191c1d;
    border: 1px solid #dadada;
}

@media (min-width: 768px) and (max-width: 1999.98px) {
.od-shop-bento__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.od-shop-bento__media {
        height: clamp(300px, 20vw, 420px);
    }


}

@media (max-width: 767.98px) {
.od-shop-bento__grid {
        grid-template-columns: minmax(0, 1fr);
    }

.od-shop-bento__media {
        height: 260px;
    }

.od-shop-bento__title {
        font-size: 2rem;
    }

.od-shop-bento__body {
        padding: 18px;
    }


}

.icc-productsteaser {
    background: #ffffff;
}

.icc-productsteaser__header {
    max-width: 58rem;
    margin: 0 auto clamp(1.75rem, 3.5vw, 3rem);
    text-align: center;
}

.icc-productsteaser__eyebrow {
    width: fit-content;
    margin: 0 auto 0.85rem;
    padding: 0.35rem 0.7rem;
    border-left: 4px solid var(--color-primary);
    background: #ffffff;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.icc-productsteaser__title {
    max-width: 48rem;
    margin: 0 auto;
    color: var(--color-text);
    font-size: clamp(2rem, 3.6vw, 3.75rem);
    line-height: 1;
    font-weight: 900;
}

.icc-productsteaser__intro {
    max-width: 45rem;
    margin: 1.15rem auto 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.7;
}

.icc-productsteaser__intro p,
.icc-productsteaser__description p {
    margin: 0;
}

.icc-productsteaser__intro p + p,
.icc-productsteaser__description p + p {
    margin-top: 0.85rem;
}

.icc-productsteaser__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 70rem;
    margin-inline: auto;
    gap: clamp(1rem, 2vw, 1.35rem);
}

.icc-productsteaser__card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    border: 1px solid rgba(26, 28, 28, 0.1);
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(18, 24, 32, 0.04);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.icc-productsteaser__card:hover {
    border-color: rgba(228, 42, 26, 0.2);
    box-shadow: 0 0.8rem 2rem rgba(18, 24, 32, 0.07);
    transform: translateY(-2px);
}

.icc-productsteaser__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(7.5rem, 10vw, 9.5rem);
    margin: 0;
    padding: clamp(1rem, 2vw, 1.4rem);
    border-bottom: 1px solid rgba(26, 28, 28, 0.08);
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    overflow: hidden;
}

.icc-productsteaser__image {
    display: block;
    width: min(100%, 32rem);
    height: auto;
    max-height: 5.5rem;
    object-fit: contain;
    filter: none;
}

.icc-productsteaser__content {
    flex: 1 1 auto;
    min-width: 0;
    padding: clamp(1rem, 2vw, 1.45rem);
}

.icc-productsteaser__item-title {
    position: relative;
    margin: 0 0 0.8rem;
    padding-bottom: 0.7rem;
    color: var(--color-text);
    font-size: clamp(1.2rem, 1.55vw, 1.55rem);
    line-height: 1.12;
    font-weight: 900;
}

.icc-productsteaser__item-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3.5rem;
    height: 3px;
    background: var(--color-primary);
}

.icc-productsteaser__description {
    max-width: none;
    color: #4f555f;
    font-size: 0.96rem;
    line-height: 1.56;
}

.icc-productsteaser__description strong {
    color: var(--color-text);
    font-weight: 900;
}

@media (max-width: 991.98px) {
.icc-productsteaser__list {
        grid-template-columns: 1fr;
        max-width: 44rem;
    }


}

@media (max-width: 767.98px) {
.icc-productsteaser__card {
        border-radius: 6px;
    }

.icc-productsteaser__media {
        min-height: 6.25rem;
        padding: 0.85rem;
    }

.icc-productsteaser__image {
        max-height: 4.25rem;
    }

.icc-productsteaser__content {
        padding: 1rem;
    }


}

.od-image-ce__grid {
    display: grid;
    grid-template-columns: repeat(var(--od-image-ce-columns, 1), minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
}

.od-image-ce__grid-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.od-image-ce--orient-1 .od-image-ce__grid-wrap,
.od-image-ce--orient-9 .od-image-ce__grid-wrap,
.od-image-ce--orient-17 .od-image-ce__grid-wrap,
.od-image-ce--orient-25 .od-image-ce__grid-wrap {
    justify-content: flex-end;
}

.od-image-ce--orient-2 .od-image-ce__grid-wrap,
.od-image-ce--orient-10 .od-image-ce__grid-wrap,
.od-image-ce--orient-18 .od-image-ce__grid-wrap,
.od-image-ce--orient-26 .od-image-ce__grid-wrap {
    justify-content: flex-start;
}

.od-image-ce--cols-1:not(.od-image-ce--full) .od-image-ce__grid {
    max-width: 900px;
}

.od-image-ce--cols-2:not(.od-image-ce--full) .od-image-ce__grid {
    max-width: 1120px;
}

.od-image-ce__figure {
    margin: 0;
    overflow: hidden;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .1), 0 4px 8px rgba(0, 0, 0, .06);
}

.od-image-ce__figure a,
.od-image-ce__figure picture {
    display: block;
    height: 100%;
}

.od-image-ce__image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.od-image-ce--cols-1 .od-image-ce__image {
    aspect-ratio: 16 / 9;
}

.od-image-ce--uncropped .od-image-ce__figure,
.od-image-ce--uncropped .od-image-ce__figure a,
.od-image-ce--uncropped .od-image-ce__figure picture {
    height: auto;
}

.od-image-ce--uncropped .od-image-ce__image,
.od-image-ce--uncropped.od-image-ce--cols-1 .od-image-ce__image,
.od-image-ce--uncropped.od-image-ce--full .od-image-ce__image {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.od-image-ce--full {
    width: 100%;
    max-width: none;
}

.od-image-ce--full .od-image-ce__grid,
.od-image-ce--full .od-image-ce__figure,
.od-image-ce--full .od-image-ce__image {
    width: 100%;
    max-width: none;
}

.od-image-ce--full .od-image-ce__grid {
    gap: 0;
}

.od-image-ce--full .od-image-ce__figure {
    border-radius: 0;
    box-shadow: none;
}

.od-image-ce--full .od-image-ce__image {
    aspect-ratio: 21 / 9;
}

.od-image-ce__caption {
    padding: .65rem .85rem .85rem;
    margin: 0;
    color: var(--color-muted);
    background: #ffffff;
}

@media (max-width: 991.98px) {
.od-image-ce__grid {
        grid-template-columns: 1fr;
    }

.od-image-ce--cols-2 .od-image-ce__grid,
    .od-image-ce--cols-3 .od-image-ce__grid,
    .od-image-ce--cols-4 .od-image-ce__grid,
    .od-image-ce--cols-5 .od-image-ce__grid,
    .od-image-ce--cols-6 .od-image-ce__grid,
    .od-image-ce--cols-7 .od-image-ce__grid,
    .od-image-ce--cols-8 .od-image-ce__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


}

@media (max-width: 575.98px) {
.od-image-ce__grid {
        grid-template-columns: 1fr;
    }

.od-image-ce__image,
    .od-image-ce--cols-1 .od-image-ce__image,
    .od-image-ce--full .od-image-ce__image {
        aspect-ratio: 4 / 3;
    }

.od-image-ce--uncropped .od-image-ce__image,
    .od-image-ce--uncropped.od-image-ce--cols-1 .od-image-ce__image,
    .od-image-ce--uncropped.od-image-ce--full .od-image-ce__image {
        aspect-ratio: auto;
    }


}

.od-brand-slider {
    overflow: hidden;
    background: #ffffff;
}

.od-service-cards--no-frame .od-service-cards__inner {
    width: 100%;
}

.od-service-cards__header {
    max-width: 720px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.od-service-cards__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
}

.od-service-cards__subheader {
    margin: .6rem 0 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.od-service-cards__intro {
    margin-top: .75rem;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.od-service-cards__intro p {
    margin: 0;
}

.od-service-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.od-service-cards--two-columns .od-service-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.od-service-cards__card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 118px;
    padding: clamp(1.25rem, 2vw, 1.65rem);
    color: inherit;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.od-service-cards__card--text-only {
    position: relative;
    min-height: 108px;
    padding-left: clamp(1.35rem, 2.4vw, 2rem);
}

.od-service-cards__card--text-only::before {
    content: "";
    position: absolute;
    top: clamp(1.25rem, 2vw, 1.65rem);
    bottom: clamp(1.25rem, 2vw, 1.65rem);
    left: 0;
    width: 4px;
    background: var(--color-primary);
    border-radius: 0 4px 4px 0;
}

.od-service-cards__card--link:hover,
.od-service-cards__card--link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(1, 155, 221, .45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .09);
}

.od-service-cards__icon-tile {
    display: inline-flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #0a1f33;
    background: transparent;
    border-radius: 0;
}

.od-service-cards__icon-tile picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.od-service-cards__icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.od-service-cards__icon-tile .bi {
    font-size: 1.65rem;
    line-height: 1;
}

.od-service-cards__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: .25rem;
}

.od-service-cards__card-title {
    color: var(--color-text);
    font-size: clamp(1.08rem, 1.35vw, 1.24rem);
    font-weight: 800;
    line-height: 1.35;
}

.od-service-cards__text {
    color: var(--color-muted);
    font-size: .92rem;
    line-height: 1.45;
}

.od-service-cards__text p {
    margin: 0;
}

.od-service-cards__text p + p,
.od-service-cards__text ul,
.od-service-cards__text ol {
    margin-top: .45rem;
}

.od-service-cards__text ul,
.od-service-cards__text ol {
    margin-bottom: 0;
    padding-left: 1.15rem;
}

.od-service-cards__text li + li {
    margin-top: .2rem;
}

.od-service-cards__link-text {
    margin-top: .35rem;
    color: var(--color-primary);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.od-service-cards__toggle-wrap {
    display: none;
    justify-content: center;
    margin-top: 1.25rem;
}

.od-service-cards__toggle {
    min-height: 46px;
    padding: .75rem 1.25rem;
    color: #ffffff;
    background: var(--color-primary);
    border: 0;
    border-radius: 2px;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-service-cards__toggle:hover,
.od-service-cards__toggle:focus-visible {
    background: var(--color-primary-dark);
}

.od-snowboard-boots {
    padding: clamp(4.5rem, 7vw, 5.625rem) 0;
    color: var(--color-text);
    background: #f5f5f5;
}

.od-snowboard-boots--no-frame {
    padding-block: 0;
    background: transparent;
}

.od-snowboard-boots__inner {
    width: min(1280px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.od-snowboard-boots__header {
    max-width: 780px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.od-snowboard-boots__eyebrow,
.od-snowboard-boot-card__label {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-snowboard-boots__eyebrow {
    margin-bottom: 0.75rem;
}

.od-snowboard-boots__title {
    margin: 0 0 1.375rem;
    color: var(--color-text);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(2.125rem, 4vw, 3.375rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.od-snowboard-boots__intro {
    color: var(--color-muted);
    font-size: 1.25rem;
    line-height: 1.6;
}

.od-snowboard-boots__intro p:last-child,
.od-snowboard-boot-card__text p:last-child {
    margin-bottom: 0;
}

.od-snowboard-boots__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.375rem;
}

.od-snowboard-boot-card {
    padding: 1.875rem;
    border: 1px solid #dedede;
    background: #ffffff;
}

.od-snowboard-boot-card__label {
    margin-bottom: 0.75rem;
}

.od-snowboard-boot-card__title {
    margin: 0 0 0.75rem;
    color: var(--color-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
}

.od-snowboard-boot-card__text {
    color: var(--color-muted);
}

@media (max-width: 1050px) {
.od-snowboard-boots__grid {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 560px) {
.od-snowboard-boots__inner {
        width: min(1280px, calc(100% - 1.75rem));
    }

.od-snowboard-boot-card {
        padding: 1.5rem;
    }


}

.od-principles {
    color: var(--color-text);
    background: #f5f6f7;
}

.od-principles--no-frame {
    background: transparent;
}

.od-principles__inner {
    width: min(1180px, calc(100% - 3rem));
    margin: 0 auto;
}

.od-principles__header {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: end;
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.od-principles__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .9rem;
    color: var(--color-primary);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-principles__eyebrow::before {
    content: "";
    width: 2rem;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.od-principles__title {
    max-width: 780px;
    margin: 0;
    color: var(--color-text);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(2.125rem, 4vw, 3.375rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.od-principles__intro {
    color: var(--color-muted);
    font-size: 1.1rem;
    line-height: 1.65;
}

.od-principles__intro p:last-child,
.od-principle__text p:last-child {
    margin-bottom: 0;
}

.od-principles__list {
    counter-reset: od-principle;
    border-top: 1px solid #e6e8eb;
}

.od-principle {
    counter-increment: od-principle;
    display: grid;
    grid-template-columns: 110px minmax(220px, 2fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: start;
    padding: clamp(2.25rem, 5vw, 3.625rem) 0;
    border-bottom: 1px solid #e6e8eb;
}

.od-principle__number {
    color: transparent;
    font-size: clamp(3.375rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: .85;
    letter-spacing: 0;
    -webkit-text-stroke: 1.5px rgba(228, 42, 26, .55);
    user-select: none;
}

.od-principle__number::before {
    content: counter(od-principle, decimal-leading-zero);
}

.od-principle__title-wrap {
    position: relative;
    min-width: 0;
    padding-top: .35rem;
}

.od-principle__title-wrap::before {
    content: "";
    display: block;
    width: 2.625rem;
    height: 4px;
    margin-bottom: 1.125rem;
    border-radius: 999px;
    background: var(--color-primary);
}

.od-principle__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: break-word;
    hyphens: auto;
}

.od-principle__text {
    min-width: 0;
    max-width: 760px;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.od-principle__text a {
    color: var(--color-primary);
    font-weight: 700;
    text-underline-offset: 3px;
}

.od-principle__text a:hover,
.od-principle__text a:focus-visible {
    color: var(--color-primary-dark);
}

.od-principle__text ul,
.od-principle__text ol {
    margin-top: .75rem;
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.od-principle__text li + li {
    margin-top: .35rem;
}

.od-principle--highlight {
    margin: 1.75rem -1.75rem;
    padding-inline: 1.75rem;
    border: 1px solid #f2d4d6;
    border-radius: 10px;
    background: #fff3f3;
}

.od-principle--highlight + .od-principle {
    border-top: 0;
}

.od-principles__cta {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
    align-items: center;
    margin-top: 3rem;
    padding: 1.875rem 2.125rem;
    border-radius: 10px;
    background: var(--color-text);
    color: #ffffff;
}

.od-principles__cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 900;
    line-height: 1.1;
}

.od-principles__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .75rem 1.25rem;
    border-radius: 5px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.od-principles__button:hover,
.od-principles__button:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.od-buying-guide {
    color: var(--color-text);
    background: #f6f7f8;
}

.od-buying-guide--no-frame {
    background: transparent;
}

.od-buying-guide__inner {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
}

.od-buying-guide__header {
    max-width: 760px;
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.od-buying-guide__eyebrow,
.od-buying-guide-step__kicker,
.od-buying-guide-ski-card__kicker {
    display: block;
    color: var(--color-primary);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.od-buying-guide__title {
    margin: .65rem 0 0;
    color: var(--color-text);
    font-size: clamp(2.625rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.od-buying-guide__intro {
    margin-top: 1.25rem;
    color: var(--color-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.od-buying-guide__intro p:last-child,
.od-buying-guide-step__text p:last-child,
.od-buying-guide-ski-card__text p:last-child {
    margin-bottom: 0;
}

.od-buying-guide__timeline {
    position: relative;
}

.od-buying-guide__timeline::before {
    content: "";
    position: absolute;
    top: .95rem;
    bottom: .95rem;
    left: 13px;
    width: 2px;
    background: #d9d9d9;
}

.od-buying-guide-step {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(3rem, 6vw, 4.375rem);
}

.od-buying-guide-step:last-child {
    margin-bottom: 0;
}

.od-buying-guide-step__dot {
    position: relative;
    z-index: 2;
    width: 26px;
    height: 26px;
    border: 8px solid #f6f7f8;
    border-radius: 50%;
    background: var(--color-primary);
}

.od-buying-guide--no-frame .od-buying-guide-step__dot {
    border-color: #ffffff;
}

.od-buying-guide-step__content {
    min-width: 0;
}

.od-buying-guide-step__content--highlight {
    margin-top: -1rem;
    padding: clamp(1.5rem, 4vw, 2.2rem);
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #ffffff;
}

.od-buying-guide-step__kicker {
    margin-bottom: .5rem;
}

.od-buying-guide-step__title {
    margin: 0 0 1.25rem;
    color: var(--color-text);
    font-size: clamp(1.9rem, 4vw, 2.625rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.od-buying-guide-step__text {
    max-width: 850px;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.od-buying-guide-step__text a,
.od-buying-guide-ski-card__text a {
    color: var(--color-primary);
    font-weight: 700;
    text-underline-offset: 3px;
}

.od-buying-guide-step__text a:hover,
.od-buying-guide-step__text a:focus-visible,
.od-buying-guide-ski-card__text a:hover,
.od-buying-guide-ski-card__text a:focus-visible {
    color: var(--color-primary-dark);
}

.od-buying-guide-ski-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2.2rem 0;
}

.od-buying-guide-ski-card {
    padding: 1.5rem;
    border: 1px solid #e8e8e8;
    border-left: 5px solid var(--color-primary);
    border-radius: 8px;
    background: #fafafa;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.od-buying-guide-ski-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.od-buying-guide-ski-card__kicker {
    color: var(--color-secondary);
}

.od-buying-guide-ski-card__title {
    margin: .5rem 0 .75rem;
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.od-buying-guide-ski-card__text {
    color: var(--color-muted);
    font-size: .96rem;
    line-height: 1.6;
}

.od-buying-guide__cta {
    display: flex;
    justify-content: space-between;
    gap: 1.875rem;
    align-items: center;
    margin-top: clamp(3rem, 6vw, 4.375rem);
    padding: clamp(1.6rem, 4vw, 2.2rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 12px;
    background: var(--color-text);
    color: #ffffff;
}

.od-buying-guide__cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 900;
    line-height: 1.1;
}

.od-buying-guide__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .9rem 1.75rem;
    border-radius: 5px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease;
}

.od-buying-guide__button:hover,
.od-buying-guide__button:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
.od-buying-guide-step__title {
        font-size: clamp(1.875rem, 7vw, 2.35rem);
    }

.od-buying-guide-ski-grid {
        grid-template-columns: 1fr;
    }

.od-buying-guide__cta {
        align-items: flex-start;
        flex-direction: column;
    }


}

@media (max-width: 620px) {
.od-buying-guide__inner {
        width: min(1200px, calc(100% - 2.25rem));
    }

.od-buying-guide__title {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

.od-buying-guide-step {
        gap: 1.25rem;
    }

.od-buying-guide-step__content--highlight {
        padding: 1.35rem;
    }

.od-buying-guide__button {
        width: 100%;
    }


}

@media (max-width: 767.98px) {
.od-principles__header {
        grid-template-columns: 1fr;
        gap: 1.375rem;
    }

.od-principle {
        grid-template-columns: 80px 1fr;
    }

.od-principle__text {
        grid-column: 2;
    }


}

@media (max-width: 620px) {
.od-principles__inner {
        width: min(1180px, calc(100% - 2.25rem));
    }

.od-principle {
        grid-template-columns: 1fr;
        gap: 1.125rem;
    }

.od-principle__number {
        font-size: 3.625rem;
    }

.od-principle__text {
        grid-column: auto;
    }

.od-principle--highlight {
        margin-inline: -.5rem;
        padding-inline: 1.125rem;
    }

.od-principles__cta {
        align-items: stretch;
        flex-direction: column;
        padding: 1.625rem 1.375rem;
    }

.od-principles__button {
        width: 100%;
    }


}

.od-address--no-frame .od-address__inner {
    width: 100%;
}

.od-address__card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 8px;
    box-shadow: none;
}

.od-address__main {
    display: flex;
    flex-direction: column;
}

.od-address__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.65rem, 2.7vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
}

.od-address__subtitle {
    margin: .55rem 0 0;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.od-address__details {
    display: grid;
    gap: .9rem;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.od-address__detail {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 1.15rem;
}

.od-address__label {
    color: #6f6f73;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.45;
    text-transform: uppercase;
}

.od-address__value {
    display: grid;
    gap: .25rem;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.od-address__value strong {
    color: var(--color-text);
    font-weight: 800;
}

.od-address__value a {
    color: var(--color-primary);
    font-weight: 800;
    text-decoration: none;
}

.od-address__value a:hover {
    text-decoration: underline;
}

.od-address__button {
    align-self: flex-start;
    margin-top: clamp(1.5rem, 3vw, 2.25rem);
    padding: .85rem 1.35rem;
    color: #ffffff;
    background: var(--color-primary);
    border-radius: 2px;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, transform 180ms ease;
}

.od-address__button:hover {
    color: #ffffff;
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.od-address__hours {
    display: grid;
    align-content: end;
    gap: 0;
    padding-left: clamp(1.5rem, 3vw, 2.75rem);
    border-left: 1px solid #eeeeee;
}

.od-address__hours-block {
    padding: 0 0 1.35rem;
    background: transparent;
    border-radius: 0;
}

.od-address__hours-block + .od-address__hours-block {
    padding-top: 1.35rem;
    border-top: 1px solid #eeeeee;
}

.od-address__hours-block--continuation {
    padding-top: 0;
}

.od-address__hours-block + .od-address__hours-block--continuation {
    padding-top: 0;
    border-top: 0;
}

.od-address__hours-title {
    margin: 0 0 .4rem;
    color: var(--color-text);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.35;
}

.od-address__hours-value {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
.od-address__card {
        grid-template-columns: 1fr;
    }

.od-address__hours {
        padding-top: 1.5rem;
        padding-left: 0;
        border-top: 1px solid #e2e2e2;
        border-left: 0;
    }


}

@media (max-width: 575.98px) {
.od-address__card {
        padding: 1.25rem;
    }

.od-address__detail {
        grid-template-columns: 1fr;
        gap: .25rem;
    }


}

@media (max-width: 1199.98px) {
.od-service-cards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


}

@media (max-width: 767.98px) {
.od-service-cards__grid,
    .od-service-cards--two-columns .od-service-cards__grid {
        grid-template-columns: 1fr;
    }

.od-service-cards--collapsible.is-collapsed .od-service-cards__card:nth-child(n+5) {
        display: none;
    }

.od-service-cards--collapsible .od-service-cards__toggle-wrap {
        display: flex;
    }

.od-service-cards__card {
        min-height: 0;
    }


}

.od-brand-slider__header {
    margin-bottom: 2rem;
    text-align: center;
}

.od-brand-slider__title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    font-weight: 800;
}

.od-brand-slider__subtitle {
    max-width: 48rem;
    margin: 0.75rem auto 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.55;
}

.od-brand-slider__viewport {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.od-brand-slider__track {
    display: flex;
    width: max-content;
    gap: clamp(1.5rem, 4vw, 4rem);
    animation: od-brand-slider-marquee 56s linear infinite;
    will-change: transform;
}

.od-brand-slider__viewport:hover .od-brand-slider__track {
    animation-play-state: paused;
}

.od-brand-slider__item {
    flex: 0 0 auto;
    width: clamp(140px, 13vw, 220px);
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.od-brand-slider__image {
    display: block;
    width: 100%;
    max-height: 86px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.od-brand-slider__item:hover .od-brand-slider__image {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}

.od-seo-text-block {
    background: #dbeafe;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    padding: 64px 1.5rem 65px;
}

.od-seo-text-block__container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.od-seo-text-block__title {
    margin: 0 0 24px;
    color: #191c1d;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.od-seo-text-block__eyebrow {
    margin: 0 0 0.75rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.od-seo-text-block__subheader {
    max-width: 42rem;
    margin: -0.5rem auto 1.25rem;
    color: #004c97;
    font-size: 1.08rem;
    line-height: 1.5;
    font-weight: 600;
}

.od-seo-text-block__body {
    color: #004c97;
    font-size: 16px;
    line-height: 1.625;
}

.od-seo-text-block__body p {
    margin: 0;
}

.od-seo-text-block__body p + p {
    margin-top: 0.35rem;
}

.od-seo-text-block + .od-background-text {
    margin-top: clamp(1.5rem, 3vw, 3rem);
}

.od-background-text {
    position: relative;
    min-height: clamp(500px, 45vw, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #191c1d;
    isolation: isolate;
}

.od-background-text__media,
.od-background-text__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.od-background-text__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-background-text__overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(14, 16, 18, 0.44) 0%, rgba(14, 16, 18, 0.28) 48%, rgba(14, 16, 18, 0.06) 100%),
        linear-gradient(180deg, rgba(14, 16, 18, 0.04) 0%, rgba(14, 16, 18, 0.34) 100%);
}

.od-background-text__container {
    width: min(100%, 1500px);
    margin: 0 auto;
    padding: clamp(3.5rem, 6vw, 5.75rem) clamp(1.25rem, 4vw, 3.5rem);
}

.od-background-text__layout {
    display: grid;
    grid-template-columns: minmax(21rem, 0.78fr) minmax(12rem, 0.38fr) minmax(22rem, 0.7fr);
    gap: clamp(1.5rem, 3.5vw, 4rem);
    align-items: center;
}

.od-background-text__eyebrow {
    margin: 0 0 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.od-background-text__headline {
    max-width: 10.5ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3rem, 7.2vw, 6rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.od-background-text__headline em,
.od-background-text__headline strong {
    color: var(--color-primary);
    font-style: normal;
}

.od-background-text__copy-card {
    grid-column: 3;
    max-width: 34rem;
    border-left: 4px solid var(--color-primary);
    padding: clamp(1.2rem, 2.1vw, 1.9rem) clamp(1.35rem, 2.6vw, 2.4rem);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.od-background-text__body {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.98rem, 1.12vw, 1.12rem);
    line-height: 1.5;
    font-weight: 400;
}

.od-background-text__body p {
    margin: 0;
}

.od-background-text__body p + p {
    margin-top: 0.65rem;
}

.od-background-text__body strong,
.od-background-text__body b {
    color: #ffffff;
    font-weight: 800;
}

.od-background-text__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.od-background-text__button,
.od-background-text__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.od-background-text__button {
    min-height: 54px;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.od-background-text__button:hover,
.od-background-text__button:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
}

.od-background-text__link {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.85rem;
}

.od-background-text__link:hover,
.od-background-text__link:focus-visible {
    color: #ffffff;
}

@media (max-width: 767.98px) {
.od-seo-text-block {
        padding: 48px 1rem;
    }

.od-seo-text-block__container {
        padding: 0;
    }

.od-seo-text-block__title {
        font-size: 28px;
    }


}

@media (max-width: 991.98px) {
.od-background-text {
        min-height: auto;
    }

.od-background-text__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

.od-background-text__headline {
        max-width: 12ch;
    }

.od-background-text__copy-card {
        grid-column: auto;
        max-width: 100%;
    }


}

@media (max-width: 575.98px) {
.od-background-text__container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

.od-background-text__copy-card {
        padding: 1.25rem;
    }

.od-background-text__actions {
        align-items: stretch;
        flex-direction: column;
    }

.od-background-text__button,
    .od-background-text__link {
        justify-content: center;
    }


}

@keyframes od-brand-slider-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
.od-brand-slider__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }


}

.od-booking-strip {
    margin-top: -3.75rem;
    position: relative;
    z-index: 12;
}

.od-booking-strip__container {
    padding-left: clamp(2.5rem, 6.5vw, 8rem);
    padding-right: clamp(2.5rem, 6.5vw, 8rem);
}

.od-booking-strip__inner {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e4e4e7;
    border-radius: 4px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.od-booking-strip__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.od-booking-strip__title {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    color: var(--color-text);
}

.od-booking-strip__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 700;
}

.od-booking-strip__form {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(150px, 1fr)) minmax(135px, 0.8fr) repeat(2, minmax(104px, 0.58fr)) minmax(150px, 0.9fr) minmax(190px, 1fr);
    align-items: end;
}

.od-booking-strip__form--bike {
    grid-template-columns: repeat(2, minmax(180px, 1.15fr)) minmax(150px, 0.8fr) minmax(180px, 1fr) minmax(220px, 1fr);
}

.od-booking-strip__field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.od-booking-strip__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #59595b;
    margin-left: 0.25rem;
}

.od-booking-strip__field input,
.od-booking-strip__field select {
    height: 50px;
    min-height: 50px;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    padding: 0.75rem 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text);
    background: #fff;
}

.od-booking-strip__field .flatpickr-input {
    background: #ffffff;
}

.od-booking-strip__counter {
    display: grid;
    grid-template-columns: 40px minmax(36px, 1fr) 40px;
    height: 50px;
    border: 1px solid #e2e2e2;
    background: #ffffff;
}

.od-booking-strip__counter-btn {
    border: 0;
    background: #f5f5f5;
    color: var(--color-text);
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
}

.od-booking-strip__counter-btn:hover,
.od-booking-strip__counter-btn:focus-visible {
    background: #eeeeee;
}

.od-booking-strip__counter-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    font-weight: 700;
}

.od-booking-strip__children-ages {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.od-booking-strip__submit {
    height: 50px;
    min-height: 50px;
    width: 100%;
    border: 0;
    padding: 0.75rem 1rem;
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    align-self: end;
}

.od-booking-strip__submit:hover,
.od-booking-strip__submit:focus-visible {
    background: var(--color-primary-dark);
    color: #ffffff;
}

@media (max-width: 1250px) {
.od-booking-strip__form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

.od-booking-strip__submit {
        grid-column: 2;
    }

.od-booking-strip__children-ages {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


}

@media (max-width: 767.98px) {
.od-booking-strip {
        margin-top: -1.5rem;
    }

.od-booking-strip__container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

.od-booking-strip__head {
        flex-direction: column;
        align-items: flex-start;
    }

.od-booking-strip__form {
        grid-template-columns: 1fr;
    }

.od-booking-strip__submit {
        grid-column: auto;
    }

.od-booking-strip__children-ages {
        grid-template-columns: 1fr;
    }


}

.od-leaflet-ce__map {
    width: 100%;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d9d9d9;
}

.od-leaflet-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #004c97;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.od-leaflet-popup__title {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.od-leaflet-popup__text {
    margin-bottom: 0.35rem;
    line-height: 1.45;
}

.od-leaflet-popup a {
    color: var(--color-primary);
    text-decoration: underline;
}

.od-prefooter-boxes {
    background: linear-gradient(90deg, #0a1f33 0%, #0a1f33 100%);
}

.od-prefooter-boxes__title {
    margin: 0 0 2rem;
    color: #ffffff;
    text-align: center;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.2;
    font-weight: 700;
}

.od-prefooter-boxes__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.od-prefooter-boxes__item {
    min-height: 90px;
    border-radius: 4px;
    border: 1px solid rgba(63, 63, 70, 0.5);
    background: rgba(39, 39, 42, 0.5);
    padding: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.od-prefooter-boxes__item:hover {
    border-color: rgba(120, 120, 130, 0.75);
    background: rgba(58, 58, 62, 0.55);
}

.od-prefooter-boxes__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.od-prefooter-boxes__label {
    color: #ffffff;
    text-align: center;
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 1199.98px) {
.od-prefooter-boxes__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }


}

@media (max-width: 767.98px) {
.od-prefooter-boxes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


}

/* Bootfitting content elements */
.od-bootfitting-container {
    width: min(calc(100% - 3rem), 1280px);
    margin-inline: auto;
}

.od-bootfitting-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.od-bootfitting-eyebrow::before {
    content: "";
    width: 2.75rem;
    height: 3px;
    background: currentColor;
}

.od-bootfitting-eyebrow--light {
    color: #fff;
}

.od-bootfitting-btn {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0 1.375rem;
    border: 1px solid transparent;
    border-radius: 2px;
    background: var(--color-primary);
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.od-bootfitting-btn:hover,
.od-bootfitting-btn:focus {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.od-bootfitting-btn--white {
    background: #fff;
    color: var(--color-text);
}

.od-bootfitting-btn--white:hover,
.od-bootfitting-btn--white:focus {
    background: #f4f4f5;
    color: var(--color-text);
}

.od-bootfitting-hero {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #0a1f33;
}

.od-bootfitting-hero__media,
.od-bootfitting-hero__overlay,
.od-bootfitting-cta__media,
.od-bootfitting-cta__overlay {
    position: absolute;
    inset: 0;
}

.od-bootfitting-hero__image,
.od-bootfitting-cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-bootfitting-hero__image {
    object-position: center 42%;
}

.od-bootfitting-hero__overlay {
    background:
        linear-gradient(90deg, rgba(13, 17, 19, 0.82), rgba(13, 17, 19, 0.38)),
        linear-gradient(transparent 70%, rgba(0, 0, 0, 0.42));
    z-index: 1;
}

.od-bootfitting-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5.5rem 0 8.25rem;
}

.od-bootfitting-hero__copy {
    max-width: 820px;
}

.od-bootfitting-hero :is(h1, h2, h3, h4, h5, h6) {
    max-width: 900px;
    margin: 1.125rem 0 1.375rem;
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(2.75rem, 6.3vw, 5.125rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.od-bootfitting-hero__lead {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.55;
}

.od-bootfitting-hero__lead p,
.od-bootfitting-section__intro p,
.od-bootfitting-intro__text p,
.od-bootfitting-step__text p,
.od-bootfitting-solution__text p,
.od-bootfitting-audience__text p,
.od-bootfitting-cta__text p,
.od-bootfitting-faq__text p {
    margin: 0;
}

.od-bootfitting-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.125rem;
}

.od-bootfitting-booking-wrap {
    position: relative;
    z-index: 3;
    margin-top: -4.625rem;
}

.od-bootfitting-booking {
    padding: 1.75rem;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.25);
}

.od-bootfitting-booking__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.375rem;
}

.od-bootfitting-booking :is(h1, h2, h3, h4, h5, h6) {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.od-bootfitting-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3125rem 0.75rem;
    border-radius: 999px;
    background: rgba(228, 42, 26, 0.1);
    color: var(--color-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.od-bootfitting-booking__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    gap: 1.125rem;
    align-items: end;
}

.od-bootfitting-field label {
    display: block;
    margin-bottom: 0.4375rem;
    color: var(--color-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.od-bootfitting-field__box {
    min-height: 3.125rem;
    display: flex;
    align-items: center;
    padding: 0 0.9375rem;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    background: #fff;
    color: var(--color-muted);
}

.od-bootfitting-section {
    padding: 6.5rem 0;
    background: #fff;
}

.od-bootfitting-section--soft {
    background: #f7f7f7;
}

.od-bootfitting-section--dark {
    background: #191b1d;
    color: #fff;
}

.od-bootfitting-section--no-frame {
    padding-block: 0;
}

.od-bootfitting-section__head {
    max-width: 780px;
    margin-bottom: 3.25rem;
}

.od-bootfitting-section__head--center {
    margin-inline: auto;
    text-align: center;
}

.od-bootfitting-section__head--center .od-bootfitting-eyebrow {
    justify-content: center;
}

.od-bootfitting-section__head > :is(h1, h2, h3, h4, h5, h6),
.od-bootfitting-intro__copy > :is(h1, h2, h3, h4, h5, h6),
.od-bootfitting-cta__inner > div > :is(h1, h2, h3, h4, h5, h6) {
    margin: 0.75rem 0 1rem;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(2.125rem, 4vw, 3.375rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.od-bootfitting-section__intro,
.od-bootfitting-intro__text,
.od-bootfitting-step__text,
.od-bootfitting-audience__text,
.od-bootfitting-faq__text {
    color: var(--color-muted);
}

.od-bootfitting-section__intro,
.od-bootfitting-intro__text {
    font-size: 1.125rem;
}

.od-bootfitting-section--dark .od-bootfitting-section__intro {
    color: rgba(255, 255, 255, 0.72);
}

main .od-bootfitting-section--dark .od-bootfitting-section__intro a:not(.btn):not(.od-rte-button) {
    color: var(--color-primary);
    text-decoration-color: currentColor;
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.18em;
}

main .od-bootfitting-section--dark .od-bootfitting-section__intro a:not(.btn):not(.od-rte-button):hover,
main .od-bootfitting-section--dark .od-bootfitting-section__intro a:not(.btn):not(.od-rte-button):focus-visible {
    color: #ffad33;
    text-decoration-thickness: 0.16em;
}

.od-bootfitting-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
}

.od-bootfitting-intro__copy > :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 0.875rem;
}

.od-bootfitting-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem 1.375rem;
    margin: 1.875rem 0 0;
    padding: 0;
    list-style: none;
}

.od-bootfitting-checks li {
    position: relative;
    padding-left: 1.875rem;
    color: var(--color-text);
    font-weight: 700;
}

.od-bootfitting-checks li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
}

.od-bootfitting-intro__media {
    position: relative;
}

.od-bootfitting-intro__image {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.od-bootfitting-intro__note {
    position: absolute;
    left: -2.125rem;
    bottom: 1.875rem;
    width: min(330px, 80%);
    padding: 1.375rem;
    background: #fff;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.25);
}

.od-bootfitting-intro__note strong {
    display: block;
    margin-bottom: 0.4375rem;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
}

.od-bootfitting-intro__note p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.875rem;
}

.od-bootfitting-process {
    display: grid;
    gap: 1.5rem;
    counter-reset: bootfitting-step;
}

.od-bootfitting-step {
    display: grid;
    grid-template-columns: 120px minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 280px;
    background: #fff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
    counter-increment: bootfitting-step;
}

.od-bootfitting-step:nth-child(even) {
    grid-template-columns: 120px minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.od-bootfitting-step__number {
    display: grid;
    place-items: center;
    color: var(--color-primary);
    background: #fafafa;
    border-right: 1px solid #e2e2e2;
    font-family: Inter, Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
}

.od-bootfitting-step__number::before,
.od-bootfitting-solution__icon::before,
.od-bootfitting-audience__index::before {
    content: counter(bootfitting-step, decimal-leading-zero);
}

.od-bootfitting-step__content {
    align-self: center;
    padding: 2.625rem;
}

.od-bootfitting-step__content h3 {
    margin: 0 0 0.875rem;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.od-bootfitting-step__media {
    width: 100%;
    min-height: 280px;
    height: 100%;
    object-fit: cover;
}

.od-bootfitting-step:nth-child(even) .od-bootfitting-step__content {
    order: 3;
}

.od-bootfitting-step:nth-child(even) .od-bootfitting-step__media {
    order: 2;
}

.od-bootfitting-solutions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.375rem;
    counter-reset: bootfitting-step;
}

.od-bootfitting-solution {
    flex: 0 1 calc((100% - 4.125rem) / 4);
    position: relative;
    min-height: 340px;
    padding: 1.875rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    counter-increment: bootfitting-step;
}

.od-bootfitting-solution::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0.2);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.od-bootfitting-solution:hover::before {
    transform: scaleX(1);
}

.od-bootfitting-solution__icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    margin-bottom: 2.75rem;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.od-bootfitting-solution > :is(h1, h2, h3, h4, h5, h6) {
    margin: 0 0 0.75rem;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.od-bootfitting-solution__text {
    color: rgba(255, 255, 255, 0.72);
}

.od-bootfitting-audience {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #e2e2e2;
    counter-reset: bootfitting-step;
}

.od-bootfitting-audience__item {
    padding: 2.125rem;
    border-right: 1px solid #e2e2e2;
    counter-increment: bootfitting-step;
}

.od-bootfitting-audience__item:last-child {
    border-right: 0;
}

.od-bootfitting-audience__index {
    display: block;
    margin-bottom: 2.25rem;
    color: var(--color-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
}

.od-bootfitting-audience__item h3 {
    margin: 0 0 0.75rem;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.2;
}

.od-bootfitting-brands {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
}

.od-bootfitting-brand-tile {
    min-height: 130px;
    display: grid;
    place-items: center;
    padding: 1.75rem;
    background: #fff;
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}

.od-bootfitting-brand-tile__logo {
    width: min(100%, 11rem);
    max-height: 4.25rem;
    object-fit: contain;
}

.od-bootfitting-cta {
    position: relative;
    overflow: hidden;
    padding: 5.375rem 0;
    color: #fff;
    background: var(--color-primary);
}

.od-bootfitting-cta__overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(228, 42, 26, 0.95), rgba(180, 0, 10, 0.9));
}

.od-bootfitting-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2.625rem;
    align-items: center;
}

.od-bootfitting-cta__inner > div > :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 0;
}

.od-bootfitting-cta__text {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.125rem;
}

.od-bootfitting-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.375rem;
    margin-top: 1.125rem;
    font-weight: 700;
}

.od-bootfitting-cta__text a,
.od-bootfitting-contact-row a,
.od-bootfitting-cta__text a:hover,
.od-bootfitting-contact-row a:hover,
.od-bootfitting-cta__text a:focus-visible,
.od-bootfitting-contact-row a:focus-visible {
    color: white!important;
}

.od-bootfitting-contact-row a {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.od-bootfitting-calendly-modal .modal-dialog {
    height: calc(100vh - 3rem);
    margin-block: 1.5rem;
}

.od-bootfitting-calendly-modal .modal-content {
    height: 100%;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.od-bootfitting-calendly-modal .modal-header {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid #e2e2e2;
}

.od-bootfitting-calendly-modal .modal-title {
    margin: 0;
    color: var(--color-text);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.od-bootfitting-calendly-modal .modal-body {
    flex: 1 1 auto;
    min-height: 0;
    padding: 0;
    overflow: hidden;
}

.od-bootfitting-calendly {
    position: relative;
    width: 100%;
    min-width: min(320px, 100%);
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.od-bootfitting-calendly iframe {
    width: 100%;
    height: 100%;
}

.od-bootfitting-calendly__loader {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1rem;
    padding: 2rem;
    background: #fff;
    color: var(--color-text);
    font-family: Inter, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
}

.od-bootfitting-calendly__spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid #e5e7eb;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: od-bootfitting-spin 0.8s linear infinite;
}

.od-bootfitting-calendly.is-loaded .od-bootfitting-calendly__loader {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.od-bootfitting-calendly.has-error .od-bootfitting-calendly__spinner {
    display: none;
}

.od-bootfitting-calendly.has-error .od-bootfitting-calendly__loader span:last-child {
    font-size: 0;
}

.od-bootfitting-calendly.has-error .od-bootfitting-calendly__loader span:last-child::after {
    content: "Die Terminbuchung konnte nicht geladen werden. Bitte versuchen Sie es später erneut.";
    font-size: 1rem;
}

@keyframes od-bootfitting-spin {
    to {
        transform: rotate(360deg);
    }
}

.od-bootfitting-faq {
    max-width: 880px;
    margin-inline: auto;
    border-top: 1px solid #e2e2e2;
}

.od-bootfitting-faq details {
    border-bottom: 1px solid #e2e2e2;
}

.od-bootfitting-faq summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 1.625rem 3.375rem 1.625rem 0;
    font-family: Inter, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
}

.od-bootfitting-faq summary::-webkit-details-marker {
    display: none;
}

.od-bootfitting-faq summary::after {
    content: "+";
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-family: Inter, Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1;
}

.od-bootfitting-faq details[open] summary::after {
    content: "\2212";
}

.od-bootfitting-faq__text {
    max-width: 760px;
    margin: -0.3125rem 0 1.625rem;
}

@media (max-width: 1050px) {
.od-bootfitting-audience {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

.od-bootfitting-solution {
        flex-basis: calc((100% - 1.375rem) / 2);
    }

.od-bootfitting-audience__item:nth-child(2n) {
        border-right: 0;
    }

.od-bootfitting-audience__item:nth-child(-n+2) {
        border-bottom: 1px solid #e2e2e2;
    }

.od-bootfitting-step,
    .od-bootfitting-step:nth-child(even) {
        grid-template-columns: 88px minmax(0, 1fr);
    }

.od-bootfitting-step__media,
    .od-bootfitting-step:nth-child(even) .od-bootfitting-step__media {
        grid-column: 1 / -1;
        order: 3;
        height: 300px;
    }

.od-bootfitting-step:nth-child(even) .od-bootfitting-step__content {
        order: 2;
    }


}

@media (max-width: 780px) {
.od-bootfitting-container {
        width: min(calc(100% - 2rem), 1280px);
    }

.od-bootfitting-hero {
        min-height: 610px;
    }

.od-bootfitting-hero__inner {
        padding: 4.5rem 0 8rem;
    }

.od-bootfitting-booking-wrap {
        margin-top: -3.625rem;
    }

.od-bootfitting-booking {
        padding: 1.375rem;
    }

.od-bootfitting-booking__top {
        align-items: flex-start;
        flex-direction: column;
    }

.od-bootfitting-booking__body {
        grid-template-columns: 1fr;
    }

.od-bootfitting-booking__body .od-bootfitting-btn {
        width: 100%;
    }

.od-bootfitting-section {
        padding: 4.875rem 0;
    }

.od-bootfitting-section--no-frame {
        padding-block: 0;
    }

.od-bootfitting-intro,
    .od-bootfitting-cta__inner {
        grid-template-columns: 1fr;
        gap: 2.375rem;
    }

.od-bootfitting-intro__media {
        padding-left: 1.125rem;
    }

.od-bootfitting-intro__note {
        left: 0;
    }

.od-bootfitting-checks,
    .od-bootfitting-audience {
        grid-template-columns: 1fr;
    }

.od-bootfitting-solution {
        flex-basis: 100%;
    }

.od-bootfitting-audience__item {
        border-right: 0;
        border-bottom: 1px solid #e2e2e2;
    }

.od-bootfitting-audience__item:last-child {
        border-bottom: 0;
    }

.od-bootfitting-brands {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


}

@media (max-width: 520px) {
.od-bootfitting-hero :is(h1, h2, h3, h4, h5, h6) {
        font-size: 2.6875rem;
    }

.od-bootfitting-hero__actions .od-bootfitting-btn {
        width: 100%;
    }

.od-bootfitting-step,
    .od-bootfitting-step:nth-child(even) {
        grid-template-columns: 64px minmax(0, 1fr);
    }

.od-bootfitting-step__number {
        font-size: 2.375rem;
    }

.od-bootfitting-step__content {
        padding: 1.75rem 1.375rem;
    }

.od-bootfitting-step__content h3 {
        font-size: 1.4375rem;
    }

.od-bootfitting-brand-tile__logo {
        width: min(100%, 9rem);
        max-height: 3.5rem;
    }

.od-bootfitting-calendly-modal .modal-header {
        padding: 1.25rem;
    }

.od-bootfitting-calendly-modal .modal-dialog {
        height: calc(100vh - 1rem);
        margin: 0.5rem;
    }


}

/* Figma-oriented finishing layer */
.od-ski-price-checker {
    width: min(calc(100% - 2rem), 760px);
    margin: clamp(3rem, 8vw, 7rem) auto;
    padding: clamp(1.75rem, 4vw, 3.5rem);
    border: 1px solid #e1e3e4;
    border-top: 5px solid var(--color-primary);
    border-radius: 0.875rem;
    background: #fff;
    box-shadow: 0 24px 60px rgb(10 31 51 / 10%);
    color: var(--color-text);
}

.od-ski-price-checker__title {
    max-width: 34rem;
    margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-text);
    font-family: "Sora", "Inter", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.od-ski-price-checker__content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.od-ski-price-checker__form {
    width: 100%;
}

.od-ski-price-checker__content > .alert {
    width: 100%;
    margin: 1rem 0 0;
}

.od-ski-price-checker__label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
    text-align: left;
}

.od-ski-price-checker__input.form-control {
    min-height: 3.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid #cfd4da;
    border-radius: 0.75rem;
    background: #fff;
    color: var(--color-text);
    font-size: 1rem;
    box-shadow: none;
}

.od-ski-price-checker__input.form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.25rem rgb(0 76 151 / 14%);
}

.od-ski-price-checker__consent {
    max-width: 38rem;
    margin: 1.25rem auto 1.5rem;
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
}

.od-ski-price-checker__consent a {
    color: var(--color-text);
    font-weight: 700;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.18em;
}

.od-ski-price-checker > :is(h3, p, div:not([class])) {
    text-align: center;
}

.od-ski-price-checker .scanner-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: flex;
    background: rgb(0 0 0 / 55%);
}

.od-ski-price-checker .scanner-overlay.d-none {
    display: none !important;
}

.od-ski-price-checker .scanner-box {
    width: 92%;
    max-width: 420px;
    padding: .75rem .75rem 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: .5rem;
    box-shadow: 0 8px 18px rgb(0 0 0 / 20%);
}

.od-ski-price-checker .scanner-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.od-ski-price-checker [data-ski-price-checker-reader] {
    width: 100%;
}

.od-ski-price-checker [data-ski-price-checker-reader] video,
.od-ski-price-checker [data-ski-price-checker-reader] [id$="__scan_region"],
.od-ski-price-checker [data-ski-price-checker-reader] .qr-code-full-region {
    overflow: hidden;
    border-radius: .4rem;
}

.od-ski-price-checker .html5-qrcode-anchor-scan-type-change {
    display: none;
}

body.od-scanner-open {
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .od-ski-price-checker {
        width: min(calc(100% - 1.25rem), 760px);
        margin-block: 2rem;
        padding: 1.5rem 1.125rem 1.75rem;
        border-radius: 0.75rem;
    }

    .od-ski-price-checker .od-rte-button {
        width: 100%;
    }
}

.od-booking-strip { background: #0a1f33; color: #fff; padding: clamp(2rem, 5vw, 4rem) 0; }
.od-booking-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.od-booking-strip__copy { color: rgba(255,255,255,.72); margin: .5rem 0 0; }
.od-booking-strip__submit { flex: 0 0 auto; border-radius: .75rem; }
.od-service-cards__card, .icc-productsteaser__card, .od-shop-bento__card,
.od-principle, .od-snowboard-boot-card, .od-buying-guide-ski-card,
.od-address__card, .od-bootfitting-solution, .od-bootfitting-brand-tile {
    border-radius: .75rem;
    border-color: #e1e3e4;
}
.od-buying-guide-ski-card {
    border-left-color: var(--color-primary);
}
.od-background-text__copy-card, .od-bootfitting-booking { border-radius: .75rem; backdrop-filter: blur(12px); }
.od-bootfitting-section--dark { background: #0a1f33; }
.od-bootfitting-eyebrow, .od-buying-guide__eyebrow, .od-principles__eyebrow,
.od-snowboard-boots__eyebrow, .od-seo-text-block__eyebrow, .icc-productsteaser__eyebrow,
.od-promo-text-image__label, .od-shop-bento__kicker, .od-kicker { color: #f39200; }
.od-leaflet-ce__map { border-radius: .75rem; overflow: hidden; }
@media (max-width: 767.98px) {
    .od-booking-strip__inner { align-items: stretch; flex-direction: column; }
    .od-booking-strip__submit { width: 100%; }
}
