/* ============================================
   Products Page - Card Design
   ============================================ */

/* Product Cards Grid */
.products-grid {
	padding: 80px 0 60px;
}

.products-grid .sec-title {
	text-align: center;
	margin-bottom: 60px;
}

/* Product Card */
.product-card {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(0,0,0,0.04);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(45,139,122,0.15);
	border-color: rgba(45,139,122,0.2);
}

.product-card-image {
	position: relative;
	overflow: hidden;
	height: 280px;
	background: linear-gradient(135deg, #f8fffe 0%, #e8f5f1 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.product-card-image img {
	max-height: 240px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
	transform: scale(1.08);
}

.product-card-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: linear-gradient(to top, #ffffff, transparent);
	z-index: 1;
}

.product-card-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: linear-gradient(135deg, #2D8B7A, #1a6b5a);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.product-card-body {
	padding: 24px 28px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-card-body h4 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px;
	line-height: 1.3;
	transition: color 0.3s ease;
}

.product-card:hover .product-card-body h4 {
	color: #2D8B7A;
}

.product-card-body p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
	flex: 1;
}

.product-card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.product-card-features span {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #2D8B7A;
	background: rgba(45,139,122,0.08);
	padding: 4px 12px;
	border-radius: 20px;
	letter-spacing: 0.3px;
}

.product-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #2D8B7A;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.product-card-link:hover {
	color: #1a6b5a;
	gap: 14px;
}

.product-card-link .arrow {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.product-card:hover .product-card-link .arrow {
	transform: translateX(4px);
}

/* Coming Soon Card Variant */
.product-card.coming-soon {
	opacity: 0.7;
}

.product-card.coming-soon .product-card-image {
	background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
}

.product-card.coming-soon .product-card-badge {
	background: linear-gradient(135deg, #999, #777);
}

/* ============================================
   Product Detail Page
   ============================================ */

.product-detail-section {
	padding: 60px 0 80px;
}

.product-detail-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fffe 0%, #e8f5f1 100%);
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.product-detail-image img {
	border-radius: 12px;
}

.product-detail-info {
	padding-left: 30px;
}

.product-badge {
	display: inline-block;
	background: linear-gradient(135deg, #2D8B7A, #1a6b5a);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 18px;
	border-radius: 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.product-detail-title {
	font-size: 36px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.2;
	margin-bottom: 10px;
}

.product-detail-tagline {
	font-size: 18px;
	color: #2D8B7A;
	font-weight: 600;
	font-style: italic;
	margin-bottom: 20px;
}

.product-detail-desc {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 15px;
}

/* Advantages Section */
.product-advantages {
	padding: 60px 0 40px;
}

.product-section-title {
	font-size: 30px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 15px;
}

.product-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #2D8B7A, transparent);
	border-radius: 2px;
}

.advantage-card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 14px;
	padding: 30px 24px;
	margin-bottom: 24px;
	transition: all 0.3s ease;
	height: 100%;
}

.advantage-card:hover {
	box-shadow: 0 10px 30px rgba(45,139,122,0.1);
	border-color: rgba(45,139,122,0.2);
	transform: translateY(-4px);
}

.advantage-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(45,139,122,0.1), rgba(45,139,122,0.05));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	font-size: 24px;
	color: #2D8B7A;
}

.advantage-card h5 {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.advantage-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* Technical Specs Table */
.product-specs {
	padding: 40px 0;
}

.specs-table-wrapper {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,0.06);
}

.specs-table {
	width: 100%;
	border-collapse: collapse;
}

.specs-table thead th {
	background: linear-gradient(135deg, #2D8B7A, #1a6b5a);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	padding: 16px 24px;
	text-align: left;
	border: none;
}

.specs-table tbody td {
	padding: 14px 24px;
	font-size: 14px;
	color: #555;
	border-bottom: 1px solid #f0f0f0;
	background: #ffffff;
}

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

.specs-table tbody tr:hover td {
	background: rgba(45,139,122,0.04);
}

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

/* Application Areas */
.product-applications {
	padding: 40px 0;
}

.app-intro {
	font-size: 16px;
	color: #666;
	margin-bottom: 30px;
}

.app-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.06);
	border-radius: 12px;
	margin-bottom: 14px;
	transition: all 0.3s ease;
	font-size: 15px;
	color: #333;
	font-weight: 500;
}

.app-item:hover {
	border-color: rgba(45,139,122,0.3);
	box-shadow: 0 4px 16px rgba(45,139,122,0.08);
	transform: translateX(6px);
}

.app-icon {
	font-size: 22px;
	color: #2D8B7A;
	min-width: 30px;
	text-align: center;
}

/* Product CTA */
.product-cta {
	margin-top: 60px;
}

.product-cta-inner {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	border-radius: 20px;
	padding: 50px 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.product-cta-inner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(45,139,122,0.2), transparent 60%);
	border-radius: 50%;
}

.product-cta-inner h3 {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
	position: relative;
}

.product-cta-inner p {
	font-size: 16px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 30px;
	position: relative;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 991px) {
	.product-detail-info {
		padding-left: 0;
		padding-top: 30px;
	}
	
	.product-detail-title {
		font-size: 28px;
	}
	
	.product-cta-inner {
		padding: 40px 30px;
	}
	
	.product-cta-inner h3 {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.product-card-image {
		height: 220px;
	}
	
	.product-detail-title {
		font-size: 24px;
	}
	
	.product-section-title {
		font-size: 24px;
	}
	
	.specs-table thead th,
	.specs-table tbody td {
		padding: 12px 14px;
		font-size: 13px;
	}
}
