.cart__page {
    padding: 50px 0px;
}

.product-card {
    width: 100%;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.product-img {
    position: relative;
    width: 100%;
    height: 238px;
    border-radius: 10px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-sale {
    position: absolute;
    top: 12px;
    left: 10px;
    background: #546DFC;
    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;
    top: 12px;
    left: 10px;
    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;
    padding: 10px;
}

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

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

a.product-title {
    font-size: 16px;
    font-family: Tilda;
    font-weight: 400;
    color: #070707;
    text-decoration: none;
    padding-left: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

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

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

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

.product-size span {
    font-size: 12px;
    font-family: Tilda;
    font-weight: 600;
    line-height: 24px;
    color: #546DFC;
}

.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: #546DFC;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: Tilda;
    padding-left: 10px;
    font-weight: 600;
}

.product-btn {
    width: 100%;
    padding: 13px 0 14px;
    border: none;
    font-family: Inter;
    border-radius: 5px;
    font-size: 14px;
    background: #546DFC;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.product-btn:hover {
    background: rgb(84, 109, 252, 0.8);
}

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

.product-close {
    background: #000;
    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: #000;
    line-height: 28px;
    margin-bottom: 50px;
}

.slider-main img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    display: block;
}

.slider-thumbs-wrapper {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 5px;
    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;
}

.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 #546DFC;
}

.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: repeat(2, 1fr);

}

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

.characteristics li.more {
    display: none;
}

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

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

.card__harakteries {
    width: 100%;
}

.card__harakteries__title h1 {
    color: #000;
    font-size: 24px;
    font-family: Tilda;
    line-height: 16px;
}

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

.sale__price span {
    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: #000;
    font-size: 28px;
    font-family: Tilda;
    font-weight: 500;
    text-decoration: line-through;
}

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

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

.card__basket__btn a: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;
}

.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: 16px 20px;
    border-radius: 10px;
    background-color: #FCFCFC;
}

.card__question__block {
    padding: 45px 35px 40px;
    background-color: #546DFC;
    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: 500;
    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: #000;
    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 {
    opacity: 0.8;
}

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

.product-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.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: #000;
    padding-bottom: 30px;
}

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

.haracteries__grid__blocks__back span {
    color: #546DFC;
}

.haracteries__more__block__title {
    padding: 50px 0px;
}

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

.haracteries__grid__blocks h1 {
    color: #000;
    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: #546DFC;
    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: 18px;
    color: #4b5563;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.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;
}

.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.png");
    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%;
    }
}