.cart__page {
    padding: 10px 0px 50px;
}

.product-card {
    width: 100%;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    height: fit-content;
    min-width: 200px;
    min-height: 439px;
    display: flex;
    height: auto;
    flex-direction: column;
}

.product-card a {
    text-decoration: none;
    color: #070707;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info__text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-img {
    border-radius: 20px;
    width: 100%;
    background: #fff;
    padding: 60px 10%;
    aspect-ratio: 2 / 3;
    display: block;
    max-width: 100%;
    overflow: hidden;
}

.product-img img {
    object-fit: contain;
    object-position: center center;
    height: 100%;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.product-sale {
    position: absolute;
    background: #00A1E4;
    color: #fff;
    padding: 3px 14px 2px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    font-family: Inter;
    width: max-content;
}

.product-sale-orange {
    position: absolute;
    font-family: Inter;
    background: #FF8A00;
    color: #fff;
    padding: 3px 14px 2px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    width: max-content;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-bottom: 15px;
}

.price-new {
    font-size: 28px;
    font-weight: 700;
    font-family: Tilda;
    color: #0A0D14;
}

.price-old {
    font-size: 14px;
    font-weight: 600;
    font-family: Tilda;
    color: #00A1E4;
    text-decoration: line-through;
}

.product-title {
    font-size: 16px;
    font-family: Tilda;
    font-weight: 300;
    line-height: 100%;
    color: #070707;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;
    filter: none;
    transition: 0.2s ease;
}

.product-title:hover {
    opacity: 0.8;
}

.product-dimensions {
    font-size: 10px;
    font-family: Tilda;
    font-weight: 400;
    line-height: 24px;
    color: #070707;
    padding-top: 10px;
}

.product-dimensions__label {
    font-size: 12px;
    font-family: Tilda;
    font-weight: 500;
    line-height: 24px;
    color: #00A1E4;
}

.product-colors {
    margin: 10px 0;
    display: flex;
    gap: 6px;
    padding-left: 10px;
}

.color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
}

.product-stock {
    color: #00A1E4;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: Tilda;
    font-weight: 500;
}

.product-btn {
    display: flex;
    width: 100%;
    padding: 22px;
    border: none;
    font-family: Inter;
    font-size: 14px;
    background: #00A1E4;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    justify-content: center;
    text-decoration: none;
    margin-top: auto;
}

.product-btn:hover {
    opacity: 0.8;
}

.catalog__blocks {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-close {
    background: #0A0D14;
    color: #fff;
    font-size: 12px;
    border-radius: 14px;
    text-align: center;
    position: absolute;
    top: 12px;
    padding: 2px 10px;
    width: max-content;
    font-family: Tilda;
    left: 10px;
}

.slider {
    position: relative;
}

.slider-main {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.card__elements__name p {
    font-size: 32px;
    font-family: Tilda;
    font-weight: 600;
    color: #0A0D14;
    line-height: 28px;
    margin-bottom: 50px;
}

.slider-main img {
    width: 100%;
    max-height: 550px;
    display: block;
    object-fit: contain;
    object-position: center center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.slider-thumbs-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 16px;
    width: 72%;
    margin: 0 auto;
    padding: 8px 14px;
    box-shadow: 0px 4px 9px rgba(152, 160, 180, 0.25);
    position: relative;
    background-color: #FCFCFC;
    top: -35px;
    border-radius: 8px;
}

.slider-thumbs-wrapper button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999999;
    transition: 0.2s ease;
}

.slider-thumbs-wrapper button:hover {
    color: #00A1E4;
}

.slider-thumbs {
    display: flex;
    overflow: hidden;
    gap: 10px;
    flex: 1;
    width: calc(80px * 4 + 10px * 3);
    /* показываем ровно 4 миниатюры */
}

.slider-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    flex-shrink: 0;
    transition: border 0.3s;
}

.slider-thumbs img.active {
    border: 2px solid #00A1E4;
}

.characteristics ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.characteristics li {
    padding: 5px 0;
    font-size: 16px;
    color: #c1c1c1;
    font-family: Tilda;
    display: grid;
    width: 100%;
    line-height: 24px;
    font-weight: 600;
    grid-template-columns: 200px 1fr;

}

.characteristics li span {
    font-family: 'Tilda';
    font-weight: 500;
    color: #00A1E4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#charList span {
    text-align: left;
    width: 100%;
    position: relative;
    font-weight: 500;
    float: right;
    color: #00A1E4;
}

.characteristics li.more {
    display: none;
}

.card__sale__block {
    width: 100%;
    height: 100%;
}

#showAll {
    margin-top: 10px;
    background: #fff;
    color: #00A1E4;
    border: none;
    font-size: 16px;
    font-family: Tilda;
    font-weight: 600;
    line-height: 24px;
}

.card__harakteries {
    width: 100%;
}

.card__harakteries__title h1 {
    color: #0A0D14;
    font-size: 24px;
    font-family: Tilda;
    line-height: 16px;
    margin-bottom: 25px;
}

