.psf-product-details {
    width: 100%;
    margin: 18px 0 20px;
    clear: both;
}

.psf-product-details__accordion {
    width: 100%;
    border: 1px solid rgba(255, 20, 147, 0.32);
    border-radius: 12px;
    background: #fbebf9;
    box-shadow: 0 0 14px rgba(255, 20, 147, 0.18);
    overflow: hidden;
}

.psf-product-details__summary {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 13px 16px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    line-height: 1.25;
    color: #171717;
    user-select: none;
}

.psf-product-details__summary::-webkit-details-marker {
    display: none;
}

.psf-product-details__summary::marker {
    display: none;
    content: '';
}

.psf-product-details__hanger {
    display: inline-flex;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: #ff1493;
}

.psf-product-details__hanger svg {
    display: block;
    width: 100%;
    height: 100%;
}

.psf-product-details__title {
    flex: 1 1 auto;
    font-size: 17px;
}

.psf-product-details__chevron {
    position: relative;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.psf-product-details__accordion[open] .psf-product-details__chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.psf-product-details__content {
    padding: 0 18px 17px 52px;
    color: #222;
    font-size: 15px;
    line-height: 1.65;
}

.psf-product-details__content > :first-child {
    margin-top: 0;
}

.psf-product-details__content > :last-child {
    margin-bottom: 0;
}

.psf-product-details__content ul,
.psf-product-details__content ol {
    margin: 8px 0 0 20px;
    padding: 0;
}

.psf-product-details__content li + li {
    margin-top: 5px;
}

@media (max-width: 600px) {
    .psf-product-details {
        margin-top: 15px;
    }

    .psf-product-details__summary {
        padding: 12px 14px;
    }

    .psf-product-details__content {
        padding: 0 15px 15px;
    }
}
