.product-detail__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.91fr);
    align-items: stretch;
    gap: clamp(22px, 3vw, 42px);
    margin-bottom: 32px;
}

.product-detail__summary {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-detail__gallery:has(.product-gallery-thumbs) {
    --product-thumb-size: calc((100% - 42px) / 6);
    position: relative;
    display: block;
    padding-left: calc(var(--product-thumb-size) + 10px);
}

.product-detail__gallery:has(.product-gallery-thumbs) .product-gallery-slider {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
}

.product-detail__gallery:has(.product-gallery-thumbs) .product-gallery-thumbs {
    position: absolute;
    top: 0;
    bottom: 22px;
	height: auto;
    left: 0;
    width: var(--product-thumb-size);
    height: auto;
    min-height: 0;
    overflow: hidden;
}

.product-detail__gallery .product-gallery-thumbs .swiper-slide {
    width: 100%;
}

.product-detail__gallery .product-detail__thumb {
    width: 100%;
    height: 100%;
}

.product-detail__gallery .product-detail__thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__gallery:has(.product-gallery-thumbs) .product-detail__photo-credit {
    margin-top: 6px;
}

.product-gallery-slider {
    position: relative;
    margin-bottom: 10px;
}

.product-detail__main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 0;
    background: #171918;
}

.product-detail__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 38px;
    height: 48px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

.product-detail__gallery-nav::before {
    width: 11px;
    height: 11px;
    border-color: #fff;
}

.product-detail__gallery-nav--prev {
    left: 8px;
}

.product-detail__gallery-nav--next {
    right: 8px;
}

.product-detail__thumb {
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
}

.product-detail__thumb:hover,
.product-gallery-thumbs .swiper-slide-thumb-active .product-detail__thumb {
    border-color: #d8d9d6;
}

.product-detail__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-detail__photo-credit {
    margin-top: 6px;
    color: #a9aaa6;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-align: right;
}

.product-detail__eyebrow {
    margin-bottom: 6px;
    color: #d8d9d6;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-detail__eyebrow::before {
    content: "✧";
    margin-right: 9px;
}

.product-detail__title {
    margin: 0 0 8px;
    color: #e8e7e3;
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(30px, 3vw, 51px);
    font-weight: 400;
    line-height: 1.05;
}

.product-detail__subtitle {
    margin-bottom: 16px;
    color: #e8e7e3;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.45;
}

.product-detail__meta {
    margin: 0 0 18px;
    border-top: 1px solid #434745;
}

.product-detail__meta-row {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    gap: 8px;
    padding: 9px 0;
    border-bottom: 1px solid #434745;
    color: #e8e7e3;
    font-size: 12px;
    line-height: 1.4;
}

.product-detail__meta-label {
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.product-detail__meta-value {
    color: #e8e7e3;
}

.product-detail__buttons-title {
    margin-bottom: 8px;
    color: #e8e7e3;
    font-size: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-detail__buttons {
    display: grid;
    gap: 9px;
}

.product-detail__button {
    display: grid;
    grid-template-columns: 48% 39% 13%;
    align-items: stretch;
    gap: 0;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0;
    border: 1px solid var(--color-border);
    background: transparent;
    color: #e8e7e3;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.07em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.product-detail__button:hover {
    background: rgba(216, 217, 214, 0.06);
    border-color: var(--mg-platinum);
    color: #f5f4f1;
}

.product-detail__button:hover .product-detail__button-arrow {
    transform: translateX(4px);
}

.product-detail__button-text {
    grid-column: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 8px 12px;
    position: relative;
}

.product-detail__button-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 24px;
    background: var(--color-border);
    transform: translateY(-50%);
}

.product-detail__button .recommended {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    position: relative;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    text-transform: none;
}

.product-detail__button .recommended::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 24px;
    background: var(--color-border);
    transform: translateY(-50%);
}

.product-detail__button-arrow {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease;
}

.product-detail__button:not(:has(.recommended))::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 1px;
    height: 24px;
    background: var(--color-border);
}

.product-detail__button-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 24px;
    background: var(--color-border);
    transform: translateY(-50%);
}

.product-detail__affiliate-note {
    margin: auto 0 0;
    padding-top: 12px;
    color: #a9aaa6;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
}

.product-detail__thumb-nav {
    position: absolute;
    left: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--product-thumb-size);
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.product-detail__thumb-nav span {
    display: none;
}

.product-detail__thumb-nav::before {
    content: "";
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.product-detail__thumb-nav--prev {
    top: 0;
}

.product-detail__thumb-nav--prev::before {
    transform: translateY(3px) rotate(-45deg);
}

.product-detail__thumb-nav--next {
    bottom: 22px;
}

.product-detail__thumb-nav--next::before {
    transform: translateY(-3px) rotate(135deg);
}

.product-detail__thumb-nav.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1300px) {
    .product-detail__top {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .product-detail__top {
        gap: 20px;
    }

    .product-detail__button {
        font-size: 10px;
    }
}

.product-detail__section--description:has(.product-editorial) {
    margin: 0;
    padding: 0;
    border: 0;
}

.product-editorial {
    display: grid;
    gap: 12px;
    color: #e8e7e3;
    font-family: var(--font-body);
    line-height: 1.45;
}

.product-editorial .product-editorial__panel {
    min-width: 0;
    padding: 12px 16px 16px;
    border: 1px solid var(--mg-line);
}

.product-editorial .product-editorial__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: #e8e7e3;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-editorial .product-editorial__heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--mg-line);
}

