:root {
    --site-primary: #d43030;
    --site-primary-rgb: 212, 48, 48;
    --site-on-primary: #ffffff;
    --site-surface: #ffffff;
    --site-surface-muted: #f5f5f5;
    --site-border: #e9e9e9;
    --site-border-strong: #d3d3d3;
    --site-text: #1d1d1d;
    --site-text-muted: #6b7280;
    --site-heading: #111111;
    --site-link: #d43030;
    --site-link-hover: #b12626;
    --site-footer-bg: #f2f2f2;
    --site-footer-text: #6b7280;
    --site-footer-heading: #222222;
    --site-accent-blue: #0071bc;
    --site-accent-gold: #cfbe73;
    --site-accent-silver: #adadad;
    --site-accent-bronze: #c47f47;
    --shell-max-width: 1320px;
    --mega-menu-max-width: 1540px;
    --mega-menu-side-padding: 15px;
    --shell-radius: 1rem;
    --panel-radius: 10px;
    --panel-radius-tight: 6px;
    --shell-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --page-h1-size: 30px;
    --page-h1-line-height: 1.2;
    --page-h1-weight: 400;
    --page-h1-font: "Roboto Condensed", "Roboto", Arial, sans-serif;
    --page-h2-size: 1.5rem;
}

@media (min-width: 1600px) {
    :root {
        --shell-max-width: 1570px;
    }

    .container {
        max-width: 1570px;
    }
}

html {
    font-size: 14px;
    min-height: 100%;
}

@media (min-width: 1600px) {
    html {
        font-size: 16px;
    }
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--site-text);
    font-family: "Roboto", Arial, sans-serif;
    background: #fff;
}

h2 {
    font-size: var(--page-h2-size);
}

.members-page,
.members-auth {
    padding: 2.8rem 0 4rem;
    background: #fff;
}

.members-page__inner,
.members-auth__inner {
    width: min(100% - 2rem, 1080px);
    margin: 0 auto;
}

.members-auth__inner--narrow {
    max-width: 540px;
}

.members-auth__inner--login {
    max-width: 660px;
}

.members-page__header,
.members-auth__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 1.35rem;
}

.members-auth__header {
    display: block;
    text-align: center;
}

.members-page__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--site-accent-blue);
}

.members-page h1,
.members-auth h1 {
    margin: 0;
    color: var(--site-heading);
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    font-weight: var(--page-h1-weight);
    line-height: var(--page-h1-line-height);
}

.members-page__header p,
.members-auth__header p,
.members-panel__title p {
    margin: 0.4rem 0 0;
    color: var(--site-text-muted);
}

.members-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--site-border-strong);
    border-radius: var(--panel-radius-tight);
    overflow: hidden;
    background: #fff;
}

.members-tabs--auth {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.4rem;
    padding: 0.25rem;
    border: 0;
    border-radius: 8px;
    background: #f2f5f9;
}

.members-tabs__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    padding: 0.75rem 1rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--site-text);
    background: transparent;
    border-right: 0;
}

.members-tabs__item:last-child {
    border-right: 0;
}

.members-tabs__item:hover,
.members-tabs__item.is-active {
    color: #fff;
    background: var(--site-accent-blue);
    border-radius: 6px;
}

.members-panel {
    margin-top: 1rem;
    padding: 1.35rem;
    border: 1px solid var(--site-border);
    border-radius: var(--panel-radius-tight);
    background: #fff;
    box-shadow: var(--shell-shadow);
}

.members-panel--form {
    max-width: 540px;
    margin-right: auto;
    margin-left: auto;
}

.members-auth__inner--login .members-panel--form {
    max-width: 620px;
}

.members-panel__title {
    margin-bottom: 1rem;
}

.members-panel__title h2,
.members-empty h3,
.member-orders h3 {
    margin: 0;
    font-family: "Roboto Condensed", "Roboto", Arial, sans-serif;
    color: var(--site-heading);
}

.member-orders h3 {
    padding: 1rem 0 0.35rem;
    font-size: 1.45rem;
}

.member-order,
.saved-cart {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto minmax(16rem, auto);
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--site-border);
}

.member-order:first-of-type,
.saved-cart:first-of-type {
    border-top: 0;
}

.member-order strong,
.saved-cart strong {
    display: block;
    font-size: 1.1rem;
}

.member-order span,
.saved-cart span {
    color: var(--site-text-muted);
}

.member-order__actions,
.saved-cart__actions,
.members-auth__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
}

.members-page__primary,
.members-page__secondary,
.members-page__ghost,
.members-page__success,
.members-page__danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.65rem 1rem;
    border-radius: var(--panel-radius-tight);
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.members-page__primary {
    color: #fff;
    background: var(--site-accent-blue);
}

.members-page__primary:hover {
    color: #fff;
    background: #005b99;
}

.members-page__secondary {
    color: var(--site-accent-blue);
    background: rgba(0, 113, 188, 0.08);
    border-color: rgba(0, 113, 188, 0.22);
}

.members-page__secondary:hover {
    color: #fff;
    background: var(--site-accent-blue);
}

.members-page__ghost {
    color: var(--site-text);
    background: #fff;
    border-color: var(--site-border-strong);
}

.members-page__ghost:hover {
    color: var(--site-link-hover);
    border-color: var(--site-link-hover);
}

.members-page__success {
    color: #fff;
    background: #198754;
}

.members-page__success:hover {
    color: #fff;
    background: #146c43;
}

.members-page__danger {
    color: #fff;
    background: var(--site-primary);
}

.members-page__danger:hover {
    color: #fff;
    background: var(--site-link-hover);
}

.members-form {
    display: grid;
    gap: 1rem;
}

.members-external-login {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.members-external-login__separator {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.8rem;
    color: var(--site-text-muted);
    font-size: 0.9rem;
}

.members-external-login__separator::before,
.members-external-login__separator::after {
    content: "";
    height: 1px;
    background: var(--site-border);
}

.members-external-login__buttons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.members-external-login form {
    margin: 0;
}

.members-external-login__buttons > a {
    text-decoration: none;
}

.members-external-login__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    min-height: 3rem;
    background-color: transparent;
    font-weight: 800;
    text-align: center;
}

.members-external-login__button.btn {
    border-width: 1px !important;
    border-style: solid !important;
}

