:root {
    --brand: #485DAA;
    --brand-dark: #263272;
    --brand-tint-5: color-mix(in srgb, var(--brand) 5%, #ffffff);
    --brand-tint-8: color-mix(in srgb, var(--brand) 8%, #ffffff);
    --brand-tint-10: color-mix(in srgb, var(--brand) 10%, #ffffff);
    --brand-tint-15: color-mix(in srgb, var(--brand) 15%, #ffffff);
    --brand-tint-20: color-mix(in srgb, var(--brand) 20%, #ffffff);
    --brand-tint-25: color-mix(in srgb, var(--brand) 25%, #ffffff);
    --brand-dark-tint-70: color-mix(in srgb, var(--brand-dark) 70%, #ffffff);
    --brand-on-dark: var(--brand-tint-25);
    --brand-alpha-5: color-mix(in srgb, var(--brand) 5%, transparent);
    --brand-alpha-12: color-mix(in srgb, var(--brand) 12%, transparent);
    --brand-alpha-14: color-mix(in srgb, var(--brand) 14%, transparent);
    --brand-alpha-16: color-mix(in srgb, var(--brand) 16%, transparent);
    --brand-alpha-20: color-mix(in srgb, var(--brand) 20%, transparent);
    --brand-alpha-24: color-mix(in srgb, var(--brand) 24%, transparent);
    --brand-alpha-32: color-mix(in srgb, var(--brand) 32%, transparent);
    --brand-dark-alpha-8: color-mix(in srgb, var(--brand-dark) 8%, transparent);
    --topbar-bg: #000000;
    --topbar-text: #ffffff;
    --main-menu-bg: var(--brand-dark);
    --main-menu-text: #ffffff;
    --main-menu-accent: var(--brand);
    --brand-soft: var(--brand-tint-8);
    --brand-border: var(--brand-tint-20);
    --text-main: color-mix(in srgb, var(--brand-dark) 88%, #000000);
    --text-soft: var(--brand-dark-tint-70);
    --surface: #ffffff;
    --surface-alt: var(--brand-tint-5);
    --shadow-soft: 0 12px 35px var(--brand-dark-alpha-8);
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --footer-information-bg: var(--brand-tint-15);
    --footer-copyright-bg: var(--brand-dark);
    --footer-copyright-text: #ffffff;
    --footer-information-text: #000000;
    --discount-text: #861521;
    --page-padding-x: 1.5rem;
    --page-padding-x-mobile: 1rem;
    --navigation-row-height: 100px;
    --site-header-sticky-offset: 140px;
    --font-size-body: 14px;
    --line-height-body: 1.6;
    --font-size-nav: 1.1rem;
    --font-size-h1: 2.5rem;
    --font-size-h1-mobile: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h2-mobile: 1.5rem;
}

html,
body {
    height: 100%;
}

body.app-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--text-main);
    background: var(--brand-tint-5);
}

body.app-body a:not(.btn):not(.nav-link):not(.dropdown-item):not(.navbar-brand):hover {
    text-decoration: underline;
}

h1,
h2 {
    line-height: 1.2;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.eyebrow {
    font-family: 'Montserrat', sans-serif;
}

.page-width {
    width: 100%;
    max-width: 100%;
    padding-left: var(--page-padding-x);
    padding-right: var(--page-padding-x);
}

.topbar {
    background: var(--topbar-bg);
    padding-top: 4px;
    padding-bottom: 4px;
}

.topbar-link {
    color: var(--topbar-text);
    font-weight: 400;
    text-decoration: none;
}

.topbar-link:hover {
    color: #fff;
    text-decoration: underline;
}

.topbar-link:focus-visible,
.footer-link:focus-visible,
.footer-copy a:focus-visible,
.nav-link:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 2px;
}

.brand-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    color: var(--main-menu-text);
}

.brand-subtitle {
    font-size: 0.72rem;
    line-height: 1;
    color: rgba(255,255,255,0.82);
}

.navbar {
    --bs-navbar-padding-y: calc(0.35rem + 8px);
}

.site-main-nav {
    background: var(--main-menu-bg);
    min-height: var(--navigation-row-height);
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: var(--brand) !important;
}

.site-header {
    z-index: 1030;
}

.site-main-nav-inner {
    min-height: var(--navigation-row-height);
}

.site-main-nav .navbar-brand {
    flex: 0 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}

.brand-stack {
    line-height: 1;
}

.site-main-nav .navbar-brand img {
    display: block;
    height: 70px;
    width: auto;
}

.site-main-nav .navbar-nav {
    column-gap: 1.45rem;
}

.site-main-nav .navbar-collapse {
    flex-grow: 1;
}

.site-main-nav .navbar-toggler {
    margin-left: auto;
    border-color: rgba(255,255,255,0.65);
}

.site-main-nav .navbar-toggler-icon {
    filter: invert(1) grayscale(100%);
}

.nav-link {
    font-size: var(--font-size-nav);
    font-weight: 600;
    color: var(--main-menu-text);
    white-space: nowrap;
}

.nav-link.active,
.nav-link.show,
.nav-link:hover,
.nav-link:focus {
    color: var(--brand-on-dark);
}

.site-main-nav .navbar-nav .show > .nav-link,
.site-main-nav .navbar-nav .nav-link.dropdown-toggle.show,
.site-main-nav .navbar-nav .nav-item.dropdown:hover > .nav-link,
.site-main-nav .navbar-nav .nav-item.dropdown:focus-within > .nav-link {
    color: var(--brand-on-dark) !important;
}

.dropdown-menu {
    min-width: 19.5rem;
    padding: 0.55rem 0;
    background: var(--main-menu-bg);
    border-color: rgba(255,255,255,0.18);
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    margin-top: 0.45rem;
}

.dropdown-item {
    color: var(--main-menu-text);
    font-weight: 600;
    line-height: 1.25;
    padding: 0.55rem 1.1rem;
    white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    color: #ffffff;
    background: var(--main-menu-accent);
}

.dropdown-item:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: -3px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -0.55rem;
    margin-left: 0.15rem;
}

.dropdown-submenu:hover > .dropdown-menu,
.dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
}

.btn-brand {
    --bs-btn-bg: var(--main-menu-bg);
    --bs-btn-border-color: var(--main-menu-bg);
    --bs-btn-hover-bg: var(--main-menu-accent);
    --bs-btn-hover-border-color: var(--main-menu-accent);
    --bs-btn-active-bg: var(--main-menu-accent);
    --bs-btn-active-border-color: var(--main-menu-accent);
    --bs-btn-color: #ffffff;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-color: #ffffff;
}

.btn-outline-brand {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: var(--main-menu-bg);
    --bs-btn-bg: var(--main-menu-bg);
    --bs-btn-hover-bg: var(--main-menu-accent);
    --bs-btn-hover-border-color: var(--main-menu-accent);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-bg: var(--main-menu-accent);
    --bs-btn-active-border-color: var(--main-menu-accent);
    --bs-btn-active-color: #ffffff;
}

.btn-logout {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: #c82333;
    --bs-btn-bg: #c82333;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #c82333;
    --bs-btn-hover-color: #c82333;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #c82333;
    --bs-btn-active-color: #c82333;
}

.account-body-menu-wrap {
    width: 100%;
}

.account-body-menu {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--brand-tint-20);
    border-radius: 0.85rem;
    background: #ffffff;
    box-shadow: 0 0.75rem 2rem var(--brand-dark-alpha-8);
}

.account-body-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    min-height: 66px;
    padding: 0.95rem 0.9rem;
    border: 0;
    border-right: 1px solid var(--brand-tint-20);
    background: #ffffff;
    color: var(--brand-dark);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.account-body-menu-item + .account-body-menu-item {
    margin-left: 0;
}

.account-body-menu-item:last-child {
    border-right: 0;
}

.account-body-menu-item:visited {
    color: var(--brand-dark);
}

.account-body-menu-item.is-active {
    background: var(--brand);
    color: #ffffff;
}

.account-body-menu-item:hover,
.account-body-menu-item:focus-visible {
    background: var(--brand);
    color: #ffffff;
    border-color: var(--brand-tint-20);
}

.account-body-menu-item-quote:hover,
.account-body-menu-item-quote:focus-visible {
    background: #f28c28;
    color: #ffffff;
    border-color: var(--brand-tint-20);
}

.account-body-menu-item-terms,
.account-body-menu-item-terms:visited,
.account-body-menu-item-terms.is-active,
.account-body-menu-item-terms:hover,
.account-body-menu-item-terms:focus-visible {
    background: var(--brand-dark);
    color: #ffffff;
}

.account-body-menu-item-terms:hover,
.account-body-menu-item-terms:focus-visible {
    background: var(--brand);
    outline: 3px solid var(--brand-tint-25);
    outline-offset: -3px;
}

.content-card-header.account-terms-card-header {
    background: var(--brand-dark);
    color: #ffffff;
}

.content-card-header.account-terms-card-header h2 {
    color: inherit;
}

.btn-account-terms {
    --bs-btn-bg: var(--brand-dark);
    --bs-btn-border-color: var(--brand-dark);
    --bs-btn-color: #ffffff;
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-focus-shadow-rgb: 72, 93, 170;
    --bs-btn-active-bg: var(--brand);
    --bs-btn-active-border-color: var(--brand);
    --bs-btn-active-color: #ffffff;
}

.account-terms-copy {
    max-width: 980px;
}

.account-terms-copy a {
    color: var(--brand-dark);
    text-underline-offset: 0.15em;
}

.account-terms-copy a:hover,
.account-terms-copy a:focus-visible {
    color: var(--brand);
}

.account-terms-download-list {
    display: grid;
    gap: 0.65rem;
    margin: 1.25rem 0 1.5rem;
    padding-left: 1.35rem;
}

.account-terms-adobe-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: center;
}

.account-terms-adobe-body img {
    flex: 0 0 auto;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .account-terms-adobe-body img {
        width: 72px;
        height: 72px;
    }
}

.account-body-menu-label {
    display: block;
    font-size: 1.05rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-shell-auth {
    background:
        radial-gradient(circle at 12% 28%, var(--brand-alpha-12), transparent 26rem),
        linear-gradient(180deg, var(--brand-tint-5) 0%, #ffffff 72%);
}

.page-banner.account-page-banner {
    border-bottom-color: var(--brand);
    background:
        radial-gradient(circle at 84% 12%, var(--brand-alpha-32), transparent 24rem),
        linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #ffffff;
}

.account-page-banner h1 {
    color: #ffffff;
}

.account-page-banner .eyebrow {
    border: 1px solid color-mix(in srgb, #ffffff 32%, transparent);
    background: color-mix(in srgb, #ffffff 12%, transparent);
    color: #ffffff;
}

.account-page-banner .text-secondary {
    color: color-mix(in srgb, #ffffff 84%, var(--brand)) !important;
}

.account-auth-content-section {
    position: relative;
}

.account-auth-stage {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 1.5rem;
}

.account-auth-panel {
    width: min(100%, 680px);
    overflow: hidden;
    border: 1px solid var(--brand-border);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 1.5rem 3.5rem var(--brand-dark-alpha-8);
}

.account-auth-panel.is-register {
    width: min(100%, 1120px);
}

.account-auth-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 2rem;
    background:
        radial-gradient(circle at top right, var(--brand-alpha-24), transparent 42%),
        linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #ffffff;
}

.account-auth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 3.75rem;
    width: 3.75rem;
    height: 3.75rem;
    border: 1px solid color-mix(in srgb, #ffffff 40%, transparent);
    border-radius: 1rem;
    background: color-mix(in srgb, #ffffff 12%, transparent);
    color: #ffffff;
    font-size: 1.65rem;
}

.account-auth-kicker {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--brand-on-dark);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.account-auth-header h2 {
    margin: 0 0 0.35rem;
    color: #ffffff;
    font-size: 1.65rem;
}

.account-auth-header p {
    max-width: 660px;
    margin: 0;
    color: color-mix(in srgb, #ffffff 86%, var(--brand));
}

.account-auth-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 0.65rem;
    border-bottom: 1px solid var(--brand-border);
    background: var(--brand-tint-5);
}

.account-auth-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
    padding: 0.65rem 0.8rem;
    border: 1px solid transparent;
    border-radius: 0.7rem;
    color: var(--brand-dark);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.account-auth-switcher a:hover,
.account-auth-switcher a:focus-visible {
    border-color: var(--brand-tint-20);
    background: #ffffff;
    color: var(--brand);
}

.account-auth-switcher a.is-active {
    border-color: var(--brand);
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 0.4rem 1rem var(--brand-alpha-20);
}

.account-auth-body {
    padding: 2rem;
}

.account-auth-required {
    margin: 0 0 1.25rem;
    color: var(--text-soft);
    font-size: 0.85rem;
}

.account-auth-required span,
.account-auth-form .form-label > span {
    color: #b42332;
    font-weight: 700;
}

.account-auth-form .form-label {
    margin-bottom: 0.45rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.account-auth-form .form-control {
    min-height: 48px;
    border-color: var(--brand-tint-20);
    border-radius: 0.65rem;
    background-color: #ffffff;
}

.account-auth-form .form-control::placeholder {
    color: var(--brand-dark-tint-70);
    opacity: 0.82;
}

.account-auth-form .form-control:hover {
    border-color: var(--brand-tint-25);
}

.account-auth-form .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.22rem var(--brand-alpha-16);
}

.account-auth-fieldset {
    margin: 0 0 1.75rem;
    padding: 0 0 1.75rem;
    border: 0;
    border-bottom: 1px solid var(--brand-tint-15);
}

.account-auth-fieldset legend {
    width: auto;
    margin: 0 0 1rem;
    color: var(--brand-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.account-auth-fieldset-copy {
    margin: -0.55rem 0 1rem;
    color: var(--text-soft);
    font-size: 0.86rem;
}

.account-registration-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.account-registration-column {
    min-width: 0;
    padding: 1.4rem;
    border: 1px solid var(--brand-tint-15);
    border-radius: 0.9rem;
    background: #ffffff;
}

.account-registration-column-optional {
    background: var(--brand-tint-5);
}

.account-registration-column-header {
    margin: -1.4rem -1.4rem 1.4rem;
    padding: 1.15rem 1.4rem;
    border-bottom: 1px solid var(--brand-tint-15);
    border-radius: 0.9rem 0.9rem 0 0;
    background: var(--brand-tint-10);
}

.account-registration-column-optional .account-registration-column-header {
    background: var(--brand-tint-15);
}

.account-registration-column-header h3 {
    margin: 0;
    color: var(--brand-dark);
    font-size: 1.05rem;
}

.account-registration-column .account-auth-fieldset:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.account-auth-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--brand-tint-15);
    border-radius: 0.75rem;
    background: var(--brand-tint-5);
    color: var(--text-soft);
}

.account-auth-notice i {
    margin-top: 0.1rem;
    color: var(--brand);
    font-size: 1rem;
}

.account-auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 50px;
    border-radius: 0.65rem;
    font-weight: 700;
}

.account-auth-text-link,
.account-auth-footer a {
    color: var(--brand);
    font-weight: 700;
}

.account-auth-footer {
    margin: 1.25rem 0 0;
    color: var(--text-soft);
    text-align: center;
}

.account-auth-security-note {
    margin-top: 1rem;
    color: var(--text-soft);
    font-size: 0.82rem;
    text-align: center;
}

.account-auth-security-note i {
    margin-right: 0.3rem;
    color: var(--brand);
}

.account-portal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 0.25rem;
}

.account-portal-toolbar .btn {
    min-width: 150px;
}

.account-orders-table {
    margin-bottom: 0;
    border-collapse: collapse;
}

.account-orders-table thead th {
    background: var(--brand-dark);
    color: #ffffff;
    border-color: var(--brand-dark);
    font-weight: 700;
    white-space: nowrap;
}

.account-orders-table tbody td {
    background: #ffffff;
    vertical-align: middle;
}

.account-grid-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
    line-height: 1;
}

.account-grid-action-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.account-grid-icon-btn i {
    font-size: 1rem;
    line-height: 1;
    display: block;
}

.account-grid-delete-form {
    display: inline-flex;
    vertical-align: middle;
}

.account-delete-modal .modal-content {
    border-radius: 0.65rem;
    border: 0;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.22);
}

.account-delete-modal-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 4px solid #f5a23c;
    color: #f5a23c;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 3.5rem;
}

.account-dashboard-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
    padding: 1rem;
    border: 1px solid var(--brand-alpha-16);
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    text-align: center;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.account-dashboard-card:hover,
.account-dashboard-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.35rem rgba(0, 0, 0, 0.08);
    color: inherit;
}

