/* Product detail: final responsive layout based on 768 / 1024 breakpoints. */

.pd {
    width: 100%;
    padding: 0 0 56px;
    background: #fff;
    color: #111827;
}

.pd__head {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px 16px 12px;
    text-align: center;
}

.pd__kicker {
    margin: 0 0 2px;
    font-size: 9px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: .30em;
    text-transform: uppercase;
    color: #9ca3af;
}

.pd__title {
    margin: 0 0 4px;
    font-family: "Bodoni Moda", Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.045em;
    color: #111827;
    text-wrap: balance;
}

.pd__meta {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 9px;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #9ca3af;
}

.pd__meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #c7c7c7;
}

.pd__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1d5db;
    padding: 3px 8px;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800;
    color: #374151;
}

.pd__badge--muted {
    color: #9ca3af;
}

.pd__meta-sep[hidden],
.pd__meta-item[hidden],
.pd__badge[hidden] {
    display: none !important;
}

.pd__layout {
    width: 100%;
}

.pd__media,
.pd__main {
    min-width: 0;
}

.pd-gallery {
    background: #fff;
}

.pd-gallery__main,
.pd-gallery__ph {
    display: block;
    width: 100%;
    background: #fff;
}

.pd-gallery__main {
    object-fit: contain;
}

.pd-gallery__ph {
    background: #f3f4f6;
}

.pd-gallery__thumbs {
    display: flex;
    align-items: flex-start;
}

.pd-thumb {
    position: relative;
    flex: 0 0 auto;
    appearance: none;
    border: 1px solid #e7e7e7;
    background: #fff;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.pd-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-thumb.is-active {
    border-color: #111;
    box-shadow: inset 0 0 0 1px #111;
}

.pd-thumb[draggable="true"] {
    cursor: grab;
}

.pd-thumb[draggable="true"]:active {
    cursor: grabbing;
}

.pd-thumb.is-dragging {
    opacity: .5;
}

.pd-gallery__thumbs.is-saving {
    opacity: .72;
    pointer-events: none;
}

.pd-card {
    border: 1.5px solid #111;
    background: #fff;
    padding: 18px;
}

.pd-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 20px;
}

.pd-card__title {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #111;
}

.pd-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
}

.pd-price__now {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    color: #111;
}

.pd-price__old {
    font-size: 14px;
    color: #777;
    text-decoration: line-through;
}

.pd-price__old[hidden] {
    display: none !important;
}

.pd-marketplaces {
    display: grid;
    gap: 10px;
}

.pd-marketplaces__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1.5px solid #111;
    background: #111;
    color: #fff;
    padding: 0 18px;
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.pd-marketplaces__link:hover {
    background: #fff;
    color: #111;
}

.pd-specs {
    display: grid;
    gap: 0;
    margin: 0;
}

.pd-specs__row {
    display: grid;
    grid-template-columns: 180px 1fr;
    column-gap: 18px;
    align-items: start;
    padding: 14px 0;
}

.pd-specs__row + .pd-specs__row {
    border-top: 1px solid #e7e7e7;
}

.pd-specs dt {
    font-size: 11px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .56);
}

.pd-specs dd {
    min-width: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(17, 17, 17, .86);
}

.pd-card--notes {
    text-align: left;
}

.pd-notes {
    display: grid;
    gap: 0;
}

.pd-notes__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 18px;
    align-items: center;
    padding: 14px 0;
}

.pd-notes__row + .pd-notes__row {
    border-top: 1px solid #e7e7e7;
}

.pd-notes__label {
    font-size: 11px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, .58);
}

.pd-notes__value {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
}

.pd-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dcdcdc;
    padding: 10px 16px;
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: .05em;
    color: #111;
    white-space: nowrap;
}

.pd-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(17, 17, 17, .86);
}

.pd-card[data-pd-description-card] {
    display: block;
    overflow: visible;
}

.pd-card[data-pd-description-card] .pd-card__head {
    margin-bottom: 18px;
}

.pd-muted {
    font-size: 13px;
    color: rgba(17, 17, 17, .62);
}

.pd-back {
    display: flex;
    justify-content: center;
    padding: 32px 16px 0;
}

.pd-back__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1.5px solid #111;
    color: #111;
    background: #fff;
    padding: 0 48px;
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.pd-back__btn:hover {
    background: #111;
    color: #fff;
}

.pd-thumb__main-form,
.pd-thumb__delete-form {
    position: absolute;
    z-index: 3;
    margin: 0;
}

.pd-thumb__main-form {
    top: 6px;
    left: 6px;
}

.pd-thumb__delete-form {
    top: 6px;
    right: 6px;
}

.pd-flag {
    width: 34px;
    height: 26px;
    border: 1px solid #111;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.pd-flag.is-on {
    background: #111;
}