.members-external-login__button.btn-outline-secondary {
    border-color: var(--bs-secondary, #6c757d) !important;
}

.members-external-login__button.btn-outline-danger {
    border-color: var(--bs-danger, #dc3545) !important;
}

.members-external-login__button.btn-outline-info {
    border-color: var(--bs-info, #0dcaf0) !important;
}

.members-external-login__button.btn-outline-primary {
    border-color: var(--bs-primary, #0d6efd) !important;
}

.members-external-login__button i {
    font-size: 1.35rem;
    line-height: 1;
}

.members-external-login__button--google i {
    color: #db4437;
}

.members-external-login__button--microsoft i {
    color: #00a4ef;
}

.members-external-login__button--facebook i {
    color: #1877f2;
}

.members-external-login__button--login i {
    color: var(--site-accent-blue);
}

.members-external-login__button:hover i,
.members-external-login__button:focus i {
    color: #fff;
}

.members-auth .members-external-login__buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-access-gate {
    display: grid;
    gap: 1rem;
}

.order-access-gate__header {
    text-align: center;
}

.order-access-gate__header h1 {
    margin: 0 0 0.6rem;
    color: var(--site-heading);
    font-size: 1.75rem;
    font-weight: 800;
}

.order-access-gate__header p {
    margin: 0;
    color: var(--site-text-muted);
}

.order-access-gate__external {
    margin-top: 0.25rem;
}

.order-access-gate__member-login {
    text-align: center;
    font-weight: 700;
}

.order-access-gate__separator {
    margin-top: 0;
}

.order-access-gate__email-form {
    display: grid;
    gap: 0.9rem;
}

.order-access-gate__email-form label {
    display: grid;
    gap: 0.35rem;
    color: var(--site-heading);
    font-weight: 700;
}

.order-access-gate__email-form input {
    width: 100%;
    min-height: 3rem;
    border: 1px solid #d8dee8;
    border-radius: 6px;
    padding: 0.65rem 0.8rem;
    color: var(--site-heading);
    font: inherit;
}

.members-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.members-form label {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    font-weight: 700;
}

.members-form input {
    width: 100%;
    min-height: 3rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--site-border-strong);
    border-radius: var(--panel-radius-tight);
    font: inherit;
    font-weight: 400;
    color: var(--site-text);
    background: #fff;
}

.members-form input[readonly] {
    color: var(--site-text-muted);
    background: #f8fafc;
}

.members-form [data-valmsg-for],
.members-form .field-validation-error {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--site-primary);
}

.members-alert {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border-radius: var(--panel-radius-tight);
    font-weight: 700;
}

.members-alert:empty {
    display: none;
}

.members-alert--success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.members-alert--danger {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.members-empty {
    display: grid;
    gap: 0.8rem;
    justify-items: start;
    padding: 1rem 0;
}

.members-auth__link {
    justify-self: center;
    font-weight: 700;
}

.members-auth__forgot {
    justify-self: end;
    margin-top: -0.45rem;
    color: var(--site-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
}

.members-auth__forgot:hover {
    color: var(--site-accent-blue);
    text-decoration: underline;
}

@media (max-width: 760px) {
    .members-page__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .members-tabs,
    .member-order,
    .saved-cart,
    .members-form__grid {
        grid-template-columns: 1fr;
    }

    .members-external-login__buttons {
        grid-template-columns: 1fr;
    }

    .members-auth .members-external-login__buttons {
        grid-template-columns: 1fr;
    }

    .members-tabs--auth {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .members-tabs__item {
        border-right: 0;
        border-bottom: 1px solid var(--site-border-strong);
    }

    .members-tabs--auth .members-tabs__item {
        border-bottom: 0;
    }

    .members-tabs__item:last-child {
        border-bottom: 0;
    }

    .member-order__actions,
    .saved-cart__actions,
    .members-auth__actions {
        justify-content: flex-start;
    }
}

a {
    color: var(--site-link);
}

a:hover {
    color: var(--site-link-hover);
}

.site-shell {
    color: var(--site-text);
}

.site-header {
    position: relative;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
}

.site-header--aat {
    position: relative;
}

.site-header.is-fixed {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    animation: siteHeaderDrop 0.18s ease-out;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.site-header.is-fixed .site-usp-strip {
    display: none;
}

.site-shell.has-fixed-header {
    padding-top: var(--site-fixed-header-height, 0px);
}

@keyframes siteHeaderDrop {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.site-header__inner,
.site-main,
.site-footer__inner {
    width: min(100% - 2rem, var(--shell-max-width));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.site-brand__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--site-heading);
    font-family: "Roboto", Arial, sans-serif;
}

.site-brand__meta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--site-text-muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    text-decoration: none;
    color: var(--site-text);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.site-nav__link:hover {
    background: rgba(var(--site-primary-rgb), 0.08);
    color: var(--site-link-hover);
}

.site-nav__item.is-open > .site-nav__link {
    background: rgba(var(--site-primary-rgb), 0.08);
    color: var(--site-link-hover);
}

.site-nav__panel {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 0;
    min-width: min(92vw, 1380px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.75rem);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 40;
}

.site-nav__item.is-open > .site-nav__panel,
.site-nav__item:focus-within > .site-nav__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header--aat .site-header__nav-row {
    display: contents;
}

.site-header--aat .site-header__inner {
    display: grid;
    grid-template-columns: 13rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 2.25rem;
    padding: 1.15rem 0 1rem;
}

.site-brand--aat {
    gap: 0.6rem;
    min-width: 0;
}

.site-brand__logo {
    display: block;
    width: auto;
    max-width: 5.5rem;
    height: 4.9rem;
}

.site-nav--aat {
    position: static;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.15rem;
}

.site-nav--aat .site-nav__item {
    position: static;
}

.site-nav--aat .site-nav__link {
    position: relative;
    padding: 0.85rem 0.95rem 0.95rem;
    border-radius: 0;
    color: var(--site-heading);
    font-size: 0.94rem;
    font-weight: 400;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-nav--aat .site-nav__link:hover,
.site-nav--aat .site-nav__link:focus,
.site-nav--aat .site-nav__item.is-open > .site-nav__link {
    color: var(--site-heading);
    background: transparent;
    font-weight: 700;
}

.site-nav--aat .site-nav__item.is-open > .site-nav__link {
    background: transparent;
}

.site-nav--aat .site-nav__item.is-open > .site-nav__link::after {
    content: "";
    position: absolute;
    right: 0.95rem;
    bottom: 0.35rem;
    left: 0.95rem;
    height: 2px;
    border-radius: 999px;
    background: var(--site-heading);
}

.site-nav--aat .site-nav__panel {
    top: 7.05rem;
    right: 0;
    left: 0;
    width: auto;
    min-width: 0;
    margin-left: 0;
    transform: translateY(0.75rem);
}

.site-nav--aat .site-nav__panel::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 2.25rem;
}

.site-nav--aat .site-nav__item.is-open > .site-nav__panel,
.site-nav--aat .site-nav__item:focus-within > .site-nav__panel {
    transform: translateY(0);
}

.site-header__tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.3rem;
    margin-left: auto;
    min-width: 0;
}

.site-header--aat .site-header__tools .site-search {
    flex: 0 0 17.5rem;
    width: 17.5rem;
}

.site-header__icons {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.site-header__menu-toggle {
    display: none;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

.site-header__menu-toggle .las {
    color: var(--site-heading);
    font-size: 1.85rem;
    line-height: 1;
}

.site-header__icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.25rem;
    height: 3.25rem;
    padding: 0 0.75rem;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--site-heading);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

.site-header__icon-link .las {
    font-size: 1.8rem;
    line-height: 1;
}

.site-header__icon-button {
    font-family: inherit;
    cursor: pointer;
}

.site-header__help {
    position: relative;
}

.site-header__help-menu {
    min-width: 13rem;
    padding: 0.45rem 0;
    border: 1px solid var(--site-border-strong);
    border-radius: 0.35rem;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
}

.site-header__help-link {
    display: block;
    padding: 0.55rem 0.9rem;
    color: var(--site-text);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.site-header__help-link:hover,
.site-header__help-link:focus {
    background: #f5f5f5;
    color: var(--site-primary);
    text-decoration: none;
}

.site-header__menu-toggle--mobile,
.site-header__mobile-cart {
    display: none;
}

.site-header__icon-link:hover {
    border-color: rgba(var(--site-primary-rgb), 0.2);
    background: rgba(var(--site-primary-rgb), 0.08);
    color: var(--site-link-hover);
}

.site-header__help:not(:hover) .site-header__icon-link:not(:focus-visible) {
    border-color: var(--site-border);
    background: rgba(255, 255, 255, 0.85);
    color: var(--site-heading);
    box-shadow: none;
}

.site-header__icon-link:focus:not(:focus-visible),
.site-header__icon-button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.site-header__icon-link:focus-visible,
.site-header__icon-button:focus-visible {
    outline: none;
    border-color: rgba(var(--site-primary-rgb), 0.45);
    box-shadow: 0 0 0 0.18rem rgba(var(--site-primary-rgb), 0.16);
}

.site-header__mobile-cart {
    position: relative;
    align-items: center;
    justify-content: flex-end;
    color: var(--site-heading);
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
}

.site-header__mobile-cart .las {
    font-size: 2.5rem;
    line-height: 1;
}

.site-header__cart-count,
.site-header__mobile-cart-count {
    position: absolute;
    top: .35rem;
    right: .35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 .35rem;
    border-radius: 999px;
    background: var(--site-primary);
    color: #fff;
    font-family: "Roboto", Arial, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
}

.site-header__cart-count[hidden],
.site-header__mobile-cart-count[hidden] {
    display: none;
}

.site-header__cart-count {
    top: .15rem;
    right: .15rem;
}

.site-header__mobile-cart-count {
    top: -.15rem;
    right: 0;
}

.site-usp-strip {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #eee;
}

.site-usp-strip__inner {
    display: grid;
    width: min(100% - 2rem, var(--shell-max-width));
    min-height: 50px;
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 1.5rem;
}

.site-usp-strip__item {
    color: #555;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: color 0.25s ease, font-weight 0.25s ease;
}

.site-usp-strip__item:hover {
    color: #111;
    text-decoration: none;
}

.site-usp-strip__item.is-active {
    color: var(--site-primary);
    font-weight: 700;
}

@font-face {
    font-family: "sisterhood";
    src: url("/fonts/Sisterhood.woff2") format("woff2"),
         url("/fonts/Sisterhood.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.artwork-proof {
    min-height: 80vh;
    padding: 48px 0;
    background:
        radial-gradient(circle at top left, rgba(235, 177, 78, 0.24), transparent 34rem),
        linear-gradient(135deg, #fffaf0 0%, #f7f3e8 42%, #edf4f1 100%);
}

.artwork-proof__shell {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.artwork-proof__heading {
    margin-bottom: 24px;
}

.artwork-proof__eyebrow {
    margin: 0 0 8px;
    color: #8a5a12;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.artwork-proof__heading h1 {
    margin: 0;
    color: #213a34;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 0.95;
}

.artwork-proof__card,
.artwork-proof__viewer,
.artwork-proof__notice {
    border: 1px solid rgba(33, 58, 52, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 24px 60px rgba(39, 55, 45, 0.12);
}

.artwork-proof__card {
    max-width: 620px;
    padding: 28px;
}

.artwork-proof__gate label,
.artwork-proof__modal-card label {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    color: #314943;
    font-weight: 800;
}

.artwork-proof input,
.artwork-proof textarea {
    width: 100%;
    border: 1px solid rgba(33, 58, 52, 0.22);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
}

.artwork-proof button {
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    background: #214b3d;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.artwork-proof__secondary {
    background: #f4ead7 !important;
    color: #214b3d !important;
}

.artwork-proof__notice {
    margin: 0 0 18px;
    padding: 16px 18px;
    font-weight: 700;
}

.artwork-proof__notice--error {
    border-color: rgba(170, 48, 35, 0.32);
    color: #8d261c;
}

.artwork-proof__notice--success {
    border-color: rgba(32, 127, 82, 0.34);
    color: #1e6c46;
}

.artwork-proof__notice--info {
    margin-top: 18px;
    color: #435d56;
}

.artwork-proof__viewer {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.artwork-proof__viewer iframe,
.artwork-proof__iframe-placeholder {
    width: 100%;
    min-height: 70vh;
    border: 0;
}

.artwork-proof__iframe-placeholder {
    display: grid;
    place-items: center;
    color: #63736e;
    font-weight: 800;
}

.artwork-proof__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
}

.artwork-proof__modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(20, 34, 30, 0.72);
}

.artwork-proof__modal[aria-hidden="true"] {
    display: none;
}

.artwork-proof__modal-card {
    width: min(100%, 560px);
    max-height: min(86vh, 760px);
    overflow: auto;
    border-radius: 26px;
    padding: 28px;
    background: #fffaf1;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.artwork-proof__modal-card h2 {
    margin-top: 0;
    color: #213a34;
}

.artwork-proof__modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 720px) {
    .artwork-proof {
        padding: 28px 0;
    }

    .artwork-proof__viewer,
    .artwork-proof__viewer iframe,
    .artwork-proof__iframe-placeholder {
        min-height: 62vh;
    }

    .artwork-proof__actions,
    .artwork-proof__modal-actions {
        display: grid;
    }
}

@font-face {
    font-family: "Engraving Arial";
    src: url("/fonts/Engraving/ArialMT.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Arial";
    src: url("/fonts/Engraving/Arial-ItalicMT.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Arial";
    src: url("/fonts/Engraving/Arial-BoldMT.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Arial";
    src: url("/fonts/Engraving/Arial-BoldItalicMT.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Eurostile";
    src: url("/fonts/Engraving/EurostileRegular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Eurostile";
    src: url("/fonts/Engraving/EurostileBQ-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Eurostile";
    src: url("/fonts/Engraving/EurostileBold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Eurostile";
    src: url("/fonts/Engraving/Eurostile-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Cambria";
    src: url("/fonts/Engraving/Cambria.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Cambria";
    src: url("/fonts/Engraving/Cambria-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Cambria";
    src: url("/fonts/Engraving/Cambria-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Cambria";
    src: url("/fonts/Engraving/Cambria-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Garamond";
    src: url("/fonts/Engraving/GaramondPremrPro.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Garamond";
    src: url("/fonts/Engraving/GaramondPremrPro-It.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Garamond";
    src: url("/fonts/Engraving/GaramondPremrPro-Smbd.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Garamond";
    src: url("/fonts/Engraving/GaramondPremrPro-SmbdIt.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Gotham";
    src: url("/fonts/Engraving/Gotham-Book.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Gotham";
    src: url("/fonts/Engraving/Gotham-BookItalic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Gotham";
    src: url("/fonts/Engraving/Gotham-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Gotham";
    src: url("/fonts/Engraving/Gotham-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Roboto Condensed";
    src: url("/fonts/Engraving/RobotoCondensed-Light.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Roboto Condensed";
    src: url("/fonts/Engraving/RobotoCondensed-LightItalic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Roboto Condensed";
    src: url("/fonts/Engraving/RobotoCondensed-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Roboto Condensed";
    src: url("/fonts/Engraving/RobotoCondensed-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Monotype Corsiva";
    src: url("/fonts/Engraving/MonotypeCorsiva.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Times New Roman";
    src: url("/fonts/Engraving/TimesNewRomanPSMT.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Times New Roman";
    src: url("/fonts/Engraving/TimesNewRomanPS-ItalicMT.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Times New Roman";
    src: url("/fonts/Engraving/TimesNewRomanPS-BoldMT.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Times New Roman";
    src: url("/fonts/Engraving/TimesNewRomanPS-BoldItalicMT.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Trajan Pro";
    src: url("/fonts/Engraving/TrajanPro-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Trajan Pro";
    src: url("/fonts/Engraving/TrajanPro-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Playball";
    src: url("/fonts/Engraving/Playball-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Baskerville Nova";
    src: url("/fonts/Engraving/baskervillenovatwo-regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Baskerville Nova";
    src: url("/fonts/Engraving/baskervillenovatwo-regularitalic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Baskerville Nova";
    src: url("/fonts/Engraving/baskervillenovatwo-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Baskerville Nova";
    src: url("/fonts/Engraving/baskervillenovatwo-bolditalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Nunito";
    src: url("/fonts/Engraving/Nunito-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Nunito";
    src: url("/fonts/Engraving/Nunito-Italic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Nunito";
    src: url("/fonts/Engraving/Nunito-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Engraving Nunito";
    src: url("/fonts/Engraving/Nunito-BoldItalic.woff2") format("woff2");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

.home-features {
    width: min(100% - 2rem, var(--shell-max-width));
    margin: 0 auto 2.25rem;
}

.home-features__wrapper {
    position: relative;
    overflow: hidden;
    contain: paint;
}

.home-features__slides:not(.slick-initialized) .home-features__slide:not(:first-child) {
    display: none;
}

.home-features .slick-list {
    overflow: hidden;
    clip-path: inset(0 2px 0 0);
}

.home-features .slick-track {
    display: flex;
}

.home-features .slick-slide {
    overflow: hidden;
}

.home-features .slick-slide > div {
    height: 100%;
}

.home-features__slide-inner {
    display: flex;
    min-height: 26rem;
    overflow: hidden;
}

.home-features__image {
    display: flex;
    flex: 2;
    min-width: 0;
}

.home-features__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-features__content {
    display: flex;
    flex: 1;
    min-width: 0;
    position: relative;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: left;
}

.home-features__content-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1.25rem 1.25rem 3.75rem 1.9rem;
}

.home-features__content h2,
.home-features__content p {
    display: block;
    width: 100%;
    margin: 0 0 1.4rem;
    line-height: 1;
    text-align: left;
}

.home-features--aat .home-features__content h2 {
    font-family: "sisterhood", "Roboto Condensed", sans-serif;
    font-weight: 400;
}

.home-features__content p,
.home-features__content a {
    font-family: "Roboto Condensed", sans-serif;
}

.home-features__content a {
    display: inline-block;
    padding: 0.6rem 1.5rem 0.6rem 0;
    text-decoration: underline;
}

.home-features__controls {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 33.3%;
    height: 3.1rem;
}

.home-features__dots {
    position: absolute;
    right: 1.25rem;
    bottom: 3.25rem;
    left: 1.25rem;
    height: 1.25rem;
}

.home-features__arrows {
    position: absolute;
    right: 1.9rem;
    bottom: 3.25rem;
    width: 20%;
    min-width: 4rem;
    height: 1.25rem;
}

.home-features .slick-dots {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    text-align: left;
}

.home-features .slick-dots li {
    width: 0.85rem;
    height: 0.85rem;
    margin: 0;
}

.home-features .slick-prev,
.home-features .slick-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    z-index: 4;
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
    font-size: 0;
    transform: translateY(-50%);
}

.home-features .slick-prev .las,
.home-features .slick-next .las {
    color: inherit;
    font-size: 1.75rem;
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.6) 0 0 8px;
}

.home-features .slick-prev {
    right: 2.4rem;
    left: auto;
}

.home-features .slick-next {
    right: 0;
}

.home-features .slick-prev::before,
.home-features .slick-next::before {
    content: none;
}

.home-features .slick-dots li button::before {
    text-shadow: rgba(0, 0, 0, 0.6) 0 0 8px;
}

.home-features--nt .home-features__wrapper {
    margin-top: 1.85rem;
}

.home-features--nt .home-features__slide-inner {
    background: #0a0d5b;
}

.home-features--nt .home-features__content {
    order: 0;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    text-align: center;
}

.home-features--nt .home-features__image {
    order: 1;
    position: relative;
}

.home-features__nt-cutout {
    position: absolute;
    z-index: 1;
    top: -21.875rem;
    left: -25rem;
    width: 56.25rem;
    height: 56.25rem;
    border: 5px solid #fff;
    border-radius: 50%;
}

.home-features--nt .home-features__content-inner {
    padding: 1.25rem 3.75rem 3.75rem 1.9rem;
}

.home-features--nt .home-features__content h2 {
    display: inline-block;
    width: auto;
    margin: 1.9rem auto;
    padding: 0.6rem 1.55rem;
    border-radius: 8px;
    font-family: "Roboto", Arial, sans-serif;
    font-weight: 700;
    line-height: 0.9;
    text-align: center;
    transform: skewX(-10deg);
}

.home-features--nt .home-features__content p {
    margin: 0.1rem 2.5rem 0.65rem;
    line-height: 1.2;
    text-align: center;
}

.home-features--nt .home-features__controls {
    right: auto;
    left: 0;
}

.home-features--nt .home-features__dots {
    left: 5rem;
}

.home-features--nt .slick-prev .las,
.home-features--nt .slick-next .las,
.home-features--nt .slick-dots li button::before {
    color: #0a0d5b;
    text-shadow: none;
}

.home-trending {
    width: min(100% - 2rem, var(--shell-max-width));
    margin: 0 auto 2.5rem;
}

.home-trending__shell {
    position: relative;
}

.home-trending h2 {
    margin: 0 0 0.75rem;
    font-family: "Roboto Condensed", sans-serif;
    font-size: var(--page-h2-size);
    font-weight: 400;
    line-height: 1.1;
}

.home-trending__tabs {
    display: flex;
    gap: 1.6rem;
    margin: 0 0 1.1rem;
    padding: 0;
    overflow-x: auto;
    border-bottom: 1px solid #e6e6e6;
    list-style: none;
    scrollbar-width: thin;
}

.home-trending__tabs li {
    flex: 0 0 auto;
}

.home-trending__tab {
    display: inline-flex;
    align-items: center;
    height: 2.5rem;
    padding: 0 0 0.45rem;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #555;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}

.home-trending__tab:hover,
.home-trending__tab:focus,
.home-trending__tab.is-active {
    border-bottom-color: #111;
    color: #111;
    font-weight: 700;
}

.home-trending__products {
    height: 23.25rem;
    min-height: 23.25rem;
    opacity: 0;
}

.home-trending__products.slick-initialized {
    display: block;
    opacity: 1;
    transition: opacity 0.25s ease-out;
}

.home-trending .slick-list {
    height: 100%;
    overflow: hidden;
}

.home-trending .slick-track {
    display: flex;
    height: 100%;
}

.home-trending .slick-slide {
    height: 100%;
}

.home-trending .slick-slide > div {
    height: 100%;
}

.home-trending .prod-rel {
    height: 100%;
}

.home-trending .slick-prev,
.home-trending .slick-next {
    z-index: 2;
    top: 39%;
    width: 2rem;
    height: 2rem;
    color: #777;
    transform: translateY(-50%);
}

.home-trending .slick-prev {
    left: -0.6rem;
}

.home-trending .slick-next {
    right: -0.6rem;
}

.home-trending .slick-prev.slick-disabled,
.home-trending .slick-next.slick-disabled {
    display: none !important;
}

.home-trending .slick-prev::before,
.home-trending .slick-next::before {
    content: none;
}

.home-trending .slick-prev .las,
.home-trending .slick-next .las {
    color: inherit;
    font-size: 2rem;
    line-height: 1;
}

.home-trending .slick-dots {
    bottom: -1.6rem;
}

.home-trending .slick-dots li button::before {
    color: #666;
    font-size: 0.55rem;
}

.home-trending .prodlist.view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20rem;
    border: 1px solid #e9e9e9;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25rem;
    text-align: center;
}

.home-trending .prodlist.view-all a {
    color: #555;
}

.home-trending .view-all-btn {
    display: block;
    padding: 0 0.6rem;
}

.home-trending__skeleton {
    height: 20rem;
    margin: 0 0.65rem;
    background: linear-gradient(90deg, #f5f5f5 25%, #e8e8e8 37%, #f5f5f5 63%);
    background-size: 400% 100%;
    animation: trending-skeleton 1.4s ease infinite;
}

.home-categories {
    margin: 2rem 0 2.5rem;
}

.home-categories__shell {
    width: min(100% - 4rem, var(--shell-max-width));
    margin: 0 auto;
}

.home-categories h2 {
    margin: 0 0 1.15rem;
    font-size: var(--page-h2-size);
    font-weight: 400;
    line-height: 1.15;
}

.home-categories__tiles {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-categories__tile {
    min-width: 0;
    min-height: 4.25rem;
    padding: 0.7rem 1rem;
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #222;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
}

.home-categories__tile:hover,
.home-categories__tile:focus,
.home-categories__tile.is-active {
    border-color: #111;
    background: #111;
    color: #fff;
}

.home-categories__label {
    display: block;
    line-height: 1.15;
}

.home-categories__panels {
    margin-top: 1rem;
}

.home-categories__panel {
    padding: 1.25rem 0 0;
    border-top: 1px solid #e5e5e5;
}

.home-categories .mega-menu {
    display: block;
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.home-categories .mega-menu__grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
}

.home-categories .mega-menu__promo,
.home-categories .mega-menu__feature {
    display: none !important;
}

.home-categories .mega-menu__list {
    margin-bottom: 0.8rem;
}

.home-categories .mega-menu__list a {
    font-size: 1rem;
}

.site-shell[data-site="nt"] .home-features {
    margin-bottom: 2.6rem;
}

.site-shell[data-site="nt"] .home-categories {
    margin-top: 0;
}

.site-shell[data-site="nt"] .home-categories__shell {
    width: min(100% - 4rem, 1520px);
}

.site-shell[data-site="nt"] .home-categories h2 {
    margin-bottom: 1.8rem;
    color: var(--site-primary);
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.55rem;
}

.home-categories__nt-range {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: clamp(1.1rem, 2vw, 2rem);
    align-items: start;
}

.home-categories__nt-range-link {
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--site-primary);
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
}

.home-categories__nt-range-link:hover,
.home-categories__nt-range-link:focus,
.home-categories__nt-range-link.is-active {
    color: var(--site-primary);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"] {
    color: rgba(var(--site-primary-rgb), 0.34);
}

.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"] .home-categories__nt-range-image {
    border-color: rgba(var(--site-primary-rgb), 0.18);
}

.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"] .home-categories__nt-range-image img {
    opacity: 0.24;
}

.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"]:hover,
.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"]:focus {
    color: var(--site-primary);
}

.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"]:hover .home-categories__nt-range-image,
.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"]:focus .home-categories__nt-range-image {
    border-color: rgba(var(--site-primary-rgb), 0.5);
}

.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"]:hover .home-categories__nt-range-image img,
.site-shell[data-site="nt"] .home-categories.has-open-category .home-categories__nt-range-link[aria-selected="false"]:focus .home-categories__nt-range-image img {
    opacity: 0.72;
}

.site-shell[data-site="nt"] .home-categories__nt-range-link.is-active {
    text-decoration: none;
}

.home-categories__nt-range-link.is-active .home-categories__nt-range-image {
    box-shadow: 0 0 0 4px rgba(var(--site-primary-rgb), 0.14);
}

.home-categories__nt-range-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(7.2rem, 10vw, 10.4rem);
    aspect-ratio: 1;
    overflow: hidden;
    border: 5px solid var(--site-primary);
    border-radius: 50%;
    background: #fff;
}

.home-categories__nt-range-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-categories__nt-range-label {
    display: block;
    max-width: 11rem;
}

.site-shell[data-site="nt"] .home-categories__panels {
    margin-top: 1.75rem;
}

.range-page {
    padding: 2rem 0 3rem;
}

.range-page__heading,
.range-page__content {
    width: min(100% - 2rem, 860px);
    margin: 0 auto;
    text-align: center;
}

.range-page__heading h1 {
    margin-top: 0;
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    font-weight: var(--page-h1-weight);
    line-height: var(--page-h1-line-height);
}

.range-page__chooser {
    display: grid;
    width: min(100% - 2rem, 980px);
    margin: 1.5rem auto 2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.range-page__category {
    display: flex;
    min-height: 4.25rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    background: var(--site-primary);
    color: var(--site-on-primary);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
}

.range-page__category:hover,
.range-page__category:focus {
    background: var(--site-link-hover);
    color: var(--site-on-primary);
    text-decoration: none;
}

.range-page .home-categories {
    margin-top: 1rem;
}

.range-page__content {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.delivery-options {
    background: #f5f5f5;
    padding: 2.5rem 0 2rem;
    font-family: "Roboto Condensed", sans-serif;
}

.delivery-options__inner {
    width: min(100% - 2rem, var(--shell-max-width));
    margin: 0 auto;
}

.delivery-options__header {
    position: relative;
    margin-bottom: 1.25rem;
}

.delivery-options h2 {
    margin: 0;
    color: #222;
    font-size: var(--page-h2-size);
    font-weight: 400;
    line-height: 1.2;
}

.delivery-options__location {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: #222;
    font: inherit;
    text-decoration: underline;
}

.delivery-options__location:hover,
.delivery-options__location:focus {
    color: #111;
}

.delivery-options__location:focus:not(:focus-visible),
.delivery-options__input:focus:not(:focus-visible),
.delivery-options__update:focus:not(:focus-visible),
.delivery-options__suggestion:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.delivery-options__location:focus-visible,
.delivery-options__input:focus-visible,
.delivery-options__update:focus-visible,
.delivery-options__suggestion:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.18rem rgba(var(--site-primary-rgb), 0.16);
}

.delivery-options__location-popover {
    position: absolute;
    z-index: 10;
    top: calc(100% + 0.7rem);
    left: 0;
    width: min(100%, 48rem);
    padding: 0.75rem;
    border: 1px solid #d0d0d0;
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.delivery-options__location-inner {
    display: flex;
    gap: 0.6rem;
}

.delivery-options__input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 2.65rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    font: inherit;
}

.delivery-options__update {
    flex: 0 0 8rem;
    min-height: 2.65rem;
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--site-success, #0ca05a);
    background: var(--site-success, #0ca05a);
    color: #fff;
    font: inherit;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.delivery-options__suggestions {
    position: absolute;
    z-index: 11;
    top: calc(0.75rem + 2.65rem + 0.55rem);
    left: 0.75rem;
    width: calc(100% - 10.1rem);
    max-height: 18rem;
    overflow-y: auto;
    padding: 0.6rem 0;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0.55rem;
    background: #17180f;
    color: #f8f6ec;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22);
}

.delivery-options__suggestions::before {
    content: "";
    position: absolute;
    top: -0.65rem;
    left: 2.1rem;
    width: 0;
    height: 0;
    border-right: 0.65rem solid transparent;
    border-bottom: 0.65rem solid #17180f;
    border-left: 0.65rem solid transparent;
}

.delivery-options__suggestion {
    display: block;
    width: 100%;
    padding: 0.55rem 1.2rem;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.delivery-options__suggestion:hover,
.delivery-options__suggestion:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.delivery-options__cards {
    display: grid;
    grid-template-columns: repeat(5, clamp(12rem, 14.1vw, 18rem));
    gap: clamp(1rem, 1.6vw, 2rem);
    justify-content: start;
    max-width: 100%;
}

.delivery-options__cards .col-lg-25,
.delivery-options__cards .col-lg-3,
.delivery-options__cards .col-lg-4,
.delivery-options__cards .col-md-12 {
    width: auto;
    max-width: none;
    padding: 0;
}

.delivery-options .production-option-btn {
    position: relative;
    height: 100%;
    min-height: 12rem;
    overflow: hidden;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #fff;
    color: #222;
    box-shadow: none;
    text-align: center;
}

.delivery-options .production-option-badge {
    display: inline-block;
    width: auto;
    margin: 1.35rem 0 0 1rem;
    padding: 0.55rem 0.85rem;
    border-radius: 4px;
    background: #eeeeef;
    color: #555;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    float: left;
}

.delivery-options .production-option-btn.standard {
    border-color: #999;
}

.delivery-options .production-option-btn.standard .production-option-badge {
    background: #164f86;
    color: #fff;
}

.delivery-options .production-option-btn.standard .production-option-title {
    background: #d8eaf5;
}

.delivery-options .production-option-main {
    clear: both;
    padding: 1.25rem 0.75rem 1.5rem;
    color: #222;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.1;
}

.delivery-options .production-option-title {
    padding: 1rem 0.75rem;
    background: #f3f3f5;
    color: #111;
    font-size: 1.05rem;
    line-height: 1.2;
}

.delivery-options .production-option-alt {
    padding: 1.45rem 0.75rem 1.15rem;
    color: #111;
    font-size: 1.2rem;
    line-height: 1.1;
}

.delivery-options__note {
    margin: 1.2rem 0 0;
    color: #555;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.95rem;
}

.delivery-options__more-info {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-decoration: underline;
}

.delivery-info-modal {
    font-family: "Roboto", Arial, sans-serif;
}

.delivery-info-modal h2,
.delivery-info-modal h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
}

@keyframes trending-skeleton {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.site-nav__offcanvas {
    --bs-offcanvas-width: min(88vw, 24rem);
    --bs-offcanvas-bg: #ffffff;
    background: #ffffff;
    color: var(--site-text);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.site-nav__offcanvas-header {
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem 1.15rem 0.75rem;
    border-bottom: 1px solid var(--site-border);
    background: #ffffff;
}

.site-nav__offcanvas-brand .site-brand__logo {
    height: 4rem;
    max-width: 4.5rem;
}

.site-nav__offcanvas-close {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 2.5rem;
    line-height: 1;
}

.site-nav__offcanvas-close:hover,
.site-nav__offcanvas-close:focus {
    color: var(--site-primary);
}

.site-nav__offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1rem 1.15rem 1.5rem;
    background: #ffffff;
    overflow-y: auto;
}

.site-nav__offcanvas-search {
    padding-top: 0.2rem;
}

.site-nav--mobile {
    display: block;
}

.site-mobile-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 4.25rem;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.3);
    border-radius: 0.45rem;
    background: #fff;
}

.site-mobile-search__input {
    min-width: 0;
    height: 3.75rem;
    padding: 0 1.15rem;
    border: 0;
    color: var(--site-text);
    font-size: 1.35rem;
}

.site-mobile-search__input::placeholder {
    color: #8b8b8b;
}

.site-mobile-search__input:focus {
    outline: none;
}

.site-mobile-search__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-left: 1px solid rgba(17, 17, 17, 0.3);
    background: #fff;
    color: #111;
    font-size: 1.7rem;
}

.site-mobile-search__button .las {
    font-size: 1.95rem;
    line-height: 1;
}

.site-nav--mobile .site-nav__item + .site-nav__item {
    border-top: 1px solid var(--site-border);
}

.site-nav--mobile .site-nav__link {
    border-radius: 0;
    padding: 1rem 0;
    font-size: 1rem;
}

.site-nav--mobile .site-nav__panel {
    display: block;
    padding-bottom: 1rem;
}

.site-nav--mobile .mega-menu {
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.site-nav--mobile .mega-menu__grid,
.site-nav--mobile .mega-menu__grid--faq {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.site-nav--mobile .mega-menu__feature {
    display: none;
}

.site-nav--mobile .mega-menu__title {
    margin-bottom: 0.35rem;
    padding-top: 0.65rem;
    font-size: 0.9rem;
}

.site-nav--mobile .mega-menu__list a {
    display: block;
    padding: 0.18rem 0;
}

.site-nav__offcanvas-footer {
    display: grid;
    gap: 1rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--site-border);
}

.site-nav__offcanvas-footer .site-header__top-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.site-header__mobile-help {
    display: grid;
}

.site-header__mobile-help .site-header__help-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid #eee;
    color: #111;
    font-size: 1.1rem;
    text-transform: none;
}

.site-header__mobile-help .site-header__help-link::after {
    content: "";
    float: right;
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.35rem;
    border-top: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    transform: rotate(45deg);
}

.offcanvas-backdrop.show {
    opacity: 0.35;
}

.site-shell--offcanvas-open .google-trust-reviews-badge {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.site-shell--offcanvas-open clever-search-toggler {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.offcanvas-backdrop {
    z-index: 1070;
}

.site-cart-panel {
    --bs-offcanvas-width: min(100vw, 30rem);
    z-index: 1080;
    height: 100vh;
    border-left: 1px solid var(--site-border);
    background: #fff;
    color: var(--site-text);
    box-shadow: -18px 0 48px rgba(17, 17, 17, 0.18);
}

.site-cart-panel__header {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid var(--site-border);
}

.site-cart-panel__header h2 {
    grid-column: 2;
    margin: 0;
    color: #111;
    font-size: 1.55rem;
    font-weight: 400;
    text-align: center;
}

.site-cart-panel__header p {
    margin: 0.2rem 0 0;
    color: #777;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.9rem;
}

.site-cart-panel__close {
    grid-column: 3;
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 1.9rem;
    line-height: 1;
}

.site-cart-panel__close:hover,
.site-cart-panel__close:focus {
    color: #111;
}

.site-cart-panel__body {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0;
}

.site-cart-panel__empty {
    display: grid;
    width: 100%;
    min-height: 18rem;
    padding: 1.35rem;
    place-items: center;
    align-content: center;
    gap: 0.5rem;
    color: #777;
    text-align: center;
}

.site-cart-panel__empty .las {
    color: #c8c8c8;
    font-size: 3rem;
}

.site-cart-panel__empty h3 {
    margin: 0;
    color: #222;
    font-size: 1.35rem;
    font-weight: 400;
}

.site-cart-panel__empty p {
    max-width: 18rem;
    margin: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.95rem;
}

.site-cart-panel__content {
    min-height: 0;
    width: 100%;
}

.site-cart-panel__items {
    display: grid;
    min-height: 0;
    gap: 1rem;
    padding: 1.35rem 1.35rem 0;
    align-content: start;
}

.site-cart-item {
    display: grid;
    grid-template-columns: 4.8rem minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8e8e8;
}

.site-cart-item__image {
    display: grid;
    width: 4.8rem;
    height: 4.8rem;
    place-items: center;
    background: #fff;
}

.site-cart-item__image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.site-cart-item__content {
    min-width: 0;
}

.site-cart-item__name {
    color: #111;
    font-size: 1rem;
    line-height: 1.15;
    text-decoration: none;
}

.site-cart-item__name:hover,
.site-cart-item__name:focus {
    color: #111;
    text-decoration: underline;
}

.site-cart-item__sku,
.site-cart-item__details,
.site-cart-item__meta {
    color: #666;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 0.85rem;
}

.site-cart-item__details {
    margin-top: 0.25rem;
}

.site-cart-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.site-cart-item__total {
    color: #111;
    font-size: 0.95rem;
    white-space: nowrap;
}

.site-cart-panel__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #111;
    color: #111;
    font-size: 1.05rem;
}

.site-cart-panel__summary {
    padding: 0 1.35rem 1.35rem;
    background: #fff;
}

.site-cart-panel__actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.checkout-cart {
    background: #f4f4f4;
    padding: 34px 0 56px;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.checkout-cart__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.checkout-cart__header h1 {
    margin: 0 0 24px;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #1d1d1d;
}

.checkout-cart__panel,
.checkout-cart__empty,
.checkout-cart__summary,
.checkout-cart__promo {
    background: #fff;
    border: 1px solid #dedede;
}

.checkout-cart__head,
.checkout-cart__item {
    display: grid;
    grid-template-columns: minmax(250px, 1.45fr) minmax(220px, 1.2fr) 120px 170px 46px 120px;
    gap: 18px;
}

.checkout-cart__head {
    padding: 13px 18px;
    border-bottom: 1px solid #d8d8d8;
    color: #555;
    font-size: 1rem;
}

.checkout-cart__item {
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #e5e5e5;
    color: #4f4f4f;
}

.checkout-cart__item:last-child {
    border-bottom: 0;
}

.checkout-cart__product {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 14px;
    align-items: center;
}

.checkout-cart__image {
    display: flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e3e3e3;
}

.checkout-cart__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.checkout-cart__name {
    display: block;
    color: #1e1e1e;
    font-size: 1.08rem;
    line-height: 1.2;
    text-decoration: none;
}

.checkout-cart__name:hover,
.checkout-cart__name:focus {
    color: #1e1e1e;
    text-decoration: underline;
}

.checkout-cart__sku {
    display: block;
    margin-top: 4px;
    color: #777;
}

.checkout-cart__details {
    color: #666;
    font-size: 1rem;
    line-height: 1.35;
}

.checkout-cart__mobile-details {
    display: none;
}

.checkout-cart__unit,
.checkout-cart__line {
    color: #1f1f1f;
    font-size: 1.05rem;
    text-align: center;
}

.checkout-cart__line {
    font-weight: 700;
}

.checkout-cart__qty {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 8px;
}

.checkout-cart__qty input {
    width: 100%;
    height: 38px;
    border: 1px solid #bfbfbf;
    text-align: center;
    font: inherit;
}

.checkout-cart__qty button,
.checkout-cart__promo button {
    border: 0;
    background: #0ca05a;
    color: #fff;
    font: 700 1rem "Roboto Condensed", Arial, sans-serif;
    text-transform: uppercase;
}

.checkout-cart__qty button:hover,
.checkout-cart__qty button:focus,
.checkout-cart__promo button:hover,
.checkout-cart__promo button:focus {
    background: #08884c;
    color: #fff;
}

.checkout-cart__remove button {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 1.55rem;
}

.checkout-cart__remove button:hover,
.checkout-cart__remove button:focus {
    color: #111;
}

.checkout-cart__lower {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(320px, 420px);
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.checkout-cart__promo {
    padding: 20px;
}

.checkout-cart__promo label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 1.1rem;
}

.checkout-cart__promo > div {
    display: grid;
    grid-template-columns: 1fr 112px;
}

.checkout-cart__promo input {
    min-width: 0;
    height: 44px;
    border: 1px solid #bfbfbf;
    padding: 0 12px;
    font: inherit;
}

.checkout-cart__promo-message {
    margin: 12px 0 0;
    font-size: 1rem;
}

.checkout-cart__promo-message.is-valid {
    color: #0b7d47;
}

.checkout-cart__promo-message.is-invalid {
    color: #c92525;
}

.checkout-cart__summary {
    padding: 18px 22px;
}

.checkout-cart__summary div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    color: #555;
    font-size: 1.1rem;
}

.checkout-cart__summary strong {
    color: #1f1f1f;
    font-weight: 700;
}

.checkout-cart__summary .checkout-cart__discount strong {
    color: #c92525;
}

.checkout-cart__summary .checkout-cart__total {
    margin-top: 8px;
    border-top: 2px solid #222;
    font-size: 1.35rem;
}

.checkout-cart__actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 14px;
    margin-top: 24px;
}

.checkout-cart__empty {
    padding: 52px 24px;
    text-align: center;
}

.checkout-cart__empty .las {
    color: #777;
    font-size: 3rem;
}

.checkout-cart__empty h2 {
    margin: 10px 0 8px;
    font: 400 1.8rem "Roboto Condensed", Arial, sans-serif;
}

.checkout-cart__empty p {
    margin-bottom: 22px;
    color: #666;
}

.checkout-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    margin: 0 auto 5.25rem;
    color: #969696;
    font-size: 1.15rem;
    text-align: center;
}

.checkout-steps__item.is-current {
    color: #111;
    font-weight: 700;
    text-decoration: underline;
}

.checkout-steps .las {
    color: #111;
    font-size: 1.45rem;
}

.checkout-cart {
    background: #fff;
}

.checkout-cart__inner {
    width: min(1460px, calc(100% - 64px));
}

.checkout-cart__header h1 {
    margin-bottom: 1.25rem;
    font-size: 2.45rem;
    text-align: center;
}

.checkout-cart__panel {
    padding: 1rem 1rem 1.6rem;
    border-radius: 5px;
}

.checkout-cart__head,
.checkout-cart__item {
    grid-template-columns: minmax(320px, 1.55fr) minmax(280px, 1.25fr) 140px 170px 46px 150px;
    gap: 1.25rem;
}

.checkout-cart__head span:nth-child(4) {
    grid-column: 4 / span 2;
    text-align: center;
}

.checkout-cart__head span:nth-child(5) {
    grid-column: 6;
}

.checkout-cart__head {
    background: #f0f0f0;
    border-radius: var(--panel-radius-tight);
    border-bottom-color: #cfcfcf;
    font-weight: 700;
}

.checkout-cart__inventory-summary {
    margin-bottom: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid #e2b5b5;
    border-radius: 4px;
    background: #fff4f4;
    color: #a01818;
    line-height: 1.45;
    text-align: center;
}

.checkout-cart__inventory-summary[hidden] {
    display: none;
}

.checkout-cart__item {
    position: relative;
    min-height: 7.6rem;
    padding: 1rem 1.6rem;
}

.checkout-cart__item.has-inventory-warning {
    border-color: #e2b5b5;
    background: #fffafa;
}

.checkout-cart__product {
    grid-template-columns: 82px 1fr;
}

.checkout-cart__image {
    width: 82px;
    height: 82px;
    border: 0;
}

.checkout-cart__name {
    font-weight: 700;
}

.checkout-cart__details,
.checkout-cart__unit,
.checkout-cart__line {
    font-size: 1.18rem;
    white-space: nowrap;
}

.checkout-cart__inventory-warning {
    grid-column: 1 / -1;
    padding: 0.75rem 1rem;
    border: 1px solid #e2b5b5;
    border-radius: 4px;
    background: #fff4f4;
    color: #a01818;
    line-height: 1.45;
}

.checkout-cart__inventory-warning[hidden] {
    display: none;
}

.checkout-cart__qty {
    display: grid;
    grid-template-columns: 2.75rem 4.6rem 2.75rem;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.checkout-cart__qty-btn,
.checkout-cart__qty button.checkout-cart__qty-btn {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #aaa;
    background: #b5b5b8;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.checkout-cart__qty-btn:hover,
.checkout-cart__qty-btn:focus,
.checkout-cart__qty button.checkout-cart__qty-btn:hover,
.checkout-cart__qty button.checkout-cart__qty-btn:focus {
    background: #9f9fa3;
    color: #fff;
}

.checkout-cart__qty-btn:first-of-type {
    border-radius: 5px 0 0 5px;
}

.checkout-cart__qty-btn:last-of-type {
    border-radius: 0 5px 5px 0;
}

.checkout-cart__qty input {
    height: 2.75rem;
    border-right: 0;
    border-left: 0;
    color: #555;
    font-size: 1.05rem;
    appearance: textfield;
}

.checkout-cart__qty input::-webkit-outer-spin-button,
.checkout-cart__qty input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.checkout-cart__qty-fallback {
    display: none;
}

.checkout-cart__remove {
    justify-self: start;
}

.checkout-cart__remove button {
    color: #b63b37;
    font-size: 1.85rem;
}

.checkout-cart__bottom {
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(260px, 320px) minmax(380px, 460px);
    gap: 2rem;
    align-items: end;
    justify-content: end;
    margin-top: 2.5rem;
}

.checkout-cart__checkout {
    display: grid;
    gap: 0.75rem;
}

.checkout-cart__summary {
    padding: 0;
    border: 0;
    background: transparent;
}

.checkout-cart__summary div {
    padding: 0 0 1rem;
    border-bottom: 2px solid #aaa;
    font-size: 1.14rem;
    font-weight: 700;
}

.checkout-cart__summary small {
    font-weight: 400;
}

.checkout-cart__summary .checkout-cart__discount {
    padding: 0.55rem 0;
    border-bottom: 0;
}

.checkout-cart__promo {
    display: grid;
    grid-template-columns: 1fr 6.4rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.checkout-cart__promo input {
    height: 3.05rem;
    border-color: #d0d0d0;
    border-radius: 5px 0 0 5px;
    color: #555;
    font-size: 1.08rem;
}

.checkout-cart__promo button {
    height: 3.05rem;
    border-radius: 0 5px 5px 0;
    background: #aaa;
    color: #fff;
    font-size: 1.04rem;
}

.checkout-cart__promo button:hover,
.checkout-cart__promo button:focus {
    background: #8f8f8f;
}

.checkout-cart__promo-message {
    margin: -0.25rem 0 0.25rem;
}

.checkout-cart__promo-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #cfe7c7;
    border-radius: 3px;
    background: #e0f2d9;
    color: #28703a;
    font-size: 1.1rem;
}

.checkout-cart__promo-applied[hidden] {
    display: none;
}

.checkout-cart__promo-applied > div {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    min-width: 0;
}

.checkout-cart__promo-applied strong {
    font-weight: 400;
}

.checkout-cart__promo-applied b {
    font-weight: 700;
}

.checkout-cart__promo-applied button {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 7px;
    background: #c71c24;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

.checkout-cart__promo-applied button:hover,
.checkout-cart__promo-applied button:focus {
    background: #a9141a;
}

.checkout-cart__actions .is-disabled {
    border-color: #b8b8b8;
    background: #b8b8b8;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: auto;
}

.checkout-cart.is-busy {
    cursor: progress;
}

.checkout-cart.is-busy .checkout-cart__panel {
    opacity: 0.7;
}

.checkout-delivery[hidden] {
    display: none;
}

.checkout-delivery {
    width: min(1460px, calc(100% - 64px));
    margin: 0 auto;
    color: #26384a;
}

.checkout-delivery h1 {
    margin: 2rem 0 1rem;
    color: #111;
    font-size: 2.15rem;
    font-weight: 400;
    text-align: center;
}

.checkout-delivery__section {
    position: relative;
    margin-bottom: 1.55rem;
    padding: 1.35rem 8.5% 1.65rem;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    background: #fff;
}

.checkout-delivery__dot {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d0d0d0;
    color: #fff;
    font-weight: 700;
}

.checkout-delivery__section h2 {
    margin: 0 0 1.35rem;
    color: #26384a;
    font-size: 1.15rem;
    font-weight: 400;
}

.checkout-delivery__section h2 span {
    color: #0d4c85;
    text-decoration: underline;
}

.checkout-delivery__section--production {
    position: relative;
}

.checkout-delivery__location-button {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: inherit;
}

.checkout-delivery__location-button:hover,
.checkout-delivery__location-button:focus {
    color: #073b68;
}

.checkout-delivery__location-button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

.checkout-delivery__location-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.18rem rgba(var(--site-primary-rgb), 0.16);
}

.checkout-delivery__location-popover {
    top: 3.4rem;
    left: 3.8rem;
    width: min(calc(100% - 3.8rem), 40rem);
}

.checkout-delivery__choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.checkout-delivery__choice {
    position: relative;
    min-height: 3.85rem;
    padding: 0.75rem 3.5rem 0.75rem 1rem;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    background: #f5f5f5;
    color: #26384a;
    font: inherit;
    font-size: 1.15rem;
    text-align: center;
}

.checkout-delivery__choice small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
}

.checkout-delivery__choice .las {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    display: none;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #0d4c85;
    color: #fff;
    font-size: 1.45rem;
}

.checkout-delivery__choice.is-selected {
    border-color: #0d4c85;
    background: #eaf6ff;
}

.checkout-delivery__choice.is-selected .las {
    display: inline-flex;
}

.checkout-delivery__link,
.checkout-delivery__note button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #333;
    font: inherit;
    text-decoration: underline;
}

.checkout-delivery__link {
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

.checkout-delivery__multiple {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.checkout-delivery__multiple[hidden] {
    display: none;
}

.checkout-delivery__multi-info {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border: 1px solid #b6d8ec;
    border-radius: 4px;
    background: #edf8ff;
    color: #31708f;
    line-height: 1.45;
}

.checkout-delivery__multi-info[hidden] {
    display: none;
}

.checkout-delivery__multiple input {
    width: 6rem;
    min-height: 2.5rem;
    text-align: center;
}

.checkout-delivery__location-qty {
    display: grid;
    grid-template-columns: 2.75rem 4.6rem 2.75rem;
    align-items: center;
}

.checkout-delivery__location-qty button {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #aaa;
    background: #b5b5b8;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.checkout-delivery__location-qty button:hover,
.checkout-delivery__location-qty button:focus {
    background: #9f9fa3;
    color: #fff;
}

.checkout-delivery__location-qty button:first-child {
    border-radius: 5px 0 0 5px;
}

.checkout-delivery__location-qty button:last-child {
    border-radius: 0 5px 5px 0;
}

.checkout-delivery__location-qty input {
    width: 100%;
    height: 2.75rem;
    min-height: 0;
    border: 1px solid #bfbfbf;
    border-right: 0;
    border-left: 0;
    color: #555;
    font: inherit;
    font-size: 1.05rem;
    appearance: textfield;
}

.checkout-delivery__location-qty input::-webkit-outer-spin-button,
.checkout-delivery__location-qty input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.checkout-delivery__production {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.checkout-delivery__production .col-lg-25,
.checkout-delivery__production .col-lg-3,
.checkout-delivery__production .col-lg-4,
.checkout-delivery__production .col-md-12 {
    width: auto;
    max-width: none;
    padding: 0;
}

.checkout-delivery .production-option-btn {
    position: relative;
    min-height: 12rem;
    overflow: hidden;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #fff;
    color: #222;
    text-align: center;
    cursor: pointer;
}

.checkout-delivery .production-option-btn.on {
    border-color: #0d4c85;
    background: #f1f7ff;
}

.checkout-delivery .production-option-btn.on::after {
    content: "\f00c";
    position: absolute;
    top: 1.2rem;
    right: 0.75rem;
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0d4c85;
    color: #fff;
    font-family: "Line Awesome Free";
    font-weight: 900;
}

.checkout-delivery .production-option-badge {
    display: inline-block;
    margin: 1.15rem 0 0 0.7rem;
    padding: 0.45rem 0.7rem;
    border-radius: 4px;
    background: #eeeeef;
    color: #555;
    font-size: 0.8rem;
    float: left;
}

.checkout-delivery .production-option-btn.on .production-option-badge {
    background: #164f86;
    color: #fff;
}

.checkout-delivery .production-option-main {
    clear: both;
    padding: 1.25rem 0.75rem 1.35rem;
    color: #222;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.1;
}

.checkout-delivery .production-option-title {
    padding: 1rem 0.75rem;
    background: #f3f3f5;
    color: #111;
    font-size: 0.9rem;
}

.checkout-delivery .production-option-btn.on .production-option-title {
    background: #d8eaf5;
}

.checkout-delivery .production-option-alt {
    padding: 1.25rem 0.75rem 1rem;
    color: #111;
    font-size: 1.15rem;
}

.checkout-delivery__note {
    margin: 1.25rem 0 0;
    color: #444;
    text-align: center;
}

.checkout-delivery__note--right {
    text-align: right;
}

.checkout-delivery__total {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 3rem;
    padding: 0 0.6rem 0.55rem;
    border-bottom: 2px solid #111;
    color: #444;
    font-size: 1.45rem;
    font-weight: 700;
}

.checkout-delivery__email {
    width: 100%;
    min-height: 3rem;
    margin-top: 1.7rem;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    font-size: 1.2rem;
    text-align: center;
}

.checkout-delivery__email.is-invalid {
    border-color: #c91f28;
    background: #fff6f6;
    box-shadow: 0 0 0 3px rgb(201 31 40 / 10%);
}

.checkout-delivery__email[hidden] {
    display: none;
}

.checkout-delivery__returning[hidden],
.checkout-delivery__validation[hidden] {
    display: none;
}

.checkout-delivery__returning {
    position: relative;
}

.checkout-delivery__returning a {
    display: block;
    margin-top: 0.45rem;
    color: #333;
    font-size: 0.9rem;
    text-align: right;
    text-decoration: underline;
}

.checkout-delivery__validation {
    margin-top: 1.4rem;
    padding: 0.85rem 1rem;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    background: #f2dede;
    color: #a94442;
    text-align: center;
}

.checkout-delivery__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 1.55rem;
    padding: 0 8.5%;
}

.checkout-delivery__actions .btn {
    grid-column: 2;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 44px;
    padding: .7rem 1.6rem;
    border: var(--bs-btn-border-width, 1px) solid var(--bs-btn-border-color, transparent);
    border-radius: var(--bs-btn-border-radius, var(--panel-radius-tight));
    font: inherit;
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-lg {
    min-height: 50px;
    padding: .85rem 1.85rem;
    font-size: 1.08rem;
}

.btn-sm {
    min-height: 34px;
    padding: .45rem .8rem;
    font-size: .86rem;
}

.btn-success {
    background: #0a9f5a;
    border-color: #0a9f5a;
    color: #fff;
}

.btn-success:hover,
.btn-success:focus {
    background: #08884d;
    border-color: #08884d;
    color: #fff;
    outline: none;
}

.checkout-delivery__modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgb(0 0 0 / 45%);
}

.checkout-delivery__modal[hidden] {
    display: none;
}

.checkout-delivery__modal-card {
    width: min(100%, 28rem);
    padding: 1.5rem;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 20%);
}

.checkout-delivery__modal-card--password-reset {
    position: relative;
}

.checkout-delivery__modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 2rem;
    line-height: 1;
}

.checkout-delivery__modal-card h2 {
    margin: 0 0 1rem;
    color: #111;
    font-size: 1.4rem;
}

.checkout-delivery__password-reset-message {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #333;
    text-align: center;
}

.checkout-delivery__password-reset-message.is-success {
    border-color: #d6e9c6;
    background: #dff0d8;
    color: #3c763d;
}

.checkout-delivery__password-reset-message.is-error {
    border-color: #ebccd1;
    background: #f2dede;
    color: #a94442;
}

.checkout-delivery__password-reset-label {
    display: block;
    color: #333;
    font-weight: 700;
}

.checkout-delivery__password-reset-submit {
    width: 100%;
    min-height: 3rem;
    margin-top: 1rem;
    border: 0;
    border-radius: 4px;
    background: #0a9f5a;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.checkout-delivery__password-reset-submit:disabled {
    opacity: 0.65;
}

.checkout-delivery__date-input {
    width: 100%;
    min-height: 3rem;
    padding: 0 0.8rem;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    font: inherit;
}

.checkout-delivery__date-error {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    border: 1px solid #ebccd1;
    border-radius: 4px;
    background: #f2dede;
    color: #a94442;
    text-align: center;
}

.checkout-delivery__date-error[hidden] {
    display: none;
}

.checkout-delivery__modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.checkout-delivery__modal-actions button {
    min-height: 2.5rem;
    padding: 0 1rem;
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    background: #f5f5f5;
    font: inherit;
}

.checkout-delivery__modal-actions button:last-child {
    border-color: #0d4c85;
    background: #0d4c85;
    color: #fff;
}

.checkout-delivery__modal-actions button:disabled {
    opacity: 0.45;
}

.enter-details__form {
    gap: 2rem;
}

.enter-details__panel[hidden] {
    display: none !important;
}

.enter-details__panel-header {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.enter-details__panel-header h2 {
    margin-bottom: 0;
}

.enter-details__summary {
    background: #f4f7fb;
    border: 1px solid #d7e2f0;
    border-radius: 0.85rem;
    color: #26425f;
    font-size: 1.45rem;
    margin-top: 1.5rem;
    padding: 1.2rem 1.4rem;
}

.enter-details__body {
    margin-top: 1.5rem;
}

.enter-details__intro {
    color: #54657a;
    font-size: 1.45rem;
    margin-bottom: 1.8rem;
}

.enter-details__field-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enter-details__field-grid label,
.enter-details__textarea,
.enter-details__presentation label {
    color: #31465d;
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
    font-weight: 700;
    gap: 0.55rem;
}

.enter-details__field-grid input,
.enter-details__field-grid select,
.enter-details__textarea textarea,
.enter-details__presentation input {
    border: 1px solid #cfd8e3;
    border-radius: 0.85rem;
    box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.04);
    font-size: 1.5rem;
    min-height: 4.8rem;
    padding: 1.1rem 1.3rem;
}

.enter-details__search--wide,
.enter-details__textarea {
    grid-column: 1 / -1;
}

.enter-details__search small {
    color: #6f7e91;
    font-size: 1.15rem;
    font-weight: 400;
}

.enter-details__checkbox {
    align-items: center;
    color: #31465d;
    display: flex;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 1.6rem;
}

.enter-details__checkbox input {
    height: 1.8rem;
    width: 1.8rem;
}

.enter-details__billing,
.enter-details__presentation,
.enter-details__existing {
    margin-top: 2rem;
}

.enter-details__existing-head {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.enter-details__existing-head h3,
.enter-details__billing h3 {
    color: #1f3247;
    font-size: 1.8rem;
    margin: 0;
}

.enter-details__customer-cards {
    display: grid;
    gap: 1rem;
}

.enter-details__customer-card {
    align-items: flex-start;
    background: #fff;
    border: 1px solid #d3dce7;
    border-radius: 1rem;
    color: #2b4259;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.4rem;
    text-align: left;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.enter-details__customer-card strong {
    font-size: 1.55rem;
}

.enter-details__customer-card span,
.enter-details__customer-card small {
    font-size: 1.25rem;
}

.enter-details__customer-card.is-selected,
.enter-details__customer-card:hover,
.enter-details__customer-card:focus {
    border-color: #1774d1;
    box-shadow: 0 0 0 3px rgba(23, 116, 209, 0.12);
    outline: none;
    transform: translateY(-1px);
}

.enter-details__actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.enter-details__edit {
    background: transparent;
    border: 0;
    color: #1774d1;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 0;
}

.enter-details__edit:hover,
.enter-details__edit:focus {
    color: #0e5eac;
    outline: none;
    text-decoration: underline;
}

.enter-details h1 {
    margin: 0 0 1.25rem;
    font-size: 2.1rem;
    font-weight: 400;
    text-align: center;
}

.enter-details__checkout-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 2rem;
    padding: 2.2rem 2.4rem;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
}

.enter-details__form {
    display: grid;
    gap: 0;
    min-width: 0;
}

.enter-details__step {
    min-height: 86px;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #efefef;
    transition: background .18s ease;
}

.enter-details__step.is-open {
    background: #fff;
}

.enter-details__step-heading {
    display: grid;
    grid-template-columns: 27px 1fr auto;
    gap: 1rem;
    align-items: center;
}

.enter-details__step-heading h2 {
    margin: 0;
    color: #31465d;
    font-size: 1.18rem;
    font-weight: 400;
}

.enter-details .checkout-delivery__dot {
    position: static;
    top: auto;
    left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    background: #cfcfcf;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
}

.enter-details__edit,
.enter-details__return,
.enter-details__privacy {
    justify-self: end;
    border: 0;
    background: transparent;
    color: #111;
    font-size: .95rem;
    font-weight: 400;
    text-decoration: underline;
}

.enter-details__body {
    margin-top: 1.35rem;
}

.enter-details__body[hidden],
.enter-details__summary[hidden],
.enter-details__manual[hidden],
.enter-details__billing[hidden],
.enter-details__selector[hidden],
.enter-details__return[hidden] {
    display: none !important;
}

.enter-details__selector {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    overflow: hidden;
}

.enter-details__selector > strong {
    display: block;
    padding: .65rem .5rem;
    border-bottom: 1px solid #dedede;
    font-size: .95rem;
}

.enter-details__rows {
    display: grid;
    gap: .6rem;
    padding: 1rem 1rem .6rem;
}

.enter-details__row {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(240px, 1.5fr) 44px;
    min-height: 39px;
    align-items: center;
    width: 100%;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #f3f3f3;
    color: #173452;
    font-size: .98rem;
    font-weight: 400;
    text-align: left;
    overflow: hidden;
}

.enter-details__row > span {
    padding: .55rem .8rem;
}

.enter-details__row > i:last-child {
    display: inline-grid;
    justify-self: center;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    color: #0b4b84;
}

.enter-details__row:hover,
.enter-details__row:focus,
.enter-details__row.is-selected {
    border-color: #00539b;
    background: #e7f2fb;
    color: #00427d;
    outline: none;
}

.enter-details__row:hover > i:last-child,
.enter-details__row:focus > i:last-child,
.enter-details__row.is-selected > i:last-child {
    background: #0b4b84;
    color: #fff;
}

.enter-details__row:not(.enter-details__row--create):hover > i:last-child::before,
.enter-details__row:not(.enter-details__row--create):focus > i:last-child::before,
.enter-details__row:not(.enter-details__row--create).is-selected > i:last-child::before {
    content: "\f00c";
}

.enter-details__row--create {
    grid-template-columns: 1fr 44px;
    margin: .55rem 1rem 1rem;
    width: calc(100% - 2rem);
    background: #fff;
    color: #009b55;
}

.enter-details__row--create > span {
    text-align: center;
}

.enter-details__row--create:hover,
.enter-details__row--create:focus,
.enter-details__row--create.is-selected {
    border-color: #00a55f;
    background: #f3fff8;
    color: #00894d;
}

.enter-details__row--create:hover > i:last-child,
.enter-details__row--create:focus > i:last-child,
.enter-details__row--create.is-selected > i:last-child {
    background: #00a55f;
    color: #fff;
}

.enter-details__row.is-muted {
    display: block;
    min-height: 0;
    padding: .75rem .9rem;
    color: #777;
}

.enter-details__manual {
    margin-top: 1.4rem;
}

.enter-details__summary {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 3.5rem;
    align-items: center;
    min-height: 104px;
    margin: 1.2rem 0 0 1.4rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.enter-details__summary p {
    margin: 0;
    color: #31465d;
    font-size: 1rem;
    line-height: 1.35;
}

.enter-details__summary-icon {
    width: 88px;
    height: 88px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #eee;
}

.enter-details__summary-icon--person {
    background:
        radial-gradient(circle at 50% 38%, #ccc 0 22%, transparent 23%),
        radial-gradient(ellipse at 50% 105%, #ccc 0 43%, transparent 44%),
        #eee;
}

.enter-details__summary-icon--map {
    position: relative;
    background:
        linear-gradient(135deg, transparent 40%, #fff 41% 48%, transparent 49%),
        linear-gradient(45deg, transparent 35%, #fff 36% 45%, transparent 46%),
        #f0eee9;
}

.enter-details__summary-icon--map::after {
    position: absolute;
    left: 50%;
    top: 42%;
    width: 22px;
    height: 22px;
    border-radius: 50% 50% 50% 0;
    background: #d10d22;
    content: "";
    transform: translate(-50%, -50%) rotate(-45deg);
}

.enter-details__summary-icon--map::before {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 40%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    content: "";
    transform: translate(-50%, -50%);
}

.enter-details__field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.enter-details__field-grid label,
.enter-details__other-grid label,
.enter-details__textarea {
    display: grid;
    gap: .45rem;
    color: #31465d;
    font-size: .92rem;
    font-weight: 700;
}

.enter-details__field-grid input,
.enter-details__field-grid select,
.enter-details__other-grid input,
.enter-details__other-grid select,
.enter-details__textarea textarea {
    min-height: 38px;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    padding: .55rem .75rem;
    font: inherit;
    font-size: .98rem;
    font-weight: 400;
}

.enter-details__search--wide,
.enter-details__textarea {
    grid-column: 1 / -1;
}

.enter-details__checkbox {
    display: flex;
    gap: .55rem;
    align-items: center;
    margin-top: 1rem;
    color: #173452;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.enter-details__checkbox input {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: #0878ce;
}

.enter-details__billing {
    margin-top: 1.2rem;
}

.enter-details__other-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1rem 1.6rem;
    align-items: center;
    max-width: 840px;
    margin: 0 auto 1.2rem;
}

.enter-details__other-grid label {
    grid-column: 1 / -1;
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: center;
}

.enter-details__textarea textarea {
    width: 100%;
}

.enter-details__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
}

.enter-details__actions--center {
    justify-content: center;
}

.enter-details__actions--end {
    justify-content: flex-end;
}

.enter-details__payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: .8rem;
}

.enter-details__payment-option {
    display: grid;
    grid-template-columns: 34px 1fr 42px;
    gap: .35rem;
    align-items: center;
    min-height: 76px;
    border: 1px solid #d2d8df;
    border-radius: 4px;
    background: #f7f7f7;
    padding: .7rem .75rem;
    color: #123454;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.enter-details__payment-option > i:first-child {
    justify-self: center;
    color: #0b4b84;
    font-size: 1.35rem;
}

.enter-details__payment-option > i:last-child {
    display: grid;
    justify-self: end;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: transparent;
    font-size: 1.35rem;
}

.enter-details__payment-option strong,
.enter-details__payment-option small {
    display: block;
}

.enter-details__payment-option strong {
    font-size: .96rem;
    font-weight: 600;
}

.enter-details__payment-option small {
    margin-top: .2rem;
    color: #526274;
    font-size: .78rem;
    line-height: 1.35;
}

.enter-details__payment-option:hover,
.enter-details__payment-option:focus,
.enter-details__payment-option.is-selected {
    border-color: #0b4b84;
    background: #eaf5ff;
    outline: none;
}

.enter-details__payment-option:hover > i:last-child,
.enter-details__payment-option:focus > i:last-child,
.enter-details__payment-option.is-selected > i:last-child {
    background: #0b4b84;
    color: #fff;
}

.enter-details__payment-detail {
    margin-top: 1rem;
    padding: .8rem 1rem;
    border: 1px solid #f0c0c0;
    border-radius: 4px;
    background: #fff7f7;
    color: #9f1b1b;
    font-size: .9rem;
    line-height: 1.45;
}

.enter-details__payment-detail[hidden],
.enter-details__card-panel[hidden] {
    display: none;
}

.enter-details__card-panel {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #fff;
}

.enter-details__accepted-cards {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
    margin-bottom: 1rem;
    color: #526274;
    font-size: .9rem;
}

.enter-details__accepted-cards strong {
    padding: .25rem .55rem;
    border: 1px solid #d0d7df;
    border-radius: 3px;
    background: #f5f7f9;
    color: #123454;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
}

.enter-details__card-panel .enter-details__field-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.enter-details__card-half {
    grid-column: span 3;
}

.enter-details__card-compact {
    grid-column: span 2;
}

.enter-details__stripe-field {
    grid-column: span 3;
}

.enter-details__stripe-field span {
    display: block;
    margin-bottom: .45rem;
    font-weight: 700;
    color: #24384f;
}

.enter-details__stripe-card {
    min-height: 48px;
    padding: .9rem;
    border: 1px solid #b8c1cc;
    border-radius: 4px;
    background: #fff;
}

.enter-details__paypal-panel {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #fff;
    text-align: center;
}

.enter-details__paypal-panel[hidden] {
    display: none;
}

#paypal-button-container {
    max-width: 420px;
    margin: 0 auto;
}

.enter-details__paypal-panel .enter-details__stripe-error {
    max-width: 420px;
    margin: 1rem auto 0;
    text-align: left;
}

.enter-details__stripe-error {
    grid-column: 1 / -1;
    padding: .75rem .85rem;
    border: 1px solid #f2b7b7;
    border-radius: 4px;
    background: #fff7f7;
    color: #9f1b1b;
    font-size: .9rem;
}

.enter-details__stripe-error[hidden] {
    display: none;
}

.enter-details__order-summary {
    align-self: start;
    margin-top: 1.2rem;
    color: #31465d;
    font-size: .95rem;
}

.enter-details__order-summary h2 {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid #d5d5d5;
    border-radius: 4px 4px 0 0;
    background: #f3f3f3;
    font-size: 1.2rem;
    font-weight: 400;
}

.enter-details__order-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .8rem 1.1rem;
    border-right: 1px solid #d5d5d5;
    border-left: 1px solid #d5d5d5;
    background: #fff;
}

.enter-details__order-line {
    border-bottom: 1px solid #d5d5d5;
}

.enter-details__order-total {
    border: 1px solid #d5d5d5 !important;
    background: #eee !important;
    font-weight: 700;
}

.enter-details__order-total small {
    font-weight: 400;
}

.enter-details__order-summary p {
    margin: 1.4rem .6rem 0;
    color: #31465d;
    font-size: .95rem;
    line-height: 1.55;
    text-align: center;
}

.receipt-page__intro,
.receipt-page__panel,
.receipt-page__alert {
    background: #fff;
    border: 1px solid #e2e6ee;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.receipt-page__intro {
    padding: 28px 30px;
    margin-bottom: 22px;
}

.receipt-page__intro h1 {
    margin: 0 0 18px;
    font-size: 36px;
}

.receipt-page__intro h2 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    color: #1f2d3d;
}

.receipt-page__intro p {
    margin: 0 0 10px;
    color: #3f4a5f;
    line-height: 1.6;
}

.receipt-page__intro p:last-child {
    margin-bottom: 0;
}

.receipt-page__intro hr {
    margin: 0 0 18px;
    border-top: 1px solid #e5e7eb;
}

.receipt-page__company {
    margin-bottom: 8px;
}

.receipt-page__company strong {
    color: #1f2d3d;
}

.receipt-page__alert {
    margin-bottom: 22px;
    padding: 18px 22px;
    border-color: #f3c7c7;
    background: #fff7f7;
    color: #7c1d1d;
}

.receipt-page__alert p {
    margin: 0 0 10px;
}

.receipt-page__alert p:last-child {
    margin-bottom: 0;
}

.receipt-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
    gap: 22px;
    margin-bottom: 22px;
}

.receipt-page__panel {
    padding: 22px;
}

.receipt-page__panel h2 {
    margin: 0 0 18px;
    font-size: 20px;
}

.receipt-page__items {
    display: grid;
    gap: 12px;
}

.receipt-page__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px 110px;
    gap: 16px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf0f5;
}

.receipt-page__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.receipt-page__item strong,
.receipt-page__item span {
    display: block;
}

.receipt-page__item span {
    color: #596275;
}

.receipt-page__item b {
    text-align: right;
}

.receipt-page__totals > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #edf0f5;
}

.receipt-page__grand-total {
    align-items: flex-start;
    font-size: 20px;
}

.receipt-page__grand-total small {
    display: block;
    color: #6b7280;
    font-size: 12px;
}

.receipt-page__details {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 10px 16px;
    margin: 0 0 18px;
}

.receipt-page__details dt {
    font-weight: 700;
}

.receipt-page__details dd {
    margin: 0;
    color: #3f4a5f;
}

.receipt-page__payment {
    color: #3f4a5f;
    line-height: 1.6;
}

.receipt-page__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 28px 0 8px;
}

.order-tracking {
    padding: 28px 20px 64px;
}

.order-tracking__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.order-tracking__alert {
    margin-bottom: 24px;
}

.order-tracking__search-panel {
    max-width: 1220px;
    margin: 0 auto;
}

.order-tracking__search-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 auto 68px;
    padding: 0 12px;
}

.order-tracking__search-steps::before {
    content: "";
    position: absolute;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    top: 51px;
    height: 8px;
    background: #a5d3fc;
}

.order-tracking__search-step {
    position: relative;
    text-align: center;
    padding: 0 12px 20px;
}

.order-tracking__search-step-label {
    color: #5b6573;
    font-size: 16px;
    font-weight: 500;
}

.order-tracking__search-step-line {
    display: none;
}

.order-tracking__search-step-dot {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    border-radius: 50%;
    background: #a5d3fc;
}

.order-tracking__search-step-dot::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #3082cc;
}

.order-tracking__search-card,
.order-tracking__summary-card {
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.order-tracking__search-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 44px 56px 60px;
    box-shadow: none;
}

.order-tracking__search-header h1,
.order-tracking__summary-header h1 {
    margin: 0 0 12px;
    color: #0f172a;
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    font-weight: var(--page-h1-weight);
    line-height: var(--page-h1-line-height);
}

.order-tracking__search-header p,
.order-tracking__summary-header p {
    margin: 0;
    color: #475569;
    font-size: 16px;
}

.order-tracking__search-header {
    margin-bottom: 18px;
}

.order-tracking__search-header h1 {
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 400;
}

.order-tracking__search-form {
    margin-top: 0;
}

.order-tracking__search-form .form-group {
    margin-bottom: 14px;
}

.order-tracking__search-form .form-control {
    height: 48px;
    border-color: #c9d0db;
    border-radius: 4px;
    box-shadow: none;
    color: #475569;
    font-size: 18px;
    padding: 10px 16px;
}

.order-tracking__search-form .btn {
    min-width: 190px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-tracking__search-form .text-danger {
    display: inline-block;
    margin-top: 4px;
}

.order-tracking__workflow {
    display: grid;
    gap: 24px;
}

.order-tracking__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 8px 8px 14px;
}

.order-tracking__steps::before {
    content: "";
    position: absolute;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    top: 44px;
    height: 4px;
    background: #a5d3fc;
}

.order-tracking__step {
    position: relative;
    text-align: center;
    padding: 0 8px 18px;
}

.order-tracking__step-label {
    color: #475569;
    font-size: 15px;
    font-weight: 600;
}

.order-tracking__step-line {
    display: none;
}

.order-tracking__step-dot {
    position: absolute;
    left: 50%;
    top: 33px;
    width: 26px;
    height: 26px;
    margin-left: -13px;
    border-radius: 50%;
    background: #a5d3fc;
    border: 4px solid #a5d3fc;
}

.order-tracking__step--complete .order-tracking__step-line,
.order-tracking__step--active .order-tracking__step-line {
    background: #a5d3fc;
}

.order-tracking__step--complete .order-tracking__step-dot {
    background: #3082cc;
    border-color: #a5d3fc;
}

.order-tracking__step--active .order-tracking__step-dot {
    background: #fff;
    border-color: #3082cc;
}

.order-tracking__summary-card {
    padding: 32px;
}

.order-tracking__summary-header {
    margin-bottom: 28px;
}

.order-tracking__summary-header p strong {
    color: #0b4ea2;
    font-size: 18px;
}

.order-tracking__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.order-tracking__panel {
    margin-bottom: 24px;
}

.order-tracking__panel h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.2;
}

.order-tracking__panel table {
    margin-bottom: 0;
    background: #fff;
}

.order-tracking__panel th {
    width: 34%;
    background: #f8fafc;
    color: #0f172a;
}

.order-tracking__panel td,
.order-tracking__panel th {
    vertical-align: middle !important;
}

.order-tracking__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.order-tracking__tracking-html {
    margin-bottom: 24px;
}

.order-tracking__reorder {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    border-radius: 10px;
    padding: 24px;
}

.order-tracking__reorder-copy p {
    margin: 0 0 8px;
    color: #1e293b;
}

.order-tracking__reorder-copy p:last-child {
    margin-bottom: 0;
}

.order-tracking__payment-panel {
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
}

.order-tracking__payment-copy {
    margin: 0 0 16px;
    color: #334155;
    font-size: 16px;
}

.order-tracking__payment-form {
    display: grid;
    gap: 18px;
}

.order-tracking__payment-actions {
    display: flex;
    justify-content: flex-start;
}

.order-tracking__payment-actions .btn {
    min-width: 260px;
}

.delivery-locations {
    padding: 40px 16px 64px;
    background: #fff;
}

.delivery-locations__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.delivery-locations__card {
    background: #fff;
    border: 1px solid #dfe6ef;
    border-radius: 8px;
    padding: 28px;
}

.delivery-locations__header {
    text-align: center;
    margin-bottom: 28px;
}

.delivery-locations__header h1 {
    margin: 0 0 12px;
    color: #202327;
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    line-height: var(--page-h1-line-height);
    font-weight: var(--page-h1-weight);
}

.delivery-locations__header p {
    margin: 8px auto;
    max-width: none;
    color: #334155;
    font-size: 17px;
}

.delivery-locations__count {
    font-weight: 700;
}

.delivery-locations__locked {
    color: #b42318;
    font-weight: 700;
}

.delivery-locations__list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.delivery-locations__row {
    display: grid;
    grid-template-columns: 48px minmax(150px, 0.8fr) minmax(260px, 1.4fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid #d7e3f2;
    border-radius: 8px;
    background: #fff;
    color: #10233f;
}

.delivery-locations__row-index {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f9f5f;
    color: #fff;
    font-weight: 700;
}

.delivery-locations__row strong,
.delivery-locations__row span,
.delivery-locations__row small {
    display: block;
}

.delivery-locations__row small {
    margin-top: 4px;
    color: #64748b;
}

.delivery-locations__row-actions {
    display: flex;
    justify-content: flex-end;
}

.delivery-locations__row-actions button {
    border: 0;
    background: transparent;
    color: #b42318;
    font-weight: 700;
    text-transform: uppercase;
}

.delivery-locations__lock {
    color: #64748b;
    font-weight: 700;
}

.delivery-locations__form,
.delivery-locations__submit,
.delivery-locations__download {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e2e8f0;
}

.delivery-locations__form h2 {
    margin: 0 0 16px;
    font-size: 24px;
    color: #10233f;
}

.delivery-locations__form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.delivery-locations__form-grid label {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #334155;
    font-weight: 700;
}

.delivery-locations__form-grid input,
.delivery-locations__form-grid select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 8px 10px;
    color: #10233f;
    font-weight: 400;
}

.delivery-locations__wide {
    grid-column: span 3;
}

.delivery-locations__actions,
.delivery-locations__submit,
.delivery-locations__download {
    text-align: center;
}

.delivery-locations__message {
    margin-top: 18px;
}

@media (max-width: 900px) {
    .delivery-locations__card {
        padding: 20px;
    }

    .delivery-locations__header h1 {
        font-size: 32px;
    }

    .delivery-locations__row,
    .delivery-locations__form-grid {
        grid-template-columns: 1fr;
    }

    .delivery-locations__wide {
        grid-column: span 1;
    }

    .delivery-locations__row-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .order-tracking {
        padding-top: 20px;
    }

    .order-tracking__search-steps {
        margin-bottom: 44px;
        padding: 0;
    }

    .order-tracking__search-steps::before {
        left: 12.5%;
        right: 12.5%;
        top: 42px;
        height: 6px;
    }

    .order-tracking__search-step {
        padding: 0 6px 20px;
    }

    .order-tracking__search-step-label {
        font-size: 13px;
    }

    .order-tracking__search-step-line {
        height: 6px;
        margin-top: 16px;
    }

    .order-tracking__search-step-dot {
        top: 33px;
        width: 24px;
        height: 24px;
        margin-left: -12px;
    }

    .order-tracking__search-step-dot::after {
        top: 6px;
        left: 6px;
        width: 12px;
        height: 12px;
    }

    .order-tracking__search-card {
        padding: 32px 20px 36px;
    }

    .order-tracking__search-header h1 {
        font-size: 24px;
    }

    .order-tracking__search-form .form-control {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .enter-details__checkout-shell {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .enter-details__step-heading {
        grid-template-columns: 34px 1fr;
    }

    .enter-details__edit,
    .enter-details__return,
    .enter-details__privacy {
        grid-column: 2;
        justify-self: start;
    }

    .enter-details__row,
    .enter-details__other-grid,
    .enter-details__other-grid label {
        grid-template-columns: 1fr;
    }

    .enter-details__summary {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        margin-left: 0;
    }

    .enter-details__summary-icon {
        width: 72px;
        height: 72px;
    }

    .enter-details__field-grid {
        grid-template-columns: 1fr;
    }

    .enter-details__actions {
        flex-direction: column-reverse;
    }

    .enter-details__existing-head,
    .enter-details__panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .receipt-page__grid {
        grid-template-columns: 1fr;
    }

    .receipt-page__item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .receipt-page__item b {
        text-align: left;
    }

    .receipt-page__details {
        grid-template-columns: 1fr;
    }

    .order-tracking {
        padding: 24px 16px 48px;
    }

    .order-tracking__search-card,
    .order-tracking__summary-card {
        padding: 22px;
    }

    .order-tracking__search-header h1,
    .order-tracking__summary-header h1 {
        font-size: 28px;
    }

    .order-tracking__grid {
        grid-template-columns: 1fr;
    }

    .order-tracking__steps {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0;
    }

    .order-tracking__step {
        min-height: 32px;
        padding: 0 0 0 42px;
        text-align: left;
    }

    .order-tracking__step-line {
        position: absolute;
        left: 12px;
        top: 26px;
        width: 4px;
        height: calc(100% + 10px);
        margin-top: 0;
    }

    .order-tracking__step:last-child .order-tracking__step-line {
        display: none;
    }

    .order-tracking__step-dot {
        left: 0;
        top: 0;
        margin-left: 0;
    }

    .order-tracking__reorder {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-tracking__payment-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

@media print {
    .site-header,
    .checkout-footer,
    .receipt-page__actions {
        display: none !important;
    }

    .site-main,
    .site-main main,
    .checkout-cart,
    .checkout-cart__inner {
        padding: 0 !important;
        margin: 0 !important;
    }

    .receipt-page__intro,
    .receipt-page__panel,
    .receipt-page__alert {
        border: 1px solid #d1d5db;
        box-shadow: none;
        break-inside: avoid;
    }
}

.site-shell--checkout .site-main {
    background: #fff;
}

.engraving-select {
    color: #26384a;
}

.engraving-select h1 {
    margin: 2rem 0 1rem;
    color: #111;
    font-size: 2.15rem;
    font-weight: 400;
    text-align: center;
}

.engraving-select__panel {
    max-width: 62rem;
    margin: 0 auto 3rem;
    padding: 2rem;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    background: #fff;
}

.engraving-select__panel h2 {
    margin: 0 0 1.5rem;
    color: #26384a;
    font-size: 1.35rem;
    font-weight: 400;
    text-align: center;
}

.engraving-select__options {
    display: grid;
    max-width: 36rem;
    margin: 0 auto;
    gap: 0.85rem;
}

.engraving-select__option {
    width: 100%;
    min-height: 3.4rem;
    border: 1px solid #cfcfcf;
    border-radius: var(--panel-radius-tight);
    background: #f3f3f3;
    color: #26384a;
    font: inherit;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
}

.engraving-select__option {
    position: relative;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.engraving-select__option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.engraving-select__option span {
    padding: 0 3rem;
}

.engraving-select__option i {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    display: none;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #0d4c85;
    color: #fff;
    font-size: 1.25rem;
    transform: translateY(-50%);
}

.engraving-select__option.is-selected,
.engraving-select__option:hover,
.engraving-select__option:focus {
    background: #eaf6ff;
    border-color: #0d4c85;
    color: #003f77;
}

.engraving-select__option.is-selected i {
    display: grid;
}

.engraving-select__info,
.engraving-select__alert,
.engraving-select__estimate {
    max-width: 38rem;
    margin: 0 auto 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: 4px;
    line-height: 1.45;
    text-align: center;
}

.engraving-select__info {
    border: 1px solid #b6d8ec;
    background: #edf8ff;
    color: #31708f;
}

.engraving-select__alert,
.engraving-select__estimate {
    border: 1px solid #ebccd1;
    background: #f2dede;
    color: #a94442;
}

.engraving-select__estimate {
    margin-top: 1.25rem;
}

.engraving-select__estimate:empty {
    display: none;
}

.engraving-select__date-form {
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
}

.engraving-select__date-field {
    cursor: pointer;
}

.engraving-select__date-input {
    width: 100%;
    min-height: 3.1rem;
    padding: 0 0.9rem;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    color: #222;
    font: inherit;
    font-size: 1.1rem;
    text-align: center;
}

.engraving-select__small {
    margin: 1rem 0 0;
    color: #555;
    line-height: 1.5;
}

.engraving-select__modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgb(0 0 0 / 45%);
}

.engraving-select__modal[hidden] {
    display: none;
}

.engraving-select__modal-card {
    position: relative;
    width: min(100%, 42rem);
    padding: 2rem;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 20%);
}

.engraving-select__modal-card h2 {
    margin: 0 0 1rem;
    color: #111;
    font-size: 1.45rem;
}

.engraving-select__modal-card p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.engraving-select__modal-close {
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 2rem;
    line-height: 1;
}

.engraving-select__modal-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.engraving-select__modal-actions button {
    width: 100%;
    min-height: 3rem;
    border: 0;
    border-radius: 4px;
    background: #0a9f5a;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.engraving-select__modal-actions .engraving-select__danger {
    background: #c91f28;
}

.engraving-workflow h1 {
    margin: 0 0 22px;
    font-size: 34px;
    text-align: center;
}

.engraving-workflow .checkout-cart__inner {
    width: min(1570px, calc(100% - 64px));
}

.engraving-workflow__content-panel {
    margin: 0 auto;
    border: 1px solid #d9dde3;
    background: #fff;
}

.engraving-workflow__panel {
    border: 1px solid #d9dde3;
    background: #fff;
}

.engraving-workflow__panel--notice {
    max-width: 1180px;
    margin: 0 auto 18px;
    padding: 18px;
    text-align: center;
}

.engraving-workflow__order {
    margin-bottom: 14px;
    text-align: left;
}

.engraving-workflow__tabs-panel {
    min-height: 130px;
    padding: 18px 104px 0;
    border-bottom: 1px solid #d9dde3;
    overflow-x: auto;
    overflow-y: hidden;
}

.engraving-workflow__tabs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    min-height: 112px;
    padding-right: 12px;
}

.engraving-workflow__tab {
    position: relative;
    display: grid;
    flex: 0 0 86px;
    gap: 4px;
    justify-items: center;
    min-height: 104px;
    padding: 10px 8px 8px;
    border: 1px solid transparent;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    color: #222;
    text-decoration: none;
    background: #fff;
}

.engraving-workflow__tab img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.engraving-workflow__tab span {
    font-size: 14px;
    line-height: 1.1;
}

.engraving-workflow__tab.is-current {
    border-color: #0076bd;
    border-bottom-color: #fff;
    color: #0076bd;
    transform: translateY(1px);
}

.engraving-workflow__tab.is-current::after {
    display: none;
    content: none;
}

.engraving-workflow__tab.is-disabled {
    opacity: .45;
}

.engraving-workflow__summary {
    padding: 14px 18px;
    border-bottom: 1px solid #d9dde3;
    text-align: center;
}

.engraving-workflow__summary p {
    margin: 0;
    font-size: 18px;
    color: #59636e;
}

.engraving-workflow__steps {
    padding: 18px;
}

.engraving-workflow__step-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 16px;
    border-bottom: 1px solid #d9dde3;
    background: #f3f3f3;
}

.engraving-workflow__step-heading span {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #fff;
    background: #c7c9cc;
    font-weight: 700;
}

.engraving-workflow__step-heading h3,
.engraving-workflow__step-link {
    margin: 0;
    color: #222;
    font-size: 18px;
    font-weight: 700;
}

.engraving-workflow__step-link {
    text-decoration: underline;
}

.engraving-workflow__step-complete {
    display: inline-flex;
    width: 1.55rem;
    height: 1.55rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0a9f5a;
    color: #fff;
    font-size: 0;
    line-height: 1;
}

.engraving-workflow__step-complete::before {
    content: "\f00c";
    font-family: "Line Awesome Free";
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
}

.engraving-workflow__step-body {
    padding: 24px 18px 18px;
}

.engraving-workflow__panel {
    margin: 0 0 18px;
    border-radius: 4px;
}

.engraving-workflow__panel.is-open {
    border-color: #d2d2d2;
}

.engraving-workflow__panel:not(.is-open) .engraving-workflow__step-heading {
    border-bottom: 0;
}

.engraving-workflow__placeholder {
    padding: 14px;
    border: 1px dashed #bdc6cf;
    background: #f8fafb;
}

.engraving-entry-form__item {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid #d9dde3;
    background: #f7f8fa;
}

.engraving-entry-form__item h4 {
    margin: 0 0 12px;
    font-size: 18px;
}

.engraving-entry-form__line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px 136px;
    gap: 0;
    align-items: center;
    margin-bottom: 8px;
    text-align: left;
}

.engraving-entry-form__line input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #c9ced6;
}

.engraving-entry-form__count {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9ced6;
    border-left: 0;
    background: #f1f2f4;
    color: #59636e;
}

.engraving-entry-form__duplicate {
    align-self: stretch;
    margin-left: 12px;
    border: 0;
    border-radius: 6px;
    background: #aaa;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.engraving-entry-form__status {
    margin-top: 16px;
    padding: 12px 14px 0;
    border-top: 1px dashed #cbd2da;
}

.engraving-entry-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 40%);
    gap: 32px;
    align-items: start;
    margin-top: 16px;
}

.engraving-entry-side {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 90px;
}

.engraving-comments {
    position: relative;
    padding: 12px;
    border: 1px solid #d9dde3;
    background: #fff;
}

.engraving-comments__header {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 8px;
}

.engraving-comments h4 {
    margin: 0;
    font-size: 18px;
}

.engraving-comments textarea {
    width: 100%;
    height: 8rem;
    min-height: 7rem;
    padding: 12px 150px 44px 12px;
    border: 1px solid #c9ced6;
    resize: vertical;
}

.engraving-comments button {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: auto;
    min-width: 82px;
    margin: 0;
    padding: 8px 14px;
    border: 1px solid #aaa;
    background: rgba(255, 255, 255, 0.94);
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.engraving-comments button.is-dirty {
    border-color: #1d75d8;
    background: #1d75d8;
    color: #fff;
}

.engraving-comments button i {
    font-size: 1rem;
    line-height: 1;
}

.engraving-comments__message {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: max-content;
    color: #176b38;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.engraving-comments__message::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.35rem;
    border-radius: 50%;
    background: #2fa45a;
}

.engraving-preview {
    display: grid;
    place-items: center;
    min-height: 320px;
    overflow: hidden;
}

.engraving-preview img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.engraving-product-preview {
    position: relative;
    width: min(100%, 560px);
    margin: 0 auto;
}

.engraving-product-preview__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.engraving-product-preview__logo,
.engraving-product-preview__plate-wrap {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.engraving-product-preview__logo {
    max-width: none !important;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.engraving-product-preview__plate-wrap {
    z-index: 3;
    display: grid;
    place-items: stretch;
    transform-origin: center;
}

.engraving-product-preview__plate-wrap .engraving-format-plate {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.engraving-product-preview__plate-image {
    display: block;
    width: 100%;
    height: 100% !important;
    max-width: none !important;
    object-fit: fill !important;
}

.engraving-preview__empty {
    padding: 24px;
    border: 1px dashed #bdc6cf;
    color: #59636e;
}

.engraving-format-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 40%);
    gap: 32px;
    align-items: start;
    margin-top: 16px;
}

.engraving-format-main {
    display: grid;
    gap: 18px;
    align-content: start;
    min-height: 440px;
}

.engraving-format-message {
    padding: 14px 18px;
    border: 1px solid #b8dff1;
    background: #d8eef8;
    color: #176385;
    text-align: center;
}

.engraving-format-workbench {
    display: grid;
    justify-items: center;
    padding: 18px 0 24px;
}

.engraving-format-large {
    position: relative;
    display: inline-grid;
    justify-items: center;
    min-width: 360px;
    padding-left: 96px;
}

.engraving-format-line-tabs {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 4;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.engraving-format-line-tab {
    position: relative;
    width: 82px;
    height: 24px;
    border: 0;
    border-radius: 4px 0 0 4px;
    background: #367dc8;
    color: #fff;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.engraving-format-line-tab::after {
    position: absolute;
    top: 0;
    right: -12px;
    content: "";
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #367dc8;
}

.engraving-format-line-tab.is-active {
    background: #1d5e9d;
}

.engraving-format-line-tab.is-active::after {
    border-left-color: #1d5e9d;
}

.engraving-format-plate {
    position: relative;
    display: inline-block;
    margin: 12px;
    overflow: visible;
    color: #000;
    text-align: center;
    text-shadow: 1px 0 1px #fff;
}

.engraving-format-plate.gold {
    background: linear-gradient(45deg, #cfbe73, #c4ae4b);
}

.engraving-format-plate.silver {
    background: linear-gradient(45deg, #d8d8d8, #9e9d9d);
}

.engraving-format-plate.bronze {
    background: linear-gradient(45deg, #c47f47, #d69e6b);
}

.engraving-format-plate.round {
    border-radius: 50%;
}

.engraving-format-plate__bg {
    position: absolute;
    inset: -15%;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.engraving-format-plate--preview {
    container-type: inline-size;
    overflow: hidden;
    text-shadow: none;
}

.engraving-format-plate--preview .engraving-format-line {
    min-width: 0;
}

.engraving-format-plate.engraving-format-plate--preview .font-xsmall {
    font-size: 5cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-small {
    font-size: 5.5cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-medium {
    font-size: 6cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-large {
    font-size: 6.5cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-xlarge {
    font-size: 7cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-xxlarge {
    font-size: 7.5cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-xxxlarge {
    font-size: 8.5cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-xxxxlarge {
    font-size: 9.5cqw;
}

.engraving-format-plate.engraving-format-plate--preview .font-xxxxxlarge {
    font-size: 10.5cqw;
}

.engraving-format-line {
    position: absolute;
    left: 50%;
    z-index: 2;
    display: inline-block;
    min-width: 16mm;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    line-height: 1.15;
    white-space: nowrap;
    text-align: center;
    transform: translateX(-50%) scaleX(var(--engraving-line-scale, 1));
    transform-origin: center;
}

.engraving-format-line.is-editable {
    cursor: pointer;
}

.engraving-format-line.size-alert .eng-txt {
    display: inline-block;
    padding: 0 4px;
    background: #f00404;
    color: #fff;
    text-decoration: underline;
}

.engraving-format-plate .font-xsmall {
    font-size: 9pt;
}

.engraving-format-plate .font-small {
    font-size: 10pt;
}

.engraving-format-plate .font-medium {
    font-size: 11pt;
}

.engraving-format-plate .font-large {
    font-size: 12pt;
}

.engraving-format-plate .font-xlarge {
    font-size: 13pt;
}

.engraving-format-plate .font-xxlarge {
    font-size: 14pt;
}

.engraving-format-plate .font-xxxlarge {
    font-size: 16pt;
}

.engraving-format-plate .font-xxxxlarge {
    font-size: 18pt;
}

.engraving-format-plate .font-xxxxxlarge {
    font-size: 20pt;
}

.engraving-format-plate.is-large .font-xsmall {
    font-size: calc(9pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-small {
    font-size: calc(10pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-medium {
    font-size: calc(11pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-large {
    font-size: calc(12pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-xlarge {
    font-size: calc(13pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-xxlarge {
    font-size: calc(14pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-xxxlarge {
    font-size: calc(16pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-xxxxlarge {
    font-size: calc(18pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.engraving-format-plate.is-large .font-xxxxxlarge {
    font-size: calc(20pt * var(--engraving-large-font-scale, var(--engraving-plate-multiplier, 1)));
}

.font-arial {
    font-family: "Engraving Arial", Arial, sans-serif;
}

.font-eurostile {
    font-family: "Engraving Eurostile", Arial, sans-serif;
}

.font-cambria {
    font-family: "Engraving Cambria", Cambria, serif;
}

.font-garamond {
    font-family: "Engraving Garamond", Garamond, serif;
}

.font-gotham {
    font-family: "Engraving Gotham", Arial, sans-serif;
}

.font-roboto {
    font-family: "Engraving Roboto Condensed", "Roboto Condensed", Arial, sans-serif;
}

.font-monotype {
    font-family: "Engraving Monotype Corsiva", cursive;
}

.font-times {
    font-family: "Engraving Times New Roman", "Times New Roman", serif;
}

.font-trajan {
    font-family: "Engraving Trajan Pro", serif;
}

.font-playball {
    font-family: "Engraving Playball", cursive;
}

.font-baskerville {
    font-family: "Engraving Baskerville Nova", Baskerville, serif;
}

.font-nunito {
    font-family: "Engraving Nunito", Arial, sans-serif;
}

.font-normal {
    font-weight: 400;
    font-style: normal;
}

.font-italic {
    font-weight: 400;
    font-style: italic;
}

.font-bold {
    font-weight: 700;
    font-style: normal;
}

.font-bold-italic {
    font-weight: 700;
    font-style: italic;
}

.engraving-format-popover {
    position: absolute;
    top: -10px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 8px;
    align-items: center;
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid #b9c3cf;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    transform: translateX(-50%);
}

.engraving-format-popover__line {
    display: none;
    align-items: center;
    gap: 4px;
    color: #1d5e9d;
    font: 700 0.9rem "Roboto Condensed", Arial, sans-serif;
    white-space: nowrap;
}

.engraving-format-popover::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    content: "";
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #fff;
    transform: translateX(-50%);
}

.engraving-format-popover select {
    min-height: 36px;
    border: 1px solid #b9c3cf;
    border-radius: 4px;
    background: #fff;
}

.engraving-format-popover__close {
    position: absolute;
    top: -11px;
    right: -11px;
    display: inline-grid;
    place-items: center;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f00404;
    color: #fff;
    font-size: 18px;
    line-height: 1;
}

.engraving-format-popover__close i {
    display: block;
    line-height: 1;
}

.engraving-format-style {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #aaa;
    border-radius: 4px;
    background: #eee;
    color: #777;
}

.engraving-format-style.is-active {
    border-color: #38aedb;
    background: #d2f2fe;
    color: #38aedb;
}

.engraving-format-samples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px 24px;
    justify-items: center;
    padding-top: 26px;
    border-top: 1px solid #e3e3e3;
}

.engraving-spell-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 40%);
    gap: 32px;
    align-items: start;
    margin-top: 16px;
}

.engraving-spell-main {
    display: grid;
    gap: 18px;
    align-content: start;
}

.engraving-spell-message {
    padding: 14px 18px;
    border: 1px solid #d9dde3;
    background: #f8fafb;
    text-align: center;
}

.engraving-spell-message p {
    margin: 0 0 8px;
}

.engraving-spell-summary {
    display: inline-block;
    margin: 8px 0 0;
    padding-left: 24px;
    text-align: left;
}

.engraving-spell-message.is-warning {
    border-color: #f0c36d;
    background: #fff8e5;
    color: #7a5300;
}

.engraving-spell-message.is-success {
    border-color: #bfe3cf;
    background: #edf9f1;
    color: #176b38;
}

.engraving-spell-editor {
    position: absolute;
    left: 50%;
    top: calc((var(--engraving-editor-line, 1) - 1) * 22px - 70px);
    z-index: 12;
    display: grid;
    gap: 6px;
    width: max-content;
    min-width: 420px;
    max-width: min(560px, calc(100vw - 48px));
    padding: 8px;
    border: 1px solid #aaa;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    text-align: left;
    transform: translateX(-50%);
}

.engraving-spell-editor[hidden] {
    display: none;
}

.engraving-spell-editor p {
    margin: 0;
}

.engraving-spell-editor strong {
    display: block;
    font-size: 13px;
}

.engraving-spell-editor::after {
    position: absolute;
    left: 50%;
    bottom: -9px;
    content: "";
    width: 0;
    height: 0;
    border-top: 9px solid #fff;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    transform: translateX(-50%);
}

.engraving-spell-plate .engraving-format-line {
    overflow: visible;
}

.engraving-spell-editor__row {
    display: flex;
    gap: 6px;
}

.engraving-spell-editor input {
    flex: 1 1 auto;
    min-height: 32px;
    min-width: 190px;
    padding: 6px 8px;
    border: 1px solid #aeb8c2;
    border-radius: 4px;
}

.engraving-spell-editor button {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #aeb8c2;
    border-radius: 4px;
    background: #fff;
}

.engraving-spell-editor button[type="submit"] {
    border-color: #059c50;
    background: #059c50;
    color: #fff;
}

.engraving-spell-editor__close {
    position: absolute;
    top: -11px;
    right: -11px;
    display: inline-grid;
    place-items: center;
    width: 22px;
    min-height: 22px !important;
    height: 22px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #f00404 !important;
    color: #fff;
}

.engraving-spell-plates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px 24px;
    justify-items: center;
    padding-top: 20px;
}

.engraving-spell-line {
    cursor: pointer;
}

.engraving-spell-line__trigger {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: inherit;
    white-space: inherit;
    cursor: pointer;
}

.engraving-spell-line__trigger:hover .eng-txt,
.engraving-spell-line__trigger:focus-visible .eng-txt {
    outline: 2px solid rgb(0 118 189 / 45%);
    outline-offset: 3px;
}

.engraving-review-page .engraving-spell-layout--readonly {
    grid-template-columns: minmax(0, 1fr) 280px;
}

.engraving-review-page__intro {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-left: 4px solid #2f80c0;
    background: #eef6fc;
    color: #2f4858;
}

.engraving-review-page__intro p {
    margin: 0;
}

.engraving-review-page__heading {
    padding-left: 0;
}

.engraving-review-page .engraving-spell-line {
    cursor: default;
}

.engraving-review-page__line-text {
    display: inline-block;
    max-width: 100%;
}

.engraving-spell-line.has-suggestions .eng-txt::after {
    margin-left: 5px;
    color: #c91f28;
    font-family: "Line Awesome Free";
    font-weight: 900;
    content: "\f304";
}

.engraving-spell-line .sug {
    border-bottom: 2px solid #f00404;
}

.engraving-spell-plate.no-format {
    display: grid;
    gap: 6px;
    width: min(100%, 320px);
    padding: 14px;
    border: 1px dashed #bdc6cf;
    background: #fff;
}

.engraving-spell-plate.no-format .no-format-line {
    display: block;
    width: 100%;
    padding: 6px;
    border: 0;
    background: transparent;
    text-align: center;
}

.engraving-comments--readonly {
    border: 1px solid #d9dee8;
    border-radius: 12px;
    background: #fff;
    padding: 18px 20px;
}

.engraving-comments--readonly h4 {
    margin: 0 0 12px;
}

.engraving-comments--readonly p {
    margin: 0;
    white-space: pre-wrap;
}

.engraving-upload-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 40%);
    gap: 32px;
    align-items: start;
    margin-top: 16px;
}

.engraving-upload-main {
    display: grid;
    gap: 16px;
    align-content: start;
    min-height: 440px;
}

.engraving-upload-info {
    padding: 12px 16px;
    border-left: 4px solid #2f80c0;
    background: #eef6fc;
    color: #2f4858;
}

.engraving-upload-info h4 {
    margin: 0 0 6px;
    font-size: 18px;
}

.engraving-upload-info__link {
    display: inline;
    margin: 0 0 0 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0a5f9c;
    font: inherit;
    text-decoration: underline;
}

.engraving-upload-info__details {
    margin-top: 8px;
}

.engraving-upload-info p {
    margin: 0;
}

.engraving-upload-info p + p {
    margin-top: 4px;
}

.engraving-upload-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.engraving-upload-slot {
    width: 132px;
    min-height: 132px;
}

.engraving-upload-slot__select,
.engraving-upload-slot__preview {
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    border: 1px solid #b9c3cf;
    border-radius: 6px;
    background: #f7f8fa;
    color: #2f4858;
    text-align: center;
    overflow: hidden;
}

.engraving-upload-slot__select {
    gap: 8px;
    padding: 12px;
    font-weight: 700;
}

.engraving-upload-slot__select i {
    font-size: 34px;
}

.engraving-upload-slot__preview {
    position: relative;
    background: #fff;
}

.engraving-upload-slot__preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.engraving-upload-slot__preview button {
    position: absolute;
    top: 6px;
    right: 6px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: #c91f28;
    color: #fff;
}

.engraving-upload-status {
    padding: 14px;
    border: 1px solid #d9dde3;
    background: #f8fafb;
}

.engraving-upload-status {
    border-color: #f0c36d;
    background: #fff8e5;
    color: #7a5300;
}

.engraving-upload-status.is-error {
    border-color: #ebccd1;
    background: #f2dede;
    color: #a94442;
}

.engraving-upload-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #d9dde3;
    background: #f1f2f4;
}

.engraving-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgb(0 0 0 / 55%);
}

.engraving-upload-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1050;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(1540px, calc(100vw - 72px));
    max-height: calc(100vh - 48px);
    transform: translate(-50%, -50%);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgb(0 0 0 / 28%);
    overflow: hidden;
}

.engraving-upload-modal__header,
.engraving-upload-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #d9dde3;
}

.engraving-upload-modal__header h3 {
    margin: 0;
    font-size: 22px;
}

.engraving-upload-modal__header button,
.engraving-upload-modal__footer button,
.engraving-upload-toolbar button {
    border: 1px solid #b9c3cf;
    border-radius: 6px;
    background: #fff;
    color: #2f4858;
}

.engraving-upload-modal__header button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
}

.engraving-upload-modal__body {
    padding: 18px;
    overflow: auto;
}

.engraving-upload-modal__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
}

.engraving-upload-modal__logos,
.engraving-upload-modal__new {
    padding: 14px;
    border: 1px solid #d9dde3;
    background: #fff;
}

.engraving-upload-modal__logos h4,
.engraving-upload-modal__new h4 {
    margin: 0 0 12px;
    font-size: 18px;
}

.engraving-upload-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    gap: 12px;
}

.engraving-upload-logo {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border: 1px solid #d9dde3;
    border-radius: 6px;
    background: #f7f8fa;
    overflow: hidden;
}

.engraving-upload-logo span {
    position: absolute;
    inset: auto 0 0;
    padding: 6px;
    background: #1f9af2;
    color: #fff;
    font-weight: 400;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity .16s ease, transform .16s ease;
}

.engraving-upload-logo:hover span,
.engraving-upload-logo:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

.engraving-upload-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.engraving-upload-file {
    display: grid;
    gap: 10px;
    place-items: center;
    min-height: 160px;
    padding: 16px;
    border: 1px dashed #9fb1c2;
    border-radius: 8px;
    background: #f8fafb;
    text-align: center;
    cursor: pointer;
}

.engraving-upload-file input {
    width: 100%;
}

.engraving-upload-file i {
    font-size: 42px;
    color: #2f80c0;
}

.engraving-upload-crop {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 40%);
    gap: 18px;
}

.engraving-upload-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.engraving-upload-toolbar button,
.engraving-upload-toolbar__colour {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #b9c3cf;
    border-radius: 6px;
    background: #2f80c0;
    color: #fff;
}

.engraving-upload-toolbar__colour {
    position: relative;
    cursor: pointer;
}

.engraving-upload-toolbar__colour.is-active {
    box-shadow: 0 0 0 2px rgb(31 154 242 / 28%);
}

.engraving-upload-toolbar__colour input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    cursor: pointer;
}

.engraving-upload-crop__stage,
.engraving-upload-crop__result {
    display: grid;
    place-items: center;
    min-height: 360px;
    border: 1px solid #d9dde3;
    background: #f7f8fa;
    overflow: hidden;
}

.engraving-upload-crop__stage {
    position: relative;
}

.engraving-upload-crop__stage .cropper-view-box,
.engraving-upload-crop__stage .cropper-face {
    border-radius: 50%;
}

.engraving-upload-crop__stage img,
.engraving-upload-crop__result img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.engraving-upload-crop__rounded-preview {
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 1px #d9dde3;
}

.engraving-upload-crop__result {
    align-content: center;
    gap: 12px;
    padding: 16px;
    text-align: center;
}

.engraving-upload-modal__footer {
    justify-content: flex-end;
    border-top: 1px solid #d9dde3;
    border-bottom: 0;
}

.engraving-upload-modal__footer button {
    padding: 10px 14px;
    font-weight: 700;
}

.engraving-upload-modal__primary {
    background: #198754 !important;
    color: #fff !important;
}

@media (max-width: 640px) {
    .engraving-select__panel {
        padding: 0.95rem 0.85rem;
    }

    .engraving-select h1 {
        margin: 1.25rem 0 0.8rem;
        font-size: 1.9rem;
        line-height: 1.1;
    }

    .engraving-select__panel h2 {
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.2;
    }

    .engraving-select__options {
        gap: 0.75rem;
    }

    .engraving-select__option {
        min-height: 3.25rem;
        border-radius: 4px;
        font-size: 0.95rem;
        line-height: 1.15;
    }

    .engraving-select__option span {
        padding: 0 3rem;
    }

    .engraving-select__option i {
        right: 0.65rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1.15rem;
    }

    .engraving-select__modal-actions {
        grid-template-columns: 1fr;
    }

    .engraving-workflow h1 {
        font-size: 28px;
    }

    .engraving-workflow .checkout-cart__inner {
        width: min(100% - 12px, 720px);
    }

    .engraving-workflow__tabs-panel {
        min-height: 112px;
        padding: 12px 12px 0;
    }

    .engraving-workflow__steps {
        padding: 8px;
    }

    .engraving-workflow__step-body {
        padding: 10px 8px 8px;
    }

    .engraving-upload-modal {
        width: min(100vw - 24px, 720px);
        max-height: calc(100vh - 24px);
    }

    .engraving-comments textarea {
        padding-right: 12px;
        padding-bottom: 52px;
    }

    .engraving-comments button {
        right: 20px;
        bottom: 20px;
    }

    .engraving-entry-form__line {
        grid-template-columns: minmax(0, 1fr) 6.6rem;
        gap: 0;
        margin-bottom: 6px;
    }

    .engraving-entry-form__item {
        margin-top: 10px;
        padding: 8px;
    }

    .engraving-entry-form__item h4 {
        margin-bottom: 8px;
        font-size: 0.95rem;
        line-height: 1.15;
    }

    .engraving-entry-form__line input {
        min-height: 2.35rem;
        padding: 0.45rem 0.55rem;
        font-size: 0.9rem;
        line-height: 1.15;
    }

    .engraving-entry-form__count {
        min-height: 2.35rem;
        border-left: 0;
        font-size: 0.78rem;
        line-height: 1.1;
        text-align: center;
    }

    .engraving-entry-form__duplicate {
        grid-column: 1 / -1;
        min-height: 2.25rem;
        margin-top: 6px;
        margin-left: 0;
        font-size: 0.78rem;
    }

    .engraving-entry-layout {
        grid-template-columns: 1fr;
    }

    .engraving-format-layout,
    .engraving-spell-layout,
    .engraving-review-page .engraving-spell-layout--readonly,
    .engraving-upload-layout,
    .engraving-upload-modal__grid,
    .engraving-upload-crop {
        grid-template-columns: 1fr;
    }

    .engraving-spell-editor {
        grid-template-columns: 1fr;
    }

    .engraving-entry-side {
        position: static;
    }

    .engraving-format-main {
        min-width: 0;
        overflow-x: clip;
    }

    .engraving-format-workbench {
        justify-items: stretch;
        overflow-x: clip;
    }

    .engraving-format-large {
        width: min(100%, calc(100vw - 3rem));
        min-width: 0;
        max-width: 100%;
        padding-left: 0;
        justify-items: center;
    }

    .engraving-format-plate.is-large {
        width: min(var(--engraving-plate-width), calc(100vw - 3rem), 100%) !important;
        height: auto !important;
        aspect-ratio: var(--engraving-plate-ratio, 2.5);
        margin-right: 0;
        margin-left: 0;
    }

    .engraving-format-line-tabs {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        width: min(100%, 30rem);
        margin-bottom: 0;
        transform: none;
    }

    .engraving-format-line-tab {
        width: auto;
        height: 2.15rem;
        border: 1px solid #b9c3cf;
        border-bottom-color: #fff;
        border-radius: 4px 4px 0 0;
        background: #fff;
        color: #1d5e9d;
        font-size: 0.82rem;
    }

    .engraving-format-line-tab::after {
        display: none;
    }

    .engraving-format-line-tab.is-active {
        border-color: #2f77c2;
        border-bottom-color: #1d5e9d;
        background: #367dc8;
        color: #fff;
    }

    .engraving-format-popover {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 3.15rem 1.85rem 1.85rem;
        gap: 4px;
        align-items: center;
        justify-content: stretch;
        justify-self: center;
        width: min(100%, 30rem);
        max-width: 100%;
        margin-top: -1px;
        margin-bottom: 12px;
        margin-right: auto;
        margin-left: auto;
        padding: 5px 1.45rem 5px 5px;
        border-radius: 0 0 4px 4px;
        transform: none;
    }

    .engraving-format-popover__line {
        display: none;
    }

    .engraving-format-popover select:first-of-type {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .engraving-format-popover select {
        min-width: 0;
        min-height: 1.9rem;
        width: 100%;
        max-width: 100%;
        padding: 0.2rem 1.15rem 0.2rem 0.32rem;
        font-size: 0.78rem;
        line-height: 1.1;
    }

    .engraving-format-popover__close {
        display: none;
    }

    .engraving-format-style {
        width: 1.85rem;
        height: 1.9rem;
        font-size: 0.82rem;
    }

    .engraving-format-popover::after {
        display: none;
    }
}

.checkout-header {
    background: #fff;
}

.checkout-header__brand {
    display: flex;
    min-height: 9rem;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.checkout-header__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font: 700 1.8rem "Roboto Condensed", Arial, sans-serif;
    text-decoration: none;
}

.checkout-header__logo img {
    width: 9.4rem;
    max-width: 42vw;
    height: auto;
}

.checkout-header__usp {
    box-shadow: none;
}

.checkout-footer {
    margin-top: 4rem;
    background: #eee;
    color: #8a8a8a;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.checkout-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    min-height: 5.25rem;
    width: min(100% - 4rem, 1400px);
    margin: 0 auto;
}

.checkout-footer__copyright {
    margin: 0;
    font-size: 1rem;
}

.checkout-footer__payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    filter: grayscale(1);
    opacity: 0.8;
}

.checkout-footer__payments img {
    max-height: 2.1rem;
    width: auto;
}

.checkout-footer__bank,
.checkout-footer__secure {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #555;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-footer__secure .las {
    font-size: 1.55rem;
}

.checkout-footer__links {
    display: flex;
    justify-content: flex-end;
    gap: 0.35rem;
    font-size: 1rem;
}

.checkout-footer__links a {
    color: #777;
    text-decoration: none;
}

.checkout-footer__links a + a::before {
    content: "";
}

.checkout-footer__links a:hover,
.checkout-footer__links a:focus {
    color: #111;
    text-decoration: underline;
}

.location-landing {
    padding: 3.5rem 0 2.5rem;
    background: #fff;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.location-landing__inner {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
}

.location-landing__content {
    color: #4f4f4f;
    font-size: 1.15rem;
    line-height: 1.55;
    text-align: center;
}

.location-landing__content h1 {
    margin: 0 0 1.2rem;
    color: #222;
    font: 400 2.3rem "Roboto Condensed", Arial, sans-serif;
}

.location-landing__copy h2,
.location-landing__copy h3 {
    margin: 1.2rem 0 0.75rem;
    color: #222;
    font-weight: 400;
}

.location-landing__copy a {
    color: inherit;
}

.location-landing__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0;
    margin-top: 2rem;
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
}

.location-landing__links a {
    color: #666;
    text-decoration: none;
}

.location-landing__links a::after {
    content: "|";
    display: inline-block;
    margin: 0 0.45rem;
    color: #bbb;
}

.location-landing__links a:last-child::after {
    content: "";
    margin: 0;
}

.location-landing__links a:hover,
.location-landing__links a:focus {
    color: #111;
    text-decoration: underline;
}

.range-location-hero {
    padding: 3rem 0 1.8rem;
    background: #fff;
    text-align: center;
}

.range-location-hero h1 {
    margin: 0 0 1rem;
    color: #222;
    font: 400 2.35rem/1.15 "Roboto Condensed", Arial, sans-serif;
}

.range-location-hero__intro,
.range-location-hero__intro p {
    margin: 0;
    color: #555;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

.range-location-links {
    display: grid;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto 2.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.range-location-links__card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    background: #fff;
    color: #222;
    text-align: center;
    text-decoration: none;
}

.range-location-links__card:hover,
.range-location-links__card:focus {
    border-color: #c8c8c8;
    color: #111;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.range-location-links__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f6f6f6;
}

.range-location-links__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.range-location-links__label {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.7rem 0.8rem;
    background: var(--site-primary);
    color: var(--site-on-primary);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.15;
}

.range-location-content {
    margin: 0 auto 3rem;
    color: #555;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    text-align: center;
}

.range-location-content h2,
.range-location-content h3 {
    margin: 1.4rem 0 0.8rem;
    color: #222;
    font-weight: 400;
}

.range-location-content ul {
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    text-align: left;
}

.range-location-content li {
    list-style: none;
}

.range-location-content__text-links {
    margin-top: 2rem;
    text-align: center;
}

.range-location-content__text-links a {
    color: #777;
    text-decoration: none;
}

.range-location-content__text-links a + a::before {
    content: "|";
    display: inline-block;
    margin: 0 0.45rem;
    color: #aaa;
}

.range-location-content__text-links a:hover,
.range-location-content__text-links a:focus {
    color: #222;
    text-decoration: underline;
}

.subcategory-landing-hero {
    padding: 3rem 0 1.8rem;
    background: #fff;
    text-align: center;
}

.subcategory-landing-hero h1 {
    margin: 0 0 1rem;
    color: #222;
    font: 400 2.35rem/1.15 "Roboto Condensed", Arial, sans-serif;
}

.subcategory-landing-hero__intro {
    max-width: 920px;
    margin: 0 auto;
}

.subcategory-landing-hero__intro,
.subcategory-landing-hero__intro p {
    color: #555;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

.subcategory-landing-hero__intro p {
    margin: 0;
}

.subcategory-landing-links {
    display: grid;
    margin: 0 auto 4rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
}

.subcategory-landing-links__card {
    display: grid;
    min-width: 0;
    min-height: 13.5rem;
    align-content: end;
    padding: 1.6rem 1rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: #222;
    text-align: center;
    text-decoration: none;
}

.subcategory-landing-links__card:hover,
.subcategory-landing-links__card:focus {
    border-color: #c8c8c8;
    color: var(--site-primary);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.subcategory-landing-links__image {
    display: grid;
    min-height: 9rem;
    place-items: center;
}

.subcategory-landing-links__image img {
    max-width: min(82%, 13rem);
    max-height: 8.75rem;
    object-fit: contain;
}

.subcategory-landing-links__label {
    display: block;
    margin-top: 0.6rem;
    color: currentColor;
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.site-search {
    --aa-detached-modal-max-height: 800px;
    margin: 0;
}

.site-search,
.site-search .aa-Autocomplete,
.site-search .aa-Autocomplete-DetachedContainer {
    width: 100%;
}

.site-search--enhanced .site-search__fallback {
    display: none;
}

.site-search .aa-Form,
.site-search__input {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(17, 17, 17, 0.3);
    border-radius: 999px;
    background: #eee;
    color: var(--site-text);
}

.site-search .aa-Form {
    background: #eee;
    box-shadow: none;
}

.site-search .aa-InputWrapperPrefix,
.site-search .aa-InputWrapperSuffix {
    color: #c9c9c9;
}

.site-search .aa-Input {
    color: var(--site-text);
    background: transparent;
}

.site-search .aa-Input::placeholder,
.site-search__input::placeholder {
    color: rgba(17, 17, 17, 0.56);
}

.site-search .aa-Form:focus-within,
.site-search__input:focus {
    outline: none;
    border-color: rgba(var(--site-primary-rgb), 0.35);
    box-shadow: 0 0 0 0.25rem rgba(var(--site-primary-rgb), 0.14);
}

.site-search .aa-Panel {
    margin-top: 0.55rem;
    border-radius: 1rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.site-search .aa-SourceHeader {
    margin-bottom: 0.5rem;
}

.site-search .aa-SourceHeaderTitle {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--site-primary);
}

.site-search .autocomplete-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--site-primary);
}

.site-search .aa-Item {
    border-radius: 0.75rem;
}

.site-search .aa-Item[aria-selected="true"] {
    background: rgba(var(--site-primary-rgb), 0.08);
}

.site-search [id$="-categorySuggestions-list"] li.aa-Item {
    border: 1px solid rgba(17, 17, 17, 0.1);
    margin: 3px;
    padding: 5px;
    width: auto;
    display: inline-grid;
    font-size: 14px;
    text-align: center;
}

.site-search [id$="-categorySuggestions-list"] li.aa-Item a {
    text-decoration: none;
}

.site-search [id$="-categorySuggestions-list"] li.aa-Item a:hover {
    text-decoration: none;
    color: var(--site-heading);
}

.site-search .aa-DetachedSearchButton {
    width: 100%;
    min-width: 100%;
    min-height: 3.25rem;
    border: 1px solid rgba(17, 17, 17, 0.3);
    border-radius: 999px;
    background: #eee;
}

.site-search .aa-DetachedSearchButtonPlaceholder {
    color: rgba(17, 17, 17, 0.56);
}

.aa-DetachedOverlay {
    background: rgba(17, 17, 17, 0.28);
}

.aa-DetachedContainer {
    width: min(calc(100vw - 2rem), 56rem);
    margin: 3.5rem auto 0;
    border-radius: 0.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

.aa-DetachedContainer .aa-DetachedFormContainer {
    padding: 0.5rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.aa-DetachedContainer .aa-Form {
    min-height: 3rem;
    border-radius: 0.35rem;
}

.aa-DetachedContainer .aa-Panel {
    position: static;
    margin: 0;
    border: 0;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: none;
    max-height: min(70vh, 42rem);
    overflow-y: auto;
}

.aa-DetachedContainer .aa-Source {
    padding: 0.35rem 0.75rem 0.75rem;
}

.aa-DetachedContainer .autocomplete-title {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--site-heading);
}

.aa-DetachedContainer .aa-Item {
    border-radius: 0.35rem;
    padding: 0.45rem 0.55rem;
}

.aa-DetachedContainer .aa-Item[aria-selected="true"] {
    background: rgba(var(--site-primary-rgb), 0.08);
}

.aa-DetachedContainer .aa-Item a {
    color: var(--site-primary);
}

.aa-DetachedContainer [id$="-categorySuggestions-list"] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.aa-DetachedContainer [id$="-categorySuggestions-list"] li.aa-Item {
    width: auto;
    border: 1px solid rgba(17, 17, 17, 0.1);
    padding: 0.35rem 0.55rem;
}

.aa-DetachedContainer .autocomplete-row {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.aa-DetachedContainer .autocomplete-row__image {
    width: 3.125rem;
    height: 3.125rem;
    object-fit: contain;
}

.aa-DetachedContainer .autocomplete-row__body {
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.search-page {
    padding: 2rem 1rem 4rem;
}

.search-page__inner {
    width: min(100%, var(--site-shell-width));
    margin: 0 auto;
}

.search-page__stats {
    color: var(--site-muted);
    font-weight: 700;
}

.search-page__box {
    margin-bottom: 1.5rem;
}

.search-page__box .ais-SearchBox-form {
    display: flex;
    min-height: 3rem;
    border: 1px solid var(--site-border);
    border-radius: 0.5rem;
    background: #fff;
}

.search-page__box .ais-SearchBox-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    padding: 0 1rem;
    font-size: 1rem;
}

.search-page__box .ais-SearchBox-submit,
.search-page__box .ais-SearchBox-reset {
    width: 3rem;
    border: 0;
    background: transparent;
}

.search-page__toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.search-page__dropdown {
    display: inline-block;
}

.filter-btn,
#sort-by select {
    min-height: 2.55rem;
    padding: 0.45rem 0.8rem;
    border: 2px solid #333;
    border-radius: 999px;
    background: #fff;
    color: var(--site-heading);
    font-weight: 700;
}

.filter-menu {
    min-width: 13rem;
    padding: 0.9rem;
    border-radius: 1rem;
}

.filter-menu--wide {
    min-width: 18rem;
}

.search-page__results {
    min-width: 0;
}

.search-page__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1rem;
    margin: 1rem auto;
    width: min(100%, 68rem);
}

#current-refinements {
    margin-bottom: 1rem;
}

#current-refinements .ais-CurrentRefinements-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
}

#current-refinements .ais-CurrentRefinements-item {
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: #eee;
    color: #000;
    font-size: 0.8rem;
}

.refinements label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 400;
}

.refinements input[type="checkbox"],
.refinements input[type="radio"] {
    width: 1.1rem;
    min-width: 1.1rem;
    height: 1.1rem;
    margin: 0;
    border: 1px solid var(--site-border);
    border-radius: 0.25rem;
    appearance: none;
}

.refinements input[type="checkbox"]:checked,
.refinements input[type="radio"]:checked {
    border-color: var(--site-primary);
    background: var(--site-primary);
    box-shadow: inset 0 0 0 0.22rem #fff;
}

.ais-RefinementList-count {
    display: inline-flex;
    margin-left: auto;
    padding: 0 0.3rem;
    border: 1px solid #b6b7d5;
    border-radius: 999px;
    background: #f5f5fa;
    color: #23263b;
    font-size: 0.75rem;
}

#hits .ais-Hits-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

#hits .ais-Hits-item {
    padding: 0;
    border: 0;
    box-shadow: none;
}

#hits .prod-rel {
    width: 100%;
    position: relative;
    padding: 0;
}

#hits .prodlist {
    position: relative;
    height: 20rem;
    margin-bottom: 0.35rem;
}

#hits .prod-hover {
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 0.65rem;
    border: 1px solid #fff;
    background: #fff;
    text-align: left;
}

#hits .prod-hover:hover {
    z-index: 99;
    border-color: #ccc;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

#hits .prodimage {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

#hits .prod-image-hover,
#hits .prod-image-onhover {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

#hits .prod-image-onhover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 1s;
}

#hits .prod-image-onhover:hover,
#hits .prod-image-onhover.simulate-hover {
    opacity: 1;
    transform: scale(1.1);
}

#hits .new-product {
    position: absolute;
    top: 1.25rem;
    left: 1px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
}

#hits .prod-hover-link {
    height: 0;
    overflow: hidden;
    text-align: center;
    transition: all 0.2s;
}

#hits .prod-hover:hover .prod-hover-link {
    height: auto;
    margin-top: 5px;
}

#hits .prod-hover-link .btn {
    width: 100%;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
}

#hits .prod-hover:hover .prod-hover-link a {
    color: #fff;
    text-decoration: none;
}

#hits .prod-list-features,
#hits .proddesc,
#hits .from-price,
#hits .family-list {
    padding-right: 0;
    padding-left: 0;
}

#hits .prod-list-features {
    display: none;
    height: 22px;
    margin-bottom: 5px;
    border-bottom: 1px solid #333;
    font-size: 12px;
    line-height: 18px;
}

#hits .size-box {
    display: inline-block;
    width: 18px;
    height: 14px;
    margin: 1px 1px 2px;
    border: 1px solid #0071bc;
    color: #0071bc;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
}

#hits .colourMedals-product {
    float: right;
}

#hits .sizes-product {
    float: left;
    height: 20px;
    padding-bottom: 1px;
}

#hits .proddesc {
    display: block;
    width: 100%;
    margin: auto;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    line-height: 16px;
}

#hits .proddesc a {
    display: block;
    color: var(--site-heading);
    font-weight: 400;
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#hits .prodlist .title {
    display: block;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#hits .from-price {
    margin-top: 0.35rem;
    color: #d43030;
    font-size: 15px;
    font-weight: 700;
}

#hits .from-price small {
    color: #000;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
}

#hits .prod-hover:hover > .from-price {
    display: none;
}

#hits .family-list {
    display: none;
    max-height: 88px;
    margin-top: 0.25rem;
    overflow-y: auto;
}

#hits .prodlist:hover .family-list {
    display: block;
}

#hits .family-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.2rem;
    color: #333;
    font-size: 12px;
    line-height: 16px;
    white-space: nowrap;
}

#hits .family-item__description {
    flex: 0 1 auto;
}

#hits .family-item .btn {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #d43030;
    font-size: 12px;
    font-weight: 700;
    line-height: inherit;
    text-transform: uppercase;
}

#hits .family-price {
    flex: 0 0 auto;
    margin-top: 0;
    margin-left: auto;
    color: #d43030;
    font-size: 13px;
    font-weight: 400;
    text-align: right;
}

@media (max-width: 767px) {
    #hits .prod-hover-link {
        display: block;
        height: auto;
        margin-top: 5px;
    }

    #hits .prodlist {
        height: 18.75rem;
        border: 1px solid #ccc;
        margin-bottom: 0.65rem;
    }

    #hits .prodlist:hover .family-list {
        display: none;
    }
}

#pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

#pagination .ais-Pagination-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0;
    list-style: none;
}

#pagination .ais-Pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    min-height: 2.25rem;
    border: 1px solid var(--site-border);
    border-radius: 0.35rem;
    color: var(--site-heading);
    text-decoration: none;
}

#pagination .ais-Pagination-item--selected .ais-Pagination-link {
    border-color: var(--site-primary);
    background: var(--site-primary);
    color: #fff;
}

.mega-menu {
    padding: 2rem var(--mega-menu-side-padding);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 32px 60px rgba(15, 23, 42, 0.08);
}

.mega-menu__grid {
    display: grid;
    width: min(100%, var(--mega-menu-max-width));
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr)) 260px;
    gap: 1.8rem;
    align-items: start;
}

.mega-menu__grid--faq {
    grid-template-columns: repeat(2, minmax(0, 1fr)) 260px;
}

.mega-menu__column,
.mega-menu__feature {
    min-width: 0;
}

.mega-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-menu__list + .mega-menu__list {
    margin-top: 1rem;
}

.mega-menu__title {
    margin: 0 0 0.45rem;
    padding-top: 0.4rem;
    border-top: 1px solid var(--site-border);
    color: var(--site-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.mega-menu__title--plain {
    border-top: 0;
    padding-top: 0;
}

.mega-menu__list li:not(.mega-menu__title) + li:not(.mega-menu__title) {
    margin-top: 0.22rem;
}

.mega-menu__list a {
    color: var(--site-text-muted);
    text-decoration: none;
    line-height: 1.2;
}

.site-header--aat .mega-menu__list a {
    color: #666666;
    font-size: 0.95rem;
}

.mega-menu__list a:hover {
    color: var(--site-link-hover);
}

.mega-menu__video,
.mega-menu__image,
.mega-menu__promo {
    overflow: hidden;
    border-radius: 1rem;
    background: var(--site-surface-muted);
}

.mega-menu__video video,
.mega-menu__image img {
    display: block;
    width: 100%;
    height: auto;
}

.mega-menu__promo {
    min-height: 15rem;
    padding: 1.4rem;
}

.mega-menu__promo-title {
    margin-bottom: 0.7rem;
    color: var(--site-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.promo-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.35s ease, width 0.25s ease, right 0.25s ease, bottom 0.25s ease, left 0.25s ease;
}

.google-trust-reviews-badge {
    z-index: 1050 !important;
    bottom: calc(var(--promo-footer-offset, 0px) + 14px) !important;
}

.exit-intent-modal {
    z-index: 1065;
}

.exit-intent-modal__dialog {
    width: min(1028px, calc(100vw - 32px));
    max-width: 1028px;
}

.exit-intent-modal__content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.exit-intent-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0 8px 0 8px;
    background: #fff;
    color: #333;
    font-size: 30px;
    line-height: 1;
}

.exit-intent-modal__image {
    display: block;
    width: 100%;
    height: auto;
}

.promo-footer.is-ready {
    transform: translateY(0);
}

.promo-footer.is-shrunk {
    right: auto;
    bottom: 10px;
    left: 10px;
    width: min(260px, calc(100vw - 20px));
}

.promo-footer__expanded {
    position: relative;
    background: transparent;
}

.promo-footer.is-shrunk .promo-footer__expanded {
    display: none;
}

.promo-footer__shrunk {
    display: none;
}

.promo-footer.is-shrunk .promo-footer__shrunk {
    display: block;
}

.promo-footer__slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background: transparent;
    line-height: 0;
}

.promo-footer__picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.promo-footer__image {
    display: block;
    width: 100%;
    height: auto;
}

.promo-footer__close {
    position: absolute;
    top: 50%;
    left: 30px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 25px;
    line-height: 1;
}

.promo-footer__notice {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    gap: 8px;
    padding: 10px 14px;
    border: 0;
    border-radius: 16px;
    background: var(--promo-footer-bg, var(--site-primary));
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.promo-footer__toggle {
    cursor: pointer;
}

.promo-footer__slides.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.mega-menu__feature .menu-card .card,
.products-target .card {
    position: relative;
    border: 0;
    border-radius: 5px;
    box-shadow: none;
    cursor: pointer;
    perspective: 1000px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 1s;
}

.mega-menu__feature .menu-card .card.flipped,
.products-target .card.flipped {
    transform: rotateY(180deg);
}

.mega-menu__feature .menu-card .card-front,
.mega-menu__feature .menu-card .card-back,
.products-target .card-front,
.products-target .card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}

.mega-menu__feature .menu-card .card-front img,
.products-target .card-front img {
    width: 100%;
    border-radius: 5px;
}

.mega-menu__feature .menu-card .card-back,
.products-target .card-back {
    transform: rotateY(180deg);
}

.mega-menu__feature .menu-card .card-back-content,
.products-target .card-back-content {
    width: 100%;
    height: 100%;
}

.mega-menu__feature .menu-card .card-back-content,
.mega-menu__feature .menu-card .card-back-content p,
.mega-menu__feature .menu-card .card-back-content a,
.mega-menu__feature .menu-card .card-back-content h3,
.mega-menu__feature .menu-card .card-back-content h4 {
    color: inherit;
}

.mega-menu__feature .menu-card .card-gold .card-front,
.mega-menu__feature .menu-card .card-gold .card-back,
.products-target .card.card-gold .card-front,
.products-target .card.card-gold .card-back {
    background: var(--promo-tile-gold-bg, url("/images/template/promo-tile-gold-bg.jpg")) 0 0 / cover;
    color: #000;
}

.mega-menu__feature .menu-card .card-silver .card-front,
.mega-menu__feature .menu-card .card-silver .card-back,
.products-target .card.card-silver .card-front,
.products-target .card.card-silver .card-back {
    background: var(--promo-tile-silver-bg, url("/images/template/promo-tile-silver-bg.jpg")) 0 0 / cover;
    color: #000;
}

.mega-menu__feature .menu-card .card-orange .card-front,
.mega-menu__feature .menu-card .card-orange .card-back,
.products-target .card.card-orange .card-front,
.products-target .card.card-orange .card-back {
    background: var(--promo-tile-orange-bg, url("/images/template/promo-tile-orange-bg.jpg")) 0 0 / cover;
    color: #fff;
}

.mega-menu__feature .menu-card .card-orange .card-back-content h3,
.mega-menu__feature .menu-card .card-orange .card-back-content h4,
.products-target .card.card-orange h3,
.products-target .card.card-orange h4 {
    color: #000;
}

.mega-menu__feature .menu-card {
    width: 100%;
    min-height: 305px;
    margin-bottom: 15px;
    perspective: 1000px;
}

.mega-menu__feature .menu-card .card {
    width: 100%;
    height: 325px;
    min-height: 305px;
    margin: 0;
    overflow: visible;
    background: transparent;
}

.mega-menu__feature .menu-card .card-front,
.mega-menu__feature .menu-card .card-back {
    display: block;
    overflow: hidden;
    text-transform: none;
}

.mega-menu__feature .menu-card .card-front img {
    display: block;
    height: 100%;
    object-fit: cover;
}

.mega-menu__feature .menu-card .card-back-content {
    margin: 0;
    padding: 10px;
}

.site-header__tagline {
    margin-bottom: 0.35rem;
    color: var(--site-heading);
    font-weight: 700;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

.site-header__top-links,
.site-header__promo-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.site-header__top-link {
    color: var(--site-text-muted);
    text-decoration: none;
}

.site-header--nt {
    background: #fff;
    border-bottom: 0;
    backdrop-filter: none;
}

.site-header--nt.is-fixed .site-header__promo-row {
    display: none;
}

.site-header--nt.is-fixed .site-header__inner--nt {
    padding-bottom: 0.9rem;
}

.site-header--nt .site-header__inner--nt {
    display: grid;
    grid-template-columns: 13.5rem minmax(18rem, 1fr) auto;
    grid-template-areas:
        "brand search icons"
        "brand nav ."
        "promo promo promo";
    column-gap: clamp(1.5rem, 3.5vw, 4.5rem);
    row-gap: 0.7rem;
    align-items: center;
    width: min(100% - 2.5rem, 1520px);
    padding: 1rem 0 1.35rem;
}

.site-brand--nt {
    grid-area: brand;
    align-self: start;
    justify-self: start;
}

.site-brand__logo--nt {
    max-width: 9.7rem;
    height: auto;
}

.site-header--nt .site-header__utility-row {
    grid-area: utility;
    align-self: start;
    justify-self: end;
}

.site-header--nt .site-header__top-links {
    gap: 0;
    flex-wrap: nowrap;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    white-space: nowrap;
}

.site-header--nt .site-header__top-link {
    color: var(--site-accent-gold);
    line-height: 1;
}

.site-header--nt .site-header__top-link + .site-header__top-link::before {
    content: "|";
    display: inline-block;
    margin: 0 0.35rem;
    color: var(--site-primary);
}

.site-header--nt .site-header__search-row {
    grid-area: search;
    align-self: start;
}

.site-header--nt .site-header__search-wrap {
    width: 100%;
}

.site-header--nt .site-header__tagline {
    margin: 0 0 0.12rem 1.1rem;
    color: var(--site-primary);
    font-size: 0.95rem;
    line-height: 1;
}

.site-header--nt .site-search,
.site-header--nt .site-search .aa-Autocomplete,
.site-header--nt .site-search .aa-Form,
.site-header--nt .site-search__input {
    width: 100%;
}

.site-header--nt .site-search .aa-Form,
.site-header--nt .site-search__input {
    height: 2.55rem;
    border: 1px solid var(--site-accent-gold);
    border-radius: 4px;
    background: #fffdf4;
}

.site-header--nt .site-search .aa-Input,
.site-header--nt .site-search__input {
    color: var(--site-primary);
    font-size: 1rem;
}

.site-header--nt .site-search .aa-Input::placeholder,
.site-header--nt .site-search__input::placeholder {
    color: transparent;
}

.site-header--nt .site-header__icons-row {
    grid-area: icons;
    align-self: end;
    justify-self: end;
}

.site-header--nt .site-header__icons {
    gap: 1.4rem;
}

.site-header--nt .site-header__icon-link {
    min-width: auto;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--site-primary);
}

.site-header--nt .site-header__icon-link .las {
    font-size: 1.85rem;
}

.site-header--nt .site-header__cart-count {
    top: -0.35rem;
    right: -0.45rem;
}

.site-header--nt .site-header__nav-row {
    grid-area: nav;
}

.site-nav--nt {
    justify-content: flex-start;
    gap: clamp(1.15rem, 2.1vw, 2.35rem);
    flex-wrap: nowrap;
}

.site-nav--nt .site-nav__item {
    position: static;
}

.site-nav--nt .site-nav__link {
    gap: 0.25rem;
    padding: 0;
    border-radius: 0;
    color: var(--site-primary);
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.site-nav--nt .site-nav__link::after {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.35rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-0.15rem) rotate(45deg);
}

.site-nav--nt .site-nav__link:hover,
.site-nav--nt .site-nav__link:focus,
.site-nav--nt .site-nav__item.is-open > .site-nav__link {
    background: transparent;
    color: var(--site-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.35rem;
}

.site-header--nt .site-nav__panel {
    top: 7.85rem;
    right: 0;
    left: 0;
    width: auto;
    min-width: 0;
    margin-left: 0;
    transform: translateY(0.75rem);
}

.site-header--nt .site-nav__panel::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 1.7rem;
}

.site-header--nt .site-nav__item.is-open > .site-nav__panel,
.site-header--nt .site-nav__item:focus-within > .site-nav__panel {
    transform: translateY(0);
}

.site-header--nt.is-fixed .site-nav__panel {
    top: 6.35rem;
}

.site-header--nt .site-header__promo-row {
    grid-area: promo;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 5rem);
    align-items: center;
    justify-items: stretch;
    margin-top: 1.15rem;
}

.site-header--nt .site-header__promo-item {
    display: block;
    min-width: 0;
}

.site-header__promo-image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
}

.site-header__promo-image--slim {
    display: none;
}

.site-header__promo-item {
    display: flex;
    align-items: center;
    color: var(--site-primary);
    text-decoration: none;
}

.site-header__promo-item:hover,
.site-header__promo-item:focus {
    color: var(--site-primary);
    text-decoration: none;
}

.site-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.9rem;
    color: var(--site-text-muted);
}

.site-meta__item strong {
    color: var(--site-heading);
}

.site-main {
    padding: 2rem 0 4rem;
}

.site-main:has(> main > .home-features:first-child) {
    padding-top: 0;
}

.site-main .card,
.site-main .alert,
.site-main .border.rounded,
.site-main .legacy-product-tiles {
    border-radius: var(--shell-radius);
}

.site-main .card {
    border-color: var(--site-border);
    box-shadow: var(--shell-shadow);
}

.site-main .products-target .card {
    box-shadow: none;
}

.site-main .badge.text-bg-secondary {
    background-color: var(--site-primary) !important;
    color: var(--site-on-primary) !important;
}

.site-main .btn-primary {
    background-color: var(--site-primary);
    border-color: var(--site-primary);
}

.site-main .btn-primary:hover,
.site-main .btn-primary:focus {
    background-color: var(--site-link-hover);
    border-color: var(--site-link-hover);
}

.site-main .form-select:focus,
.site-main .form-control:focus,
.site-main .btn:focus {
    border-color: rgba(var(--site-primary-rgb), 0.35);
    box-shadow: 0 0 0 0.25rem rgba(var(--site-primary-rgb), 0.16);
}

.legacy-product-tiles {
    padding: 0;
}

.catalog-product-list {
    color: #5a5a5a;
}

.catalog-product-list h2,
.catalog-product-list h3,
.catalog-product-list h4,
.catalog-product-list h5 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
}

.catalog-breadcrumb {
    margin-bottom: 0.5rem;
    color: #222;
    font-size: 12px;
}

.catalog-breadcrumb a {
    color: #222;
    text-decoration: none;
}

.catalog-breadcrumb span {
    margin: 0 0.25rem;
}

.prod-list-heading {
    margin-top: -10px;
}

.prod-list-heading h1,
.prod-list-heading h2 {
    margin-top: 0;
    color: #111;
    font-weight: 400;
}

.prod-list-heading h1 {
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    line-height: var(--page-h1-line-height);
}

.prod-list-heading h2 {
    font-size: var(--page-h2-size);
}

.prod-list-display-panel {
    display: flex;
    flex-wrap: wrap;
}

.flexme {
    display: flex;
    flex-direction: column;
}

.product-list-mobile-btns {
    display: none;
    margin-bottom: 15px;
}

.btn-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid #ccc;
    border-radius: 16px;
    background: #fff;
}

.btn-filter .las {
    font-size: 1.2em;
    line-height: 1;
}

.filter-panel-slide {
    position: sticky;
    top: 120px;
}

.product-list-sort,
.product-list-filter {
    margin-bottom: 1rem;
}

.product-list-filter label,
.product-list-sort label {
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.filter-track .products-filter,
.filter-track .order-select {
    max-width: 150px;
    height: auto;
    margin-bottom: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 1px;
    padding-right: 2rem;
    border: 0;
    box-shadow: none;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M1.4 0 6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.35rem center;
    background-size: 10px 7px;
    font-weight: 400;
}

.filter-panel-slide a:hover {
    color: #111;
    font-weight: 700;
    text-decoration: underline;
}

.result-filter-btn {
    display: inline-block;
    margin: 4px;
    padding: 8px 12px;
    border-radius: 17px;
    background: #eee;
    color: #5a5a5a;
    font-size: 12px;
    text-decoration: none;
}

.result-filter-btn:hover {
    text-decoration: none;
}

.prod-list-related {
    display: block;
    margin-top: 1.8rem;
}

.prod-list-related a {
    color: #555;
    text-decoration: none;
}

.prod-list-related a:hover,
.prod-list-related a:focus {
    color: #111;
    text-decoration: underline;
}

.product-panel {
    border: 0;
    border-right-color: #fff;
    border-left-color: #fff;
}

.products-target {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.products-target .col-lg-25,
.products-target .col-md-2,
.products-target .col-md-25,
.products-target .col-sm-25,
.products-target .col-sm-4,
.products-target .col-xs-25,
.products-target .col-xs-6 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.products-target .col-xs-6 {
    width: 50%;
}

.products-target .img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.products-target .prod-rel {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}

.products-target .prodlist {
    position: relative;
    height: 320px;
    margin-bottom: 5px;
    border-bottom: 0;
}

.products-target .product-skeleton-tile {
    margin-bottom: 10px;
}

.products-target .product-skeleton-card {
    height: 320px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    background: #fff;
    text-align: left;
}

.products-target .product-skeleton-image,
.products-target .product-skeleton-button,
.products-target .product-skeleton-line,
.products-target .product-skeleton-sizes span {
    position: relative;
    overflow: hidden;
    background: #eeeeee;
}

.products-target .product-skeleton-image::after,
.products-target .product-skeleton-button::after,
.products-target .product-skeleton-line::after,
.products-target .product-skeleton-sizes span::after {
    position: absolute;
    inset: 0;
    content: "";
    transform: translateX(-100%);
    animation: product-skeleton-shimmer 1.25s infinite;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
}

.products-target .product-skeleton-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 8px;
}

.products-target .product-skeleton-button {
    width: 100%;
    height: 34px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.products-target .product-skeleton-sizes {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.products-target .product-skeleton-sizes span {
    width: 20px;
    height: 16px;
    border: 1px solid #d7e8fb;
}

.products-target .product-skeleton-line {
    height: 14px;
    margin-bottom: 8px;
    border-radius: 2px;
}

.products-target .product-skeleton-title {
    width: 78%;
}

.products-target .product-skeleton-price {
    width: 45%;
}

@keyframes product-skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}

.products-target .prod-hover {
    position: absolute;
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #fff;
    text-align: left;
}

.products-target .prod-hover:hover {
    z-index: 98;
    border-color: #e9e9e9;
}

.products-target .prodlist:hover a {
    color: var(--site-primary);
    text-decoration: none;
}

.products-target .prod-hover:hover .prod-hover-link a,
.products-target .prod-hover-link a:hover,
.products-target .prod-hover-link .btn:hover,
.products-target .prod-hover-link .btn:focus {
    color: #fff;
}

.products-target .prodimage {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 0;
    overflow: hidden;
}

.products-target .prodimage.grey {
    background: #e9e9e9;
}

.products-target .prodimage img,
.products-target .prod-image-hover,
.products-target .prod-image-onhover {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    border: 0;
}

.products-target .prod-image-onhover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.products-target .prod-image-onhover:hover,
.products-target .prodimage:hover .prod-image-onhover,
.products-target .prod-image-onhover.simulate-hover {
    opacity: 1;
    transform: scale(1.1);
}

.products-target .new-product {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 1px;
    padding: 4px 10px;
    background: #fff;
    color: #333;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 14px;
}

.products-target .prod-hover-link {
    height: 0;
    overflow: hidden;
    text-align: center;
    transition: 0.2s;
}

.products-target .prod-hover:hover .prod-hover-link {
    height: auto;
    margin-top: 5px;
}

.products-target .prod-hover-link .btn {
    width: 100%;
    min-height: 0;
    padding: 5px 10px;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 3px;
}

.products-target .prod-list-features {
    display: block;
    height: 22px;
    margin-bottom: 5px;
    border-bottom: 0;
    font-size: 12px;
    line-height: 18px;
}

.products-target .sizes-product {
    float: left;
    height: 20px;
    padding-bottom: 1px;
}

.products-target .colourMedals-product {
    float: right;
}

.products-target .colourprint-product {
    float: right;
}

.products-target .colourprint-product img {
    max-height: 20px;
}

.products-target .colourprint-product-hover {
    display: none;
}

.products-target .prodlist:hover .colourprint-product-hover {
    display: inline-block;
}

.products-target .size-box,
.products-target .mbox {
    display: inline-block;
    min-width: 18px;
    height: 14px;
    margin: 1px 1px 2px;
    border: 1px solid var(--site-accent-blue);
    color: var(--site-accent-blue);
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
    text-align: center;
}

.products-target .mbox.gold {
    border-color: var(--site-accent-gold);
    color: #7c6c19;
}

.products-target .mbox.silver {
    border-color: var(--site-accent-silver);
    color: #777;
}

.products-target .mbox.bronze {
    border-color: var(--site-accent-bronze);
    color: #9b5724;
}

.products-target .proddesc {
    display: inline-block;
    max-width: 100%;
    margin: auto;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 15px;
}

.products-target .proddesc a,
.products-target .prodlist a {
    text-decoration: none;
}

.products-target .prodlist .title {
    display: block;
    max-width: 100%;
    overflow: hidden;
    color: #111;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-target .prodlist .from-price {
    color: var(--site-primary);
    font-size: 15px;
    font-weight: 400;
}

.products-target .prodlist .from-price small {
    color: #111;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0;
}

.products-target .prodlist:hover > .from-price,
.products-target .prodlist:hover .prod-hover > .from-price {
    display: none;
}

.products-target .prodlist:hover .prod-list-features {
    display: none;
}

.products-target .family-list {
    display: none;
    max-height: 88px;
    overflow-y: auto;
}

.products-target .prodlist:hover .family-list {
    display: block;
}

.products-target .family-item {
    float: left;
    width: 100%;
    color: #333;
    font-size: 0.9em;
}

.products-target .family-item .from-price {
    float: right;
}

.products-target .menu-card {
    min-height: 305px;
    margin-bottom: 15px;
}

.products-target .card {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    min-height: 305px;
    margin: 10px;
}

.products-target .card-front,
.products-target .card-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-target .card-back-content {
    margin: 10px;
    padding: 20px 10px 0;
}

.products-target .card.card-gold h3,
.products-target .card.card-gold h4,
.products-target .card.card-gold p,
.products-target .card.card-silver h3,
.products-target .card.card-silver h4,
.products-target .card.card-silver p {
    color: #000;
}

.products-target .card.card-orange p {
    color: #fff;
}

.more-products .result-count {
    color: #5a5a5a;
}

.catalog-supporting-content {
    clear: both;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .products-target .col-sm-4 {
        width: 33.333333%;
    }

    .products-target .col-sm-25 {
        width: 20%;
    }
}

@media (min-width: 992px) {
    .products-target .col-md-3 {
        width: 25%;
    }

    .products-target .col-md-25 {
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .products-target .col-lg-25 {
        width: 20%;
    }
}

@media (max-width: 991px) {
    .btn {
        --bs-btn-border-radius: 4px;
    }

    .product-list-filter,
    .product-list-sort {
        display: none;
        width: 100%;
        margin: 15px 0;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 15px;
    }

    .product-list-filter.is-open,
    .product-list-sort.is-open {
        display: block;
    }

    .product-list-filter label,
    .product-list-sort label {
        width: 100%;
        text-align: center;
    }

    .products-filter {
        display: inline-block;
        width: 140px;
    }

    .filter-track .products-filter,
    .filter-track .order-select {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }

    .visible-xs {
        display: block !important;
    }

    .google-trust-reviews-badge {
        right: 12px !important;
        bottom: calc(var(--promo-footer-offset, 0px) + 10px) !important;
    }

    .promo-footer__close {
        top: auto;
        bottom: 7px;
        left: 7px;
        width: 36px;
        height: 36px;
        transform: none;
        font-size: 22px;
    }

    .promo-footer.is-shrunk {
        width: min(220px, calc(100vw - 20px));
    }

    .promo-footer__notice {
        min-height: 40px;
        padding: 8px 12px;
        border-radius: 14px;
        font-size: 15px;
    }

    .catalog-breadcrumb {
        display: none;
    }

    .product-list-mobile-btns {
        display: block;
    }

    .product-list-mobile-btns .btn-filter {
        min-height: 40px;
        padding: 0.45rem 1rem;
        border-radius: 999px;
        font-size: 0.95rem;
        line-height: 1;
    }

    .product-list-mobile-btns .btn-filter .las {
        font-size: 1rem;
    }

    .filter-bar-mobile {
        margin-bottom: 5px;
        padding-top: 5px;
        border: 1px solid #e9e9e9;
        background: #fff;
    }

    .products-target .prod-hover-link {
        display: block;
        height: auto;
        margin-top: 3px;
        margin-bottom: 4px;
    }

    .products-target .prod-hover-link .btn-success {
        min-height: 0;
        padding: 0.25rem 0.35rem;
        border-color: #5a5a5a;
        border-radius: 4px;
        background: #5a5a5a;
        font-size: 0.78rem;
        line-height: 1.25;
        white-space: nowrap;
    }

    .products-target .prod-list-features {
        display: block;
        height: 16px;
        margin: 0 0 3px;
        border-bottom: 0;
        overflow: hidden;
        line-height: 1;
    }

    .products-target .sizes-product {
        display: block;
        float: none;
        text-align: left;
    }

    .products-target .size-box,
    .products-target .mbox {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 15px;
        min-width: 18px;
        margin: 0 1px 1px;
        line-height: 1;
        vertical-align: top;
    }

    .products-target .prodlist {
        height: 250px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
    }

    .products-target .card {
        width: 100%;
        height: 250px;
        min-height: 250px;
        margin: 0 0 10px;
        border-radius: var(--panel-radius-tight);
        overflow: visible;
    }

    .products-target .card-front,
    .products-target .card-back {
        border-radius: var(--panel-radius-tight);
        overflow: hidden;
    }

    .products-target .card-front img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .products-target .card-back-content {
        margin: 0;
        padding: 0.75rem 0.65rem;
        font-size: 0.72rem;
        line-height: 1.12;
    }

    .products-target .card-back-content h3,
    .products-target .card-back-content h4 {
        margin: 0 0 0.35rem;
        font-size: 1.05rem;
        line-height: 1.05;
    }

    .products-target .card-back-content p {
        margin: 0 0 0.45rem;
        font-size: 0.72rem;
        line-height: 1.15;
    }

    .products-target .card-back-content a {
        font-size: 0.72rem;
        line-height: 1.1;
    }

    .products-target .prodlist .title {
        font-size: 12px;
        line-height: 14px;
    }

    .products-target .proddesc {
        display: block;
        line-height: 13px;
    }

    .products-target .prodlist .from-price {
        margin-top: 0;
        font-size: 14px;
        line-height: 1.1;
    }

    .products-target .prod-hover {
        padding-bottom: 2px;
    }

    .products-target .prodlist:hover .family-list {
        display: none;
    }
}

.site-footer {
    margin-top: auto;
    color: var(--site-footer-text);
    font-family: "Roboto Condensed", sans-serif;
    background: var(--site-footer-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer__inner {
    display: block;
    padding: 2.25rem 0 1.4rem;
}

.site-footer h2,
.site-footer h3 {
    margin: 0;
    color: var(--site-footer-heading);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.site-footer h2 {
    margin-bottom: 1.2rem;
    font-size: var(--page-h2-size);
}

.site-footer h3 {
    margin-bottom: 0.55rem;
    font-size: 1.35rem;
}

.site-footer a {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--site-heading);
    text-decoration: underline;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 0.28rem 0;
    font-size: 1.08rem;
    line-height: 1.25;
}

.site-footer__service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(18rem, 1.7fr) minmax(18rem, 1.7fr);
    gap: 2rem;
}

.site-footer__section {
    min-width: 0;
}

.site-footer__section--desktop {
    color: #c2c6ca;
}

.site-footer__section--desktop h3 {
    color: #c2c6ca;
}

.site-footer__section--desktop a:hover {
    color: #969ca3;
}

.site-footer__split-list {
    columns: 2 10rem;
    column-gap: 2rem;
}

.site-footer__split-list li {
    break-inside: avoid;
}

.site-recognition {
    margin-top: 2.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-recognition__grid {
    display: grid;
    grid-template-columns: minmax(12rem, 0.9fr) minmax(0, 3fr);
    align-items: start;
    gap: 2rem;
}

.site-recognition__media,
.site-footer__video {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    background: #111;
}

.custom-product-pricing {
    margin: 2rem 0;
}

.custom-product-pricing__table-wrap {
    overflow-x: auto;
}

.custom-product-pricing table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.custom-product-pricing th,
.custom-product-pricing td {
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--site-border-strong);
    text-align: center;
}

.custom-product-pricing thead th {
    background: var(--site-surface-muted);
    color: var(--site-heading);
    font-weight: 700;
}

.custom-product-note {
    margin: 0.55rem 0 1.2rem;
    color: var(--site-text-muted);
    font-size: 0.9rem;
}

.custom-product-ribbon-colours {
    margin: 2rem 0;
    text-align: center;
}

.custom-product-colour-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0 2rem;
}

.custom-product-colour {
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    width: 5.5rem;
    margin: 0;
    color: var(--site-heading);
    font-weight: 700;
    text-align: center;
}

.custom-product-colour span {
    display: block;
    width: 4.25rem;
    height: 4.25rem;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    transition: transform 0.2s ease;
}

.custom-product-colour span:hover {
    transform: scale(1.08);
}

.custom-product-page {
    width: min(calc(100% - 2rem), var(--shell-max-width));
    max-width: none;
    margin: 0 auto;
    padding: 1.25rem 1rem 2.5rem;
}

.custom-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--site-text-muted);
    font-size: 0.9rem;
}

.custom-product-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.custom-product-breadcrumb a:hover {
    color: var(--site-heading);
    text-decoration: underline;
}

.custom-product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 1.25rem;
    border-bottom: 1px solid var(--site-border);
}

.custom-product-tabs a {
    padding: 0.7rem 0.95rem;
    color: var(--site-text);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    border-bottom: 0;
    border-radius: var(--panel-radius-tight) var(--panel-radius-tight) 0 0;
}

.custom-product-tabs a.is-active {
    color: var(--site-link);
    background: #fff;
    border-color: var(--site-border);
}

.custom-product-thanks {
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem;
    border: 1px solid #8ed39d;
    border-radius: var(--panel-radius-tight);
    background: #f1fbf3;
}

.custom-product-thanks h2,
.custom-product-thanks p {
    margin: 0;
}

.custom-product-thanks h2 {
    margin-bottom: 0.35rem;
}

.custom-ribbon-product {
    margin-bottom: 2rem;
    padding-top: clamp(1.5rem, 3vw, 3rem);
}

.custom-ribbon-product__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(28rem, 0.75fr);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
}

.custom-ribbon-product__media {
    overflow: hidden;
    background: transparent;
}

.custom-ribbon-product__media img {
    display: block;
    width: 100%;
    max-height: 48rem;
    object-fit: contain;
}

.custom-ribbon-product__summary {
    display: grid;
    align-content: start;
    justify-self: end;
    width: min(100%, 28rem);
    padding: 0;
    background: transparent;
}

.custom-ribbon-product__head {
    margin-bottom: 1rem;
}

.custom-ribbon-product__head h1 {
    margin: 0 0 0.45rem;
    color: var(--site-heading);
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    line-height: 1.05;
}

.custom-ribbon-product__head p:last-child {
    margin: 0;
    color: var(--site-text-muted);
}

.custom-product-eyebrow {
    margin: 0 0 0.35rem;
    color: var(--site-link);
    font-weight: 700;
    text-transform: uppercase;
}

.custom-ribbon-prices {
    margin: 1.6rem 0 1rem;
    padding: 0.85rem 0;
    font-size: 0.8rem;
}

.custom-ribbon-prices p {
    color: var(--site-text-muted);
}

.custom-ribbon-prices .bulk-price-head {
    font-size: 0.88rem;
}

.custom-ribbon-prices .bulk-price-head small {
    color: var(--site-text);
    font-size: 0.8rem;
}

.custom-ribbon-prices .bulk-price-table {
    width: 100%;
    table-layout: auto;
}

.custom-ribbon-prices__label {
    display: block;
    margin: 0.7rem 0 0.2rem;
    color: var(--site-heading);
    font-size: 0.82rem;
    font-weight: 700;
}

.custom-ribbon-prices .bulk-price-table td {
    padding: 0.12rem 0.55rem 0.12rem 0;
    color: var(--site-heading);
    font-weight: 400;
    white-space: nowrap;
}

.custom-ribbon-prices .bulk-price-table .custom-ribbon-prices__tier {
    width: 1%;
    padding-right: 0.25rem;
    color: var(--site-link);
    font-weight: 400;
}

.custom-ribbon-prices p {
    margin: 0.65rem 0 0;
    font-size: 0.86rem;
    line-height: 1.3;
}

.custom-ribbon-product__summary form,
.custom-ribbon-contact {
    display: grid;
    gap: 0.55rem;
}

.custom-product-quote-intro {
    display: grid;
    gap: 0.2rem;
    margin: 0.2rem 0 0.35rem;
}

.custom-product-quote-intro h2,
.custom-product-quote-intro p {
    margin: 0;
}

.custom-product-quote-intro h2 {
    color: var(--site-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.custom-product-quote-intro p {
    color: var(--site-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.custom-ribbon-product__summary label {
    margin: 0.2rem 0 -0.25rem;
    color: var(--site-heading);
    font-weight: 700;
}

.custom-ribbon-product__summary input,
.custom-ribbon-product__summary textarea {
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: 1px solid #bdbdbd;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: var(--site-text);
}

.custom-ribbon-product__summary textarea {
    resize: vertical;
}

.custom-ribbon-product__summary [data-valmsg-for] {
    color: #c81f1f;
    font-size: 0.85rem;
}

.custom-ribbon-selectors {
    display: grid;
    gap: 0.55rem;
}

.custom-ribbon-selector-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(9.75rem, 10.5rem);
    gap: 1rem;
    align-items: center;
}

.custom-ribbon-selector-row > span:first-child {
    color: var(--site-heading);
}

.custom-ribbon-selector-row [data-valmsg-for] {
    grid-column: 2;
}

.custom-ribbon-selector {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 2.7rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid #bdbdbd;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: var(--site-text);
    text-align: left;
}

.custom-ribbon-selector:hover,
.custom-ribbon-selector:focus-visible {
    border-color: var(--site-link);
}

.custom-ribbon-selector strong {
    color: var(--site-heading);
    font-weight: 400;
    line-height: 1.15;
}

.custom-ribbon-promises {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.45rem;
}

.custom-ribbon-promises div {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    color: var(--site-heading);
    font-weight: 400;
}

.custom-ribbon-promises i {
    color: #15803d;
    font-size: 1.25rem;
}

.custom-ribbon-dialog {
    width: min(46rem, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid var(--site-border-strong);
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: var(--site-text);
}

.custom-ribbon-dialog::backdrop {
    background: rgba(0, 0, 0, 0.45);
}

.custom-ribbon-dialog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.45rem;
}

.custom-ribbon-dialog__head h2,
.custom-ribbon-dialog p {
    margin: 0;
}

.custom-ribbon-dialog__head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background: var(--site-surface-muted);
    color: var(--site-heading);
}

.custom-ribbon-dialog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.custom-ribbon-dialog__grid button {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.45rem;
    border: 1px solid var(--site-border);
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: var(--site-heading);
    text-align: center;
}

.custom-ribbon-dialog__grid button:hover,
.custom-ribbon-dialog__grid button:focus-visible,
.custom-ribbon-dialog__grid button.is-selected {
    border-color: var(--site-link);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.14);
}

.custom-ribbon-dialog__grid span {
    width: 4rem;
    height: 4rem;
    border: 1px solid var(--site-border);
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}

.custom-ribbon-dialog__grid strong {
    font-size: 0.9rem;
    line-height: 1.15;
}

.custom-ribbon-content {
    width: 100%;
    max-width: none;
    margin: 0;
}

.custom-ribbon-content h2 {
    color: var(--site-heading);
}

@media (max-width: 991.98px) {
    .custom-ribbon-product__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .custom-ribbon-product__media img {
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .custom-ribbon-product__summary {
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .custom-product-page {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .custom-ribbon-selector {
        justify-content: flex-start;
    }

    .custom-ribbon-selector-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .custom-ribbon-selector-row [data-valmsg-for] {
        grid-column: 1;
    }
}

.site-recognition__video,
.site-footer__video-player {
    display: block;
    width: 100%;
    max-width: 100%;
}

.site-recognition__unmute,
.site-footer__video-unmute {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-recognition__unmute img,
.site-footer__video-unmute img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-recognition__unmute.is-hidden,
.site-footer__video-unmute.is-hidden {
    display: none;
}

.site-recognition__copy {
    padding-top: 0;
}

.site-recognition__copy p {
    margin: 0 0 0.8rem;
    font-family: "Roboto Condensed", sans-serif;
}

.site-recognition__copy p:last-child {
    margin-bottom: 0;
}

.site-recognition__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 10rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--site-accent-gold);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0;
}

.site-recognition__mark span {
    display: block;
    transform: translateY(-0.12em);
}

.site-footer__bottom {
    display: grid;
    grid-template-columns: minmax(13.5rem, 14.5rem) minmax(0, 1fr);
    align-items: start;
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.site-footer__details {
    display: grid;
    gap: 0.75rem;
    margin-top: 0;
}

.site-footer__detail-row {
    display: grid;
    grid-template-columns: 6rem minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.site-footer__detail-row h3 {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.site-footer__inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.site-footer__social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-footer__social-icons img {
    width: 2.1rem;
    height: 2.1rem;
}

.site-footer__social-icons--nt {
    margin-bottom: 0.8rem;
}

.site-footer__payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
}

.site-footer__payment-icons img {
    width: auto;
    max-width: 4.2rem;
    max-height: 2rem;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.55rem;
    font-size: 0.9rem;
}

.site-footer__legal-separator {
    color: #a3a9af;
}

.site-footer--nt {
    color: #fff;
    border-top: 7px solid var(--site-accent-gold);
    background: var(--site-primary);
}

.site-footer--nt a:hover {
    color: var(--site-accent-gold);
}

.site-footer__inner--nt {
    display: grid;
    grid-template-columns: minmax(13rem, 0.9fr) minmax(0, 6.2fr);
    gap: 0;
    width: min(100% - 2rem, 1540px);
    padding: 0;
}

.site-footer__nt-highlight {
    display: grid;
    align-content: start;
    gap: 1.55rem;
    padding: 1.8rem 1.55rem 2.2rem;
    background: var(--site-accent-gold);
    color: var(--site-primary);
}

.site-footer--nt .site-footer__nt-highlight h3 {
    color: var(--site-primary);
}

.site-footer__nt-highlight a {
    color: #fff;
}

.site-footer__nt-highlight a:hover {
    color: var(--site-primary);
}

.site-footer__nt-highlight li {
    color: #fff;
}

.site-footer__nt-logo {
    width: min(100%, 9.6rem);
    margin-top: 0.5rem;
    justify-self: center;
}

.site-footer__nt-main {
    display: grid;
    grid-template-columns: minmax(10rem, 0.85fr) minmax(18rem, 1.35fr) minmax(18rem, 1.35fr);
    gap: clamp(1.8rem, 3.3vw, 4rem);
    padding: 1.8rem 1.4rem 1.6rem;
    background: var(--site-primary);
}

.site-footer--nt .site-footer__nt-main .site-footer__section h3 {
    color: var(--site-accent-gold);
}

.site-footer--nt .site-footer__section--desktop {
    color: #fff;
}

.site-footer--nt li {
    font-size: 1rem;
    line-height: 1.18;
}

.site-footer--nt .site-footer__section--desktop a:hover {
    color: var(--site-accent-gold);
}

.site-footer__nt-bottom {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 1.3fr) minmax(0, 1fr);
    align-items: center;
    gap: 1.25rem;
    padding-top: 2.1rem;
    text-align: center;
}

.site-footer__nt-bottom img {
    max-width: 100%;
    justify-self: center;
}

.site-footer__nt-bottom small {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    color: #fff;
}

.site-footer__nt-bottom a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.16rem;
}

.product-detail {
    background: #fff;
    color: var(--site-text);
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.product-detail__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(28rem, 0.85fr);
    gap: clamp(2rem, 4vw, 5rem);
    width: min(calc(100% - 2rem), var(--shell-max-width));
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 3rem) 0;
    align-items: start;
}

.product-detail__media,
.product-detail__summary {
    min-width: 0;
}

.product-detail__summary {
    position: relative;
    display: grid;
    align-content: start;
    width: min(100%, 28rem);
    justify-self: end;
}

.product-gallery {
    display: grid;
    grid-template-columns: 5.25rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.product-gallery__stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(26rem, 46vw, 48rem);
    background: #fff;
}

.product-gallery__image,
.product-gallery__video {
    display: block;
    width: 100%;
    max-height: clamp(26rem, 46vw, 48rem);
    object-fit: contain;
}

.product-gallery__video-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0.25rem;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.16s ease, background 0.16s ease;
}

.product-gallery__stage:hover .product-gallery__video-toggle,
.product-gallery__video-toggle:focus-visible {
    opacity: 1;
}

.product-gallery__video-toggle:hover,
.product-gallery__video-toggle:focus {
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
}

.product-gallery__video-toggle[hidden] {
    display: none;
}

.product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.65rem;
    order: -1;
}

.product-gallery__thumb {
    position: relative;
    display: grid;
    place-items: center;
    width: 5.25rem;
    height: 5.25rem;
    padding: 0.25rem;
    border: 1px solid #d8d8d8;
    background: #fff;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery__thumb .las {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.64);
    color: #fff;
    font-size: 1.25rem;
}

.product-gallery__thumb.is-active {
    border-color: #111;
}

.product-detail__sku {
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 1.05rem;
}

.product-detail__sku strong {
    color: #222;
}

.product-detail__summary-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: start;
}

.product-detail h1 {
    margin: 0;
    color: #111;
    font-size: clamp(1.65rem, 2vw, 2.05rem);
    font-weight: 400;
    line-height: 1.15;
}

.product-detail__category {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.35rem;
    margin-bottom: 0;
    color: #777;
    font-size: 1rem;
}

.product-detail__category a,
.product-detail__category span {
    color: inherit;
    text-decoration: none;
}

.product-detail__price {
    display: grid;
    gap: 0.2rem;
    justify-items: end;
    color: #555;
    text-align: right;
}

.product-detail__price small {
    color: #555;
    font-size: 1rem;
}

.product-detail__price span {
    color: #555;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1;
}

.product-detail__alert {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e2b5b5;
    background: #fff4f4;
    color: #a01818;
}

.product-detail__promises {
    display: grid;
    gap: 0.55rem;
    margin: 1.55rem 0 1.5rem;
}

.product-detail__promise {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #222;
    font-size: 1.05rem;
}

.product-detail__promise .las {
    flex: 0 0 1.1rem;
    color: #4f8a34;
    font-size: 1.1rem;
}

.product-detail__chooser {
    margin-top: 1.35rem;
}

.product-detail__chooser h2,
.product-detail__field label {
    margin: 0;
    color: #222;
    font-size: 1rem;
    font-weight: 400;
}

.product-detail__family,
.product-detail__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-detail__field--family .product-detail__family {
    justify-content: flex-end;
}

.product-detail__family-item,
.product-detail__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    min-height: 2.2rem;
    padding: 0.25rem 0.45rem;
    border: 1px solid #cfcfcf;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: #222;
    font: inherit;
    line-height: 1.05;
    text-align: center;
    text-decoration: none;
}

.product-detail__family-item {
    flex-direction: column;
}

.product-detail__family-item span,
.product-detail__option span {
    font-size: 0.9rem;
}

.product-detail__family-item small,
.product-detail__option small {
    margin-top: 0.15rem;
    color: #777;
    font-size: 0.7rem;
}

.product-detail__family-item.is-current,
.product-detail__option.is-current,
.product-detail__option:focus-visible {
    border-color: #111;
    box-shadow: inset 0 0 0 1px #111;
}

.product-detail__family-item.is-out,
.product-detail__option.is-out {
    opacity: 0.45;
}

.product-detail__family-item.gold {
    background: #f8edbd;
}

.product-detail__family-item.silver {
    background: #f0f0f0;
}

.product-detail__family-item.bronze {
    background: #f0d2bd;
}

.product-detail__family-item.black {
    background: #181818;
    color: #fff;
}

.product-detail__field {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 1rem;
    align-items: center;
    margin-top: 1.35rem;
}

.product-detail__field select {
    width: 9.8rem;
    min-height: 1.95rem;
    padding: 0 2rem 0 0.75rem;
    border: 1px solid #bdbdbd;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: #222;
    font: inherit;
}

.product-detail__field.has-popover select {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.product-detail__accessory-button {
    display: flex;
    align-items: center;
    width: 9.8rem;
    min-height: 1.95rem;
    padding: 0 0.8rem;
    border: 1px solid #bdbdbd;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: #222;
    font: inherit;
    text-align: left;
}

.product-detail__accessory-patch {
    flex: 0 0 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 0.55rem;
    border: 1px solid #bbb;
    background: url("/images/template/checkered.png") no-repeat center / cover;
}

.product-detail__accessory-popover {
    position: absolute;
    z-index: 30;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.8rem;
    border: 1px solid #d5d5d5;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.14);
}

.product-detail__accessory-popover-head {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr) 2rem;
    align-items: center;
    margin-bottom: 0.75rem;
    text-align: center;
}

.product-detail__accessory-popover-head strong {
    grid-column: 2;
    font-weight: 700;
}

.product-detail__accessory-popover-head button {
    grid-column: 3;
    justify-self: end;
    border: 0;
    border-radius: var(--panel-radius-tight);
    background: transparent;
    color: #555;
    font-size: 1.35rem;
}

.product-detail__accessory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    max-height: 26rem;
    overflow-y: auto;
}

.product-detail__accessory-swatch {
    min-height: 5.25rem;
    padding: 0.25rem;
    border: 2px solid #fff;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: #222;
    font: inherit;
    font-size: 0.72rem;
    line-height: 1.05;
}

.product-detail__accessory-swatch.is-selected {
    border-color: #367dc8;
    background: #e5f2fe;
}

.product-detail__accessory-swatch span {
    display: block;
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 0.25rem;
    border: 1px solid #aaa;
}

.product-detail__accessory-swatch.is-round span {
    border-radius: 50%;
}

.product-detail__accessory-swatch--2 span {
    width: 4.4rem;
    height: 4.4rem;
}

.product-detail__accessory-swatch--3 {
    grid-column: span 2;
}

.product-detail__accessory-swatch--3 span {
    width: 6rem;
    height: 6rem;
}

.product-detail__accessory-swatch--4 {
    grid-column: span 4;
}

.product-detail__accessory-swatch--4 span {
    width: 10rem;
    height: 10rem;
}

.product-detail__quantity {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 1rem;
    align-items: center;
    margin-top: 1.35rem;
}

.product-detail__quantity label {
    margin: 0;
    color: #333;
}

.product-detail__quantity-row {
    position: relative;
    display: flex;
    width: 9.8rem;
    justify-self: end;
}

.product-detail__inventory-badge {
    position: absolute;
    top: 50%;
    right: calc(100% - 0.35rem);
    z-index: 1;
    transform: translateY(-50%);
    min-width: 5.75rem;
    padding: 0.35rem 0.55rem;
    background: #cf3336;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.product-detail__inventory-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.45rem;
    transform: translateY(-50%);
    border-top: 0.45rem solid transparent;
    border-bottom: 0.45rem solid transparent;
    border-left: 0.45rem solid #cf3336;
}

.product-detail__inventory-badge[hidden] {
    display: none;
}

.product-detail__quantity input {
    width: 100%;
    min-height: 1.95rem;
    border: solid #bdbdbd;
    border-width: 1px 0;
    border-radius: 0;
    text-align: center;
}

.product-detail__quantity-row button {
    flex: 0 0 1.75rem;
    border: 1px solid #aaa;
    border-radius: 0;
    background: #b5b5b7;
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.product-detail__quantity-row button:first-of-type {
    border-top-left-radius: var(--panel-radius-tight);
    border-bottom-left-radius: var(--panel-radius-tight);
}

.product-detail__quantity-row button:last-of-type {
    border-top-right-radius: var(--panel-radius-tight);
    border-bottom-right-radius: var(--panel-radius-tight);
}

.product-detail__total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.35rem 1rem;
    align-items: baseline;
    margin-top: 0.75rem;
    color: #333;
}

.product-detail__total span {
    text-align: left;
}

.product-detail__total[hidden] {
    display: none;
}

.product-detail__total strong {
    color: #222;
    font-size: 1.75rem;
    line-height: 1;
    text-align: right;
}

.product-detail__total small {
    grid-column: 2;
    color: #666;
    font-size: 0.95rem;
}

.product-detail__total small b {
    color: #222;
}

.product-detail__actions {
    display: grid;
    grid-template-columns: minmax(0, 13.25rem) minmax(0, 13.25rem);
    gap: 1rem;
    margin-top: 1.55rem;
}

[data-add-to-cart].is-loading {
    opacity: 0.65;
}

.product-detail__price-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--site-primary);
    border-radius: var(--panel-radius-tight);
    background: #fff;
    color: #222;
    font: inherit;
    font-weight: 700;
    line-height: 1.05;
}