.account-dashboard-card .fs-4 {
    margin-top: 0.15rem;
}

.account-dashboard-card-basket {
    background: rgba(222, 245, 236, 0.88);
}

.account-dashboard-card-quotes {
    background: rgba(226, 240, 255, 0.88);
}

.account-dashboard-card-orders {
    background: rgba(255, 240, 214, 0.88);
}

.account-dashboard-card-completed {
    background: rgba(236, 230, 255, 0.88);
}

.btn-order-selected {
    --bs-btn-bg: #ffbf00;
    --bs-btn-border-color: #ffbf00;
    --bs-btn-color: #000000;
    --bs-btn-hover-bg: #ffd54d;
    --bs-btn-hover-border-color: #ffd54d;
    --bs-btn-hover-color: #000000;
    --bs-btn-active-bg: #ffd54d;
    --bs-btn-active-border-color: #ffd54d;
    --bs-btn-active-color: #000000;
}

.btn-delete-selected {
    --bs-btn-bg: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-color: #ffffff;
    --bs-btn-hover-bg: #e35d6a;
    --bs-btn-hover-border-color: #e35d6a;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-bg: #e35d6a;
    --bs-btn-active-border-color: #e35d6a;
    --bs-btn-active-color: #ffffff;
}

.btn-refresh-selected {
    --bs-btn-bg: #198754;
    --bs-btn-border-color: #198754;
    --bs-btn-color: #ffffff;
    --bs-btn-hover-bg: #157347;
    --bs-btn-hover-border-color: #157347;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-bg: #157347;
    --bs-btn-active-border-color: #157347;
    --bs-btn-active-color: #ffffff;
}

