.products-showcase {
	padding: 80px 0;
	background-color: #fff;
}

.section-heading {
	margin-bottom: 20px;
}

.section-heading .subtitle {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #555;
	margin-bottom: 10px;
	position: relative;
}

.section-heading h2 {
	font-size: 36px;
	font-weight: 700;
	color: #222;
	margin-bottom: 0;
}

.slider-navigation {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	position: relative;
	z-index: 5;
}

.slider-button-prev,
.slider-button-next {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid var(--color-10);
	position: relative;
	z-index: 10;
}

.slider-button-prev i,
.slider-button-next i {
	font-size: 22px;
	color: var(--text-heading-color);
	transition: all 0.3s ease;
}

.slider-button-prev:hover,
.slider-button-next:hover {
	background-color: #F37326;
	border: none;
}

.slider-button-prev:hover i,
.slider-button-next:hover i {
	color: #fff;
}

.product-item {
	background-color: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	margin: 10px 0; /* Yatay marjini kaldırdım, sadece dikey marjin bıraktım */
	border: 1px solid rgba(0,0,0,0.05);
	position: relative;
}

.product-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	border-color: rgba(0,0,0,0.1);
}

.product-thumb {
	position: relative;
	overflow: hidden;
	height: 220px;
	border-bottom: 3px solid #F37326;
}

.product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	filter: brightness(0.95);
}

.product-item:hover .product-thumb img {
	transform: scale(1.1);
	filter: brightness(1.05);
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.product-item:hover .product-overlay {
	opacity: 1;
}

.btn-view {
	display: inline-block;
	padding: 12px 30px;
	background-color: #F37326;
	color: #fff;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.4s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	border: 2px solid transparent;
}

.product-item:hover .btn-view {
	transform: translateY(0);
	opacity: 1;
}

.btn-view:hover {
	background-color: transparent;
	color: #fff;
	border-color: #fff;
}

.product-info {
	padding: 25px 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.product-category {
	display: inline-block;
	font-size: 13px;
	color: #fff;
	margin-bottom: 10px;
	background-color: #F37326;
	padding: 5px 15px;
	border-radius: 30px;
	position: absolute;
	top: -15px;
	left: 20px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.1);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.product-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 10px;
}

.product-title a {
	color: #222;
	text-decoration: none;
	transition: color 0.3s;
	position: relative;
	display: inline-block;
}

.product-title a:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #F37326;
	transition: width 0.3s ease;
}

.product-title a:hover {
	color: #F37326;
}

.product-title a:hover:after {
	width: 100%;
}

.product-description {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
	flex-grow: 1;
	padding-bottom: 10px;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.product-price {
	font-size: 22px;
	font-weight: 800;
	color: #333;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-price:after {
	content: '→';
	font-size: 24px;
	color: #ddd;
	transition: all 0.3s ease;
}

.product-item:hover .product-price:after {
	color: #555;
	transform: translateX(5px);
}

.main-image-container {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.lg-t-center {
		text-align: center;
	}
	
	.lg-mb-30 {
		margin-bottom: 30px;
	}
	
	.slider-navigation.lg-t-center {
		justify-content: center;
	}
	
	.slider-button-prev,
	.slider-button-next {
		width: 50px;
		height: 50px;
	}
	
    .main-image-container {
        height: 400px;
    }

}

@media (max-width: 767px) {
	.section-heading h2 {
		font-size: 28px;
	}
	
	.product-thumb {
		height: 200px;
	}
}
.main-image-container {
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.nav-btn i {
    font-size: 18px;
    line-height: 1;
}

.nav-btn:hover {
    background: rgba(249, 76, 48, 0.8);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.main-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: rgba(249, 76, 48, 0.8);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.thumbnail-images {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #ddd;
    opacity: 0.6;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #F94C30;
    opacity: 1;
}

/* Açıklama metinleri için stiller */
.product-details__content-text1, 
.product-description__text1 {
    display: block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.product-description__text1 {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Kaydırma çubuğu stilini özelleştirme */
.product-description__text1::-webkit-scrollbar {
    width: 6px;
}

.product-description__text1::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-description__text1::-webkit-scrollbar-thumb {
    background: #F94C30;
    border-radius: 10px;
}

.product-description__text1::-webkit-scrollbar-thumb:hover {
    background: #d43d27;
}
/* Özellik kutuları için stil - Animasyonsuz tasarım */
.product-features {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0 10px;
}

.feature-box {
    flex: 1 1 calc(50% - 10px);
    margin: 5px;
    padding: 12px 15px;
    border-left: 3px solid #F94C30;
    background-color: #f9f9f9;
}

.feature-content {
    width: 100%;
}

.feature-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #333;
}

.feature-content p {
    font-size: 13px;
    margin: 0;
    line-height: 1.3;
    color: #666;
}

@media (max-width: 768px) {
    .feature-box {
        flex: 1 1 100%;
    }
}