.product-detail__price-match span {
    max-width: 9.75rem;
    white-space: normal;
    text-align: left;
}

.product-detail__price-match .las {
    color: #111;
    font-size: 1.75rem;
}

.product-detail__field.val-error > label {
    color: #c81f1f;
    font-weight: 700;
}

.product-detail__field.val-error select,
.product-detail__field.val-error .product-detail__accessory-button,
.product-detail__field.val-error .product-detail__option {
    border-color: #c81f1f;
}

.product-detail__inventory-warning {
    margin-top: 1.35rem;
}

.product-detail__inventory-warning[hidden] {
    display: none;
}

.product-detail__inventory-warning-message {
    position: relative;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #c91f28;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.product-detail__inventory-warning-message::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1.25rem solid #c91f28;
    border-right: 1.25rem solid transparent;
    border-left: 1.25rem solid transparent;
}

.product-detail__inventory-options {
    align-items: stretch;
    margin-right: -10px;
    margin-left: -10px;
}

.product-detail__inventory-options.is-loading {
    min-height: 8rem;
    opacity: 0.55;
}

.product-detail__inventory-options .prod-rel {
    width: 50%;
}

.product-detail__bulk {
    margin-top: 1.6rem;
    padding: 0.8rem 0 1.1rem;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.product-detail__bulk .row {
    margin-right: 0;
    margin-left: 0;
}

.product-detail__bulk table {
    width: 100%;
}

.product-detail__bulk .bulkprices {
    display: block;
}

.product-detail__bulk .panel-body {
    padding: 0;
}

.product-detail__bulk .bulk-price-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.55rem;
}