.product-editorial .product-editorial__intro {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: clamp(24px, 5vw, 70px);
    padding: 6px 20px 24px;
}

.product-editorial .product-editorial__quote {
    margin: 0;
    color: #e8e7e3;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 45px);
    font-style: italic;
    line-height: 1.02;
}

.product-editorial .product-editorial__summary {
    max-width: 410px;
    margin: 0;
    color: #d2d3d2;
    font-size: 14px;
    line-height: 1.5;
}

.product-editorial .product-editorial__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 12px;
    border-top: 1px solid var(--mg-line);
}

.product-editorial .product-editorial__fact {
    min-width: 0;
    padding: 0 16px;
    border-left: 1px solid var(--mg-line);
}

.product-editorial .product-editorial__fact:first-child {
    padding-left: 0;
    border-left: 0;
}

.product-editorial .product-editorial__fact h3 {
    margin: 0 0 11px;
    color: #e8e7e3;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.product-editorial .product-editorial__fact p {
    margin: 0;
    color: #c5c7c6;
    font-size: 13px;
    line-height: 1.4;
}

.product-editorial .product-editorial__photos {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
    max-width: 820px;
    margin-inline: auto;
    gap: 10px;
}

.product-editorial .product-editorial__photo {
    position: relative;
    grid-column: span 2;
    display: block;
    min-width: 0;
    aspect-ratio: 853 / 1280;
    overflow: hidden;
    background: #171918;
    cursor: zoom-in;
}

.product-editorial .product-editorial__photo:nth-child(-n + 2) {
    grid-column: span 3;
}

.product-editorial .product-editorial__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-editorial .product-editorial__view {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(5, 7, 7, 0.55);
    color: #fff;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-editorial .product-editorial__photo:hover img {
    transform: scale(1.018);
}

.product-editorial .product-editorial__photo:hover .product-editorial__view,
.product-editorial .product-editorial__photo:focus-visible .product-editorial__view {
    opacity: 1;
    transform: none;
}

.product-editorial .product-editorial__photo:focus-visible {
    outline: 2px solid #e8e7e3;
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .product-editorial .product-editorial__intro {
        gap: 24px;
        padding-right: 0;
        padding-left: 0;
    }

    .product-editorial .product-editorial__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .product-editorial .product-editorial__fact:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 640px) {
    .product-editorial .product-editorial__panel {
        padding: 12px;
    }

    .product-editorial .product-editorial__intro {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-editorial .product-editorial__quote {
        font-size: clamp(29px, 8vw, 40px);
    }

    .product-editorial .product-editorial__fact {
        padding-right: 8px;
        padding-left: 12px;
    }

    .product-editorial .product-editorial__photos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

.product-editorial .product-editorial__photo,
.product-editorial .product-editorial__photo:nth-child(-n + 2) {
    grid-column: span 1;
}

    .product-editorial .product-editorial__photo:last-child {
        grid-column: 1 / -1;
        width: calc((100% - 8px) / 2);
        justify-self: center;
    }

    .product-editorial .product-editorial__view {
        right: 8px;
        bottom: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-editorial .product-editorial__photo img,
    .product-editorial .product-editorial__view {
        transition: none;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .product-editorial.is-reveal-ready .product-editorial__photo {
        opacity: 0;
        transform: translateY(22px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .product-editorial.is-reveal-ready .product-editorial__photo.is-visible {
        opacity: 1;
        transform: none;
    }
}
.product-detail__section--rating {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 18px 0;
    padding: 0;
}

.product-detail__section--rating-element {
    min-width: 0;
    padding: 12px 16px 16px;
    border: 1px solid var(--mg-line);
}

.product-detail__section--rating .product-detail__section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: #e8e7e3;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-detail__section--rating .product-detail__section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--mg-line);
}

.product-detail__liked-list {
    margin: 0;
    padding-left: 22px;
    color: #d2d3d2;
    font-size: 14px;
    line-height: 1.55;
}

.product-detail__liked-list li {
    padding-left: 3px;
}

.product-rating {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    column-gap: 16px;
    row-gap: 10px;
}

.product-rating__row {
    display: contents;
}

.product-rating__label,
.product-rating__score {
    color: #e8e7e3;
    font-size: 13px;
    line-height: 1.35;
}

.product-rating__label {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-rating__dots {
    display: flex;
    gap: 9px;
}

.product-rating__dot {
    width: 12px;
    height: 12px;
    flex: none;
    border: 1px solid #d8d9d6;
    border-radius: 50%;
}

.product-rating__dot.is-active {
    background: #e8e7e3;
}

.product-rating__score {
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 900px) {
    .product-detail__section--rating {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
.product-rating {
    column-gap: 8px;
}

.product-rating__label,
.product-rating__score {
    font-size: 11px;
}

    .product-rating__dots {
        gap: 5px;
    }

    .product-rating__dot {
        width: 9px;
        height: 9px;
    }
}

.product-editorial__panel_padding {
	margin-bottom: 8px;
}