.tcm-ps-block {
	margin-bottom: 30px;
}

/* Tables (shared by tabs / carousel / accordion / shared specs) */
.tcm-ps-spec-table {
	width: 100%;
	border-collapse: collapse;
	background-color: #4CAF50;
	color: #ffffff;
	border-radius: 4px;
	overflow: hidden;
}
.tcm-ps-spec-table th,
.tcm-ps-spec-table td {
	padding: 14px 20px;
	text-align: left;
	font-weight: normal;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}
.tcm-ps-spec-table th {
	font-weight: 600;
	width: 50%;
}
.tcm-ps-spec-table tr:last-child th,
.tcm-ps-spec-table tr:last-child td {
	border-bottom: none;
}

/* Tabs */
.tcm-ps-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 0;
}
.tcm-ps-tab-btn {
	background: transparent;
	border: none;
	padding: 14px 24px;
	cursor: pointer;
	font-weight: 600;
	border-radius: 6px 6px 0 0;
	transition: background-color .2s ease;
}
.tcm-ps-tab-btn.is-active {
	background-color: #5CB85C;
	color: #fff;
}
.tcm-ps-tabs-panels {
	border-top: none;
}
.tcm-ps-tab-panel {
	display: none;
}
.tcm-ps-tab-panel.is-active {
	display: block;
}

/* Carousel */
.tcm-ps-carousel {
	position: relative;
	overflow: hidden;
	padding-bottom: 40px;
}
.tcm-ps-carousel .swiper-wrapper {
	display: flex;
	align-items: stretch;
	will-change: transform;
}
.tcm-ps-slide {
	padding: 4px;
	box-sizing: border-box;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.tcm-ps-version-title {
	background-color: #5CB85C;
	color: #fff;
	padding: 12px 20px;
	margin: 0 0 0 0;
	border-radius: 4px 4px 0 0;
}
.tcm-ps-carousel .swiper-button-next,
.tcm-ps-carousel .swiper-button-prev {
	color: #5CB85C;
	font-size: 24px;
}
.tcm-ps-carousel .swiper-pagination-bullet {
	background: rgba(92,184,92,0.3);
	opacity: 1;
}
.tcm-ps-carousel .swiper-pagination-bullet-active {
	background: #5CB85C;
}

/* Accordion */
.tcm-ps-accordion-item {
	margin-bottom: 4px;
}
.tcm-ps-accordion-toggle {
	width: 100%;
	text-align: left;
	background-color: #5CB85C;
	color: #fff;
	border: none;
	padding: 14px 20px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 4px;
}
.tcm-ps-accordion-icon::before {
	content: '+';
	font-size: 18px;
}
.tcm-ps-accordion-item.is-active .tcm-ps-accordion-icon::before {
	content: '\2212'; /* minus */
}
.tcm-ps-accordion-content {
	display: none;
	padding-top: 0;
}
.tcm-ps-accordion-item.is-active .tcm-ps-accordion-content {
	display: block;
}

/* Shared specs block */
.tcm-ps-shared {
	margin-top: 24px;
}
.tcm-ps-shared-title {
	margin-bottom: 10px;
}