.product-detail__bulk .bulk-price-head b,
.product-detail__bulk .bulk-price-head small {
    float: none !important;
}

.product-detail__bulk .bulkprices table {
    font-size: 0.95rem;
}

.product-detail__bulk .bulk-price-table {
    width: 100%;
    table-layout: fixed;
}

.product-detail__bulk .bulk-price-table td {
    padding: 0.1rem 0.25rem 0.1rem 0;
    white-space: nowrap;
}

.product-detail__bulk .bulk-price-table td:nth-child(odd) {
    width: 2.5rem;
}

.product-detail__secondary {
    display: grid;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
}

.product-detail__accordion {
    margin-top: 1.5rem;
}

.product-detail__accordion details {
    border-bottom: 1px solid #e2e2e2;
}

.product-detail__accordion summary {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    min-height: 3.25rem;
    color: #111;
    cursor: pointer;
    font-size: 1.15rem;
    list-style: none;
}

.product-detail__accordion summary::-webkit-details-marker {
    display: none;
}

.product-detail__accordion summary::after {
    order: -1;
    content: "\f067";
    font-family: "Line Awesome Free";
    font-weight: 900;
}

.product-detail__accordion details[open] summary::after {
    content: "\f068";
}

.product-detail__clevertar {
    margin-top: 1.5rem;
}