.btn-terms {
    --bs-btn-bg: #0dcaf0;
    --bs-btn-border-color: #0dcaf0;
    --bs-btn-color: #ffffff;
    --bs-btn-hover-bg: #31d2f2;
    --bs-btn-hover-border-color: #31d2f2;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-active-bg: #31d2f2;
    --bs-btn-active-border-color: #31d2f2;
    --bs-btn-active-color: #ffffff;
}

.vieworder-shell {
    background: #ffffff;
}

.vieworder-legacy {
    max-width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}

.vieworder-topline {
    font-size: 0.98rem;
    color: var(--text-main);
}

.vieworder-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.vieworder-brand img {
    display: block;
    height: 74px;
    width: auto;
}

.vieworder-actions {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.vieworder-payment-form {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.vieworder-payment-form .btn {
    align-self: flex-end;
}

.vieworder-payment-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: fit-content;
    align-self: flex-end;
}

.vieworder-terms {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 0;
    padding-right: 0;
    width: 100%;
    align-self: stretch;
    white-space: nowrap;
    text-align: right;
}

.vieworder-terms-checkbox {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.1rem;
    border: 2px solid var(--brand-dark);
    accent-color: var(--main-menu-bg);
}

.vieworder-terms label {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.vieworder-terms a {
    display: inline-block;
    flex: 0 0 auto;
}

.vieworder-terms-modal .modal-content {
    border-radius: 0.65rem;
    border: 0;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.22);
}

.vieworder-terms-modal-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 4px solid #f7b77b;
    color: #f7b77b;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 3.5rem;
}

