.pc-catalogue-wrapper {
	width: 100%;
	padding: 0 20px 20px 20px;
}

.pc-catalogue-wrapper .product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
	padding: 0 0 80px;
	margin: 0;
	list-style: none;
}

.pc-catalogue-wrapper .product-card {
	background: #fff;
	border-radius: 12px;
	height: 260px;
	display: flex;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.03);
	position: relative;
}

.pc-catalogue-wrapper .product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	border-color: rgba(242, 146, 15, 0.2);
}

.pc-catalogue-wrapper .card-main {
	flex: 1;
	min-width: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
}

.pc-catalogue-wrapper .main-img-link {
	display: flex;
	width: 100%;
	height: 200px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: inherit;
}

.pc-catalogue-wrapper .main-img {
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
	transition: opacity 0.2s;
}

.pc-catalogue-wrapper .product-title {
	margin: 5px 8px 0;
	font-size: 15px;
	color: var(--c-navy, #1e2e65);
	text-transform: uppercase;
	text-align: center;
	line-height: 1.1;
	font-weight: normal;
	text-shadow: 0.3px 0.3px 0 #1e2e65;
	font-family: var(--font-product, "Baumans", sans-serif);
	letter-spacing: 0;
}

.pc-catalogue-wrapper .card-sidebar {
	width: 60px;
	flex: 0 0 60px;
	background: #fcfcfc;
	border-left: 1px solid #f0f0f0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 5px 0;
	position: relative;
	z-index: 5;
}

.pc-catalogue-wrapper .scroll-btn {
	width: 100%;
	height: 20px;
	border: 0;
	display: none;
	align-items: center;
	justify-content: center;
	color: #bbb;
	cursor: pointer;
	font-size: 10px;
	transition: color 0.2s, background 0.2s;
	background: #fcfcfc;
	z-index: 10;
	padding: 0;
	border-radius: 0;
}

.pc-catalogue-wrapper .scroll-btn:hover {
	color: var(--c-orange, #f2920f);
	background: #eee;
}

.pc-catalogue-wrapper .card-sidebar.has-overflow .scroll-btn {
	display: flex;
}

.pc-catalogue-wrapper .thumb-viewport {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.pc-catalogue-wrapper .card-sidebar.has-overflow .thumb-viewport {
	height: calc(100% - 40px);
}

.pc-catalogue-wrapper .thumb-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 5px 0;
	transition: top 0.3s ease;
}

.pc-catalogue-wrapper .thumb-button {
	width: 45px;
	height: 45px;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: 2px;
	cursor: pointer;
	background: #fff;
	transition: transform 0.2s, border-color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pc-catalogue-wrapper .thumb-button:hover {
	border-color: var(--c-orange, #f2920f);
	transform: scale(1.05);
}

.pc-catalogue-wrapper .thumb-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.pc-no-products,
.pc-empty-catalogue {
	color: var(--c-navy, #1e2e65);
	font-family: var(--font-body, "Sen", sans-serif);
}