.sale__price {
    display: flex;
    gap: 20px;
}

.sale__price .sale {
    background-color: orange;
    color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-size: 14px;
    width: 50px;
    height: 20px;
}

.sale__price p {
    color: #0A0D14;
    font-size: 28px;
    font-family: Tilda;
    font-weight: 500;
    text-decoration: line-through;
}

.card__price p {
    color: #0A0D14;
    font-size: 48px;
    font-family: Tilda;
    font-weight: 600;
    margin: 0;
}

.card__basket__btn form {
    width: 100%;
}

.card__basket__btn button {
    color: #fff;
    font-size: 16px;
    font-family: Tilda;
    font-weight: 600;
    background-color: #00A1E4;
    padding: 19px 0 15px;
    width: 100%;
    text-align: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    filter: none;
    transition: 0.2s ease;
    border: none;
}

.card__basket__btn button:hover {
    opacity: 0.8;
}

.card__basket__btn {
    padding-top: 23px;
    width: 100%;
    display: flex;
}

.option__block__flex {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 50px;
}

.card__elements {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 65px;
    padding-bottom: 60px;
}

.card__harakteries p {
    color: #c1c1c1;
    font-size: 16px;
    font-family: Tilda;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 50px;
    margin: 0;
}

.card__card__info {
    width: 100%;
    height: 50%;
    box-shadow: 0px 4px 9px rgba(152, 160, 180, 0.25);
    padding: 35px 25px 28px;
    border-radius: 10px;
    background-color: #FCFCFC;
    margin-bottom: 23px;
}

.card__question__block {
    padding: 45px 35px 40px;
    background-color: #00A1E4;
    border-radius: 6px;
}

.question__block__title h1 {
    padding: 0;
    margin: 0;
    font-size: 32px;
    font-family: Tilda;
    color: #fff;
    font-weight: 600;
    padding-bottom: 15px;
    line-height: 28px;
}

.question__block__subtitle p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-family: Tilda;
    color: #fff;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 50px;
}

.question__block__btn {
    max-width: 250px;
}

.question__block__btn a {
    padding: 19px 0 15px;
    justify-content: center;
    background-color: #F7F5F9;
    color: #0A0D14;
    font-size: 16px;
    font-family: Tilda;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    filter: none;
    display: flex;
    width: 100%;
    transition: 0.2s ease;
}

.question__block__btn a:hover {
    background-color: #A1AFFE;
    color: #FCFCFC;
}

.product-slider-block {
    width: 100%;
    margin: 80px 0;
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    width: 100%;
}

.swiper-slide {
    height: auto;
}

.product-slider .swiper-slide {
    display: block;
}

.product-slider .swiper-slide img {
    object-fit: contain;
    object-position: center center;
    height: 100%;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    color: #001ae4 !important;
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 50%;
}

.swiper-slide {
    margin-top: 20px;
}

.product-slider-block__title h1 {
    text-align: center;
    font-size: 32px;
    font-family: Tilda;
    font-weight: 500;
    color: #0A0D14;
    padding-bottom: 30px;
}

@media(max-width: 768px) {
    .product-slider-block__title h1 {
        padding-top: 50px;
    }
}

.haracteries__grid__blocks__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.haracteries__grid__blocks__back span {
    color: #00A1E4;
}

.haracteries__more__block__title {
    padding: 50px 0px;
}

.haracteries__more__block__title h1 {
    text-align: center;
    color: #0A0D14;
    font-family: Tilda;
    font-weight: 500;
    font-size: 32px;
}

.haracteries__grid__blocks h1 {
    color: #0A0D14;
    font-family: Tilda;
    font-weight: 500;
    font-size: 24px;
}

.haracteries__grid__quetions p {
    color: #c1c1c1;
    font-family: Tilda;
    font-weight: 500;
    font-size: 16px;
    padding: 0;
    margin: 0;
    line-height: 40px;
}

.haracteries__grid__blocks__btn {
    text-align: center;
    position: relative;
    top: 70%;
}

.haracteries__grid__blocks__btn a {
    padding: 12px 100px;
    background-color: #00A1E4;
    color: #fff;
    font-size: 16px;
    font-family: Tilda;
    font-weight: 500;
    border-radius: 5px;
    text-decoration: none;
    filter: none;
    transition: 0.2s ease;
}

.haracteries__grid__blocks__btn a:hover {
    opacity: 0.8;
}

.haracteries__more__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
}

.haracteries__grid__blocks {
    width: 95%;
}

.haracteries__grid__blocks__back {
    text-align: right;
}

.haracteries__more__block {
    padding-bottom: 100px;
}

.breadcrumbs {
    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 40px;
    color: #999999;
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow: hidden;
}

@media(max-width: 768px) {
    .breadcrumbs {
        gap: 10px;
    }
}

.breadcrumbs__link:last-child {
    display: block;
}

.breadcrumbs__link:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    max-width: 100%;
}