.product-detail__accordion-content {
    padding: 0 0 1rem;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.product-detail__more-info {
    margin-top: 1.5rem;
}

.product-detail__specs {
    color: #555;
    font-size: 0.95rem;
}

.product-detail__specs table {
    width: 100%;
}

.product-detail__similar {
    width: min(100% - 2rem, var(--shell-max-width));
    margin: 0 auto;
    padding: 1rem 0 clamp(2rem, 4vw, 4rem);
}

.product-detail__similar h2 {
    margin: 0 0 1rem;
    color: #111;
    font-size: 1.45rem;
    font-weight: 400;
}

@media (max-width: 1320px) {
    .site-header--aat .site-header__inner {
        grid-template-columns: 10rem minmax(0, 1fr) auto;
        gap: 1.25rem;
    }

    .site-header--nt .site-header__inner--nt {
        grid-template-columns: 10.5rem minmax(16rem, 1fr) auto;
        column-gap: 1.5rem;
    }

    .site-brand__logo--nt {
        max-width: 8.4rem;
    }

    .site-nav--nt {
        gap: 1.25rem;
    }

    .site-header--nt .site-header__promo-row {
        gap: 1.5rem;
    }

    .site-nav--aat .site-nav__link {
        padding-right: 0.6rem;
        padding-left: 0.6rem;
    }

    .site-search .aa-Form,
    .site-search__input {
        width: 100%;
    }

    .site-header__icon-link {
        min-width: 3rem;
        height: 3rem;
    }

    .site-usp-strip__inner {
        gap: 0.75rem;
    }

    .site-usp-strip__item {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .site-header--aat .site-header__tools .site-search {
        display: none;
    }

    .site-header--nt .site-header__inner--nt {
        grid-template-columns: 9rem minmax(0, 1fr) auto;
        grid-template-areas:
            "brand . icons"
            "search search search"
            "nav nav nav"
            "promo promo promo";
    }

    .site-nav--nt {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .product-detail__shell {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery__thumbs {
        flex-direction: row;
        order: 0;
        overflow-x: auto;
    }

    .product-gallery__stage {
        min-height: 22rem;
    }

    .product-gallery__image,
    .product-gallery__video {
        max-height: 24rem;
    }

    .product-detail__field {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .product-detail__field--family .product-detail__family {
        justify-content: flex-start;
    }

    .product-detail__summary-head,
    .product-detail__quantity,
    .product-detail__total,
    .product-detail__actions {
        grid-template-columns: 1fr;
    }

    .product-detail__total small {
        grid-column: 1;
    }

    .product-detail__quantity-row {
        justify-self: stretch;
    }

    .product-detail__price {
        justify-items: start;
        text-align: left;
    }

    .product-detail__similar {
        width: 100%;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .product-detail__similar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header--nt .site-header__inner--nt {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand icons"
            "search search"
            "nav nav"
            "promo promo";
        align-items: center;
        width: min(100% - 1.5rem, 720px);
        gap: 0.85rem;
        padding: 0.8rem 0 1rem;
    }

    .site-brand__logo--nt {
        max-width: 7.5rem;
    }

    .site-header--nt .site-header__icons-row {
        justify-self: end;
    }

    .site-nav--nt {
        justify-content: flex-start;
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scrollbar-width: thin;
    }

    .site-nav--nt .site-nav__link {
        font-size: 0.95rem;
    }

    .site-header--nt .site-header__promo-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 0.25rem;
    }

    .site-header--nt .site-header__promo-image--full {
        display: none;
    }

    .site-header--nt .site-header__promo-image--slim {
        display: block;
        max-height: 3.3rem;
        margin: 0 auto;
    }

    .site-header--aat .site-header__inner {
        display: grid;
        grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
        align-items: center;
        gap: 0.35rem;
        padding: 0.3rem 0;
    }

    .site-brand__logo {
        height: 3.55rem;
        margin: 0 auto;
    }

    .site-brand--aat {
        justify-content: center;
    }

.site-header--aat .site-nav--aat:not(.site-nav--mobile) {
    display: none;
}

    .site-header--aat .site-header__tools {
        display: none;
    }

    .site-header--aat .site-header__tools .site-search {
        display: none;
    }

    .site-header--aat .site-header__menu-toggle--mobile {
        display: inline-flex;
        justify-self: start;
        width: 2.3rem;
        height: 2.3rem;
        border: 0;
        background: transparent;
    }

    .site-header--aat .site-header__menu-toggle .las {
        font-size: 1.85rem;
    }

    .site-header--aat .site-header__mobile-cart {
        display: inline-flex;
        justify-self: end;
        font-size: 1.35rem;
    }

    .site-header__mobile-cart .las {
        font-size: 1.65rem;
    }

    .site-header__mobile-cart-count {
        top: -.15rem;
        right: -.05rem;
        min-width: .85rem;
        height: .85rem;
        padding: 0 .18rem;
        font-size: 0.58rem;
    }

    .site-usp-strip {
        display: none;
    }

    .home-features {
        width: 100vw;
        max-width: none;
        margin: 0 calc(50% - 50vw) 1.5rem;
    }

    .home-features__wrapper {
        width: 100%;
        overflow: hidden;
    }

    .home-features__slide-inner {
        flex-direction: column;
        min-height: 0;
    }

    .home-features__image,
    .home-features__content {
        flex: 1;
    }

    .home-features__content {
        min-height: 12.5rem;
        align-items: center;
        justify-content: flex-end;
        font-size: 0.8rem;
    }

    .home-features__content-inner {
        padding: 1.25rem 1.25rem 1.9rem;
    }

    .home-features__content h2 {
        margin: 0.65rem 0;
        font-size: 2em !important;
    }

    .home-features__content p {
        margin: 0.65rem 0;
        font-size: 1.2em !important;
    }

    .home-features__content a {
        font-size: 1em !important;
    }

    .home-features__controls {
        right: 0;
        bottom: 2.15rem;
        width: 5.5rem;
        height: 3rem;
        pointer-events: none;
    }

    .home-features__dots {
        display: none;
    }

    .home-features__arrows {
        right: 0.75rem;
        bottom: 0.25rem;
        width: 4.5rem;
        min-width: 4.5rem;
        pointer-events: auto;
    }

    .home-features .slick-dots {
        display: none !important;
    }

    .home-features .slick-dots li {
        width: 1rem;
        height: 1rem;
        margin: 0;
    }

    .home-features--nt .home-features__content {
        order: 1;
        min-height: 16.25rem;
        justify-content: flex-start;
    }

    .home-features--nt .home-features__image {
        order: 0;
    }

    .home-features__nt-cutout {
        top: -0.6rem;
        left: -31.25rem;
        width: 100rem;
        height: 25rem;
    }

    .home-features--nt .home-features__content-inner {
        padding: 1.25rem;
    }

    .home-features--nt .home-features__content h2 {
        margin: 0.65rem auto;
        font-size: 1.5rem !important;
    }

    .home-features--nt .home-features__content p {
        margin: 0.65rem 0;
        font-size: 1.1em !important;
    }

    .home-trending {
        width: 100vw;
        max-width: none;
        margin: 0 calc(50% - 50vw) 1.75rem;
        padding: 0 0.75rem;
    }

    .home-trending h2 {
        font-size: var(--page-h2-size);
    }

    .home-trending__tabs {
        gap: 1.15rem;
        margin-bottom: 0.75rem;
        border-bottom: 0;
    }

    .home-trending__tab {
        height: 2.2rem;
        padding-bottom: 0;
        border-bottom: 0;
        font-size: 1rem;
    }

    .home-trending__tab:hover,
    .home-trending__tab:focus,
    .home-trending__tab.is-active {
        border-bottom-color: transparent;
    }

    .home-trending__products {
        height: 14.75rem;
        min-height: 14.75rem;
    }

    .home-trending .prod-rel {
        height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }

    .home-trending .prodlist {
        height: auto;
        min-height: 0;
        margin-bottom: 0;
    }

    .home-trending .prod-hover {
        padding: 0.35rem;
    }

    .home-trending .prodimage {
        max-height: 7.75rem;
    }

    .home-trending .prod-hover-link {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    .home-trending .prod-hover-link .btn-success {
        min-height: 1.65rem;
        padding-top: 0.24rem;
        padding-bottom: 0.24rem;
        font-size: 0.72rem;
        line-height: 1.15;
    }

    .home-trending .prod-list-features {
        height: 18px;
        margin-bottom: 0.2rem;
        overflow: visible;
        line-height: 1;
    }

    .home-trending .size-box,
    .home-trending .mbox {
        height: 17px;
        min-width: 19px;
        line-height: 15px;
    }

    .home-trending .prodlist .title {
        font-size: 0.78rem;
        line-height: 1.08;
    }

    .home-trending .prodlist .from-price {
        margin-top: 0.16rem;
        font-size: 0.88rem;
        line-height: 1.08;
    }

    .home-trending .slick-prev {
        left: -0.35rem;
    }

    .home-trending .slick-next {
        right: -0.35rem;
    }

    .home-trending .slick-dots {
        display: none !important;
    }

    .home-categories {
        margin: 1.5rem 0 2rem;
    }

    .home-categories__shell {
        width: min(100% - 1.5rem, var(--shell-max-width));
    }

    .home-categories h2 {
        font-size: var(--page-h2-size);
    }

    .home-categories__tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .home-categories__tile {
        min-height: 3.25rem;
        font-size: 1rem;
    }

    .home-categories .mega-menu__grid {
        display: block;
    }

    .home-categories .mega-menu__column {
        margin-bottom: 0.75rem;
    }

    .home-categories .mega-menu__list li {
        display: inline-block;
    }

    .home-categories .mega-menu__title {
        display: block;
        margin-top: 0.65rem;
        width: 100%;
    }

    .home-categories .mega-menu__list a {
        display: inline-block;
        margin: 0.25rem 0.18rem;
        padding: 0.35rem 0.65rem;
        border: 1px solid #e6e6e6;
        border-radius: 1rem;
        background: #f6f6f6;
        font-size: 0.95rem;
    }

    .range-page {
        padding: 1.5rem 0 2.25rem;
    }

    .range-page__chooser {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .range-page__category {
        min-height: 3.75rem;
        font-size: 1.05rem;
    }

    .range-location-hero {
        padding: 2rem 0 1.25rem;
    }

    .range-location-hero h1 {
        font-size: 1.9rem;
    }

    .range-location-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .range-location-links__label {
        min-height: 3rem;
        font-size: 0.98rem;
    }

    .range-location-content {
        margin-bottom: 2.25rem;
        font-size: 1rem;
    }

    .subcategory-landing-hero {
        padding: 2rem 0 1.25rem;
    }

    .subcategory-landing-hero h1 {
        font-size: 1.9rem;
    }

    .subcategory-landing-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .subcategory-landing-links__card {
        min-height: 12rem;
        padding: 1rem 0.75rem 0.8rem;
    }

    .subcategory-landing-links__image {
        min-height: 8rem;
    }

    .subcategory-landing-links__image img {
        max-height: 7.5rem;
    }

    .delivery-options {
        padding: 0.5rem 0 1.25rem;
        background: #f5f5f5;
    }

    .delivery-options__inner {
        width: min(100% - 1.5rem, var(--shell-max-width));
        overflow: hidden;
        border: 1px solid #d7d7d7;
        border-radius: 8px;
        background: #fff;
    }

    .delivery-options h2 {
        padding: 1.2rem 0.85rem 1rem;
        border-bottom: 1px solid #d7d7d7;
        font-size: 1.35rem;
        line-height: 1.15;
        text-align: center;
    }

    .delivery-options__header {
        margin-bottom: 0;
    }

    .delivery-options__location-popover {
        position: static;
        width: 100%;
        margin-top: 0.8rem;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    }

    .delivery-options__location-inner {
        flex-direction: column;
    }

    .delivery-options__update {
        flex-basis: auto;
        width: 100%;
    }

    .delivery-options__suggestions {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-top: 0.65rem;
    }

    .delivery-options__cards {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .delivery-options .production-option-btn {
        display: block;
        min-height: 0;
        padding: 0.75rem 6.3rem 0.7rem 0.85rem;
        border: 0;
        border-bottom: 1px solid #d7d7d7;
        border-radius: 0;
        box-shadow: none;
        text-align: left;
    }

    .delivery-options .production-option-btn.standard {
        border: 1px solid #9c9c9c;
        border-right: 0;
        border-left: 0;
        background: #d8eaf5;
    }

    .delivery-options .production-option-badge {
        position: absolute;
        top: 50%;
        right: 0.85rem;
        display: inline-flex;
        width: 4.7rem;
        min-height: 2.25rem;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0.4rem 0.5rem;
        float: none;
        font-size: 0.82rem;
        line-height: 1.05;
        transform: translateY(-50%);
    }

    .delivery-options .production-option-main {
        display: inline;
        clear: none;
        padding: 0;
        font-size: 1.22rem;
        line-height: 1.1;
    }

    .delivery-options .production-option-main::after {
        content: " - ";
        font-weight: 400;
    }

    .delivery-options .production-option-title {
        display: block;
        padding: 0.22rem 0 0;
        background: transparent;
        font-size: 0.96rem;
        line-height: 1.15;
    }

    .delivery-options .production-option-alt {
        display: inline;
        padding: 0;
        font-size: 1.08rem;
        line-height: 1.12;
    }

    .delivery-options__note {
        margin: 1rem 0.85rem 0.85rem;
        font-size: 0.95rem;
        line-height: 1.35;
        text-align: center;
    }

    .checkout-delivery {
        width: 100%;
    }

    .checkout-delivery h1 {
        margin: 1.15rem 0 0.9rem;
        font-size: 1.9rem;
        line-height: 1.1;
    }

    .checkout-delivery__section {
        margin-bottom: 1rem;
        padding: 0.95rem 0.85rem 0.75rem;
    }

    .checkout-delivery__dot {
        top: 0.9rem;
        left: 0.85rem;
        width: 1.55rem;
        height: 1.55rem;
        font-size: 0.9rem;
    }

    .checkout-delivery__section h2 {
        min-height: 1.55rem;
        margin-bottom: 1rem;
        padding-left: 2rem;
        font-size: 1rem;
        line-height: 1.15;
    }

    .checkout-delivery__choice-grid {
        gap: 0.75rem;
    }

    .checkout-delivery__actions {
        gap: 0.75rem;
        padding: 0 0.85rem;
    }

    .checkout-delivery__choice {
        min-height: 3.25rem;
        padding: 0.6rem 2.25rem 0.6rem 0.55rem;
        font-size: 0.98rem;
        line-height: 1.15;
    }

    .checkout-delivery__choice small {
        margin-top: 0.25rem;
        font-size: 0.68rem;
        line-height: 1.15;
    }

    .checkout-delivery__choice .las {
        right: 0.5rem;
        width: 1.55rem;
        height: 1.55rem;
        font-size: 1.1rem;
    }

    .checkout-delivery__multi-info {
        padding: 0.65rem 0.75rem;
        font-size: 0.82rem;
        font-weight: 400;
        line-height: 1.25;
    }

    .checkout-delivery__multi-info strong {
        font-weight: 400;
    }

    .checkout-delivery__multiple {
        gap: 0.55rem;
        margin-top: 0.65rem;
    }

    .checkout-delivery__multiple label {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .checkout-delivery__location-qty {
        grid-template-columns: 2rem 3.1rem 2rem;
    }

    .checkout-delivery__location-qty button {
        width: 2rem;
        height: 2.1rem;
        font-size: 0.95rem;
    }

    .checkout-delivery__location-qty input {
        width: 3.1rem;
        height: 2.1rem;
        min-height: 2.1rem;
        padding: 0;
        font-size: 0.88rem;
        line-height: 2.1rem;
    }

    .checkout-delivery__note {
        margin: 0.65rem 0.35rem 0.2rem;
        font-size: 0.82rem;
        line-height: 1.18;
    }

    .checkout-delivery__production {
        gap: 0;
    }

    .checkout-delivery .production-option-btn {
        min-height: 0;
        padding: 0.75rem 6.3rem 0.7rem 0.85rem;
        border-radius: 0;
        text-align: left;
    }

    .checkout-delivery .production-option-btn.on::after {
        top: 50%;
        right: 5.85rem;
        width: 1.45rem;
        height: 1.45rem;
        font-size: 0.8rem;
        transform: translateY(-50%);
    }

    .checkout-delivery .production-option-badge {
        position: absolute;
        top: 50%;
        right: 0.85rem;
        display: inline-flex;
        width: 4.7rem;
        min-height: 2.25rem;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0.4rem 0.5rem;
        float: none;
        font-size: 0.82rem;
        line-height: 1.05;
        transform: translateY(-50%);
    }

    .checkout-delivery .production-option-main {
        display: inline;
        clear: none;
        padding: 0;
        font-size: 1.22rem;
        line-height: 1.1;
    }

    .checkout-delivery .production-option-main::after {
        content: " - ";
        font-weight: 400;
    }

    .checkout-delivery .production-option-title {
        display: block;
        padding: 0.22rem 0 0;
        background: transparent;
        font-size: 0.96rem;
        line-height: 1.15;
    }

    .checkout-delivery .production-option-btn.on .production-option-title {
        background: transparent;
    }

    .checkout-delivery .production-option-alt {
        display: inline;
        padding: 0;
        font-size: 1.08rem;
        line-height: 1.12;
    }

    .site-header--aat .site-header__nav-row,
    .site-header--nt .site-header__top-row,
    .site-header--nt .site-header__search-row,
    .site-header--nt .site-header__promo-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header__tools {
        width: 100%;
        justify-content: space-between;
    }

    .site-footer__inner {
        padding-top: 1.75rem;
    }

    .site-footer h2 {
        font-size: var(--page-h2-size);
    }

    .site-footer--aat .site-footer__service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__service-grid,
    .site-footer__inner--nt,
    .site-footer__nt-main,
    .site-footer__nt-bottom,
    .site-recognition__grid,
    .site-footer__bottom,
    .site-footer__detail-row {
        grid-template-columns: 1fr;
    }

    .site-footer--aat .site-footer__section--desktop,
    .site-footer--nt .site-footer__section--desktop {
        display: none;
    }

    .site-footer__service-grid,
    .site-footer__nt-main {
        gap: 1.35rem;
    }

    .site-footer__split-list {
        columns: 1;
    }

    .site-recognition__grid {
        align-items: start;
        gap: 1rem;
    }

    .site-recognition__copy {
        padding-top: 0;
    }

    .site-footer__legal {
        flex-direction: column;
    }

    .site-footer__nt-highlight {
        padding: 1rem;
    }

    .site-nav__offcanvas {
        width: 100vw !important;
        max-width: none;
        height: 100vh;
        border-right: 0;
    }

    .site-nav__offcanvas-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 2rem;
        min-height: 4.25rem;
        align-items: start;
        padding: 0.55rem 0.8rem;
    }

    .site-nav__offcanvas-brand .site-brand__logo {
        height: 3.25rem;
        margin: 0;
    }

    .site-nav__offcanvas-close {
        justify-self: end;
        width: 2rem;
        height: 2rem;
        font-size: 1.65rem;
    }

    .site-nav__offcanvas-body {
        height: calc(100vh - 4.25rem);
        gap: 0.55rem;
        padding: 0.7rem 0.8rem 1rem;
        overflow-y: auto;
    }

    .site-mobile-search {
        grid-template-columns: minmax(0, 1fr) 2.8rem;
    }

    .site-mobile-search__input {
        height: 2.55rem;
        padding: 0 0.75rem;
        font-size: 1rem;
    }

    .site-mobile-search__button .las {
        font-size: 1.35rem;
    }

    .site-search,
    .site-search__input {
        width: 100%;
    }

    .search-page__summary {
        grid-template-columns: 1fr;
    }

    .filter-menu {
        max-width: calc(100vw - 2rem);
    }

    #hits .ais-Hits-list {
        grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
    }

    .site-nav {
        width: 100%;
    }

    .site-nav__item {
        width: 100%;
    }

    .site-nav__link {
        width: 100%;
        justify-content: space-between;
    }

    .site-nav--mobile .site-nav__link {
        padding: 0.48rem 0;
        border-bottom: 1px solid #eee;
        border-radius: 0;
        color: #111;
        background: transparent;
        font-size: 0.92rem;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .site-nav--mobile .site-nav__link:hover,
    .site-nav--mobile .site-nav__link:focus,
    .site-nav--mobile .site-nav__item.is-open > .site-nav__link {
        color: var(--site-primary);
        background: transparent;
    }

    .site-nav--mobile .site-nav__link::after,
    .site-nav--mobile .site-nav__item.is-open > .site-nav__link::after {
        content: "";
        position: static;
        display: inline-block;
        width: 0.65rem;
        height: 0.65rem;
        margin-right: 0.25rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        border-radius: 0;
        background: transparent;
        transform: rotate(45deg);
    }

    .site-nav--mobile .site-nav__item.is-open > .site-nav__link::after {
        transform: rotate(225deg);
    }

    .site-nav__panel {
        position: static;
        display: none;
        min-width: 0;
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: none;
    }

    .site-nav__item:hover > .site-nav__panel,
    .site-nav__item:focus-within > .site-nav__panel {
        max-height: 0;
        margin-top: 0;
    }

    .site-nav__item.is-open > .site-nav__panel,
    .site-nav__item.is-open:hover > .site-nav__panel,
    .site-nav__item.is-open:focus-within > .site-nav__panel {
        display: block;
        max-height: 160rem;
        margin-top: 0.25rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mega-menu {
        padding: 0.5rem 0 1rem;
        border: 0;
        box-shadow: none;
    }

    .mega-menu__grid,
    .mega-menu__grid--faq {
        grid-template-columns: 1fr;
    }

    .site-meta {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .checkout-header__brand {
        min-height: 6.8rem;
    }

    .checkout-header__logo img {
        width: 7.6rem;
    }

    .checkout-footer {
        margin-top: 2.5rem;
    }

    .checkout-footer__inner {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        justify-items: center;
        min-height: 0;
        padding: 1.2rem 0;
        text-align: center;
    }

    .checkout-footer__payments {
        flex-wrap: wrap;
        gap: 0.8rem 1.2rem;
    }

    .checkout-footer__links {
        justify-content: center;
    }

    .checkout-steps {
        grid-template-columns: 1fr auto 1fr auto 1.2fr auto 1fr;
        gap: 0.22rem;
        margin-bottom: 0.75rem;
        font-family: "Roboto Condensed", Arial, sans-serif;
        font-size: 0.72rem;
        line-height: 1.05;
        text-align: center;
    }

    .checkout-steps .las {
        display: inline-block;
        font-size: 0.72rem;
    }

    .checkout-steps__item {
        min-width: 0;
        overflow: hidden;
        font-size: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .checkout-steps__item::after {
        content: attr(data-mobile-label);
        font-size: 0.72rem;
    }

    .checkout-cart {
        padding: 0 0 30px;
    }

    .site-shell--checkout .site-main {
        padding-top: 0.65rem;
        padding-bottom: 2rem;
    }

    .checkout-cart__inner {
        width: min(100% - 12px, 720px);
    }

    .checkout-cart__header h1 {
        margin-bottom: 0.85rem;
        font-size: 1.8rem;
    }

    .checkout-cart__panel {
        padding: 0.4rem;
    }

    .checkout-cart__head {
        display: none;
    }

    .checkout-cart__item {
        grid-template-columns: 54px minmax(0, 1fr) auto;
        gap: 0.32rem 0.55rem;
        align-items: start;
        min-height: 0;
        padding: 0.5rem 0.55rem;
    }

    .checkout-cart__product {
        display: contents;
    }

    .checkout-cart__image {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 54px;
        height: 54px;
        align-self: start;
    }

    .checkout-cart__product > div {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        padding-right: 2.15rem;
    }

    .checkout-cart__name {
        font-size: 0.9rem;
        line-height: 1.12;
    }

    .checkout-cart__sku {
        margin-top: 0.1rem;
        font-size: 0.74rem;
        line-height: 1.1;
    }

    .checkout-cart__details {
        display: none;
    }

    .checkout-cart__mobile-details {
        display: block;
        margin-top: 0.1rem;
        color: #666;
        font-size: 0.78rem;
        line-height: 1.12;
    }

    .checkout-cart__unit,
    .checkout-cart__line {
        font-size: 0.8rem;
        line-height: 1.15;
        text-align: left;
        white-space: normal;
    }

    .checkout-cart__unit {
        grid-column: 2;
        grid-row: 2;
    }

    .checkout-cart__line {
        grid-column: 3;
        grid-row: 2;
        font-weight: 700;
        text-align: right;
        white-space: nowrap;
    }

    .checkout-cart__unit::before {
        content: "Unit Price: ";
        color: #777;
        font-weight: 400;
    }

    .checkout-cart__line::before {
        content: "Total: ";
        color: #777;
        font-weight: 400;
    }

    .checkout-cart__qty {
        grid-column: 3;
        grid-row: 1;
        grid-template-columns: 1.65rem 2.35rem 1.65rem;
        align-self: end;
        justify-self: end;
        margin-top: 1.8rem;
    }

    .checkout-cart__qty-btn,
    .checkout-cart__qty button.checkout-cart__qty-btn {
        width: 1.65rem;
        height: 1.8rem;
        font-size: 0.86rem;
    }

    .checkout-cart__qty input {
        height: 1.8rem;
        font-size: 0.82rem;
    }

    .checkout-cart__remove {
        position: absolute;
        top: 0.3rem;
        right: 0.55rem;
        margin: 0;
    }

    .checkout-cart__remove button {
        font-size: 1.15rem;
    }

    .checkout-cart__inventory-warning {
        padding: 0.55rem 0.7rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .checkout-cart__bottom {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-top: 1rem;
    }

    .checkout-cart__checkout {
        order: -1;
        gap: 0.5rem;
    }

    .checkout-cart__promo {
        grid-template-columns: 1fr 4.7rem;
    }

    .checkout-cart__promo input,
    .checkout-cart__promo button {
        height: 2.25rem;
        font-size: 0.88rem;
    }

    .checkout-cart__promo input {
        padding: 0.35rem 0.55rem;
    }

    .checkout-cart__promo button {
        padding: 0.35rem 0.5rem;
    }

}

.reorder-page {
    padding: 3rem 0 4rem;
}

.reorder-page__inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.reorder-page__header {
    text-align: center;
    margin-bottom: 2rem;
}

.reorder-page__header h1 {
    margin: 0 0 0.75rem;
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    font-weight: var(--page-h1-weight);
    line-height: var(--page-h1-line-height);
}

.reorder-page__header p {
    margin: 0;
    color: #5c6573;
}

.reorder-page__alert {
    margin-bottom: 1.5rem;
}

.reorder-page__alert p {
    margin: 0.5rem 0 0;
}

.reorder-page__alert--success {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    border-radius: var(--panel-radius-tight);
}

.reorder-page__items {
    display: grid;
    gap: 1rem;
}

.reorder-card {
    display: grid;
    grid-template-columns: 3.5rem 7.5rem 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    border: 2px solid #e9edf2;
    border-radius: var(--panel-radius-tight);
    background: #fff;
}

.reorder-card--added {
    border-color: #049953;
}

.reorder-card--reselect {
    border-color: #ffbe3c;
}

.reorder-card--unavailable {
    border-color: #d83a34;
}

.reorder-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: #f2f4f7;
    color: #0a1d42;
    font-size: 1.4rem;
    font-weight: 700;
}

.reorder-card--added .reorder-card__index {
    background: #049953;
    color: #fff;
}

.reorder-card--unavailable .reorder-card__index {
    background: #d83a34;
    color: #fff;
}

.reorder-card__media img {
    width: 100%;
    max-width: 7.5rem;
    border-radius: var(--panel-radius-tight);
    object-fit: cover;
}

.reorder-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.5rem;
    align-items: center;
}

.reorder-card__content h2 {
    grid-column: 1;
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
}

.reorder-card__content h2 a {
    color: #0a1d42;
    text-decoration: none;
}

.reorder-card__sku,
.reorder-card__qty,
.reorder-card__detail {
    grid-column: 1;
    margin: 0.2rem 0;
    color: #3f4957;
}

.reorder-card__status {
    grid-column: 1;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--panel-radius-tight);
    background: #fff6d9;
    color: #7a4c00;
}

.reorder-card--unavailable .reorder-card__status {
    background: #fff0ef;
    color: #9e2720;
}

.reorder-card__actions {
    grid-column: 2;
    grid-row: 1 / span 6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    align-self: center;
    text-align: right;
}

.reorder-card__actions form {
    margin: 0;
}

.reorder-card__added {
    color: #049953;
    font-weight: 600;
}

.reorder-card__alternatives {
    grid-column: 1 / -1;
    margin-top: 1.25rem;
}

.reorder-card__alternatives h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
}

.reorder-card__alternative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.85rem;
}

.reorder-alt {
    display: grid;
    gap: 0.45rem;
    padding: 0.85rem;
    border: 1px solid #d9e0e7;
    border-radius: var(--panel-radius-tight);
    color: #0a1d42;
    text-decoration: none;
    background: #fff;
}

.reorder-alt img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: var(--panel-radius-tight);
    background: #f8fafc;
}

.reorder-alt strong {
    font-size: 0.95rem;
}

.reorder-alt span {
    color: #5c6573;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .reorder-card {
        grid-template-columns: 1fr;
    }

    .reorder-card__content {
        grid-template-columns: 1fr;
    }

    .reorder-card__actions {
        grid-column: 1;
        grid-row: auto;
        justify-content: flex-start;
        margin-top: 1rem;
        text-align: left;
    }

    .reorder-card__index {
        width: 2.75rem;
        height: 2.75rem;
    }
}

@media (max-width: 640px) {
    .reorder-page {
        padding: 2rem 0 3rem;
    }

    .reorder-page__alert--success {
        flex-direction: column;
        align-items: flex-start;
    }
}

.substitute-page {
    padding: 3rem 0 4rem;
}

.substitute-page__inner {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
}

.substitute-page__header {
    text-align: center;
    margin-bottom: 2rem;
}

.substitute-page__header h1,
.substitute-page__thanks h1 {
    margin: 0 0 1rem;
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    font-weight: var(--page-h1-weight);
    line-height: var(--page-h1-line-height);
}

.substitute-page__header p,
.substitute-page__thanks p {
    margin: 0 auto 1rem;
    max-width: 900px;
    color: #495468;
}

.substitute-page__alert {
    margin-bottom: 1.5rem;
}

.substitute-page__items {
    display: grid;
    gap: 1.5rem;
}

.substitute-item__panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid #d7dee8;
    border-radius: var(--panel-radius-tight);
    background: #fff;
}

.substitute-item__column h2 {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    text-align: center;
}

.substitute-summary {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid #e1e7ef;
    border-radius: var(--panel-radius-tight);
    background: #fff;
}

.substitute-summary img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.substitute-summary h3 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
}

.substitute-summary p {
    margin: 0.2rem 0;
    color: #495468;
}

.substitute-summary__difference {
    color: #6d7481;
    font-size: 0.92rem;
}

.substitute-summary__clear {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    border: 0;
    background: transparent;
    color: #495468;
    font-size: 1.25rem;
}

.substitute-selection__empty {
    padding: 1.5rem 0;
    text-align: center;
}

.substitute-item__filters {
    display: flex;
    gap: 1rem;
    align-items: end;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--panel-radius-tight);
    background: #f5f7fa;
}

.substitute-item__filters label {
    display: grid;
    gap: 0.35rem;
    flex: 1 1 260px;
    margin: 0;
    color: #334155;
    font-weight: 500;
}

.substitute-item__filters select {
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border: 1px solid #d3dae5;
    border-radius: var(--panel-radius-tight);
    background: #fff;
}

.substitute-item__products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.substitute-candidate {
    display: grid;
    gap: 0.5rem;
    align-content: start;
    padding: 1rem;
    border: 1px solid #d7dee8;
    border-radius: var(--panel-radius-tight);
    background: #fff;
    text-align: center;
}

.substitute-candidate img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.substitute-candidate h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.substitute-candidate p {
    margin: 0;
    color: #5b6473;
}

.substitute-item__load-more {
    margin-top: 1rem;
    text-align: center;
}

.substitute-item__loading {
    display: grid;
    place-items: center;
    min-height: 160px;
}

.substitute-page__final {
    margin-top: 2rem;
    border-radius: var(--panel-radius-tight);
}

.substitute-modal {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: rgba(8, 15, 30, 0.66);
}

.substitute-modal__dialog {
    position: relative;
    width: min(1100px, 100%);
    max-height: calc(100vh - 4rem);
    overflow: auto;
    padding: 1.25rem;
    border-radius: var(--panel-radius-tight);
    background: #fff;
}

.substitute-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.8rem;
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 2rem;
    line-height: 1;
}

.substitute-modal__body .product-detail__shell {
    width: 100%;
}

.substitute-modal__body .product-detail__summary h1 {
    font-size: 1.9rem;
}

body.is-modal-open {
    overflow: hidden;
}

.faq-page {
    padding: 2.5rem 0 4rem;
    background: #fff;
}

.faq-page__inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.faq-page__header {
    max-width: 920px;
}

.faq-page__header h1 {
    margin: 0 0 0.85rem;
    color: #111827;
    font-family: var(--page-h1-font);
    font-size: var(--page-h1-size);
    font-weight: var(--page-h1-weight);
    line-height: var(--page-h1-line-height);
}

.faq-page__header p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.65;
}