.vieworder-terms-modal-title {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.vieworder-terms-modal-copy {
    font-size: 1.1rem;
    color: var(--text-soft);
}

.vieworder-delete-modal .modal-content {
    border-radius: 0.65rem;
    border: 0;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.22);
}

.vieworder-delete-modal-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 4px solid #f5a23c;
    color: #f5a23c;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 3.5rem;
}

.vieworder-rule {
    border-top: 2px solid var(--brand);
    opacity: 1;
    margin: 1rem 0;
}

.vieworder-confirmation {
    padding: 0.25rem 0 0.35rem;
}

.vieworder-panel {
    border: 1px solid var(--brand-tint-20);
    border-radius: 0.5rem;
    background: #ffffff;
}

.vieworder-panel-title {
    padding: 0.75rem 0.85rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.vieworder-panel-body {
    padding: 0 0.85rem 0.9rem;
    font-weight: 400;
    color: var(--text-main);
}

.vieworder-address-panel {
    padding-top: 0.15rem;
}

.vieworder-address-list {
    display: grid;
    gap: 0.25rem;
}

.vieworder-address-row {
    display: grid;
    grid-template-columns: minmax(5.25rem, max-content) minmax(0, 1fr);
    column-gap: 0.6rem;
    align-items: start;
    line-height: 1.35;
}

.vieworder-address-row dt {
    margin: 0;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
}

.vieworder-address-row dd {
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.vieworder-panel-body textarea,
.vieworder-panel-body .vieworder-coordinates {
    width: 100%;
}

.vieworder-panel-body textarea {
    min-height: 190px;
    border: 1px solid var(--brand-tint-20);
    border-radius: 0.35rem;
    background: #ffffff;
}

.vieworder-summary {
    margin-top: 0.5rem;
}

.vieworder-summary-table thead th {
    border-top: 0;
    border-bottom: 1px solid var(--brand-tint-15);
    font-weight: 700;
    color: var(--text-main);
}

.vieworder-summary-table tbody td,
.vieworder-summary-table tfoot td {
    border-top: 1px solid var(--brand-tint-15);
}

.vieworder-summary-table .vieworder-voucher-total-row > td {
    color: var(--discount-text) !important;
}

.vieworder-map {
    width: 100%;
    min-height: 430px;
    border: 1px solid var(--brand-dark);
    border-radius: 0.35rem;
    background: var(--brand-tint-5);
}

.vieworder-coordinate-content {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    max-height: 430px;
}

.vieworder-coordinate-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.vieworder-coordinate-copy-button {
    flex: 0 0 auto;
}

.vieworder-coordinate-copy-status {
    color: #1d6b36;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.vieworder-coordinate-copy-status.is-error {
    color: #861521;
}

.vieworder-coordinates {
    min-height: 430px;
    max-height: 430px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid var(--brand-dark);
    border-radius: 0.35rem;
    background: #ffffff;
    padding: 0.8rem;
    font-family: monospace;
    font-size: 0.95rem;
    line-height: 1.4;
    white-space: pre-line;
    word-break: break-word;
}

.vieworder-coordinate-content .vieworder-coordinates {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
}

.site-main-nav .btn-brand,
.site-main-nav .btn-outline-brand {
    --bs-btn-bg: var(--main-menu-accent);
    --bs-btn-border-color: var(--main-menu-accent);
    --bs-btn-color: #ffffff;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-hover-color: var(--main-menu-accent);
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
    --bs-btn-active-color: var(--main-menu-accent);
}

.page-shell {
    flex: 1 0 auto;
}

.page-banner {
    background:
        radial-gradient(circle at top right, var(--brand-alpha-12), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, var(--brand-tint-5) 100%);
    border-bottom: 1px solid var(--brand-border);
}

.page-banner-compact {
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-tint-5) 100%);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.feature-panel,
.content-card {
    background: var(--surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.feature-panel {
    padding: 1.5rem;
}

.content-card-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--brand-tint-15);
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-tint-5) 100%);
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
}

.content-card-body {
    padding: 1.25rem;
}

.feature-list,
.small-note-list {
    padding-left: 1.1rem;
}

.feature-list li,
.small-note-list li {
    margin-bottom: 0.75rem;
}