.pd-flag__check {
    width: 12px;
    height: 7px;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transform: rotate(-45deg);
}

.pd-flag.is-on .pd-flag__check {
    border-left-color: #fff;
    border-bottom-color: #fff;
}

.pd-thumb__del {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #111;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
}

.pd-thumb__del:hover {
    border-color: #111;
}

.pd-thumb--add {
    display: grid;
    place-items: center;
    border-color: #111;
    background: #fff;
}

.pd-thumb__plus {
    position: relative;
    width: 28px;
    height: 28px;
    display: block;
}

.pd-thumb__plus::before,
.pd-thumb__plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #111;
    transform: translate(-50%, -50%);
}

.pd-thumb__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 767px) {
    .pd__layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pd__media,
    .pd__main {
        display: contents;
    }

    .pd-gallery {
        order: 1;
        padding: 0 16px;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(220px, calc(100svh - var(--site-header-offset, 0px) - 220px), 680px);
        height: clamp(220px, calc(100dvh - var(--site-header-offset, 0px) - 220px), 680px);
        border: 1.5px solid #111;
    }

    .pd-gallery__thumbs {
        gap: 6px;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-top: 8px;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .pd-gallery__thumbs::-webkit-scrollbar {
        display: none;
    }

    .pd-thumb {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .pd-card--buy {
        order: 2;
        border: 0 !important;
        padding: 0 16px;
        margin: 0;
        background: transparent;
    }

    .pd-price {
        margin: 12px 0 0;
        padding: 16px;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        text-align: center;
        background: #fff;
    }

    .pd-card--buy--has-marketplaces .pd-price {
        margin-bottom: 12px;
    }

    .pd-marketplaces {
        grid-template-columns: 1fr;
        margin-bottom: 4px;
    }

    .pd-card--specs,
    .pd-card--description,
    .pd-card--notes {
        border: 1.5px solid #111;
        margin: 16px 16px 0;
        padding: 18px;
    }

    .pd-card--specs {
        order: 3;
    }

    .pd-card--description {
        order: 4;
    }

    .pd-card--notes {
        order: 5;
    }

    .pd-card__head {
        margin-bottom: 16px;
    }

    .pd-card__title {
        font-size: 11px;
        letter-spacing: .20em;
        color: #111;
    }

    .pd-specs__row {
        grid-template-columns: 118px 1fr;
        column-gap: 14px;
        padding: 12px 0;
    }

    .pd-specs dt {
        font-size: 10px;
        letter-spacing: .14em;
    }

    .pd-notes__row {
        grid-template-columns: 90px 1fr;
        column-gap: 14px;
        align-items: flex-start;
        padding: 12px 0;
    }

    .pd-notes__label {
        font-size: 10px;
        letter-spacing: .14em;
    }

    .pd-notes__value {
        gap: 8px;
    }

    .pd-chip {
        font-size: 12px;
        padding: 7px 12px;
    }

    .pd-back__btn {
        width: min(100%, 320px);
        padding: 0 40px;
        font-size: 10px;
    }
}

@media (max-width: 374px) {
    .pd__head {
        padding-top: 16px;
    }

    .pd__title {
        font-size: 2.08rem;
    }

    .pd__meta {
        font-size: 8px;
        letter-spacing: .18em;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(205px, calc(100svh - var(--site-header-offset, 0px) - 208px), 640px);
        height: clamp(205px, calc(100dvh - var(--site-header-offset, 0px) - 208px), 640px);
    }

    .pd-specs__row,
    .pd-notes__row {
        grid-template-columns: 1fr;
        row-gap: 7px;
        align-items: flex-start;
    }
}

@media (min-width: 768px) {
    .pd {
        padding-bottom: 64px;
    }

    .pd__head {
        padding: 32px 24px 24px;
    }

    .pd__kicker {
        margin-bottom: 4px;
        font-size: 10px;
    }

    .pd__title {
        margin-bottom: 8px;
        font-size: 4rem;
    }

    .pd__meta {
        font-size: 11px;
    }

    .pd__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 20px;
        align-items: start;
        max-width: 1024px;
        margin: 0 auto;
        padding: 0 24px 48px;
    }

    .pd__media,
    .pd__main {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .pd-gallery {
        border: 1.5px solid #111;
        padding: 12px;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(280px, 38vw, 430px);
    }

    .pd-gallery__thumbs {
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 12px;
    }

    .pd-thumb {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .pd-card {
        border: 1.5px solid #111;
        padding: 18px;
    }

    .pd-card--buy {
        padding: 18px;
    }

    .pd-card--buy--has-marketplaces .pd-price {
        padding-bottom: 14px;
        border-bottom: 1px solid #e7e7e7;
        margin-bottom: 14px;
    }

    .pd-marketplaces {
        grid-template-columns: 1fr;
    }

    .pd-card--notes {
        margin-top: 0;
    }

    .pd-card[data-pd-description-card] .pd-text {
        max-height: calc(1.75em * 18);
        overflow-y: auto;
        padding-right: 10px;
        overscroll-behavior: contain;
    }

    .pd-card[data-pd-description-card] .pd-text::-webkit-scrollbar {
        width: 6px;
    }

    .pd-card[data-pd-description-card] .pd-text::-webkit-scrollbar-track {
        background: transparent;
    }

    .pd-card[data-pd-description-card] .pd-text::-webkit-scrollbar-thumb {
        background: #b8b8b8;
        border-radius: 999px;
    }
}

@media (min-width: 1024px) {
    .pd__title {
        font-size: 4.5rem;
    }

    .pd__layout {
        gap: 24px;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(340px, 34vw, 500px);
    }

    .pd-price__now {
        font-size: 1.65rem;
    }
}


/* 20260705: stronger product detail sizing and first-screen mobile layout. */
.pd-price__now {
    font-size: clamp(30px, 2.8vw, 42px);
}

@media (max-width: 767px) {
    .pd__head {
        padding: 18px 16px 10px;
    }

    .pd__title {
        font-size: clamp(2.3rem, 10vw, 3.3rem);
    }

    .pd-gallery {
        padding: 0 16px;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(260px, calc(100svh - var(--site-header-offset, 0px) - 284px), 760px);
        height: clamp(260px, calc(100dvh - var(--site-header-offset, 0px) - 284px), 760px);
    }

    .pd-gallery__thumbs {
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 6px;
    }

    .pd-thumb {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .pd-card--buy {
        padding: 0 16px;
    }

    .pd-price {
        margin: 8px 0 0;
        padding: 14px 16px;
    }

    .pd-price__now {
        font-size: clamp(26px, 8vw, 38px);
    }

    .pd-marketplaces {
        margin-top: 12px;
    }

    .pd-marketplaces__link {
        min-height: 44px;
    }
}

@media (max-width: 374px) {
    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(240px, calc(100svh - var(--site-header-offset, 0px) - 276px), 720px);
        height: clamp(240px, calc(100dvh - var(--site-header-offset, 0px) - 276px), 720px);
    }
}

@media (min-width: 768px) {
    .pd__head {
        max-width: 1160px;
        padding-bottom: 28px;
    }

    .pd__layout {
        max-width: 1160px;
        gap: 28px;
        padding: 0 24px 54px;
    }

    .pd-gallery {
        padding: 16px;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(420px, 48vw, 640px);
    }

    .pd-gallery__thumbs {
        gap: 10px;
        margin-top: 14px;
    }

    .pd-thumb {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .pd-card,
    .pd-card--buy {
        padding: 22px;
    }
}

@media (min-width: 1024px) {
    .pd__layout {
        grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
        gap: 32px;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(500px, 39vw, 700px);
    }

    .pd-thumb {
        width: 82px;
        height: 82px;
        flex-basis: 82px;
    }

    .pd-price__now {
        font-size: clamp(34px, 2.2vw, 44px);
    }
}


/* 20260705 v2: mobile first screen must end with price, not next block. */
@media (max-width: 767px) {
    .pd__head {
        padding-top: 16px !important;
        padding-bottom: 8px !important;
    }

    .pd__title {
        font-size: clamp(2.1rem, 9.2vw, 3rem) !important;
        line-height: .96 !important;
        margin-bottom: 4px !important;
    }

    .pd__meta {
        font-size: 8.5px !important;
        line-height: 1.2 !important;
        gap: 4px 8px !important;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(245px, calc(100svh - var(--site-header-offset, 0px) - 252px), 760px) !important;
        height: clamp(245px, calc(100dvh - var(--site-header-offset, 0px) - 252px), 760px) !important;
    }

    .pd-gallery__thumbs {
        padding-top: 8px !important;
        padding-bottom: 4px !important;
    }

    .pd-thumb {
        width: 54px !important;
        height: 54px !important;
        flex-basis: 54px !important;
    }

    .pd-price {
        margin-top: 6px !important;
        padding: 13px 16px !important;
    }

    .pd-price__now {
        font-size: clamp(25px, 7.4vw, 34px) !important;
        line-height: 1 !important;
    }

    .pd-card--specs,
    .pd-card--description,
    .pd-card--notes {
        margin-top: 18px !important;
    }
}

@media (max-width: 374px) {
    .pd__head {
        padding-top: 14px !important;
        padding-bottom: 7px !important;
    }

    .pd__title {
        font-size: clamp(1.95rem, 8.8vw, 2.65rem) !important;
    }

    .pd-gallery__main,
    .pd-gallery__ph {
        height: clamp(220px, calc(100svh - var(--site-header-offset, 0px) - 238px), 720px) !important;
        height: clamp(220px, calc(100dvh - var(--site-header-offset, 0px) - 238px), 720px) !important;
    }

    .pd-thumb {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
    }

    .pd-price {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
}


/* 20260706: related products block on product detail. */
.pd-related {
    width: min(1160px, calc(100% - 48px));
    margin: 10px auto 0;
    padding: 20px 0 8px;
}

.pd-related__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 24px;
}

.pd-related__title {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 34px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.055em;
    color: #111;
}

.pd-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 32px);
}

.pd-related-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    color: #111;
    background: #fff;
}

.pd-related-card__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.18;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
}