#clevertarChatArea {
    margin-top: 1.5rem;
}

.faq-list {
    display: grid;
    gap: 0;
    margin-top: 2rem;
}

.faq-list .accordion-item {
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fff;
}

.faq-list .accordion-button {
    position: relative;
    gap: 0;
    padding: 1rem 1.25rem 1rem 2.35rem;
    background: #fff;
    color: #000;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: none;
}

.faq-list .accordion-button::before {
    content: "-";
    position: absolute;
    left: 0.05rem;
    top: 50%;
    width: 1.35rem;
    color: currentColor;
    font-family: "Roboto", sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    transform: translateY(-50%);
}

.faq-list .accordion-button.collapsed::before {
    content: "+";
}

.faq-list .accordion-button::after {
    display: none;
}

.faq-list .accordion-button:not(.collapsed) {
    background: #fff;
    color: #000;
    box-shadow: none;
}

.faq-list__questions {
    display: grid;
    gap: 0;
    padding: 0.25rem 0 0.8rem 1.9rem;
}

.faq-list__item .accordion-button {
    font-family: "Roboto", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #4b5563;
    padding-left: 2rem;
}

.faq-list .accordion-body {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.65;
}

.faq-list__group > .accordion-collapse > .accordion-body {
    padding: 0 0 0 0.7rem;
}

