.product-detail::before {
    display: none;
}

.product-title-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    margin: -5px 0 0;
}

.product-detail .product-breadcrumb {
    width: max-content;
    max-width: 100%;
    min-height: 0;
    padding: 7px 12px;
    border-radius: 999px;
    background: #edf3ef;
    color: #41675c;
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
}

.product-detail .product-breadcrumb a {
    color: #587269;
    font-weight: 700;
}

.product-detail .product-breadcrumb a:hover {
    color: #174c3e;
}

.product-detail .product-breadcrumb > span[aria-hidden] {
    color: #91a29c;
    font-weight: 500;
}

.product-detail .product-breadcrumb > [aria-current] {
    overflow: hidden;
    color: #315b50;
    font-weight: 700;
    letter-spacing: normal;
    text-overflow: ellipsis;
}

.product-title-row h1,
.product-title-row h1.long-title {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 1.9vw, 34px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.04em;
    overflow-wrap: anywhere;
    word-break: normal;
    white-space: normal;
    text-wrap: wrap;
}

.product-title-row h1.long-title {
    font-size: clamp(22px, 1.3vw, 24px);
    line-height: 1.18;
}

@media (max-width: 900px) and (min-width: 641px) {
    .product-title-row {
        margin: -3px 0 -7px;
    }

    .product-title-row h1,
    .product-title-row h1.long-title {
        font-size: clamp(26px, 3.3vw, 30px);
        line-height: 1.15;
        text-wrap: pretty;
    }
}

@media (max-width: 640px) {
    .product-title-row {
        margin: -2px 0 -5px;
    }

    .product-title-row h1,
    .product-title-row h1.long-title {
        font-size: clamp(27px, 7.2vw, 30px);
        line-height: 1.14;
        text-wrap: pretty;
    }

    .product-detail .product-breadcrumb {
        padding: 6px 10px;
        font-size: 10px;
    }
}
