/* ЯрСтрой: Объекты + Товары — фронтенд */

.yarop-block-title {
	margin: 30px 0 14px;
	font-size: 1.15em;
}

/* Превью привязанного товара на странице объекта */
.yarop-object-product {
	margin: 24px 0;
}

.yarop-product-preview {
	display: flex;
	align-items: center;
	gap: 16px;
	max-width: 480px;
	padding: 16px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.yarop-product-preview:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	border-color: #d0d0d0;
}

.yarop-product-thumb img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.yarop-product-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.yarop-product-title {
	font-weight: 600;
	font-size: 1.05em;
}

.yarop-product-price {
	color: #666;
}

.yarop-product-link-label {
	font-size: 0.85em;
	color: #b32d2e;
	font-weight: 600;
}

/* Карусель товаров по категории */
.yarop-carousel-wrap {
	margin: 30px 0;
}

.yarop-carousel {
	position: relative;
	display: flex;
	align-items: center;
}

.yarop-carousel-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 8px 4px;
	scrollbar-width: none;
}

.yarop-carousel-track::-webkit-scrollbar {
	display: none;
}

.yarop-carousel-item {
	flex: 0 0 200px;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	padding: 12px;
	text-align: center;
	background: #fff;
}

.yarop-carousel-item a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.yarop-carousel-item img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
}

.yarop-carousel-title {
	display: block;
	font-weight: 600;
	margin-top: 10px;
	font-size: 0.92em;
	line-height: 1.3;
}

.yarop-carousel-price {
	display: block;
	color: #666;
	font-size: 0.85em;
	margin-top: 4px;
}

.yarop-carousel-arrow {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
	font-size: 16px;
	z-index: 2;
}

.yarop-carousel-arrow:hover {
	background: #f5f5f5;
}

.yarop-carousel-prev {
	margin-right: 10px;
}

.yarop-carousel-next {
	margin-left: 10px;
}

/* Вкладка "Реализованные объекты" на странице товара */
.yarop-objects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.yarop-object-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s ease;
}

.yarop-object-card:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.yarop-object-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

.yarop-object-title {
	display: block;
	padding: 12px 14px;
	font-weight: 600;
}