.breadcrumbs .breadcrumbs__link:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    max-width: 100%;
    flex: 1 1 auto;
}

.breadcrumbs a:nth-last-of-type(3) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: bottom;
}

@media (max-width: 426px) {
    .breadcrumbs a:nth-last-of-type(3) {
        width: 20%;
    }
}

.breadcrumbs__sep {
    position: relative;
    top: 4px;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
}

.breadcrumbs .crumb {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-family: Tilda;
    color: #999999;
}

.breadcrumbs .crumb a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-family: Tilda;
    color: #999999;
    text-decoration: none;
    position: relative;
    top: 3px;
}

.breadcrumbs__link {
    display: flex;
    font-size: 16px;
    font-family: Tilda;
    color: #999999;
    text-decoration: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
    top: 2px;
}

.breadcrumbs .crumb+.crumb::before {
    content: "/";
    color: #cbd5e1;
    font-weight: 600;
    margin-right: 6px;
}

.home-link {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../img/breadgrams.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1100px) {
    .option__block__flex {
        flex-direction: column;
    }
}

@media (max-width: 800px) {
    .card__elements {
        display: block;
    }

    .option__block__flex {
        display: block;
        padding-bottom: 20px;
    }

    .haracteries__more__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .slider {
        width: 100%;
    }

    .cart__page {
        padding: 0;
    }

    .backet__block {
        padding: 72px 0px;
    }

    .slider-thumbs {
        justify-content: center;
    }

    .slider-thumbs-wrapper {
        top: 20px;
        width: 100%;
    }

    .card__option__block {
        top: 100px;
        position: relative;
    }

    .card__harakteries__title h1 {
        font-weight: 700;
    }

    .characteristics {
        margin-bottom: 25px;
    }

    .characteristics li {
        font-weight: 700;
    }

    .sale__price {
        gap: 50px;
    }

    .card__basket__btn {
        text-align: center;
    }

    .product-slider-block {
        padding-top: 120px;
        margin: 0;
    }

    .question__block__btn {
        width: 100%;
    }
}

/* ===============================
   ADD TO CART / IN CART
=============================== */

.product-card,
.card__sale__block {

    display: flex;
    flex-direction: column;
    height: 100%;

    .product-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 14px 24px;
        border-radius: 5px;

        font-size: 15px;
        font-weight: 500;

        background: #00A1E4;
        color: #fff;

        border: none;
        cursor: pointer;
        transition: all .2s ease;

        &:hover {
            background: darken(#00A1E4, 6%);
        }
    }

    /* ===============================
     QTY BLOCK (В КОРЗИНЕ)
  =============================== */
    .product-qty__btn {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f7f5f9;
        font-size: 18px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        transition: all .15s ease;
    }

    .product-qty__btn:hover {
        border: solid 1px #00A1E4;
    }

    .catalog-qty,
    .product-qty {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;

        padding: 8px 14px;
        border-radius: 14px;

        background: #F7F5F9;
        margin-top: auto;

        .qty {
            min-width: 22px;
            text-align: center;

            font-size: 15px;
            font-weight: 500;
            color: #1A1A1A;
        }

        .in-cart {
            margin-left: 6px;

            font-size: 12px;
            font-weight: 500;
            color: #7A7A7A;
        }
    }
}

@media(max-width: 768px) {

    .product-card,
    .card__sale__block {
        max-height: unset;
    }
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
    }
}

.catalog-qty {
    animation: pop .25s ease;
}

.catalog-qty button:disabled {
    opacity: .4;
    pointer-events: none;
}

@media (max-width: 576px) {
    .catalog-qty {
        gap: 8px;

        button {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }
    }
}

.product-colors {
    display: flex;
    gap: 8px;
    margin: 6px 0 8px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    box-sizing: border-box;
}

.color-dot:hover {
    border-color: #00A1E4;
}

.product-size {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.static-specs {
    padding: 80px 0;
    background: #fff;
}

.static-specs__title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.static-specs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: start;
    gap: 40px 0;
}

.spec-col h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.spec-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-col li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    margin-bottom: 12px;
}

.spec-col span {
    color: #9B9B9B;
    font-weight: 400;
}

.spec-col b {
    color: #00A1E4;
    font-weight: 500;
    text-align: right;
}

/* CTA */
.spec-col--cta {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.static-specs__btn {
    padding: 16px 36px;
    background: #00A1E4;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
    width: 100%;
}

.static-specs__btn:hover {
    background: #4258d6;
}

/* Адаптив */

@media (max-width: 1200px) {
    .static-specs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .static-specs__grid {
        grid-template-columns: 1fr;
    }

    .spec-col--cta {
        justify-content: center;
        margin-top: 30px;
    }
}

.static-specs__cart {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}

.product-qty__btn {
    border: none;
    background: none;
}

.spec-col {
    max-width: 300px;
}

.price-request-info p {
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    font-family: Tilda;
    color: #9B9B9B;
}

.price-request-info a {
    color: #9B9B9B;
    font-weight: 500;
    text-decoration: underline;
}