 
.t-catalog__card__sold-out-msg {
    font-size: 0 !important;
}
.t-catalog__card__sold-out-msg:after {
    content: "Продан"; 
    font-size: 14px; 
}



/* Скрываем стандартную иконку */
.t585__icon {
    display: none !important;
}

.t585__header {
    position: relative !important;
}

/* Ваша кастомная иконка */
.t585__header::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("https://static.tildacdn.com/tild6461-3133-4733-b034-646536653634/chevron-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    z-index: 2;
}

/* 🔥 ПРАВИЛЬНЫЙ СЕЛЕКТОР: оба класса на одном элементе */
.t585__header.t585__opened::after {
    transform: translateY(-50%) rotate(180deg) !important;
}
</style>