.bbr-wrapper {
	max-width: 1440px;
	padding: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Header Styles */
.bbr-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 30px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bbr-header-left, 
.bbr-header-center, 
.bbr-header-right {
	width: 100%;
	margin-bottom: 15px;
}

.bbr-logo {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bbr-name {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #333;
}

.bbr-rating {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.bbr-rating img {
	width: 120px;
	height: auto;
}

.bbr-score {
	font-size: 18px;
	font-weight: 600;
	color: #ff9800;
}

.bbr-count {
	font-size: 14px;
	color: #666;
}

/* Carousel Container */
.bbr-carousel-container {
	position: relative;
	overflow: hidden;
	padding: 0 40px;
}

.bbr-carousel {
	display: flex;
	transition: transform 0.5s ease-in-out;
	will-change: transform;
	gap: 20px;
}

/* Card Styles */
.bbr-card {
	flex: 0 0 100%;
	box-sizing: border-box;
	padding: 25px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 3px 15px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 250px;
	display: flex;
	flex-direction: column;
}

.bbr-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.bbr-card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.bbr-avatar {
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	display:flex;
	align-items:center;
	justify-content: center;
	height:100%;
}

.bbr-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bbr-info {
	flex: 1;
}

.bbr-author {
	margin: 0 0 5px 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

.bbr-date {
	display: block;
	font-size: 13px;
	color: #888;
}

.bbr-card-body {
	flex: 1;
	margin-bottom: 15px;
}

.bbr-title {
	margin: 0 0 10px 0;
	font-size: 17px;
	font-weight: 600;
	color: #333;
	line-height: 1.3;
}

.bbr-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}

.bbr-card-footer img {
	width: 100px;
	height: auto;
}

/* Navigation Buttons */
.bbr-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}

.bbr-nav .slider-btn {
	pointer-events: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	border: none;
	width: 45px;
	height: 45px;
	cursor: pointer;
	font-size: 20px;
	border-radius: 50%;
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bbr-nav .slider-btn:hover:not(:disabled) {
	background: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	transform: translateY(-50%) scale(1.1);
}

.bbr-nav .slider-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.bbr-prev {
	left: 0;
}

.bbr-next {
	right: 0;
}

/* Thumbnails */
.bbr-thumbs {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 8px;
	flex-wrap: wrap;
	padding: 10px 0;
}

.bbr-thumb {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.5;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.bbr-thumb:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.bbr-thumb.active {
	opacity: 1;
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/* Responsive Styles */
@media (min-width: 601px) {
	.bbr-header {
		flex-direction: row;
		text-align: left;
	}
	
	.bbr-header-left, 
	.bbr-header-center, 
	.bbr-header-right {
		width: auto;
		margin-bottom: 0;
	}
	
	.bbr-header-left {
		flex: 0 0 auto;
	}
	
	.bbr-header-center {
		flex: 1;
		padding: 0 20px;
	}
	
	.bbr-header-right {
		flex: 0 0 auto;
	}
	
	.bbr-rating {
		flex-direction: row;
		align-items: center;
	}
	
	.bbr-rating img {
		width: 100px;
	}
	
	.bbr-card {
		flex: 0 0 calc(50% - 20px);
	}
}

@media (min-width: 993px) {
	.bbr-card {
		flex: 0 0 calc(33.333% - 20px);
	}
}

@media (max-width: 600px) {
	.bbr-carousel-container {
		padding: 0 30px;
	}
	
	.bbr-nav .slider-btn {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	
	.bbr-card {
		padding: 20px;
		margin: 0 5px;
	}
	
	.bbr-header {
		padding: 15px;
	}
	
	.bbr-name {
		font-size: 20px;
	}
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
	.bbr-nav .slider-btn {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}
	
	.bbr-thumb {
		width: 35px;
		height: 35px;
	}
}

/* Loading state */
.bbr-carousel-container.loading .bbr-carousel {
	opacity: 0.5;
}

/* No reviews message */
.bbr-no-reviews {
	text-align: center;
	padding: 40px;
	background: #f9f9f9;
	border-radius: 10px;
	color: #666;
	font-size: 16px;
}