.bonjoy-product-detail-page {
    margin: 0;
    background: #f7f7f8;
    color: #20201f;
}

.bonjoy-product-detail-page .header__wrapper {
    position: absolute;
}

.bonjoy-product-detail-page .header__brand-logo img {
    filter: brightness(0) saturate(100%);
}

.bonjoy-product-detail-page .header__menu-line {
    background: #20201f;
}

.bonjoy-product-detail-page .header__menu > button.header__menu::after {
    color: #20201f;
}

.bonjoy-product-detail-page .header__booking {
    border-color: #20201f;
}

.bonjoy-product-detail-page .header__booking a {
    color: #20201f;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 58fr) minmax(430px, 42fr);
    align-items: start;
    min-height: 100svh;
    background: #f7f7f8;
}

.product-detail__media {
    position: sticky;
    top: 0;
    display: grid;
    place-items: center;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ececea;
}

.product-detail__media img {
    display: block;
    width: min(78%, 900px);
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

.product-detail__prev,
.product-detail__next {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #888883;
    transform: translateY(-50%);
    transition: color 220ms ease, transform 220ms ease;
}

.product-detail__prev {
    left: clamp(20px, 2.2vw, 44px);
}

.product-detail__next {
    right: clamp(20px, 2.2vw, 44px);
}

.product-detail__prev:hover {
    color: #20201f;
    transform: translate(-4px, -50%);
}

.product-detail__next:hover {
    color: #20201f;
    transform: translate(4px, -50%);
}

.product-detail__prev svg,
.product-detail__next svg {
    width: 22px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.product-detail__content {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: clamp(110px, 11vh, 150px) clamp(44px, 5.5vw, 100px) clamp(70px, 8vh, 110px);
    background: #f7f7f8;
}

.product-detail__breadcrumb {
    margin: 0 0 clamp(64px, 8vh, 96px);
    color: #696966;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.product-detail__breadcrumb a {
    color: inherit;
}

.product-detail__sku {
    margin: 0 0 8px;
    color: #70706d;
    font-size: clamp(16px, 1.1vw, 20px);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.product-detail h1 {
    max-width: 18ch;
    margin: 0;
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.product-detail--towel-ring h1 {
    font-size: clamp(42px, 3.6vw, 64px);
}

.product-detail__description {
    display: grid;
    gap: 15px;
    margin: clamp(40px, 6vh, 72px) 0 0;
    padding: 0;
    list-style: none;
}

.product-detail__description li {
    position: relative;
    margin: 0;
    padding-left: 20px;
    font-size: clamp(16px, 1.15vw, 20px);
    font-weight: 300;
    line-height: 1.55;
}

.product-detail__description li::before {
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    content: '';
}

.product-detail__features {
    margin-top: clamp(54px, 8vh, 92px);
    padding-top: clamp(30px, 4vh, 48px);
    border-top: 1px solid #d7d7d4;
}

.product-detail__features h2 {
    margin: 0 0 30px;
    font-size: clamp(26px, 2vw, 36px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.product-detail__feature-list {
    margin: 0;
}

.product-detail__feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    padding: 18px 20px;
    font-size: 16px;
    line-height: 1.35;
}

.product-detail__feature-row:nth-child(odd) {
    background: #e9e9e7;
}

.product-detail__feature-row dt,
.product-detail__feature-row dd {
    margin: 0;
}

.product-detail__feature-row dd {
    text-align: right;
}

@media (max-width: 980px) {
    .product-detail {
        display: block;
    }

    .product-detail__media {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .product-detail__media img {
        width: min(82%, 760px);
        height: auto;
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .product-detail__content {
        min-height: auto;
        padding: 64px 6vw 84px;
    }

    .product-detail__breadcrumb {
        margin-bottom: 54px;
    }
}

@media (max-width: 600px) {
    .product-detail__media {
        height: auto;
        min-height: 0;
    }

    .product-detail__media img {
        width: 84%;
        height: auto;
        min-height: 0;
    }

    .product-detail__prev,
    .product-detail__next {
        width: 42px;
        height: 42px;
    }

    .product-detail__prev {
        left: 10px;
    }

    .product-detail__next {
        right: 10px;
    }

    .product-detail__content {
        padding: 50px 6vw 72px;
    }

    .product-detail h1 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .product-detail--towel-ring h1 {
        font-size: clamp(38px, 10vw, 46px);
    }

    .product-detail__description {
        margin-top: 34px;
    }

    .product-detail__features {
        margin-top: 48px;
    }

    .product-detail__feature-row {
        padding: 15px 14px;
    }
}
