@font-face {
    font-family: "Helvetica Neue LT";
    src: url("/fonts/helvetica-neue-lt.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue LT";
    src: url("/fonts/helvetica-neue-lt-md.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue LT";
    src: url("/fonts/helvetica-neue-lt-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Condensed BB";
    src: url("/fonts/helvetica-condensed.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Condensed BB";
    src: url("/fonts/helvetica-condensed-bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --lf-primary: #405270;
    --lf-accent: #daa595;
    --lf-accent-light: #f7ecea;
    --lf-green: #78917b;
    --lf-text: #2c3544;
    --lf-muted: #67717f;
    --lf-line: #e7ded8;
    --lf-white: #ffffff;
    --lf-cream: #fdfbf6;
    --site-max: 1300px;
    --page-edge: 42px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    color: var(--lf-text);
    background: var(--lf-white);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
}

body {
    margin: 0;
}

body.modal-open {
    overflow: hidden;
}

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

.container {
    width: min(100%, var(--site-max));
    margin-inline: auto;
    padding-inline: var(--page-edge);
}

.audience-bar {
    background: var(--lf-accent-light);
    border-top: 1px solid var(--lf-line);
}

.audience-bar__inner {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 54px;
    width: 100%;
}

.audience-tabs {
    display: flex;
    flex: 0 0 492px;
    background: var(--lf-accent-light);
}

.audience-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 246px;
    min-height: 54px;
    padding: 0 24px;
    color: var(--lf-primary);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.audience-pill--active,
.audience-pill:hover {
    background: var(--lf-white);
}

.audience-pill--active {
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--lf-line);
}

.header-main {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 36px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.95;
    text-transform: uppercase;
}

.logo-link {
    align-items: flex-start;
    gap: 4px;
}

.site-logo {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
}

.logo-context {
    color: var(--lf-accent);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.primary-nav a:hover,
.category-panel a:hover,
.site-footer a:hover {
    color: var(--lf-accent);
}

.hero {
    border-bottom: 1px solid var(--lf-line);
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f5 100%);
}

.hero__inner {
    padding-block: 72px 64px;
}

.hero__title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.hero__add-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 42px;
    border: 1px solid var(--lf-primary);
    padding: 0 22px;
    color: var(--lf-primary);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero__add-review:hover,
.hero__add-review:focus-visible {
    background: var(--lf-primary);
    color: var(--lf-white);
}

.hero__review-action {
    display: grid;
    justify-items: end;
    gap: 8px;
    min-width: 204px;
    position: relative;
    z-index: 1;
}

.hero__review-count {
    margin: 0;
    color: var(--lf-muted);
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--lf-green);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    color: var(--lf-primary);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    max-width: none;
    font-size: 56px;
    line-height: 0.95;
    white-space: nowrap;
}

.hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 2.8vw, 42px);
}

.hero__summary {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--lf-muted);
    font-size: 18px;
    line-height: 1.55;
}

.latest-reviews {
    padding-block: 44px 8px;
}

.latest-reviews__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    border-top: 2px solid var(--lf-text);
    padding-top: 22px;
}

.latest-reviews__header h2 {
    margin: 0;
    font-size: 30px;
}

.latest-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.latest-reviews__grid--all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 52px;
}

.latest-review-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    min-height: 190px;
    border-top: 1px solid var(--lf-line);
    padding-top: 18px;
}

.latest-review-card__image {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 10px;
    background: var(--lf-accent-light);
}

.latest-review-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.latest-review-card__image span {
    color: var(--lf-muted);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
}

.latest-review-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.latest-review-card__rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--lf-text);
    font-size: 13px;
    line-height: 1;
}

.latest-review-card__rating time {
    color: var(--lf-muted);
    font-size: 12px;
    white-space: nowrap;
}

.latest-review-card h3 {
    margin: 10px 0 0;
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.12;
}

.latest-review-card h4 {
    margin: 9px 0 0;
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.latest-review-card p {
    margin: 8px 0 0;
    color: var(--lf-muted);
    font-size: 13px;
    line-height: 1.42;
}

.latest-review-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    color: var(--lf-muted);
    font-size: 12px;
}

.latest-review-card footer a {
    color: var(--lf-primary);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.latest-reviews__actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.latest-reviews__actions a {
    display: inline-flex;
    min-width: 190px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lf-text);
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.latest-reviews__actions a:hover,
.latest-reviews__actions a:focus-visible {
    background: var(--lf-primary);
    color: var(--lf-white);
}

.reviews-page {
    padding-block: 52px 76px;
}

.reviews-page__top {
    margin-bottom: 30px;
    border-top: 2px solid var(--lf-text);
    padding-top: 22px;
}

.reviews-page__top > a {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--lf-primary);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
}

