.pct-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 20px;
	font-family: inherit;
	color: #002D5A;
}

.pct-header {
	text-align: center;
	margin-bottom: 50px;
}

.pct-header h1 {
	font-size: 32px;
	font-weight: 800;
	color: #002D5A;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.pct-header p {
	font-size: 18px;
	font-weight: 600;
	color: #002D5A;
}

.pct-mobile-scroll-hint {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 0;
	padding: 15px 0;
	font-size: 14px;
	font-weight: 700;
	color: #E88313;
	position: sticky;
	top: 0;
	z-index: 99;
	background-color: #ffffff;
	border-bottom: 1px solid #e0e0e0;
}

.pct-mobile-scroll-hint svg {
	animation: pct-swipe-anim 1.5s infinite;
}

@keyframes pct-swipe-anim {
	0% { transform: translateX(-5px); }
	50% { transform: translateX(5px); }
	100% { transform: translateX(-5px); }
}

.pct-table {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.pct-row {
	display: grid;
	grid-template-columns: var(--pct-cols);
	gap: 20px;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding: 20px 0;
}

.pct-row:last-child {
	border-bottom: none;
}

.pct-top-row {
	align-items: end;
	border-bottom: 1px solid #e0e0e0 !important;
	padding-bottom: 40px;
}

.pct-col-label {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #002D5A !important;
	padding-right: 20px;
}

.pct-col-product {
	text-align: center;
	position: relative;
}

.pct-remove-product {
	position: absolute;
	top: -20px;
	right: 10%;
	background: transparent !important;
	border: none !important;
	font-size: 20px !important;
	font-weight: 300 !important;
	color: #000 !important;
	cursor: pointer;
	transition: color 0.3s;
	padding: 0 !important;
	width: auto !important;
	height: auto !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.pct-remove-product:hover {
	color: #666 !important;
}

.pct-product-img {
	max-width: 150px;
	height: auto;
	margin: 0 auto 20px;
}

.pct-col-product h3 {
	font-size: 18px !important;
	font-weight: 800 !important;
	color: #002D5A !important;
	margin: 0 0 5px !important;
	text-transform: uppercase !important;
}

.pct-short-desc {
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #002D5A !important;
	margin-bottom: 20px !important;
}

.pct-features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	text-align: left;
	display: inline-block;
}

.pct-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px !important;
	font-weight: 500 !important;
	margin-bottom: 8px !important;
	color: #002D5A !important;
}

.pct-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.pct-btn {
	display: inline-block;
	background-color: #002D5A !important;
	color: #ffffff !important;
	text-decoration: none !important;
	padding: 10px 20px;
	border-radius: 30px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	transition: background-color 0.3s;
	border: none !important;
	box-shadow: none !important;
}

.pct-btn:hover {
	background-color: #001f3e !important;
	color: #ffffff !important;
}

.pct-link {
	color: #002D5A !important;
	font-weight: 700 !important;
	font-size: 12px !important;
	text-decoration: none !important;
}

.pct-link:hover {
	color: #001f3e !important;
}

.pct-accordion {
	border-bottom: 1px solid #e0e0e0 !important;
}

.pct-accordion-header {
	width: 100%;
	background: transparent !important;
	border: none !important;
	padding: 20px 0 !important;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 10px;
	align-items: center;
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #E88313 !important;
	cursor: pointer;
	text-align: left;
	box-shadow: none !important;
}

.pct-accordion-icon {
	margin-right: 0 !important;
	width: 10px !important;
	height: 10px !important;
	border-right: 2px solid #E88313 !important;
	border-bottom: 2px solid #E88313 !important;
	border-top: none !important;
	border-left: none !important;
	transform: rotate(-45deg);
	transition: transform 0.3s;
	display: inline-block;
}

.pct-accordion.is-open .pct-accordion-icon {
	transform: rotate(45deg);
}

.pct-accordion-content {
	display: none;
	padding-bottom: 20px;
}

.pct-accordion.is-open .pct-accordion-content {
	display: block;
}

.pct-col-data {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pct-gauge {
	position: relative;
	width: 100px;
	text-align: center;
}

.pct-gauge-svg {
	width: 100%;
	height: auto;
	display: block;
}

.pct-gauge-text {
	font-size: 16px;
	font-weight: 800;
	color: #002D5A;
	margin-top: 5px;
}

.pct-check-box {
	width: 20px !important;
	height: 20px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px !important;
	font-weight: bold;
	font-size: 14px;
}

.pct-checked {
	background-color: #f15b29 !important;
	color: #ffffff !important;
	border: none !important;
}

.pct-unchecked {
	background-color: #ffffff !important;
	border: 1px solid #e0e0e0 !important;
	color: #999 !important;
}

.pct-foodshot-img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
}

.pct-icon-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	font-weight: 600;
	color: #002D5A;
}

.pct-empty {
	text-align: center;
	padding: 100px 20px;
	font-size: 20px;
	font-weight: 700;
	color: #002D5A;
}

@media (max-width: 992px) {
	.pct-wrapper {
		padding: 30px 15px;
	}

	.pct-table-scroll {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 -15px;
		padding: 0 15px;
	}

	.pct-mobile-scroll-hint {
		display: flex;
	}

	.pct-header h1 {
		font-size: 24px;
	}

	.pct-header p {
		font-size: 14px;
	}

	.pct-table {
		min-width: 900px;
	}
}