.mc-2735-wrapper {
	padding: 80px 20px;
	background-color: #050914;
	font-family: 'Inter', sans-serif;
	position: relative;
	overflow: hidden;
}

.mc-2735-selector {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.mc-2735-title {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 32px;
	color: #FFFFFF !important;
	margin-bottom: 12px;
}

.mc-2735-subtitle {
	font-weight: 400;
	font-size: 16px;
	color: #8B9CB6 !important;
	margin-bottom: 48px;
}

/* SHRINK AND REVEAL LAYOUT */
.mc-2735-layout-area {
	display: flex;
	gap: 24px;
	width: 100%;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
}

.mc-2735-side {
	flex: 1;
	display: flex;
	gap: 24px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mc-2735-divider {
	width: 1px;
	background-color: rgba(255, 255, 255, 0.15);
	margin: 0 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.mc-2735-layout-area.mc-both-open .mc-2735-divider {
	opacity: 1;
}

.mc-2735-cat-card {
	flex: 1 0 100%;
	position: relative;
	height: 280px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mc-2735-cat-card:hover {
	transform: translateY(-4px);
}

.mc-2735-cat-card-bg {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.mc-2735-cat-card:hover .mc-2735-cat-card-bg {
	transform: scale(1.05);
}

.mc-2735-cat-card::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to top, rgba(5,9,20,0.9), rgba(5,9,20,0.3));
}

.mc-2735-cat-card-content {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	padding: 32px;
	text-align: left;
	z-index: 2;
	transition: all 0.4s ease;
}

.mc-2735-cat-card-content h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 8px;
	transition: all 0.4s ease;
}

.mc-2735-cat-card-content p {
	font-size: 14px;
	color: #E9EEF8;
	margin: 0;
	transition: opacity 0.3s ease;
}

/* SHRUNK STATE - Shrunk to 30%, freeing 70% for chips */
.mc-2735-cat-card.mc-shrunk {
	flex: 0 0 30%;
	height: 180px;
}
.mc-2735-cat-card.mc-shrunk .mc-2735-cat-card-content h3 {
	font-size: 20px;
}
.mc-2735-cat-card.mc-shrunk .mc-2735-cat-card-content p {
	opacity: 0;
	pointer-events: none;
	height: 0;
	margin: 0;
}
.mc-2735-cat-card.mc-shrunk:hover {
	transform: translateY(0);
}

/* CHIPS AREA */
.mc-2735-chips-area {
	flex: 0 0 0%;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mc-2735-chips-area.mc-active {
	flex: 1 1 70%;
	opacity: 1;
	pointer-events: auto;
}

.mc-2735-chips {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}

.mc-2735-side-terra .mc-2735-chips {
	align-items: flex-end;
}

.mc-2735-chip {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 10px 16px;
	font-weight: 500;
	font-size: 14px;
	color: #FFFFFF;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	white-space: normal;
	line-height: 1.3;
	/* Proportional scaling via JS applied inline */
	width: 100%;
	max-width: 100%;
}

.mc-2735-chip:hover {
	background: rgba(255, 255, 255, 0.1);
}

.mc-2735-wrapper .mc-2735-chip.mc-2735-selected {
	background-color: #1E42A3 !important;
	border-color: #1E42A3 !important;
	color: #FFFFFF !important;
	box-shadow: 0 0 12px rgba(30,66,163,0.4) !important;
}

@keyframes shake-2735 {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-4px); }
	75% { transform: translateX(4px); }
}

.mc-2735-shake {
	animation: shake-2735 0.3s ease-in-out;
}

/* Floating Bar */
.mc-2735-floating-bar {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	background-color: #1E42A3;
	padding: 12px 24px;
	border-radius: 12px 12px 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 800px;
	z-index: 9999;
	transition: transform 0.3s ease;
}

.mc-2735-floating-bar.mc-2735-visible {
	transform: translateX(-50%) translateY(0);
}

.mc-2735-count {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #FFFFFF;
}

.mc-2735-clear-btn {
	font-family: 'Inter', sans-serif;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
	font-size: 13px;
	cursor: pointer;
	padding: 0;
}
.mc-2735-clear-btn:hover {
	color: #fff;
	text-decoration: underline;
}

/* Comparison Area */
.mc-2735-comparison-area {
	max-width: 1200px;
	margin: 64px auto 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mc-2735-cards-container {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: stretch;
}

.mc-2735-card {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 32px;
	flex: 1;
	max-width: 380px;
	text-align: left;
	animation: mc-fade-in 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
}

.mc-2735-remove-card {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(0,0,0,0.1);
	color: #000;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
	transition: background 0.2s;
	z-index: 10;
}

.mc-2735-remove-card:hover {
	background: rgba(0,0,0,0.2);
}

@keyframes mc-fade-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

.mc-2735-card-img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 24px;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.mc-2735-card-title {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #1A1F2E;
	margin-bottom: 24px;
}

.mc-2735-spec-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #E9EEF8;
}

.mc-2735-spec-label {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: #6B748A;
}

.mc-2735-spec-value {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 13px;
	color: #1A1F2E;
}

.mc-2735-card-price-area {
	margin-top: 24px;
	margin-bottom: 24px;
	flex-grow: 1;
}
.mc-2735-price-label {
	font-size: 12px;
	color: #6B748A;
	display: block;
	margin-bottom: 4px;
}
.mc-2735-price {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 28px;
	color: #1E42A3;
}
.mc-2735-price.mc-coming-soon {
	color: #6B748A;
	font-weight: 600;
	font-size: 20px;
	font-family: 'Inter', sans-serif;
}

.mc-2735-btn {
	display: block;
	text-align: center;
	background-color: #1E42A3;
	color: #FFFFFF;
	border-radius: 8px;
	padding: 12px 24px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	transition: opacity 0.2s;
	margin-top: auto;
}

.mc-2735-btn:hover {
	opacity: 0.9;
}


@media (max-width: 767px) {
	.mc-2735-layout-area {
		flex-direction: column;
		gap: 32px;
	}
	.mc-2735-side {
		flex-direction: column;
		gap: 16px;
	}
	.mc-2735-side.mc-active {
		flex-direction: column;
	}
	.mc-2735-cat-card {
		height: 200px;
	}
	.mc-2735-cat-card.mc-shrunk {
		flex: 1 1 auto;
		width: 100%;
		height: 100px;
	}
	.mc-2735-chips {
		align-items: center !important;
	}
	.mc-2735-divider {
		display: none;
	}
	.mc-2735-cards-container {
		flex-direction: column;
		align-items: center;
	}
	.mc-2735-floating-bar {
		border-radius: 0;
		max-width: 100%;
	}
}