.faq-list__item .accordion-body {
    padding: 1rem 1.25rem 1.25rem 2rem;
    border-left: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.faq-list .accordion-body p:last-child,
.faq-list .accordion-body ul:last-child {
    margin-bottom: 0;
}

.faq-page__contact {
    margin: 2rem 0 0;
    color: #334155;
    font-size: 1.05rem;
}

.testimonials-page {
    padding: 3rem 0 4rem;
}

.testimonials-page__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonials-page__header {
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
}

.testimonials-page__header h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

.testimonials-page__header p {
    margin: 0;
    color: #555;
}

.testimonials-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.4rem 1.4rem 2.8rem;
    border: 1px solid #ddd8cd;
    border-radius: 8px;
    background: #fff;
}

.testimonial-card h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.testimonial-card blockquote {
    margin: 0;
    color: #333;
    line-height: 1.55;
}

.testimonial-card blockquote p {
    margin: 0;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: auto;
    color: #666;
    font-size: 0.92rem;
}

.testimonial-card footer strong {
    color: #222;
}

.testimonial-card__date {
    position: absolute;
    right: 1.4rem;
    bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #777;
    font-size: 0.84rem;
    line-height: 1;
    white-space: nowrap;
}

.testimonials-page__pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonials-page__pagination a,
.testimonials-page__pagination span {
    min-width: 2.5rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid #cfc8ba;
    border-radius: 6px;
    background: #fff;
    color: #333;
    text-align: center;
    text-decoration: none;
}