.reviews-page__top h1 {
    max-width: none;
    margin-top: 10px;
    font-size: 42px;
    line-height: 1;
}

.add-review-page {
    padding-block: 52px 76px;
}

.add-review-page__top {
    margin-bottom: 30px;
    border-top: 2px solid var(--lf-text);
    padding-top: 22px;
}

.add-review-page__top > a {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--lf-primary);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
}

.add-review-page__top h1 {
    max-width: none;
    margin-top: 10px;
    font-size: 42px;
    line-height: 1;
}

.add-review-form {
    max-width: 820px;
}

.add-review-product-picker {
    position: relative;
    display: grid;
    gap: 8px;
    margin-bottom: 6px;
}

.add-review-product-picker__label {
    color: var(--lf-primary);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.add-review-product-picker__button {
    width: 100%;
    border: 1px solid var(--lf-line);
    background: var(--lf-white);
    padding: 12px;
    color: var(--lf-text);
    cursor: pointer;
    text-align: left;
}

.add-review-product-picker__selected,
.add-review-product-picker__option {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.add-review-product-picker__selected img,
.add-review-product-picker__option img {
    display: block;
    width: 72px;
    aspect-ratio: 1 / 1;
    background: var(--lf-accent-light);
    object-fit: contain;
}

.add-review-product-picker__selected strong,
.add-review-product-picker__option strong {
    display: block;
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.2;
}

.add-review-product-picker__selected small,
.add-review-product-picker__option small {
    display: block;
    margin-top: 4px;
    color: var(--lf-primary);
    font-size: 13px;
}

.add-review-product-picker__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    max-height: 360px;
    overflow: auto;
    border: 1px solid var(--lf-line);
    background: var(--lf-white);
    box-shadow: 0 18px 45px rgba(44, 53, 68, 0.16);
}

.add-review-product-picker__menu[hidden] {
    display: none;
}

.add-review-product-picker__option {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--lf-line);
    background: var(--lf-white);
    padding: 12px;
    cursor: pointer;
    text-align: left;
}

.add-review-product-picker__option:hover,
.add-review-product-picker__option:focus-visible {
    background: var(--lf-accent-light);
}

.content-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 54px var(--page-edge) 72px;
    scroll-margin-top: 156px;
}

.category-panel {
    border-top: 2px solid var(--lf-primary);
    padding-top: 20px;
}

.category-panel h2,
.site-footer h2 {
    margin-bottom: 18px;
    font-size: 18px;
}

.category-panel a,
.site-footer nav a {
    display: block;
    padding: 8px 0;
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
}

.category-panel a {
    text-transform: none;
    font-size: 18px;
    line-height: 1.15;
}

.product-list-panel {
    min-height: 360px;
    padding: 0;
    border: 0;
    background: transparent;
}

.product-list-panel h2 {
    font-size: 30px;
}

.category-link--active {
    color: var(--lf-green);
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 26px;
    margin-top: 30px;
}

.product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    background: var(--lf-white);
    border: none;
}

.product-card__image-link {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 18px;
    background: var(--lf-accent-light);
}

.product-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card__image-placeholder {
    padding: 20px;
    color: var(--lf-muted);
    text-align: center;
}

.product-card__body {
    display: flex;
    flex-direction: column;
    min-height: 205px;
    padding: 12px 8px 0;
}

.product-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.product-card__audience {
    margin: 0;
    color: var(--lf-primary);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
}

.product-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--lf-text);
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
}

.product-card__rating span:first-child {
    color: var(--lf-accent);
    font-size: 15px;
    line-height: 0.9;
}

.product-card__rating .product-card__no-reviews {
    color: var(--lf-muted);
    font-size: 12px;
    line-height: 1;
}

.product-card h3 {
    margin: 0;
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.12;
}

.product-card__part-number {
    margin: 0;
    color: var(--lf-text);
    font-size: 12px;
    line-height: 1.2;
}

.product-card__purchase-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.product-card__buy-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 28px;
    margin-left: auto;
    border: 1px solid var(--lf-text);
    padding: 0 10px;
    color: var(--lf-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-card__buy-link:hover {
    background: var(--lf-text);
    color: var(--lf-white);
}

.product-card__write {
    margin: 22px 0 16px;
    color: var(--lf-text);
    font-size: 13px;
    line-height: 1.4;
}

.product-card__write a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.product-card__review-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 46px;
    width: 100%;
    border: 1px solid var(--lf-text);
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card__review-link:hover {
    background: var(--lf-text);
    color: var(--lf-white);
}

.empty-products {
    color: var(--lf-muted);
    font-size: 17px;
}

.review-modal[hidden] {
    display: none;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 28px;
}

.review-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 53, 68, 0.56);
}