.pd-related-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: var(--related-focus-x, 50%) var(--related-focus-y, 50%);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.pd-related-card__media:hover .pd-related-card__image,
.pd-related-card__media:focus-visible .pd-related-card__image {
    transform: scale(1.035);
}

.pd-related-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f6f6f6 0%, #ececec 100%);
}

.pd-related-card__body {
    display: grid;
    grid-template-rows: auto auto minmax(18px, auto) auto;
    align-content: start;
    min-height: 136px;
    padding: 14px 0 0;
}

.pd-related-card__brand {
    margin: 0 0 5px;
    color: rgba(17, 17, 17, .42);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-related-card__name {
    min-height: 42px;
    margin: 0 0 7px;
    font-size: clamp(15px, 1.45vw, 20px);
    line-height: 1.13;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pd-related-card__name a {
    color: inherit;
    text-decoration: none;
}

.pd-related-card__name a:hover,
.pd-related-card__name a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pd-related-card__meta {
    min-height: 20px;
    color: rgba(17, 17, 17, .54);
    font-size: clamp(12px, 1.12vw, 15px);
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: -0.02em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.pd-related-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-top: 12px;
    color: #000;
    font-size: clamp(15px, 1.26vw, 18px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pd-related-card__price del {
    color: rgba(17, 17, 17, .38);
    font-size: .78em;
    font-weight: 500;
}

@media (max-width: 900px) {
    .pd-related {
        width: min(100%, calc(100% - 32px));
        margin-top: 18px;
    }

    .pd-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .pd-related-card__media {
        aspect-ratio: 1 / 1.12;
    }
}

@media (max-width: 767px) {
    .pd-related {
        width: 100%;
        padding: 42px 16px 8px;
        margin-top: 8px;
    }

    .pd-related__head {
        margin-bottom: 20px;
    }

    .pd-related__title {
        font-size: clamp(20px, 5.6vw, 26px);
        letter-spacing: -0.045em;
    }

    .pd-related__grid {
        gap: 30px 16px;
    }

    .pd-related-card__body {
        min-height: 120px;
        padding-top: 10px;
    }

    .pd-related-card__brand {
        margin-bottom: 4px;
        font-size: 8.5px;
        letter-spacing: .12em;
    }

    .pd-related-card__name {
        min-height: 35px;
        margin-bottom: 6px;
        font-size: clamp(13px, 3.55vw, 16px);
        line-height: 1.16;
        letter-spacing: -0.055em;
    }

    .pd-related-card__meta {
        min-height: 17px;
        font-size: clamp(11px, 3vw, 13px);
        line-height: 1.25;
    }

    .pd-related-card__price {
        margin-top: 10px;
        font-size: clamp(13px, 3.3vw, 15px);
    }
}

@media (max-width: 374px) {
    .pd-related {
        padding-left: 14px;
        padding-right: 14px;
    }

    .pd-related__grid {
        gap: 26px 12px;
    }

    .pd-related-card__name {
        min-height: 34px;
        font-size: 12.5px;
    }

    .pd-related-card__meta {
        font-size: 10.5px;
    }
}

/* 20260708 v13: related product cards — no meta/price collision on narrow screens. */
@media (max-width: 767px) {
    .pd-related-card__body {
        display: flex !important;
        flex-direction: column !important;
        min-height: 136px !important;
        height: auto !important;
    }

    .pd-related-card__name {
        flex: 0 0 auto !important;
        min-height: 36px !important;
        max-height: 36px !important;
        margin-bottom: 8px !important;
    }

    .pd-related-card__meta {
        flex: 0 0 auto !important;
        min-height: 18px !important;
        margin: 0 !important;
        overflow: hidden !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important;
        display: block !important;
    }

    .pd-related-card__price {
        flex: 0 0 auto !important;
        margin-top: 16px !important;
        line-height: 1.05 !important;
        white-space: nowrap !important;
    }
}