.testimonials-page__pagination span {
    background: #222;
    border-color: #222;
    color: #fff;
}

@media (max-width: 900px) {
    .testimonials-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .testimonials-page {
        padding: 2rem 0 3rem;
    }

    .testimonials-page__grid {
        grid-template-columns: 1fr;
    }

    .testimonials-page__pagination a,
    .testimonials-page__pagination span {
        min-width: 2.25rem;
        padding: 0.45rem 0.65rem;
    }
}

.team-page,
.team-detail {
    background: #fff;
}

.team-page__inner,
.team-detail__inner {
    width: min(100% - 2rem, var(--shell-max-width));
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.team-page__header h1,
.team-detail h1 {
    font: var(--page-h1-weight) var(--page-h1-size)/var(--page-h1-line-height) var(--page-h1-font);
    color: #111;
}

.team-page__header h2 {
    margin: 0 0 1rem;
    font: 400 1.45rem/1.3 "Roboto Condensed", "Roboto", Arial, sans-serif;
    color: #333;
}

.team-page__header p,
.team-detail__intro,
.team-detail__stats,
.team-detail__contact {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.55;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
    justify-content: center;
    gap: .35rem .65rem;
    width: min(90%, var(--shell-max-width));
    margin: 1.5rem auto 0;
    padding: 1.25rem 0;
    list-style: none;
    text-align: center;
}

.team-grid__item {
    min-height: 430px;
    padding-top: 1.875rem;
}

.team-grid__item.is-raised {
    padding-top: 0;
    padding-bottom: 1.875rem;
}

.team-card {
    display: block;
    height: 100%;
    color: #222;
    text-decoration: none;
}

.team-card:hover,
.team-card:focus {
    color: #d43030;
    text-decoration: none;
}

.team-card__stage {
    display: block;
    position: relative;
    width: 150px;
    max-width: 100%;
    height: 375px;
    margin: 0 auto .75rem;
}

.team-card__spacer,
.team-card__head,
.team-card__body {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
}

.team-card__spacer {
    position: relative;
    height: 375px;
    opacity: 0;
}

.team-card__body {
    z-index: 1;
}

.team-card__head {
    z-index: 2;
    transform-origin: 50% center;
    transition: transform .25s ease;
}

.team-card:hover .team-card__head,
.team-card:focus .team-card__head {
    animation: team-head-wobble .4s infinite ease-in-out;
}

@keyframes team-head-wobble {
    25% {
        transform: translateY(-2px) rotate(-2deg);
    }

    50% {
        transform: translateY(0) rotate(2deg);
    }

    75% {
        transform: translateY(2px) rotate(-1deg);
    }
}

.team-card__name,
.team-card__position {
    display: block;
}

.team-card__name {
    font: 700 1.1rem/1.15 "Roboto Condensed", "Roboto", Arial, sans-serif;
}

.team-card__position {
    margin-top: .2rem;
    color: #666;
    font-size: .85rem;
    line-height: 1.2;
}

.team-detail__inner {
    display: grid;
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.team-detail__image {
    position: relative;
    min-height: 600px;
}

.team-detail__image .team-card__head,
.team-detail__image .team-card__body {
    inset: 0 auto auto 50%;
    width: min(100%, 320px);
    transform: translateX(-50%);
}

.team-detail__image:hover .team-card__head {
    transform: translateX(-50%) translateY(-2px) rotate(-3deg);
}

.team-detail h2 {
    margin: 1.75rem 0 .75rem;
    font: 700 1.65rem/1.2 "Roboto Condensed", "Roboto", Arial, sans-serif;
    color: #111;
}

.team-detail__contact {
    margin-top: 1.5rem;
}

.team-detail__contact p {
    margin: .35rem 0;
}

.team-detail__actions {
    grid-column: 1 / -1;
    text-align: center;
}

@media (max-width: 767.98px) {
    .team-page__inner,
    .team-detail__inner {
        width: min(100% - 1.5rem, 680px);
        padding-top: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 110px));
        width: 100%;
        gap: .75rem .5rem;
    }

    .team-grid__item,
    .team-grid__item.is-raised {
        min-height: 330px;
        padding: 0;
    }

    .team-card__stage {
        width: 110px;
    }

    .team-detail__inner {
        display: block;
    }

    .team-detail__image {
        min-height: 390px;
        margin-bottom: 1.5rem;
    }

    .team-detail__image .team-card__head,
    .team-detail__image .team-card__body {
        width: min(220px, 100%);
    }
}

.delivery-info-modal .modal-dialog {
    width: min(920px, calc(100% - 2rem));
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
}

.delivery-info-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: var(--panel-radius-tight);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.delivery-info-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 1.35rem 1.55rem;
    border-bottom: 0;
    background: #154c80;
    color: #fff;
}

.delivery-info-modal .modal-title {
    min-width: 0;
    padding-right: 1rem;
    color: #fff;
    font: 700 1.7rem/1.15 "Roboto Condensed", Arial, sans-serif;
}

.delivery-info-modal .btn-close {
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0 0 auto;
    padding: 0;
    background: none;
    color: #fff;
    opacity: 1;
}

.delivery-info-modal .btn-close::before {
    content: "×";
    display: block;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 0.8;
}

.delivery-info-modal .btn-close:hover,
.delivery-info-modal .btn-close:focus {
    opacity: 0.8;
    box-shadow: none;
}

.delivery-info-modal .modal-body {
    padding: 1.45rem 1.55rem 1.45rem;
    color: #5a5a5a;
}

.delivery-info-modal h3 {
    margin: 1.35rem 0 0.65rem;
    font: 700 1.45rem/1.15 "Roboto Condensed", Arial, sans-serif;
    color: #000;
}

.delivery-info-modal h3:first-child {
    margin-top: 0;
}

.delivery-info-modal h3 small {
    color: #777;
    font-size: 1.05rem;
    font-weight: 400;
}

.delivery-info-modal p,
.delivery-info-modal li {
    color: #5a5a5a;
    font-size: 1.05rem;
    line-height: 1.45;
}

.delivery-info-modal p {
    margin-bottom: 1rem;
}

.delivery-info-modal hr {
    margin: 1.35rem 0 1.45rem;
    border-color: #ddd;
    opacity: 1;
}

.delivery-info-modal ul {
    margin: 0 0 1.2rem 1.65rem;
    padding-left: 1.25rem;
}

.delivery-info-modal strong,
.delivery-info-modal b {
    font-weight: 700;
}

.delivery-info-modal .text-danger {
    color: #b34747 !important;
    font-size: 1.05rem;
}

.delivery-info-modal em {
    color: #5a5a5a;
}

.delivery-info-modal .btn {
    min-width: 112px;
    min-height: 46px;
    margin: 1.35rem 0 0;
    border-radius: var(--panel-radius-tight);
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.delivery-info-modal .btn-primary {
    background: #4a4a4a;
    border-color: #4a4a4a;
}

.delivery-info-modal .btn-primary:hover,
.delivery-info-modal .btn-primary:focus {
    background: #333;
    border-color: #333;
}

.price-match-guarantee-modal .modal-dialog {
    width: min(920px, calc(100% - 2rem));
    max-width: 920px;
}

.price-match-guarantee-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: var(--panel-radius-tight);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.price-match-guarantee-modal .modal-body {
    padding: 1.25rem 1.6rem 2rem;
    color: #444;
}

.price-match-modal__close {
    display: flex;
    justify-content: flex-end;
    margin-bottom: .25rem;
}

.price-match-modal__hero {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.price-match-modal__hero img {
    display: block;
    max-width: 100%;
    margin: 0 auto 1.25rem;
}

.price-match-modal__hero .lead {
    margin-bottom: .75rem;
    font-size: 1.18rem;
}

.price-match-modal__steps {
    margin: 0 -1.6rem 1.5rem;
    padding: 1.35rem 1.6rem .9rem;
    background: #f2f2f2;
}

.price-match-modal__steps--nt {
    background: #f7f3e5;
}

.price-match-modal__steps h2 {
    margin: 0 0 1.25rem;
    text-align: center;
    font: 700 1.65rem/1.2 "Roboto Condensed", "Roboto", Arial, sans-serif;
    color: #111;
}

.price-match-modal__step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.price-match-modal__step-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .75rem;
    align-items: center;
    margin-bottom: .85rem;
}

.price-match-modal__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    color: #fff;
    font: 700 1.25rem/1 "Roboto Condensed", "Roboto", Arial, sans-serif;
}

.price-match-modal__dot--red {
    background: var(--site-primary);
}

.price-match-modal__dot--gold {
    background: #cfbe73;
    color: #111;
}

.price-match-modal__step h3 {
    margin: 0;
    font: 700 1.15rem/1.15 "Roboto Condensed", "Roboto", Arial, sans-serif;
    color: #111;
}

.price-match-modal__step ul {
    margin: 0;
    padding-left: 1.25rem;
}

.price-match-modal__step li {
    margin-bottom: .45rem;
    line-height: 1.4;
}

.price-match-modal__note {
    margin: 1.2rem 0 0;
    text-align: center;
}

.price-match-modal__terms {
    color: #444;
}

.price-match-modal__terms p {
    margin-bottom: .8rem;
}

.price-match-modal__terms ul {
    margin: 0 0 1rem 1.25rem;
    padding-left: 1rem;
}

.price-match-modal__terms small,
.price-match-modal__terms li {
    font-size: .9rem;
    line-height: 1.45;
}

.cart-price-match-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: var(--panel-radius-tight);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.cart-price-match-modal .modal-body {
    padding: 1.25rem 1.6rem 2rem;
}

.cart-price-match-modal__close {
    display: flex;
    justify-content: flex-end;
}

.cart-price-match-modal__hero {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.cart-price-match-modal__hero img {
    max-width: 100%;
    margin-bottom: 1rem;
}

.cart-price-match-modal__hero .lead {
    margin-bottom: .4rem;
    color: #333;
    font-size: 1.1rem;
}

.cart-price-match-modal__rules {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1rem;
}

.cart-price-match-modal__rules span {
    display: flex;
    gap: .5rem;
    justify-content: center;
    color: #444;
}

.cart-price-match-modal__rules .la-check-circle {
    color: #198754;
}

.cart-price-match-modal__rules .la-times-circle {
    color: #dc3545;
}

.cart-price-match-modal__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .42fr);
    gap: 1.5rem;
    align-items: start;
}

.cart-price-match-modal__fields {
    display: grid;
    gap: 1rem;
}

.cart-price-match-modal__fields label {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: .85rem;
    align-items: center;
    margin: 0;
}

.cart-price-match-modal__fields span {
    font-weight: 700;
}

.cart-price-match-modal__fields input {
    width: 100%;
    min-height: 2.75rem;
    padding: .45rem .7rem;
    border: 1px solid var(--site-border-strong);
    border-radius: var(--panel-radius-tight);
}

.cart-price-match-modal__validation {
    margin: 0;
    padding: .65rem .85rem;
    border-radius: var(--panel-radius-tight);
    background: #fff3cd;
    color: #664d03;
}

.cart-price-match-modal__upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    width: 100%;
    min-height: 210px;
    border: 2px dashed var(--site-border-strong);
    border-radius: var(--panel-radius-tight);
    background: #f8fafc;
    color: #333;
    text-align: center;
}

.cart-price-match-modal__upload.is-dragover {
    border-color: var(--site-primary);
    background: #fff5f5;
}

.cart-price-match-modal__upload .las {
    color: var(--site-primary);
    font-size: 3.5rem;
}

.cart-price-match-modal__thumbs {
    color: #198754;
    font-weight: 700;
}

.cart-price-match-modal__actions {
    margin-top: 1.5rem;
    text-align: center;
}

@media (max-width: 767px) {
    .delivery-info-modal .modal-dialog {
        width: calc(100% - 1rem);
    }

    .delivery-info-modal .modal-header {
        min-height: 0;
        padding: 0.85rem 1rem;
    }

    .delivery-info-modal .modal-title {
        font-size: 1.28rem;
        line-height: 1.1;
    }

    .delivery-info-modal .btn-close {
        width: 1.85rem;
        height: 1.85rem;
    }

    .delivery-info-modal .btn-close::before {
        font-size: 2rem;
    }

    .delivery-info-modal .modal-body {
        padding: 0.95rem 1rem 1rem;
    }

    .delivery-info-modal h3 {
        margin: 0.95rem 0 0.45rem;
        font-size: 1rem;
        line-height: 1.15;
    }

    .delivery-info-modal h3 small,
    .delivery-info-modal p,
    .delivery-info-modal li,
    .delivery-info-modal .text-danger {
        font-size: 0.82rem;
        line-height: 1.28;
    }

    .delivery-info-modal p {
        margin-bottom: 0.7rem;
    }

    .delivery-info-modal ul {
        margin-bottom: 0.75rem;
        padding-left: 0.9rem;
    }

    .delivery-info-modal .btn {
        min-width: 0;
        min-height: 2.25rem;
        margin-top: 0.75rem;
        padding: 0.45rem 0.8rem;
        font-size: 0.78rem;
    }

    .price-match-guarantee-modal .modal-dialog {
        width: calc(100% - 1rem);
    }

    .price-match-guarantee-modal .modal-body {
        padding: 1rem 1.25rem 1.5rem;
    }

    .price-match-modal__steps {
        margin-right: -1.25rem;
        margin-left: -1.25rem;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .price-match-modal__step-grid {
        grid-template-columns: 1fr;
    }

    .cart-price-match-modal .modal-body {
        padding: 1rem 1.25rem 1.5rem;
    }

    .cart-price-match-modal__rules,
    .cart-price-match-modal__grid {
        grid-template-columns: 1fr;
    }

    .cart-price-match-modal__fields label {
        grid-template-columns: 1fr;
        gap: .35rem;
    }
}

@media (max-width: 900px) {
    .substitute-item__panel {
        grid-template-columns: 1fr;
    }

    .substitute-item__filters {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .substitute-page {
        padding: 2rem 0 3rem;
    }

    .substitute-summary {
        grid-template-columns: 1fr;
    }

    .substitute-summary img {
        width: 96px;
        height: 96px;
    }

    .substitute-modal {
        padding: 1rem;
    }
}

body[data-style="nt"] .btn-success,
body[data-style="nt"] a.btn-success,
body[data-style="nt"] button.btn-success {
    border-color: var(--site-accent-gold);
    background: var(--site-accent-gold);
    color: var(--site-primary);
}

body[data-style="nt"] .btn-success:hover,
body[data-style="nt"] .btn-success:focus,
body[data-style="nt"] .btn-success:active,
body[data-style="nt"] .btn-success.active {
    border-color: #b7a55b;
    background: #b7a55b;
    color: var(--site-primary);
}

body[data-style="nt"] .btn-success:disabled,
body[data-style="nt"] .btn-success.disabled {
    border-color: #dacd91;
    background: #dacd91;
    color: rgba(var(--site-primary-rgb), 0.72);
}

body[data-style="nt"] .link-success,
body[data-style="nt"] a.link-success {
    color: #9b842d;
}

body[data-style="nt"] .link-success:hover,
body[data-style="nt"] .link-success:focus {
    color: #75621d;
}