.workflow-steps {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.workflow-step {
    padding: 0.9rem 1rem;
    border: 1px solid var(--brand-border);
    border-radius: 999px;
    background: #fff;
    text-align: center;
    font-weight: 600;
    color: var(--text-soft);
    box-shadow: 0 6px 18px var(--brand-alpha-5);
}

.workflow-step.active {
    color: #fff;
    border-color: var(--brand);
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.order-stage {
    background: var(--brand-tint-5);
    border-top: 0;
    border-bottom: 1px solid var(--brand-tint-15);
}

.order-heading {
    max-width: 72rem;
}

.order-content-width {
    width: 100%;
    max-width: 1940px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.order-booking-menu-wrap {
    width: 100%;
    position: sticky;
    top: var(--site-header-sticky-offset);
    z-index: 1020;
    box-shadow: 0 4px 10px var(--brand-dark-alpha-8);
}

.order-booking-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: var(--navigation-row-height);
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background: #ffffff;
}

.order-booking-menu li {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: calc(var(--navigation-row-height) - 2px);
    padding: 0.85rem 1.3rem;
    border-right: 1px solid var(--brand-tint-20);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    background: #ffffff;
}

.order-booking-menu .order-journey-step {
    position: relative;
    transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.order-journey-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 2px solid var(--brand-tint-20);
    border-radius: 50%;
    background: var(--brand-tint-5);
    color: var(--main-menu-bg);
    font-size: 1.45rem;
    line-height: 1;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.order-journey-label {
    line-height: 1.2;
}

.order-booking-menu li:last-child {
    border-right: 0;
}

.order-booking-menu .order-journey-step.active {
    background: #F7F5BF;
    color: var(--main-menu-accent);
    box-shadow:
        inset 1px 0 0 var(--main-menu-accent),
        inset -1px 0 0 var(--main-menu-accent),
        inset 0 -5px 0 var(--main-menu-accent),
        0 6px 16px var(--brand-dark-alpha-8);
}

.order-booking-menu .order-journey-step.active .order-journey-icon {
    border-color: var(--main-menu-accent);
    background: var(--main-menu-accent);
    color: #ffffff;
    transform: scale(1.08);
}

.order-booking-menu .blue-tab {
    background: var(--main-menu-accent);
    color: #ffffff;
    cursor: pointer;
}

.order-booking-menu .order-booking-action {
    gap: 0.7rem;
}

.order-booking-action i {
    flex: 0 0 auto;
    font-size: 1.35rem;
    line-height: 1;
}

.order-booking-menu .blue-tab:hover,
.order-booking-menu .blue-tab:focus {
    background: var(--main-menu-bg);
    color: #ffffff;
}

.order-step-panel {
    padding: 0;
}

.order-map-frame {
    position: relative;
}

.order-map-workspace {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--brand-dark);
    border-top: 0;
}

.order-map-canvas {
    height: max(420px, calc(100dvh - 230px));
    min-height: 420px;
    width: 100%;
}

.order-search-panel {
    width: min(420px, calc(100vw - 4rem));
    padding: 20px 8px 12px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.order-search-copy {
    margin: 0 0 15px;
    font-size: 14px;
}

.order-place-autocomplete-host {
    width: 100%;
}

.order-place-autocomplete {
    width: 100%;
}

.order-place-autocomplete-host .place-autocomplete-element,
.order-place-autocomplete::part(input) {
    width: 100%;
}

#look-up-input,
.order-place-autocomplete::part(input) {
    position: relative !important;
    width: 100%;
    padding: 15px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    background: var(--brand-tint-5);
    border: 1px solid var(--brand-tint-20);
    outline: none;
}

#look-up-input:hover,
#look-up-input:focus,
.order-place-autocomplete::part(input):hover,
.order-place-autocomplete::part(input):focus {
    border-color: var(--brand);
}

.order-map-mode-controls {
    display: inline-grid;
    grid-template-columns: repeat(6, minmax(48px, 1fr));
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--brand-tint-25);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.order-map-mode-button {
    grid-column: span 2;
    padding: 10px 16px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: var(--main-menu-bg);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.order-map-mode-button + .order-map-mode-button {
    border-left: 1px solid var(--brand-tint-15);
}

.order-map-mode-button[aria-pressed="false"]:not(:disabled):hover {
    background: var(--brand-tint-8);
}

.order-map-mode-button:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid var(--main-menu-accent);
    outline-offset: -3px;
}

.order-map-mode-button.is-active,
.order-map-mode-button[aria-pressed="true"] {
    position: relative;
    z-index: 2;
    background: var(--main-menu-bg);
    color: #ffffff;
    box-shadow: none;
    transform: none;
}

.order-map-mode-button.is-active:focus-visible,
.order-map-mode-button[aria-pressed="true"]:focus-visible {
    outline-color: #ffffff;
    outline-offset: -3px;
}

.order-delete-point-button,
.order-remove-site-button {
    grid-column: span 3;
    border-top: 1px solid var(--brand-tint-15);
}

.order-delete-point-button {
    border-left: 0 !important;
}

.order-delete-point-button:not(:disabled),
.order-remove-site-button:not(:disabled) {
    background: #ffffff;
    color: #a61b29;
}

.order-delete-point-button:not(:disabled):hover,
.order-remove-site-button:not(:disabled):hover {
    background: #fbeaec;
    color: #861521;
}

.order-delete-point-button:not(:disabled):focus-visible,
.order-remove-site-button:not(:disabled):focus-visible {
    outline-color: #a61b29;
}

.order-map-mode-button:disabled {
    cursor: not-allowed;
    background: var(--brand-tint-5);
    color: var(--text-soft);
    box-shadow: none;
    transform: none;
}

.order-map-upload-button {
    margin: 0;
}

.order-map-upload-button i {
    font-size: 1.45rem;
}

.order-draft-vertex {
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--main-menu-accent);
    box-shadow: 0 0 0 1px var(--main-menu-bg);
}

.order-draft-vertex.is-start {
    width: 18px;
    height: 18px;
    border-width: 3px;
    box-shadow: 0 0 0 2px var(--main-menu-bg);
}

.order-search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 14px;
}

.order-map-top-controls {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 16px 0 0;
}

.order-reset-map-button {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0;
    border: 0;
    border-radius: 6px;
    background: var(--main-menu-bg);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.order-reset-map-button:hover,
.order-reset-map-button:focus {
    background: var(--main-menu-accent);
}

.order-reset-map-button i {
    font-size: 1.5rem;
}

.order-area-summary {
    position: relative;
    top: auto !important;
    left: auto;
    right: auto;
    z-index: 1;
    min-width: 150px;
    max-width: 400px;
    margin: 0;
    padding: 10px;
    background: var(--main-menu-bg);
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.order-area-summary span {
    font-weight: 700;
    padding-right: 10px;
}

.shape-upload-modal {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(2px);
}

.shape-upload-modal.is-open {
    display: flex;
}

.shape-upload-dialog {
    width: min(720px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border: 1px solid var(--brand-alpha-20);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
}

.shape-upload-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--brand-alpha-14);
}

.shape-upload-header h2 {
    font-size: 1.35rem;
    color: var(--main-menu-bg);
}

.shape-upload-guidance {
    margin: 0;
    padding: 0.75rem 1.25rem 0.25rem;
    line-height: 1.45;
}

.shape-upload-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 6px;
    background: var(--main-menu-bg);
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
}

.shape-upload-close:hover,
.shape-upload-close:focus {
    background: var(--main-menu-accent);
}

.shape-upload-body {
    padding: 1rem 1.25rem 1.25rem;
}

.manual-quote-dialog {
    width: min(660px, 100%);
}

.manual-quote-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.manual-quote-modal-actions .btn {
    min-height: 48px;
    border-radius: 0;
}

.manual-quote-notice {
    display: grid;
    gap: 0.25rem;
    padding: 0.9rem 1rem;
    border-left: 5px solid #9a6700;
    background: #fff6d8;
    color: #5c3b00;
}

.manual-quote-facts {
    display: grid;
    border: 1px solid var(--brand-tint-15);
    background: #ffffff;
}

.manual-quote-facts > div {
    display: grid;
    grid-template-columns: minmax(9rem, 28%) 1fr;
    border-top: 1px solid var(--brand-tint-15);
}

.manual-quote-facts > div:first-child {
    border-top: 0;
}

.manual-quote-facts dt,
.manual-quote-facts dd {
    margin: 0;
    padding: 0.7rem 0.85rem;
}

.manual-quote-facts dt {
    background: var(--brand-tint-5);
    color: var(--main-menu-bg);
}

.shape-upload-option {
    padding: 0.9rem 1rem 1rem;
    border: 1px solid var(--brand-tint-15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
}

.shape-upload-divider {
    margin: 1rem 0;
    color: var(--text-soft);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.shape-upload-option textarea {
    min-height: 110px;
    resize: vertical;
}

.order-support-panel .help-block {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-soft);
}

.auto-resize {
    overflow: hidden;
    resize: none;
    width: 100%;
    box-sizing: border-box;
}

.order-configure-panel {
    padding: 1.5rem 0 0;
}

.order-stage .btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.order-summary-list dt {
    font-weight: 700;
}

.order-summary-points {
    overflow-wrap: anywhere;
}

.order-step-two-stack,
.product-data-stack {
    display: grid;
    gap: 1.5rem;
}

#product-data-content.is-refreshing {
    cursor: progress;
    overflow-anchor: none;
}

#product-data-content.is-refreshing [data-product-data-option],
#product-data-content.is-refreshing [data-remove-product-data],
#product-data-content.is-refreshing .order-preview-action .btn {
    pointer-events: none;
}

