:root {
            --ll-black: #111111;
            --ll-white: #FFFFFF;
            --ll-grey: #FBFAF8;
            --ll-muted: #696969;
            --ll-border: #CFCFCF;
            --ll-footer: var(--ll-footer-newsletter-bg);
        }


        * {
            box-sizing: border-box;
        }


        body {
            margin: 0;
            color: var(--ll-black);
            background: var(--ll-grey);
            font-family: "Museo Sans", "MuseoSans", "Instrument Sans", Arial, sans-serif;
            font-weight: 300;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }


        a {
            color: inherit;
            text-decoration: none;
        }


        img {
            display: block;
            max-width: 100%;
        }


        button,
        input,
        select {
            font: inherit;
        }


        .ll-announcement {
            display: flex;
            min-height: 44px;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            color: #FFFFFF;
            background: #000000;
            font-size: 13px;
            letter-spacing: 4px;
            line-height: 1.25;
            text-align: center;
            text-transform: uppercase;
        }


        .ll-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #FFFFFF;
            border-bottom: 1px solid #111111;
        }


        .ll-header-inner {
            position: relative;
            max-width: 1320px;
            min-height: 140px;
            margin: 0 auto;
            padding: 18px 0 16px;
        }


        .ll-logo {
            display: flex;
            width: max-content;
            justify-content: center;
            margin: 0 auto 18px;
        }


        .ll-logo img {
            width: auto;
            max-height: 66px;
        }


        .ll-search {
            position: absolute;
            left: 18px;
            bottom: 16px;
            display: inline-flex;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            font-size: 25px;
        }


        .ll-nav {
            display: flex;
            max-width: calc(100% - 430px);
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin: 0 auto;
        }


        .ll-nav a {
            color: #111111;
            font-size: 15px;
            font-weight: 300;
            letter-spacing: .55px;
            line-height: 1.25;
            text-transform: uppercase;
            white-space: nowrap;
        }


        .ll-nav a:hover,
        .ll-nav a.is-active {
            opacity: .56;
        }


        .ll-actions {
            position: absolute;
            right: 18px;
            bottom: 16px;
            display: flex;
            align-items: center;
            gap: 18px;
        }


        .ll-action {
            position: relative;
            display: inline-flex;
            width: 34px;
            height: 42px;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }


        .ll-action span {
            position: absolute;
            top: 0;
            right: -6px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            border-radius: 999px;
            color: #FFFFFF;
            background: #000000;
            font-size: 10px;
            line-height: 18px;
            text-align: center;
        }


        .ll-main {
            background: var(--ll-grey);
        }


        .ll-product-shell {
            max-width: 1720px;
            margin: 0 auto;
            padding: 42px 58px 76px;
        }


        .ll-breadcrumb {
            display: flex;
            align-items: center;
            gap: 13px;
            margin-bottom: 30px;
            color: #5B5B5B;
            font-size: 16px;
            line-height: 1.2;
        }


        .ll-breadcrumb a {
            color: #111111;
        }


        .ll-product-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
            gap: clamp(34px, 4vw, 72px);
            align-items: start;
        }


        .ll-gallery {
            position: sticky;
            top: 164px;
            display: grid;
            gap: 18px;
            align-items: start;
        }


        .ll-thumbs {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 4px;
        }


        .ll-thumb {
            width: 78px;
            height: 78px;
            flex: 0 0 auto;
            padding: 0;
            border: 1px solid transparent;
            background: #FFFFFF;
            cursor: pointer;
            transition: border-color .18s ease, opacity .18s ease;
        }


        .ll-thumb:hover {
            opacity: .78;
        }


        .ll-thumb.is-active {
            border-color: #111111;
        }


        .ll-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .ll-main-image {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: #FFFFFF;
            border: 1px solid #E3E0DC;
        }


        .ll-main-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }


        .ll-product-info {
            position: sticky;
            top: 164px;
            padding: clamp(26px, 3vw, 44px);
            background: #FFFFFF;
            border: 1px solid #E1DDD7;
            border-top: 2px solid #111111;
            box-shadow: 0 18px 42px rgba(17, 17, 17, .035);
        }


        .ll-product-overline {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 18px;
            color: var(--ll-muted);
            font-size: 12px;
            letter-spacing: .18em;
            line-height: 1.2;
            text-transform: uppercase;
        }


        .ll-product-overline a {
            border-bottom: 1px solid currentColor;
        }


        .ll-stock-pill {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 0 11px;
            border: 1px solid #D8D3CC;
            color: #111111;
            background: #FBFAF8;
            letter-spacing: .12em;
        }


        .ll-stock-pill.is-available {
            border-color: #BBA77F;
        }


        .ll-stock-pill.is-unavailable {
            color: #6B2B2B;
            border-color: #D9A7A7;
            background: #FFF8F8;
        }


        .ll-product-title {
            margin: 0 0 12px;
            color: #111111;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(36px, 3vw, 58px);
            font-weight: 400;
            line-height: 1.04;
        }


        .ll-brand {
            margin-bottom: 24px;
            color: #666666;
            font-size: 17px;
        }


        .ll-price {
            margin-bottom: 28px;
            color: #111111;
            font-size: 23px;
            line-height: 1;
        }


        .ll-price del {
            margin-right: 12px;
            color: #777777;
        }


        .ll-price.is-discounted {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 12px;
        }


        .ll-price.is-discounted del {
            margin-right: 0;
            color: #6B6B6B;
            font-size: 18px;
        }


        /* Two classes so this outranks the `.ll-price span` !important rule in
           lush-global.css, which would otherwise paint the chip dark on dark. */
        .ll-price .ll-price-badge {
            padding: 4px 9px;
            background: #9C1A1A;
            color: #FFFFFF !important;
            font-size: 12px !important;
            font-weight: 600 !important;
            letter-spacing: .08em;
            line-height: 1.4;
            text-transform: uppercase;
        }


        .ll-price-savings {
            margin: 0 0 26px;
            color: #9C1A1A;
            font-size: 15px;
            line-height: 1.5;
        }


        .ll-price-savings span {
            color: #696969;
        }


        .ll-product-promises {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1px;
            margin-bottom: 30px;
            background: #E3E0DC;
            border: 1px solid #E3E0DC;
        }


        .ll-product-promises span {
            display: flex;
            min-height: 58px;
            align-items: center;
            padding: 12px 14px;
            background: #FBFAF8;
            color: #34312D;
            font-size: 12px;
            letter-spacing: .12em;
            line-height: 1.35;
            text-transform: uppercase;
        }


        .ll-description h2 {
            margin: 0 0 14px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 26px;
            font-weight: 400;
        }


        .ll-description p {
            max-width: 760px;
            margin: 0 0 26px;
            color: #171717;
            font-size: 17px;
            line-height: 1.55;
        }


        .ll-product-facts {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1px;
            margin: 0 0 30px;
            background: #E3E0DC;
            border: 1px solid #E3E0DC;
        }


        .ll-product-facts div {
            min-width: 0;
            padding: 14px;
            background: #FFFFFF;
        }


        .ll-product-facts dt {
            margin-bottom: 7px;
            color: var(--ll-muted);
            font-size: 11px;
            letter-spacing: .16em;
            text-transform: uppercase;
        }


        .ll-product-facts dd {
            margin: 0;
            color: #111111;
            font-size: 15px;
            line-height: 1.35;
        }


        .ll-purchase {
            margin-top: 30px;
            padding-top: 28px;
            border-top: 1px solid #E3E0DC;
        }


        .ll-buy-grid {
            display: grid;
            grid-template-columns: minmax(150px, 190px) minmax(220px, 1fr);
            gap: 16px;
            margin-bottom: 28px;
        }


        .ll-field {
            display: grid;
            gap: 9px;
        }


        .ll-field label {
            color: #111111;
            font-size: 12px;
            letter-spacing: .16em;
            text-transform: uppercase;
        }


        .ll-quantity {
            display: inline-grid;
            grid-template-columns: 46px 54px 46px;
            height: 50px;
            border: 1px solid #C8C8C8;
            background: #FFFFFF;
        }


        .ll-quantity button,
        .ll-quantity input {
            border: 0;
            color: #111111;
            background: #FFFFFF;
            text-align: center;
            font-size: 20px;
        }

        .ll-quantity input {
            width: 54px;
            min-width: 0;
            appearance: textfield;
        }

        .ll-quantity input::-webkit-inner-spin-button,
        .ll-quantity input::-webkit-outer-spin-button {
            margin: 0;
            appearance: none;
        }

        .ll-quantity input:focus-visible,
        .ll-quantity button:focus-visible {
            outline: 2px solid #111111;
            outline-offset: -2px;
        }


        .ll-quantity button {
            cursor: pointer;
        }

        .ll-price[aria-busy="true"] {
            opacity: .65;
        }


        .ll-select {
            min-width: 260px;
            height: 50px;
            padding: 0 14px;
            border: 1px solid #C8C8C8;
            border-radius: 0;
            background: #FFFFFF;
            color: #111111;
            font-size: 15px;
        }


        .ll-service-options {
            margin: 0 0 28px;
            padding: 0;
            border: 0;
        }


        .ll-service-options legend {
            margin-bottom: 12px;
            color: #111111;
            font-size: 12px;
            letter-spacing: .16em;
            line-height: 1.2;
            text-transform: uppercase;
        }


        .ll-service-grid {
            display: grid;
            gap: 10px;
        }


        .ll-service-card {
            position: relative;
            display: grid;
            grid-template-columns: 20px minmax(0, 1fr) auto;
            gap: 12px;
            align-items: start;
            padding: 15px 16px;
            border: 1px solid #D8D3CC;
            background: #FFFFFF;
            color: #111111;
            cursor: pointer;
            transition: border-color .18s ease, background .18s ease;
        }


        .ll-service-card:hover,
        .ll-service-card:has(input:checked) {
            border-color: #111111;
            background: #FBFAF8;
        }


        .ll-service-card input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }


        .ll-service-card__mark {
            width: 17px;
            height: 17px;
            margin-top: 2px;
            border: 1px solid #A9A39A;
            background: #FFFFFF;
            transition: border-color .18s ease, box-shadow .18s ease;
        }


        .ll-service-card input:checked + .ll-service-card__mark {
            border-color: #111111;
            box-shadow: inset 0 0 0 4px #FFFFFF;
            background: #111111;
        }


        .ll-service-card__copy {
            display: grid;
            gap: 5px;
        }


        .ll-service-card__copy strong {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.3;
        }


        .ll-service-card__copy small {
            color: var(--ll-muted);
            font-size: 13px;
            line-height: 1.35;
        }

        .ll-service-card__copy .ll-service-card__minimum {
            color: #7B1650;
            font-weight: 500;
        }


        .ll-service-card__price {
            white-space: nowrap;
            color: #111111;
            font-size: 13px;
            letter-spacing: .08em;
            line-height: 1.35;
            text-transform: uppercase;
        }


        .ll-service-summary {
            margin: 12px 0 0;
            color: var(--ll-muted);
            font-size: 13px;
            line-height: 1.4;
        }


        .ll-service-summary strong {
            color: #111111;
            font-weight: 300;
        }

        .ll-service-minimum-notice {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 12px 0 0;
            padding: 14px 16px;
            border: 1px solid #B24D00;
            color: #3C210F;
            background: #FFF4E8;
            font-size: 13px;
            line-height: 1.45;
        }

        .ll-service-minimum-notice[hidden] {
            display: none;
        }

        .ll-service-minimum-notice__icon {
            display: inline-grid;
            width: 24px;
            height: 24px;
            flex: 0 0 24px;
            place-items: center;
            border-radius: 50%;
            color: #FFFFFF;
            background: #B24D00;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
        }

        .ll-service-minimum-notice__copy {
            display: grid;
            gap: 2px;
        }

        .ll-service-minimum-notice__copy strong {
            color: #7A3100;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
        }


        .ll-add {
            width: 100%;
            min-height: 60px;
            border: 1px solid #000000;
            color: #FFFFFF;
            background: #000000;
            cursor: pointer;
            font-size: 15px;
            font-weight: 300;
            letter-spacing: .14em;
            text-transform: uppercase;
            transition: color .18s ease, background .18s ease;
        }


        .ll-add:hover,
        .ll-add:focus {
            color: #000000;
            background: #FFFFFF;
        }


        .ll-add:disabled {
            cursor: not-allowed;
            opacity: .5;
        }


        .ll-related {
            padding: 74px 0 82px;
            overflow: hidden;
            background: var(--ll-grey);
        }


        .ll-related-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            max-width: 1760px;
            margin: 0 auto 34px;
            padding: 0 58px;
        }


        .ll-related-heading h2 {
            margin: 0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(36px, 3vw, 56px);
            font-weight: 400;
            line-height: 1;
        }


        .ll-related-heading a {
            display: inline-flex;
            margin-top: 15px;
            border-bottom: 3px solid #111111;
            font-size: 18px;
            line-height: 1.3;
        }


        .ll-related-track {
            display: grid;
            grid-auto-columns: clamp(300px, 24vw, 430px);
            grid-auto-flow: column;
            gap: 28px;
            overflow-x: auto;
            padding: 0 58px 24px;
            scroll-snap-type: x proximity;
        }


        .ll-related-card {
            scroll-snap-align: start;
        }


        .ll-related-card > .product-item {
            width: 100%;
            height: 100%;
            overflow: visible;
        }


        .ll-community {
            padding: 54px 24px 72px;
            background: var(--ll-grey);
            text-align: center;
        }


        .ll-community h2 {
            margin: 0 0 18px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 36px;
            font-weight: 400;
        }


        .ll-community p {
            max-width: 740px;
            margin: 0 auto;
            color: #222222;
            font-size: 20px;
            line-height: 1.45;
        }


        .ll-newsletter {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
            gap: 60px;
            padding: 58px;
            color: #FFFFFF;
            background: var(--ll-footer);
        }


        .ll-newsletter h3 {
            margin: 0 0 16px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 36px;
            font-weight: 400;
        }


        .ll-newsletter p {
            margin: 0;
            color: rgba(255, 255, 255, .86);
            font-size: 18px;
            line-height: 1.45;
        }


        .ll-signup {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 132px;
            gap: 10px;
            align-content: start;
        }


        .ll-signup input {
            min-height: 58px;
            padding: 0 18px;
            border: 1px solid #DCDCDC;
            border-radius: 0;
            background: #FFFFFF;
            color: #111111;
            font-size: 18px;
        }


        .ll-signup button {
            border: 1px solid #000000;
            color: #FFFFFF;
            background: #000000;
            cursor: pointer;
            font-size: 18px;
        }


        .ll-footer {
            padding: 66px 58px;
            color: var(--ll-footer-text);
            background: var(--ll-footer-main-bg);
        }


        .ll-footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr;
            gap: 70px;
            max-width: 1760px;
            margin: 0 auto;
        }


        .ll-footer h4 {
            margin: 0 0 24px;
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }


        .ll-footer p,
        .ll-footer a {
            color: rgba(255, 255, 255, .76);
            font-size: 18px;
            line-height: 1.48;
        }


        .ll-footer-links {
            display: grid;
            gap: 14px;
            margin: 0;
            padding: 0;
            list-style: none;
        }


        body.ll-modal-open {
            overflow: hidden;
        }


        @media (max-width: 1199px) {
            .ll-product-layout {
                grid-template-columns: 1fr;
            }


            .ll-gallery,
            .ll-product-info {
                position: static;
            }


            .ll-footer-grid,
            .ll-newsletter {
                grid-template-columns: 1fr 1fr;
            }
}


        @media (max-width: 991px) {
            .ll-announcement {
                font-size: 11px;
                letter-spacing: 2px;
            }


            .ll-header-inner {
                min-height: 108px;
                padding: 14px 18px;
            }


            .ll-logo {
                margin-bottom: 12px;
            }


            .ll-logo img {
                max-height: 50px;
            }


            .ll-search,
            .ll-actions {
                bottom: 12px;
            }


            .ll-nav {
                max-width: 100%;
                justify-content: flex-start;
                gap: 18px;
                overflow-x: auto;
                padding: 0 52px;
            }


            .ll-product-shell {
                padding: 30px 18px 52px;
            }


            .ll-thumbs {
                overflow-x: auto;
            }


            .ll-thumb {
                width: 82px;
                height: 82px;
                flex: 0 0 auto;
            }


            .ll-related-heading,
            .ll-related-track {
                padding-right: 18px;
                padding-left: 18px;
            }
}


        @media (max-width: 767px) {
            .ll-product-title {
                font-size: 38px;
            }


            .ll-product-info {
                padding: 24px 20px;
            }


            .ll-product-promises,
            .ll-product-facts,
            .ll-buy-grid {
                grid-template-columns: 1fr;
            }


            .ll-product-promises span {
                min-height: 48px;
            }


            .ll-select {
                min-width: 0;
                width: 100%;
            }


            .ll-service-card {
                grid-template-columns: 20px minmax(0, 1fr);
            }


            .ll-service-card__price {
                grid-column: 2;
            }


            .ll-description p {
                font-size: 18px;
            }


            .ll-related-track {
                grid-auto-columns: calc((100vw - 50px) / 2);
                gap: 14px;
            }


            .ll-newsletter,
            .ll-footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                padding-right: 22px;
                padding-left: 22px;
            }


            .ll-signup {
                grid-template-columns: 1fr;
            }
}
