.related-products-showcase {padding-top: 80px;}
.products-container-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}
.section-header-elegant {
	text-align: center;
	margin-bottom: 3rem;
}
.main-title-stylized {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}
.subtitle-description {
	font-size: 1.1rem;
	color: #7f8c8d;
	font-weight: 300;
}
.products-carousel-container {
	margin-bottom: 2rem;
}        
.owl-carousel .owl-item {
	padding: 0 15px;
}
.product-card-premium {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	margin-bottom: 10px;
}
.product-card-premium:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.product-image-container {
	position: relative;
	background: linear-gradient(45deg, #f0f2f5, #e1e8ed);
	display: flex;
	overflow: hidden;
}
.product-image-container img{
	height: 100%;
	width: 100%;
}
.product-placeholder-visual {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	font-weight: bold;
	transition: transform 0.3s ease;
}
.product-card-premium:hover .product-placeholder-visual {
	transform: scale(1.1) rotate(5deg);
}
.discount-badge-floating {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #0eab65;
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 400;
	z-index: 2;
}
.product-details-section {
	padding: 20px;
}
.product-name-display {
	font-size: 16px;
	font-weight: 400;
	color: #2c3e50;
	margin-bottom: 0.5rem;
	line-height: 1.4;
}
.price-section-layout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.price-display-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.current-price-highlight {
	font-size: 18px;
	font-weight: 500;
	color: #2c3e50;
}
.original-price-crossed {
	font-size: 14px;
	color: #95a5a6;
	text-decoration: line-through;
}
.action-buttons-row {
	display: flex;
	gap: 0.75rem;
}
.add-cart-button-primary {
	width: 100%;
	background: linear-gradient(135deg, #f10d0d, #f93939);
	color: white;
	border: none;
	padding: 5px 15px;
	border-radius: 12px;
	font-weight: 400;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 15px;
}
.add-cart-button-primary:hover {
	background: linear-gradient(135deg, #5a6fd8, #6a4190);
	transform: translateY(-2px);
}
/* Owl Carousel Custom Styles */
.owl-nav {
	text-align: center;
	margin-top: 2rem;
}        
.owl-nav button {
	background: linear-gradient(135deg, #667eea, #764ba2) !important;
	color: white !important;
	border: none !important;
	border-radius: 50px !important;
	padding: 12px 20px !important;
	margin: 0 10px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	transition: all 0.3s ease !important;
}
.owl-nav button:hover {
	background: linear-gradient(135deg, #5a6fd8, #6a4190) !important;
	transform: translateY(-2px) !important;
}        
.owl-dots {
	text-align: center;
	margin-top: 1rem;
}        
.owl-dot {
	display: inline-block;
	margin: 0 5px;
}        
.owl-dot span {
	width: 12px !important;
	height: 12px !important;
	background: #ddd !important;
	border-radius: 50% !important;
	transition: all 0.3s ease !important;
}        
.owl-dot.active span {
	background: #667eea !important;
}
/* Responsive Design */
@media (max-width: 768px) {
	.related-products-showcase {
		padding-top:60px;
	}	        
	.main-title-stylized {
		font-size: 2rem;
	}        
	.product-details-section {
		padding: 1rem;
	}
}
@media (max-width: 480px) {
	.main-title-stylized {
		font-size: 1.8rem;
	}
}