#product-data-content.is-refreshing .order-summary-panel {
    opacity: 0.72;
    transition: opacity 120ms ease;
}

.order-step-two-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    align-items: start;
}

.order-step-three-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    align-items: start;
}

.order-step-three-main {
    display: grid;
    gap: 1.75rem;
}

.order-step-section {
    padding: 0;
}

.order-step-title {
    color: var(--main-menu-bg);
    font-size: 1.1rem;
    font-weight: 700;
}

.order-step-subtitle {
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.order-fastview-section {
    display: grid;
    gap: 1.5rem;
}

.order-fastview-heading {
    display: grid;
    gap: 0.25rem;
}

.order-fastview-subgroup {
    display: grid;
    gap: 1rem;
}

.order-fastview-subgroup + .order-fastview-subgroup {
    margin-top: 0.25rem;
}

.product-selection-grid {
    display: grid;
    gap: 1rem;
}

.order-info-rail {
    display: grid;
    gap: 1.5rem;
}

.order-info-panel {
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid var(--brand-tint-15);
}

.order-preview-map {
    width: 100%;
    height: 300px;
    border: 1px solid var(--brand-tint-15);
    background: var(--brand-tint-8);
}

.order-preview-action {
    margin-top: 0;
}

.order-turnaround-button {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}

.order-live-summary {
    margin-top: 1.25rem;
}

.order-summary-panel .order-live-summary {
    margin-top: 0;
}

.site-info-field-card {
    height: 100%;
    padding: 1.2rem 1.25rem;
    border: 1px solid var(--brand-tint-10);
    border-radius: 0;
    background: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.site-info-field-card:hover,
.site-info-field-card:focus-within,
.site-info-field-card.is-filled {
    border-color: var(--main-menu-accent);
    box-shadow: 0 6px 18px var(--brand-alpha-14), 0 0 0 1px var(--brand-alpha-12);
}

.site-info-field-card:focus-within {
    box-shadow: 0 14px 32px var(--brand-alpha-24), 0 0 0 2px var(--brand-alpha-32);
}

.site-info-field-card .form-label {
    color: var(--main-menu-bg);
    font-weight: 700;
}

.site-info-field-card .form-control,
.site-info-field-card .form-select {
    min-height: 48px;
    border: 1px solid var(--brand-tint-25);
    border-radius: 0;
    box-shadow: none;
    padding: 0.8rem 0.95rem;
    background: var(--brand-tint-5);
    color: var(--main-menu-bg);
}

.site-info-field-card .form-control:focus,
.site-info-field-card .form-select:focus {
    box-shadow: none;
    border-color: var(--main-menu-accent);
    background: #ffffff;
}

.site-info-field-card .form-control::placeholder {
    color: var(--text-soft);
    opacity: 1;
}

.site-info-field-card .form-select {
    padding-right: 3rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--brand-tint-5);
    background-image:
        linear-gradient(45deg, transparent 50%, var(--main-menu-accent) 50%),
        linear-gradient(135deg, var(--main-menu-accent) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.site-info-field-card textarea.form-control {
    min-height: 132px;
    resize: vertical;
}

.site-document-upload-card .form-control[type="file"] {
    height: auto;
    padding: 0.65rem;
    cursor: pointer;
}

.site-document-upload-card .form-control[type="file"]::file-selector-button {
    margin: -0.65rem 0.85rem -0.65rem -0.65rem;
    padding: 0.8rem 1rem;
    border: 0;
    border-right: 1px solid var(--brand-tint-25);
    background: var(--main-menu-accent);
    color: #ffffff;
    font-weight: 700;
}

.site-document-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-document-actions .btn {
    min-width: 180px;
    border-radius: 0;
}

.site-document-summary-box {
    padding: 0.9rem 1rem;
    border: 1px solid var(--brand-tint-15);
    background: var(--brand-tint-5);
}

.site-document-summary-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    color: var(--main-menu-bg);
}

.site-document-summary-list {
    display: grid;
    gap: 0;
    margin-top: 0.65rem;
    padding-left: 0;
    list-style: none;
    color: var(--text-soft);
    overflow-wrap: anywhere;
}

.site-document-summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-top: 1px solid var(--brand-tint-15);
}

.site-document-summary-filename {
    min-width: 0;
    flex: 1 1 auto;
}

.order-stage .site-document-remove-file {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0.3rem 0.7rem;
    border-radius: 0;
}

.order-summary-card {
    margin-top: 1.25rem;
    padding: 1.2rem 1.25rem;
    border: 1px solid var(--brand-tint-10);
    border-radius: 0;
    background: #ffffff;
    border-color: var(--main-menu-accent);
    box-shadow: 0 6px 18px var(--brand-alpha-14), 0 0 0 1px var(--brand-alpha-12);
}

.order-summary-card .order-live-summary {
    margin-top: 0;
}

.order-live-summary-table > tfoot > .order-voucher-total-row > th,
.order-live-summary-table > tfoot > .order-voucher-total-row > td {
    --bs-table-color: var(--discount-text);
    color: var(--discount-text) !important;
}

.order-live-summary-table > tfoot > .order-voucher-total-row.is-inactive {
    visibility: hidden;
}

.order-confirm-toolbar {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 100%;
    align-items: stretch;
    gap: 0.7rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.order-confirm-toolbar .btn {
    min-height: 48px;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
    border-radius: 0;
    white-space: nowrap;
}

.order-confirm-toolbar .btn[aria-busy="true"] {
    cursor: progress;
}

.order-confirm-voucher-field {
    flex: 1 1 auto;
    min-width: 8.5rem;
}

.order-confirm-voucher-field .form-control {
    height: 100%;
    min-height: 48px;
    border: 1px solid var(--brand-tint-25);
    border-radius: 0;
    background: #ffffff;
    color: var(--main-menu-bg);
}

.order-confirm-voucher-field .form-control:focus {
    border-color: var(--main-menu-accent);
    box-shadow: 0 0 0 0.2rem var(--brand-alpha-16);
}

#cancel-order-button,
#remove-order-voucher-button {
    flex: 0 0 7.75rem;
}

#add-order-voucher-button {
    flex: 0 0 10.75rem;
}

