﻿
/* — Genel Kart Ayarları — */
#yorumlarColleps .card {
	border: none;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	overflow: hidden;
	margin-bottom: 1rem;
}

/* — Başlık Butonu — */
#yorumlarColleps .card-header {
	background: #fff;
	padding: 0;
}

	#yorumlarColleps .card-header .btn-link {
		display: block;
		width: 100%;
		text-align: left;
		padding: 16px 20px;
		font-size: 16px;
		font-weight: 600;
		color: #333;
		position: relative;
		transition: background .3s, color .3s;
	}

		#yorumlarColleps .card-header .btn-link:hover {
			background: #fafafa;
		}

		#yorumlarColleps .card-header .btn-link::after {
			content: '\f078'; /* FontAwesome chevron-down */
			font-family: 'Font Awesome 5 Free';
			font-weight: 900;
			position: absolute;
			right: 20px;
			top: 50%;
			transform: translateY(-50%) rotate(0deg);
			transition: transform .3s;
			color: #999;
		}
		/* Açıldığında ikonu ters çevir, renk ver */
		#yorumlarColleps .card-header .btn-link[aria-expanded="true"] {
			color: #f7941d;
		}

			#yorumlarColleps .card-header .btn-link[aria-expanded="true"]::after {
				transform: translateY(-50%) rotate(180deg);
				color: #f7941d;
			}

/* — Gövde (Collapse içi) — */
#yorumlarColleps .collapse {
	background: #fff;
}

#yorumlarColleps .card-body {
	padding: 20px;
	background: #fcfcfc;
	border-top: 1px solid #e5e5e5;
}

/* — Yorum Satırları — */
#yorumlarColleps .yorumClass {
	padding: 4px 0;
	border-bottom: 1px solid #e5e5e5;
}

	#yorumlarColleps .yorumClass:last-child {
		border-bottom: none;
	}

	#yorumlarColleps .yorumClass .drawer-font {
		color: #555;
		line-height: 1.6;
		font-size: 15px;
	}
	/* Yıldız Renkleri */
	#yorumlarColleps .yorumClass .fa-star {
		color: #ffc000;
		margin-right: 4px;
		font-size: 10px;
	}
	/* Yorum Tarihi */
	#yorumlarColleps .yorumClass .drawer-font[data-tarih] {
		display: block;
		font-size: 14px;
		color: #999;
		margin-top: 6px;
	}

.fa-2x.fas.fa-star {
	color: #ffc000;
	font-size: 22px;
}

.ps-2.fa-2x {
	font-size: 21px;
}
/*Video Css*/

.zoom-slider-big-box {
	position:relative;
}
.video-btn {
	background-color: #f27a1a;
	border-color: #f27a1a;
	color: white;
	padding: 3px 7px;
	border: none;
	border-radius: 16px;
	font-size: 14px;
	cursor: pointer;
	font-weight: bold;
	position: absolute;
	bottom: 0px;
	right: 0px;
}
	.video-btn:hover {
		color: #fff;
		background-color: #e36908;
		border-color: #e36908
	}

.video-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.9); /* Mobil için tam koyu */
	justify-content: center;
	align-items: center;
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

	.video-wrapper video {
		width: 100%;
		height: 100%;
		object-fit: cover; /* Default: Mobilde kırpmadan doldur */
	}

.modal-controls {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10000;
	display: flex;
	align-items: center;
}

.close-btn {
	background-color: rgba(255, 255, 255, 0.5);
	color: white;
	font-size: 28px;
	border: none;
	padding: 5px 10px;
	border-radius: 0px;
	cursor: pointer;
	width: 50px;
	height: 50px;
}

.right-buttons {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	gap: 10px;
	z-index: 10001; /* Butonları her şeyin üstüne çıkar */
}

.icon-btn {
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	color: white;
	font-size: 20px;
	padding: 8px;
	border-radius: 50%;
	cursor: pointer;
	width: 50px;
	height: 50px;
}


/* Masaüstü için özel ayarlar */
@media (min-width: 768px) {
	.video-modal {
		background: rgba(0, 0, 0, 0.6); /* Şeffaf arka plan */
	}

	.video-wrapper video {
		object-fit: contain; /* Videoyu sığdır, kırpma */
		max-width: 90vw;
		max-height: 90vh;
	}

	.video-wrapper {
		max-width: 100vw;
		max-height: 100vh;
	}
}

/*Video Css*/