/* ========================================
   Device Detail Page Styles
   ======================================== */

.device-detail-section {
	padding: 40px 15px;
	margin-bottom: 20px;
}

/* Two Column Layout */
.two-column-layout {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.column-left {
	flex: 1;
	min-width: 0;
}

.column-right {
	flex: 1;
	min-width: 0;
}

.section-title {
	font-size: 28px;
	color: #333;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 3px solid #4BB4F6;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 80px;
	height: 3px;
	background: #00BFFF;
}

.section-content {
	line-height: 1.8;
	color: #555;
}

.section-content p {
	margin: 0 0 15px 0;
	font-size: 16px;
}

/* Feature List */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.feature-list li {
	padding: 12px 15px;
	margin-bottom: 10px;
	background: #f8f9fa;
	border-left: 4px solid #4BB4F6;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.feature-list li:hover {
	background: #e3f2fd;
	transform: translateX(5px);
	box-shadow: 0 2px 8px rgba(75, 180, 246, 0.2);
}

.feature-list li strong {
	color: #333;
	font-weight: 600;
}

/* Specs Table */
.specs-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
	background: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.specs-table tr {
	border-bottom: 1px solid #e0e0e0;
}

.specs-table tr:last-child {
	border-bottom: none;
}

.specs-table tr:nth-child(even) {
	background: #f8f9fa;
}

.specs-table td {
	padding: 15px 20px;
	font-size: 15px;
}

.spec-label {
	width: 30%;
	font-weight: 600;
	color: #333;
	background: #f0f7ff;
}

.spec-value {
	color: #555;
}

/* Scenario Grid */
.scenario-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 10px;
}

.scenario-item {
	padding: 20px;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.scenario-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(75, 180, 246, 0.3);
	border-color: #4BB4F6;
}

.scenario-item h4 {
	margin: 0 0 10px 0;
	font-size: 18px;
	color: #333;
	font-weight: 600;
}

.scenario-item p {
	margin: 0;
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* Mobile Responsive */
@media screen and (max-width: 800px) {
	.device-detail-section {
		padding: 30px 15px;
	}

	.two-column-layout {
		flex-direction: column;
		gap: 30px;
	}

	.section-title {
		font-size: 22px;
		margin-bottom: 20px;
		padding-bottom: 12px;
	}

	.section-content p {
		font-size: 15px;
	}

	.feature-list li {
		padding: 10px 12px;
		font-size: 14px;
	}

	.specs-table td {
		padding: 12px 15px;
		font-size: 14px;
	}

	.spec-label {
		width: 35%;
	}

	.scenario-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.scenario-item {
		padding: 15px;
	}

	.scenario-item h4 {
		font-size: 16px;
	}

	.scenario-item p {
		font-size: 13px;
	}
}