#save-basket-button,
#process-order-button {
    flex: 0 0 9.75rem;
}

#save-basket-button {
    margin-left: auto;
}

.order-confirm-neutral-action {
    background: #f1f2f5;
    color: var(--main-menu-bg);
    border-color: #aeb4c2 !important;
    box-shadow: 0 1px 2px rgba(38, 50, 114, 0.08);
}

.order-confirm-neutral-action:hover,
.order-confirm-neutral-action:focus,
.order-confirm-neutral-action:active {
    background: #e4e7ed;
    color: var(--main-menu-bg);
    border-color: var(--main-menu-accent);
}

.order-confirm-neutral-action:disabled {
    background: #f5f5f6;
    color: #7b8194;
    border-color: #dfe1e6;
    opacity: 1;
}

.order-voucher-status {
    min-height: 1.4em;
}

.order-live-summary-table th,
.order-live-summary-table td {
    padding: 0.9rem 0.75rem;
    vertical-align: top;
}

.order-live-summary-table thead th,
.order-live-summary-table tfoot th {
    color: var(--main-menu-bg);
    font-weight: 700;
}

.order-live-summary-table tbody td strong {
    color: var(--main-menu-bg);
}

.order-product-notes-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.order-product-notes-list li {
    margin-bottom: 0.65rem;
}

.order-product-data-section {
    display: grid;
    gap: 1.5rem;
}

.product-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.8rem 2.5rem 1.8rem 2.5rem;
    border: 1px solid var(--brand-tint-10);
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.product-option-card:hover,
.product-option-card:focus-within {
    border-color: var(--main-menu-accent);
    box-shadow: 0 0 0 1px var(--brand-alpha-12);
}

.product-option-card.is-selected {
    border-color: var(--main-menu-accent);
    background: #ffffff;
    box-shadow: 0 14px 32px var(--brand-alpha-24), 0 0 0 2px var(--brand-alpha-32);
}

.order-product-data-section > p,
.order-step-section > p {
    margin-bottom: 0;
}

.product-option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-option-copy {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}

.product-option-price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.product-option-price-label,
.product-option-price,
.product-option-title {
    display: block;
}

