.vendor-showcase {
	background: #fff7f9;
	padding: 60px 0;
	margin-bottom: 50px !important;
}

.vendor-header h2 {
	font-size: 34px;
	font-weight: 600;
	color: #111;
	margin-bottom: 10px;
}

.vendor-header p {
	font-size: 16px;
	color: #666;
}

.results-info {
	border-bottom: 2px solid #C8005A;
	padding-bottom: 15px;
	flex-wrap: wrap;
}

.vendor-card2 {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0d0dc;
	transition: all 0.3s;
}

.vendor-card2:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
	border-color: #e91e63;
}

.vendor-image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 56%;
	overflow: hidden;
}
.vendor-image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s;
}

.vendor-card2:hover .vendor-image-wrapper img {
	transform: scale(1.1);
}

.vendor-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 5px 10px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.vendor-tag.featured {
	background: #F2B8C6;
	color: #111;
}

.vendor-details {
	padding: 20px;
}

.vendor-type {
	font-size: 12px;
	color: #999;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.vendor-business {
	font-size: 18px;
	font-weight: 600;
	color: #111;
	line-height: 1.3;
}

.vendor-address {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.vendor-address i {
	color: #e91e63;
	margin-right: 6px;
	font-size: 12px;
}

.vendor-rating-section {
	margin: 12px 0;
}

.rating-stars {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
}

.rating-stars i {
	color: #ffd700;
	font-size: 14px;
}

.rating-stars i.far {
	color: #e0e0e0;
}

.rating-value {
	font-weight: 600;
	color: #111;
	margin-left: 5px;
	font-size: 14px;
}

.rating-count {
	color: #999;
	font-size: 12px;
	margin-left: 5px;
}

/* Reels */
.reels-section {
	background: #0a0a0a;
	border-radius: 24px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reels-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.reels-title i {
	color: #e91e63;
	font-size: 28px;
}

.reels-sub {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	text-align: center;
	margin-bottom: 15px;
}

.reels-carousel-vertical {
	position: relative;
	height: 550px;
	overflow: hidden;
	border-radius: 16px;
}

.reel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
	visibility: hidden;
}

.reel-slide.active {
	opacity: 1;
	visibility: visible;
}

.reel-video-wrapper,
.reel-thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.reel-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 55px;
	height: 55px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	transition: all 0.2s;
	z-index: 5;
}

.reel-play-btn:hover {
	background: #e91e63;
	transform: translate(-50%, -50%) scale(1.1);
}

.reel-duration {
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 4px;
	z-index: 5;
}

.reel-info {
	padding: 10px 5px;
	position: relative;
	z-index: 5;
}

.reel-caption {
	font-size: 13px;
	color: #fff;
	white-space: normal;
	word-wrap: break-word;
	line-height: 1.4;
}

.reel-caption i {
	color: #e91e63;
	margin-right: 6px;
}

.reel-dots {
	position: absolute;
	bottom: 60px;
	right: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 10;
}

.reel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s;
}

.reel-dot.active {
	background: #e91e63;
	height: 20px;
	border-radius: 4px;
}

/* Responsive */
@media(max-width:992px) {
	.vendor-showcase {
		padding: 40px 15px;
	}

	.vendor-header h2 {
		font-size: 28px;
	}

	.vendor-card2 {
		margin-bottom: 20px;
	}

	.col-lg-8,
	.col-lg-4 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	/* Reels below vendors */
	.reels-carousel-vertical {
		height: auto;
		min-height: 300px;
	}
}

@media(max-width:576px) {
	.vendor-header h2 {
		font-size: 24px;
	}

	.vendor-business {
		font-size: 16px;
	}

	.vendor-details {
		padding: 12px;
	}

	.reel-info {
		padding: 5px;
	}

	.reel-caption {
		font-size: 12px;
	}

	.reels-carousel-vertical {
		min-height: 250px;
	}
}

.reel-like-btn {
    position: absolute;
    bottom: 20px;
    right: 75%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 30px;
    padding: 8px 15px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.reel-like-btn i {
    font-size: 14px;
}

.reel-like-btn .like-count {
    font-size: 13px;
    font-weight: 500;
}

.reel-like-btn:hover {
    background: #e91e63;
    transform: scale(1.05);
}

.reel-like-btn.liked {
    background: #e91e63;
}

.reel-like-btn:active {
    transform: scale(0.95);
}