.review-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 620px);
    max-height: min(92vh, 820px);
    overflow: auto;
    border: 1px solid var(--lf-line);
    background: var(--lf-white);
    padding: 34px;
    box-shadow: 0 22px 70px rgba(44, 53, 68, 0.24);
}

.review-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--lf-line);
    background: var(--lf-white);
    color: var(--lf-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.review-modal__dialog h2 {
    margin: 22px 0 0;
    font-size: 30px;
}

.review-modal__intro {
    border-bottom: 1px solid var(--lf-line);
    padding: 0 44px 22px 0;
}

.review-modal__intro p:last-child {
    max-width: 420px;
    margin: 8px 0 0;
    color: var(--lf-text);
    font-size: 16px;
    line-height: 1.35;
}

.review-modal__product {
    margin: 8px 0 24px;
    color: var(--lf-muted);
    font-size: 15px;
}

.review-form {
    display: grid;
    gap: 16px;
}

.review-form label {
    display: grid;
    gap: 7px;
    color: var(--lf-text);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
}

.review-form input,
.review-form textarea {
    width: 100%;
    border: 1px solid var(--lf-line);
    border-radius: 0;
    background: var(--lf-white);
    padding: 12px 13px;
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.review-form textarea {
    resize: vertical;
}

.review-form__rating {
    display: grid;
    gap: 8px;
    color: var(--lf-text);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
}

.review-form__stars {
    display: flex;
    gap: 5px;
}

.review-form__stars button {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--lf-line);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.review-form__stars button.review-form__star--active {
    color: var(--lf-text);
}

.review-form__body-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.review-form__body-label small {
    color: var(--lf-muted);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
}

.review-form__split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.review-form__status {
    border: 1px solid var(--lf-line);
    background: var(--lf-accent-light);
    padding: 12px 14px;
    color: var(--lf-text);
    font-size: 14px;
    line-height: 1.35;
}

.review-form__status:empty,
.review-form__status[hidden] {
    display: none;
}

.review-form__status--error {
    border-color: var(--lf-accent);
    color: var(--lf-accent);
}

.review-form button[type="submit"] {
    min-height: 46px;
    border: 1px solid var(--lf-text);
    background: var(--lf-text);
    color: var(--lf-white);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.review-form button[type="submit"]:disabled {
    cursor: wait;
    opacity: 0.7;
}

.review-toast[hidden] {
    display: none;
}

.review-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    width: min(360px, calc(100vw - 40px));
    border: 1px solid var(--lf-line);
    background: var(--lf-white);
    padding: 16px 18px;
    color: var(--lf-text);
    box-shadow: 0 18px 45px rgba(44, 53, 68, 0.2);
    font-size: 14px;
    line-height: 1.4;
}

.review-toast--visible {
    display: block;
}

.product-detail {
    padding-block: 34px 78px;
}

.product-detail__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.product-detail__back {
    display: inline-flex;
    color: var(--lf-primary);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
}

.product-detail__top-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid var(--lf-text);
    padding: 0 14px;
    color: var(--lf-text);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-detail__top-review:hover {
    background: var(--lf-text);
    color: var(--lf-white);
}

.product-detail__media {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 18px;
    background: var(--lf-accent-light);
}

.product-detail__media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-detail__summary h1 {
    max-width: none;
    font-size: 28px;
    line-height: 1;
    white-space: normal;
}

.product-detail__summary {
    margin-top: 12px;
}

.product-detail__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
    padding: 12px 0;
    color: var(--lf-text);
    font-size: 16px;
}

.product-detail__rating small {
    margin-left: auto;
    color: var(--lf-muted);
}

.product-detail__rating span:first-child,
.review-summary span {
    color: var(--lf-accent);
}

.product-detail__facts {
    display: grid;
    gap: 0;
    margin: 18px 0 0;
}

.product-detail__facts-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    border-top: 1px solid var(--lf-line);
    padding: 22px 0;
}

.product-detail__facts-row--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.product-detail__fact-pair {
    display: grid;
    grid-template-columns: auto;
    gap: 14px;
}

.product-detail__fact-pair--right {
    margin-left: auto;
    text-align: right;
}

.product-detail__facts dt {
    color: var(--lf-muted);
    font-family: "Helvetica Condensed BB", Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

.product-detail__facts dd {
    margin: 0;
    color: var(--lf-text);
    font-size: 15px;
}

.product-detail__facts dd span {
    display: block;
}

.product-detail__facts .product-detail__fact-pair--right dd,
.product-detail__facts .product-detail__fact-pair--right dd span {
    color: #75716f;
    font-size: 13.3333px;
}

.product-detail__icon-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 28px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--lf-line);
}

