.engraving-cart-item {
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
            
.engraving-text {
    opacity: 0.7;
    flex: 1;
    min-width: 0;
    word-break: break-word;
}
            
.change-engraving-button {
    font-size: 14px;
    margin-top: -20px;
    color: black;
    text-decoration: underline !important;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 500;
}
            
.change-engraving-button:hover {
    background: white;
    color: #FF3284;
    text-decoration: none;
}
            
/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .engraving-cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
                
    .change-engraving-button {
        align-self: flex-end;
    }
}