.description {
    margin-top: 2.4rem !important;
    font-weight: 400 !important;
    font-size: 1.2rem !important;
    line-height: 130% !important;
    color: silver !important;
}

.catalog__card-specs-card-value{
    text-align: right;
}


.catalog__card-price {
    align-self: end;
}

/* Определение для Core Sans C 45 (Regular) */
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-45Regular.woff2') format('woff2');
    font-weight: 400; /* Normal */
    font-style: normal;
    font-display: swap; /* Важно для производительности */
}

/* Определение для Core Sans C 85 (Heavy) */
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-85Heavy.woff2') format('woff2');
    font-weight: 900; /* Heavy обычно соответствует 900 */
    font-style: normal;
    font-display: swap;
}

/* Определение для Core Sans C 85 (Heavy Italic) */
@font-face {
    font-family: 'Core Sans C';
    src: url('../fonts/CoreSansC-85HeavyIt.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}


.flex__down {
    display: flex;
    align-items: end
}

.special_offer {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.6rem;
    background-color: red;
    display: grid;
    place-items: center;
    position: relative
}

.flex__column__right {
    display: flex;
    justify-content: end;
    flex-direction: column;
    width: 100%
}


/*Project A/B testing styles*/
.advantages.active {
    display: grid;
}

.advantages:not(.active) {
    display: none;
}

.phase__icons {
    position: absolute;
    right: 30px;
    top: 27px;
}

.phase__icons div{
    background: whitesmoke;
    height: auto;
    display: block;
    padding: 2px;
    display: inline-block;
    float: left;
    margin: 0 10px 0 0;
    opacity: 0.4;
    border-radius: 7px;
}
.phase__icons img {
    width: 32px;
}

.phase__icons .active{
    opacity: 0.85;
    background: white;
}

.phase__card-choose-btn.download-btn{
    color: #101038;
    border: 1px solid #101038;
    background: rgba(255, 255, 255, .05);
}

@media only screen and (min-width: 641px) {
    .semitransparent{
        backdrop-filter: blur(16px);
        background: rgba(232, 232, 232, 0.45)
    }

    .phase__card-choose-btn.download-btn{
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, .05);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .3);
    }
}

.advantages__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.advantages-list-nav {
    position: sticky;
    top: 220px;
    align-self: flex-start;
}


@media (min-width: 768px) {
    .advantages__card {
        align-items: stretch;
    }
}

.advantages__card-slider-item {
    flex-grow: 1;
    position: relative;
    height: 100%;
}


.advantages-mobile-accordion {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.accordion {
    width: 100%;
}

.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    padding: 16px;
    background: #f9f9f9;
    border: none;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    outline: none;

    .accordion-arrow {
        flex-shrink: 0;
        margin-left: 12px;
        transition: transform 0.5s ease;
        transform: rotate(0deg);
    / / по умолчанию — вниз
    }

    &[aria-expanded="true"] .accordion-arrow {
        transform: rotate(180deg);
    }
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-panel {
    /*padding: 16px;*/
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
}

.advantages__card-slider-item-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.advantages__card-slider__arrows,
.advantages__card-fullscreen-btn {
    z-index: 100;
}



@media (min-width: 600px) {
    .advantages__card-left-col {
        border: 1px solid rgba(2, 2, 2, 0.1) !important;
        background-color: #fff;
        padding: 3.2rem;
        border-top-left-radius: 2rem;
        border-bottom-left-radius: 2rem;
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 600px) {
    .advantages__card-right-col {
        border: 1px solid rgba(2, 2, 2, 0.1) !important;
        border-top-right-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }
}


.advantages__tabs-nav-link-test {
    display: block;
    padding: 1.6rem 2rem;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 150%;
    transition: color 0.2s, background-color 0.2s;
    border-radius: 0.8rem;
    white-space: nowrap;
}

@media only screen and (max-width: 640px) {
    .advantages__tabs-nav-link-test {
        padding: 1.4rem 2rem;
        font-style: normal;
        font-weight: 400;
        font-size: 1.4rem;
        line-height: 130%;
    }
}
.advantages__tabs-nav-link-test.active {
    color: #ffffff;
    background-color: #101038;
}