/* ========================================
   Блок "Докупить вместе"
   Стилизация в соответствии с Prostore theme
   ======================================== */

.buy-together {
	margin: 3rem 0;
	padding: 3rem;
	background: #fff;
	border-radius: 10px;
}

.buy-together__title {
	display: block;
	margin-bottom: 2.5rem;
	font-size: 2rem;
	line-height: 1.15;
	font-weight: 500;
	color: #343434;
}

/* Список товаров */
.buy-together__list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Карточка товара */
.buy-together__item {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	padding: 1.6rem;
	background: #fff;
	border-radius: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.25s;
}

.buy-together__item:hover {
	box-shadow: 0px 0px 20px rgba(170, 189, 206, 0.25);
}

.buy-together__item.is-checked {
	border-color: #34495e;
	background: #f8f9ff;
}

/* Скрытые товары */
.buy-together__item.is-hidden {
	display: none;
}

.buy-together__item.is-hidden.is-visible {
	display: flex !important;
}

/* Чекбокс */
.buy-together__checkbox {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: #7266F3;
}

/* Изображение */
.buy-together__image {
	width: 70px;
	height: 70px;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.buy-together__image img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Информация о товаре */
.buy-together__info {
	flex: 1;
	min-width: 0;
}

.buy-together__name {
	display: block;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.4rem;
	color: #343434;
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: color 0.25s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.buy-together__name:hover {
	color: #7266F3;
	text-decoration: none;
}

.buy-together__model {
	display: block;
	font-size: 1.4rem;
	line-height: 1.2;
	font-weight: 400;
	color: #BDC2D3;
}

/* Цена */
.buy-together__price {
	flex-shrink: 0;
	text-align: right;
	white-space: nowrap;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	flex: 1;
}

.buy-together__price-current {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.2;
	color: #343434;
}

.buy-together__price-new {
	display: block;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.2;
	color: #343434;
}

.buy-together__price-old {
	display: block;
	font-size: 1.35rem;
	line-height: 1.2;
	font-weight: 400;
	color: #BDC2D3;
	position: relative;
	text-decoration: none;
	padding: 0;
	margin-top: 0.2rem;
}

.buy-together__price-old:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0.2rem;
	right: 0.2rem;
	height: 0.2rem;
	background: #F45656;
	margin: -1px 0 0;
}

/* Кнопка "Показать ещё" */
.buy-together__more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100%;
	padding: 1rem;
	margin-top: 1rem;
	background: transparent;
	border: 1px dashed #dee2e6;
	border-radius: 10px;
	color: #BDC2D3;
	font-size: 1.4rem;
	cursor: pointer;
	transition: all 0.25s;
}

.buy-together__more:hover {
	border-color: #adb5bd;
	color: #343434;
}

.buy-together__more.is-hidden {
	display: none;
}

.buy-together__more svg {
	width: 1.6rem;
	height: 1.6rem;
	transition: transform 0.25s;
}

.buy-together__more.is-expanded svg {
	transform: rotate(180deg);
}

/* Итого */
.buy-together__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e9ecef;
}

.buy-together__total {
	flex: 1;
}

.buy-together__total-label {
	display: block;
	font-size: 1.4rem;
	line-height: 1.2;
	color: #BDC2D3;
	margin-bottom: 0.4rem;
}

.buy-together__total-price {
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 500;
	color: #343434;
}

/* Кнопка "Купить всё" */
.buy-together__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	padding: 1.4rem 2.8rem;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	background: #34495e;
	color: #fff;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	transition: all 0.25s;
}

.buy-together__btn:hover {
	background: #2c3e50;
	box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

.buy-together__btn svg {
	width: 2rem;
	height: 2rem;
}

.buy-together__btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
	.buy-together {
		padding: 2rem;
		margin: 2rem 0;
	}

	.buy-together__item {
		padding: 1.2rem;
		gap: 1.2rem;
	}

	.buy-together__image {
		width: 56px;
		height: 56px;
	}

	.buy-together__name {
		font-size: 1.6rem;
		line-height: 2.2rem;
		-webkit-line-clamp: unset;
		-webkit-box-orient: vertical;
		height: auto;
		display: block;
	}

	.buy-together__price-current,
	.buy-together__price-new {
		font-size: 1.8rem;
	}

	.buy-together__summary {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		gap: 1.6rem;
	}

	.buy-together__btn {
		width: 100%;
		padding: 1.2rem 2rem;
	}
}

@media (max-width: 480px) {
	.buy-together__item {
		flex-wrap: wrap;
	}
	.buy-together__checkbox {
		order: 1;
	}
	.buy-together__image {
		order: 2;
	}
	.buy-together__price {
		order: 3;
		margin-left: auto;
		flex: 0 0 auto;
	}
	.buy-together__info {
		order: 4;
		width: 100%;
		padding-left: 3.6rem;
		margin-top: 0.8rem;
		flex: 0 0 70%;
	}
	.buy-together__total-price {
		font-size: 1.8rem;
	}
}

/* ========================================
   Секции категорий
   ======================================== */

.buy-together__category {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.3;
	color: #343434;
	margin: 2rem 0 1rem;
	padding: 0.5rem 1rem 0.8rem;
	background: #F1F1F5;
	border-radius: 4px;
	border-bottom: 1px solid #e9ecef;
}

.buy-together__category:first-child {
	margin-top: 0;
}

/* Скрытые заголовки категорий */
.buy-together__category.is-hidden {
	display: none;
}

.buy-together__category.is-hidden.is-visible {
	display: block !important;
}

/* Responsive для секций */
@media (max-width: 768px) {
	.buy-together__category {
		font-size: 1.5rem;
		margin: 1.5rem 0 0.8rem;
		padding: 0.4rem 0.8rem 0.6rem;
		border-radius: 3px;
	}
}