.product-detail__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-height: 58px;
    color: #9fa3a6;
    cursor: help;
}

.product-detail__icon svg {
    display: block;
    width: 100%;
    max-width: 46px;
    height: auto;
    color: inherit;
    opacity: 0.72;
}

.product-detail__icon svg,
.product-detail__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-detail__icon text {
    fill: currentColor;
    stroke: none;
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.product-detail__icon span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.product-detail__external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid var(--lf-text);
    padding: 0 24px;
    color: var(--lf-text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-detail__external:hover {
    background: var(--lf-text);
    color: var(--lf-white);
}

.product-detail__external--secondary {
    margin-top: 18px;
}

.product-detail__actions {
    display: grid;
    margin-top: 18px;
}

.product-detail__external--primary {
    width: 100%;
}

.product-detail__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 54px;
    margin-top: 18px;
}

.product-detail__reviews h2 {
    font-size: 42px;
}

.product-detail__description h2 {
    font-size: 24px;
}

.product-detail__description-copy {
    margin-top: 22px;
    color: var(--lf-text);
    font-size: 13px;
    line-height: 1.45;
}

.product-detail__description-copy p,
.product-detail__description-copy article {
    margin: 0 0 18px;
}

.product-detail__description-copy a {
    color: var(--lf-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.product-detail__reviews {
    border-top: 2px solid var(--lf-text);
    padding-top: 22px;
}

.product-detail__description {
    border-top: 1px solid var(--lf-line);
    padding-top: 22px;
}

.product-detail__sidebar {
    display: grid;
    align-content: start;
    gap: 24px;
}

.review-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 22px;
    font-size: 16px;
}

.review-summary small {
    color: var(--lf-muted);
}

.review-list {
    display: grid;
    gap: 0;
    margin-top: 18px;
}

.review-item {
    border-top: 1px solid var(--lf-line);
    padding: 24px 0;
}

.review-item__rating {
    color: var(--lf-accent);
    font-size: 15px;
    letter-spacing: 1px;
}

.review-item h3 {
    margin: 8px 0;
    color: var(--lf-text);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.2;
}

.review-item p {
    margin: 0;
    color: var(--lf-text);
    font-size: 16px;
    line-height: 1.55;
}

.review-item footer {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    color: var(--lf-muted);
    font-size: 12px;
}

.site-footer {
    background: var(--lf-primary);
    color: var(--lf-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 0.8fr;
    gap: 72px;
    padding-block: 58px 72px;
}

.footer-signup__headline {
    max-width: 440px;
    margin: 28px 0 0;
    color: var(--lf-white);
    font-family: "Helvetica Neue LT", Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
}

.site-logo--footer {
    filter: brightness(0) invert(1);
    opacity: 0.94;
    width: 230px;
}

.footer-brand .logo-context {
    color: var(--lf-accent);
}

.site-footer h2 {
    color: var(--lf-white);
}

.site-footer nav a {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer nav a.footer-link--active {
    color: var(--lf-accent);
}

.footer-bottom {
    padding-block: 18px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--lf-white);
    font-size: 16px;
    font-weight: 700;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 860px) {
    .audience-bar__inner,
    .audience-tabs {
        flex-wrap: wrap;
    }

    .audience-tabs {
        flex-basis: 100%;
    }

    .audience-pill {
        width: 50%;
    }

    .header-main,
    .content-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-main {
        gap: 20px;
        padding: 20px 0;
    }

    .primary-nav {
        justify-content: flex-start;
        gap: 14px 20px;
    }

    h1 {
        font-size: 42px;
    }

    .hero__inner {
        padding-block: 48px;
    }

    .hero__title-row {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero__review-action {
        justify-items: start;
    }

    .latest-reviews__header {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .latest-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-list-panel {
        padding: 0;
    }

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

    .product-detail__body {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .product-detail__summary h1 {
        font-size: 30px;
    }
}

@media (max-width: 520px) {
    :root {
        --page-edge: 18px;
    }

    .container {
        padding-inline: var(--page-edge);
    }

    .audience-pill {
        padding: 0 12px;
        font-size: 17px;
    }

    .site-logo {
        width: 250px;
    }

    .primary-nav {
        font-size: 14px;
    }

    h1 {
        font-size: 30px;
    }

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

    .latest-reviews__grid {
        grid-template-columns: 1fr;
    }

    .latest-review-card {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .review-modal {
        padding: 16px;
    }

    .review-modal__dialog {
        padding: 28px 20px;
    }

    .review-form__split {
        grid-template-columns: 1fr;
    }

    .product-detail__topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}
