:root {
    --kl-red: #660706;
    --kl-red-dark: #330100;
    --kl-grey-01: #1e1e1e;
    --kl-white: #ffffff;
    --kl-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    --kl-glow: drop-shadow(0 0 4px rgba(190, 190, 190, 0.35)) drop-shadow(0 0 8px rgba(160, 160, 160, 0.25));
    --inner-nav-padding: clamp(24px, calc(24px + ((100% - 1008px) * 0.0454545)), 48px);
}

.site-container {
    max-width: 1536px;
    width: auto;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
@media (min-width: 1200px) {
    .site-container {
        padding: 0 48px;
    }
}

.site-container * {
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

.site-header,
.site-footer {
    background-color: var(--kl-red);
    background-image: url("/Content/images/header_textured_bg.png");
    background-size: cover;
}

.site-header .nav-links a,
.site-header .nav-links a:visited,
.site-footer a {
    color: var(--kl-white) !important;
    text-decoration: none !important;
    transition: color 200ms ease, filter 200ms ease;
}

.site-header .nav-links a:hover,
.site-footer a:hover {
    color: var(--kl-white) !important;
    filter: var(--kl-glow);
}

.site-icon {
    height: 20px !important;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.site-header__desktop {
    display: block;
    position: relative;
}

.site-header__top {
    padding: 32px 0;
    height: 68px;
}

.site-header__top-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.site-header__search {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.site-header__search form#searchFrm {
    display: flex;
    flex-direction: row-reverse;
    float: none;
    gap: 0;
}
.site-header__search-input {
    background: var(--kl-white);
    border-radius: 4px;
    padding: 11px 16px 16px 16px;
    box-shadow: var(--kl-shadow);
    max-height: 44px;
}

.site-header__search-input form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    position: relative;
}

.site-header__search-input label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-header__search-input .inputField {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    flex: 1;
    width: 302px;
    padding: 0 44px 0 10px;
}

@media (min-width: 1200px) {
    .site-header__search-input .inputField {
        width: 342px;
    }
}

.site-header__search-input .goButton {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 22px;
    height: 22px;
    font-size: 0;
}

.site-header__search-input .goButton::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background-image: url("/Content/images/icon-search-grey.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.site-header__search-input .site-header__search-clear {
    position: absolute;
    font-family: Roboto, sans-serif;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid rgba(30, 30, 30, 0.78);
    border-radius: 50%;
    background: var(--kl-white);
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    color: rgba(30, 30, 30, 0.78);
    cursor: pointer;
}

.site-header__search-input .site-header__search-clear.is-visible {
    visibility: visible;
}

.site-header__search-input .site-header__search-clear-icon {
    display: none;
    font-family: Roboto, sans-serif;
}

.site-header__search-input .site-header__search-clear::before,
.site-header__search-input .site-header__search-clear::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: rgba(30, 30, 30, 0.78);
    border-radius: 1px;
    transform-origin: center;
}

.site-header__search-input .site-header__search-clear::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-header__search-input .site-header__search-clear::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header__search-advanced {
    font-size: 14px;
    line-height: 1;
}

.site-header__logo {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 12px 0 0;
}

.site-header__logo img {
    width: 160px;
    height: auto;
    display: block;
    margin: 0;
}

.site-header__utility {
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

.site-header__secondary {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.site-header__secondary-link--new-arrivals {
    display: none;
}

@media (min-width: 1200px) {
    .site-header__secondary-link--new-arrivals {
        display: inline-flex;
    }
}

.site-header__icons {
    display: flex;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
@media (min-width: 1200px) {
    .site-header__icons {
        gap: 30px;
    }
}

.site-header__icon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header__icon-link svg {
    transition: filter 500ms ease;
}

.site-header__icon-link:hover svg {
    filter: var(--kl-glow);
}

.site-header__cart-count--loading {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #bdbdbd;
    border-radius: 2px;
}

.site-header__nav {
    background: var(--kl-red-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding: 16px;
}

.site-header__basket-summary {
    display: none;
}

.site-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1350px;
    max-height: 22px;
    white-space: nowrap;
    margin: 0 auto;
    width: 100%;
    padding-left: var(--inner-nav-padding);
    padding-right: var(--inner-nav-padding);
}

.site-header__nav-link,
.site-footer__col-link {
    font-family: Lora, Georgia, serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-header__nav-link {
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 1px;
}

.site-header__nav-sep {
    padding: 0 6px;
    font-family: Lora, "Times New Roman", serif;
    font-size: 23px;
    color: var(--kl-white);
    font-weight: 500;
}

.site-footer__desktop {
    display: block;
    color: var(--kl-white);
}

.site-footer__desktop-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 48px;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: -12px;
}

.site-footer__brand-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__logo {
    width: 190px;
    height: 129px;
}

.site-footer__quote {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer__quote-text {
    font-family: Lora, "Times New Roman", serif;
    font-size: 34px;
    white-space: nowrap;
    line-height: 34px;
}

.site-footer__quote-attribution {
    font-family: Roboto, sans-serif;
    font-style: italic;
    font-size: 18px;
    line-height: 18px;
}

.site-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Roboto, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.site-footer__col.social-links {
    padding-right: 80px;
}

.site-footer__col-link {
    font-size: 23px;
}

.site-footer__link,
.site-footer__social-link {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer__social-link .site-icon {
    width: 16px;
    height: 16px;
}

.site-footer__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 48px;
    font-size: 12px;
}

a.site-footer__meta-link {
    text-decoration: underline !important;
}

.site-footer__desktop-inner,
.site-footer__meta {
    max-width: 1536px;
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

.site-footer__col-link,
.site-footer__link,
.site-footer__social-link,
.site-footer__meta-text,
a.site-footer__meta-link,
.site-footer__phone {
    line-height: 18px;
}

.site-footer__desktop-inner > .site-footer__col:nth-child(2) {
    gap: 26px;
}

.site-footer__phone .site-icon {
    height: 18px !important;
    width: 18px !important;
}

@media (min-width: 1200px) {
    .site-footer__desktop-inner,
    .site-footer__meta {
        padding-left: 48px;
        padding-right: 48px;
    }
}

#goto-mobile-link {
    display: none;
    position: fixed;
    right: 12px;
    bottom: 12px;
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 1200;
}

#goto-mobile-link .site-mobile-switch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    min-width: 0;
    width: min(82vw, 320px);
    width: min(82dvw, 320px);
    max-width: calc(100vw - 24px);
    max-width: calc(100dvw - 24px);
    padding: 10px 14px;
    border: 2px solid var(--kl-red);
    border-radius: 999px;
    background: var(--kl-white);
    color: var(--kl-red-dark) !important;
    font-family: Roboto, sans-serif;
    font-size: clamp(13px, 3.4vw, 20px);
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    text-align: center;
    text-decoration: none !important;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

#goto-mobile-link .site-mobile-switch-button:hover,
#goto-mobile-link .site-mobile-switch-button:focus {
    filter: none;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Non-JS fallback: show on narrow touch viewports if script does not run. */
@media (max-width: 999px) and (hover: none) and (pointer: coarse) {
    #goto-mobile-link {
        display: block;
    }
}
