* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	background: #f0f1f5;
	color: #1a1a2e;
	min-height: 100vh;
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.page-header {
	text-align: center;
	margin-bottom: 50px;
	padding-top: 20px;
}

.page-header h1 {
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 50%, #ff006e 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.02em;
}

.robot-card {
	background: linear-gradient(145deg, #1a1d2e 0%, #162035 100%);
	border: 1px solid rgba(0, 212, 255, 0.1);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 24px;
	display: flex;
	flex-direction: row;
	min-height: 300px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.robot-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), rgba(123, 47, 247, 0.4), transparent);
}

.robot-card:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 212, 255, 0.4);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
	0 0 30px rgba(0, 212, 255, 0.15);
}

.slider-section {
	width: 38%;
	position: relative;
	background: linear-gradient(180deg, rgba(123, 47, 247, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
	overflow: hidden;
}

.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 300px;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
}

.slide.active {
	opacity: 1;
}

.slide img {
	max-width: 100%;
	max-height: 240px;
	object-fit: contain;
	filter: drop-shadow(0 16px 32px rgba(0,0,0,0.5));
	transition: transform 0.4s ease;
}

.robot-card:hover .slide.active img {
	transform: scale(1.05);
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.25);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
	width: 24px;
	border-radius: 4px;
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	color: white;
	font-size: 18px;
}

.slider-nav:hover {
	background: rgba(0, 212, 255, 0.2);
	border-color: rgba(0, 212, 255, 0.5);
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.slider-nav.prev { left: 14px; }
.slider-nav.next { right: 14px; }

.info-section {
	width: 62%;
	padding: 28px 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: #ffffff;
}

.robot-header {
	margin-bottom: 16px;
}

.robot-category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(123, 47, 247, 0.15) 100%);
	border: 1px solid rgba(0, 212, 255, 0.25);
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #00d4ff;
	margin-bottom: 10px;
}

.robot-name {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.robot-short-desc {
	font-size: 14px;
	color: #a0aec0;
	line-height: 1.5;
}

.specs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 16px;
}

.spec-item {
	background: rgba(255,255,255,0.04);
	padding: 12px;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.06);
}

.spec-label {
	font-size: 10px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 3px;
}

.spec-value {
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
}

.features-list {
	margin: 12px 0 16px;
}

.feature-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 10px;
	background: linear-gradient(135deg, rgba(123, 47, 247, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
	border: 1px solid rgba(123, 47, 247, 0.25);
	border-radius: 6px;
	font-size: 11px;
	color: #c4b5fd;
	margin-right: 6px;
	margin-bottom: 6px;
}

.feature-tag::before {
	content: '◆';
	color: #7b2ff7;
	font-size: 6px;
}

.price-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.price-block {
	display: flex;
	flex-direction: column;
}

.price-label {
	font-size: 12px;
	color: #64748b;
	margin-bottom: 3px;
}

.price-value {
	font-size: 24px;
	line-height: 110%;
	font-weight: 700;
	background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.price-value span {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 400;
	-webkit-text-fill-color: #94a3b8;
}

.order-btn {
	padding: 14px 28px;
	background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
	border: none;
	border-radius: 10px;
	color: white;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

.order-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
	transition: left 0.6s;
}

.order-btn:hover::before {
	left: 100%;
}

.order-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(123, 47, 247, 0.5);
}

@media (max-width: 968px) {
	.robot-card {
		flex-direction: column;
		min-height: auto;
	}

	.slider-section,
	.info-section {
		width: 100%;
	}

	.slider-container {
		min-height: 260px;
	}

	.specs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.page-header h1 {
		font-size: 32px;
	}
}

.badge-new {
	position: absolute;
	top: 16px;
	right: 16px;
	background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 20;
	color: white;
	box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.9; transform: scale(1.02); }
}