.product-option-price-label {
    color: var(--text-soft);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-option-price {
    color: var(--main-menu-accent);
    font-size: 0.92rem;
    font-weight: 500;
}

.product-option-title {
    color: var(--main-menu-bg);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-option-display-text {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
}

.product-option-check {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 2px solid var(--main-menu-accent);
    border-radius: 4px;
    background: #ffffff;
}

.product-option-card.is-selected .product-option-check {
    border-color: var(--main-menu-accent);
}

.product-option-card.is-selected .product-option-check::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 2px;
    width: 8px;
    height: 16px;
    border-right: 3px solid var(--main-menu-accent);
    border-bottom: 3px solid var(--main-menu-accent);
    transform: rotate(40deg);
}

.product-data-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-data-grid-turnaround {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-data-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.8rem 2.5rem 1.8rem 2.5rem;
    border: 1px solid var(--brand-tint-10);
    border-radius: 0;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.product-data-option:hover,
.product-data-option:focus-within {
    border-color: var(--main-menu-accent);
    box-shadow: 0 6px 18px var(--brand-alpha-14), 0 0 0 1px var(--brand-alpha-12);
}

.product-data-option.is-selected {
    border-color: var(--main-menu-accent);
    background: #ffffff;
    box-shadow: 0 14px 32px var(--brand-alpha-24), 0 0 0 2px var(--brand-alpha-32);
}

.product-data-option.is-disabled,
.product-data-option.is-disabled:hover,
.product-data-option.is-disabled:focus-within {
    border-color: #d7dce5;
    background: #f3f5f8;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.68;
}

.product-option-disabled-reason {
    display: block;
    margin-top: 0.45rem;
    color: #5b6472;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-data-option.is-selected .product-option-check {
    border-color: var(--main-menu-accent);
}

.product-data-option.is-selected .product-option-check::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 2px;
    width: 8px;
    height: 16px;
    border-right: 3px solid var(--main-menu-accent);
    border-bottom: 3px solid var(--main-menu-accent);
    transform: rotate(40deg);
}

.product-data-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.jq-toast-wrap {
    min-width: 350px !important;
}

.product-message-layout {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.product-message-text {
    display: block;
}

.product-message-copy-actions {
    margin: 0 0 0.4rem;
    padding: 0.25rem 0;
}

.product-message-copy-button {
    min-width: 12rem;
    min-height: 36px;
    padding: 0.45rem 0.95rem;
    border: 2px solid #ffffff;
    border-radius: 3px;
    background: #ffffff;
    color: var(--brand-dark);
    font-weight: 700;
    cursor: pointer;
}

.product-message-copy-button:hover,
.product-message-copy-button:focus-visible {
    background: var(--brand-dark);
    color: #ffffff;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.product-message-copy-button:disabled {
    cursor: default;
    opacity: 0.85;
}

.hide {
    display: none !important;
}

.site-footer {
    margin-top: auto;
}

.footer-information-bar {
    background: var(--footer-information-bg);
}

.footer-information-bar .footer-title,
.footer-information-bar .footer-copy,
.footer-information-bar .footer-copy a,
.footer-information-bar .footer-link {
    color: var(--footer-information-text);
}

.footer-information-bar .footer-copy,
.footer-information-bar .footer-link {
    text-decoration: none;
    font-weight: 400;
}

.footer-information-bar .footer-copy a:hover,
.footer-information-bar .footer-link:hover {
    text-decoration: underline;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-copy {
    text-align: center;
}

.footer-copyright-bar {
    background: var(--footer-copyright-bg);
    color: var(--footer-copyright-text);
}

.footer-copyright-bar a {
    color: var(--footer-copyright-text);
}

@media (max-width: 1199.98px) {
    .order-booking-menu li {
        gap: 0.5rem;
        padding: 0.7rem 0.55rem;
        font-size: 13px;
        white-space: normal;
    }

    .order-journey-icon {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1.2rem;
    }

}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.18);
        width: 100%;
    }

    .site-main-nav .navbar-nav {
        column-gap: 0;
    }

    .dropdown-menu {
        min-width: 100%;
    }

    .dropdown-item {
        white-space: normal;
    }

    .dropdown-submenu > .dropdown-menu {
        display: block;
        position: static;
        margin-top: 0;
        margin-left: 1rem;
        border: 0;
        box-shadow: none;
    }

    .order-booking-menu li {
        flex: 1 1 33.33%;
    }

    .product-option-card {
        padding: 1.35rem 1.5rem;
    }

    .order-step-two-layout {
        grid-template-columns: 1fr;
    }

    .order-step-three-layout {
        grid-template-columns: 1fr;
    }

    .order-preview-map {
        height: 260px;
    }

    .account-registration-columns {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767.98px) {
    .page-width {
        padding-left: var(--page-padding-x-mobile);
        padding-right: var(--page-padding-x-mobile);
    }

    .order-content-width {
        padding-left: 10px;
        padding-right: 10px;
    }

    h1 {
        font-size: var(--font-size-h1-mobile);
    }

    h2 {
        font-size: var(--font-size-h2-mobile);
    }

    .account-auth-header {
        align-items: flex-start;
        padding: 1.4rem 1.25rem;
    }

    .account-auth-icon {
        flex-basis: 3.15rem;
        width: 3.15rem;
        height: 3.15rem;
        border-radius: 0.8rem;
        font-size: 1.35rem;
    }

    .account-auth-header h2 {
        font-size: 1.35rem;
    }

    .account-auth-switcher {
        gap: 0.35rem;
        padding: 0.5rem;
    }

    .account-auth-switcher a {
        min-height: 52px;
        padding: 0.5rem 0.35rem;
        font-size: 0.78rem;
    }

    .account-auth-switcher i {
        display: none;
    }

    .account-auth-body {
        padding: 1.35rem 1.25rem;
    }

    .order-booking-menu li {
        flex: 1 1 50%;
        min-height: 48px;
        padding: 0.75rem 1rem;
        white-space: normal;
    }

    .order-journey-icon {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 1.2rem;
    }

    .order-map-canvas {
        height: max(360px, calc(100dvh - 300px));
        min-height: 360px;
    }

    .order-search-panel {
        width: min(320px, calc(100vw - 2rem));
    }

    .order-search-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-area-summary {
        max-width: calc(100vw - 8rem);
        padding: 8px;
    }

    .order-map-top-controls {
        gap: 8px;
        margin-right: 8px;
    }

    .product-option-card {
        padding: 1.15rem 1rem;
    }

    .product-option-title {
        font-size: 1rem;
    }

    .product-data-grid-turnaround {
        grid-template-columns: 1fr;
    }

    .vieworder-topbar,
    .vieworder-terms,
    .vieworder-actions {
        justify-content: center;
    }

    .vieworder-brand {
        width: 100%;
        text-align: center;
    }

    .vieworder-brand img {
        margin: 0 auto;
    }

    .vieworder-map,
    .vieworder-coordinate-content {
        min-height: 300px;
        max-height: 300px;
    }

    .vieworder-coordinate-actions {
        align-items: flex-end;
        flex-direction: column;
        gap: 0.35rem;
    }

}
