/* Кнопка «Свой дизайн» в карточке товара: контур с иконкой-искрой, при наведении заливается цветом. */
.personalize-open {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 14px 20px;
    border: 2px solid #b9473e;
    border-radius: 6px;
    background-color: transparent;
    color: #b9473e;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    transition: color .28s cubic-bezier(.19,1,.22,1), background-color .28s cubic-bezier(.19,1,.22,1);
}

.personalize-open:hover {
    background-color: #b9473e;
    color: #fff;
}

.personalize-open__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .4s cubic-bezier(.19,1,.22,1);
}

.personalize-open:hover .personalize-open__icon {
    transform: rotate(-18deg) scale(1.12);
}
