/* Loved on Social Section */
.social-section {
	width: 100%;
	padding: 60px 20px;
	background: #ffffff;
}

.social-container {
	max-width: 1500px;
	margin: 0 auto;
	position: relative;
}

/* Header */
.social-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.social-title {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #111;
	margin: 0;
	text-transform: uppercase;
}

.social-handle {
	font-size: 15px;
	font-weight: 500;
	color: #111;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.social-handle i {
	font-size: 16px;
}

.social-handle:hover {
	opacity: 0.7;
}

/* Carousel Wrapper */
.social-carousel-wrapper {
	overflow: hidden;
	width: 100%;
}

.social-carousel {
	display: flex;
	gap: 16px;
	will-change: transform;
}

/* Individual Card */
.social-card {
	flex: 0 0 auto;
	width: 260px;
	display: flex;
	flex-direction: column;
}

.social-media-box {
	position: relative;
	width: 100%;
	height: 380px;
	border-radius: 10px;
	overflow: hidden;
	background: #eee;
	cursor: pointer;
}

.social-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.social-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.social-media-box:hover .social-play-icon,
.social-media-box.playing .social-play-icon {
	opacity: 0;
}

/* Product Info Below Video */
.social-product-info {
	margin-top: 10px;
	background: #f4f4f4;
	border-radius: 8px;
	padding: 10px;
}

.social-product-link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.social-product-thumb {
	width: 55px;
	height: 55px;
	object-fit: contain;
	background: #fff;
	border-radius: 6px;
	flex-shrink: 0;
}

.social-product-text h4 {
	font-size: 13px;
	font-weight: 500;
	color: #222;
	margin: 0 0 5px;
	line-height: 1.4;
}

.social-product-price {
	font-size: 13px;
	font-weight: 600;
	color: #111;
}

/* Intro Card (All Products) */
.social-card-intro .social-intro-box {
	height: 380px;
}

.social-card-intro .social-intro-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.social-card-intro .social-product-info {
	background: #f4f4f4;
	padding: 15px;
}

.social-card-intro h4 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 10px;
	color: #111;
}

.social-shop-link {
	font-size: 14px;
	font-weight: 500;
	color: #111;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.social-shop-link:hover {
	text-decoration: underline;
}

/* Arrows */
.social-nav-arrows {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
}

.social-arrow {
	background: #fff;
	border: 1px solid #ddd;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 13px;
	color: #111;
	transition: all 0.3s ease;
}

.social-arrow:hover {
	background: #111;
	color: #fff;
	border-color: #111;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px) {
	.social-card {
		width: 220px;
	}

	.social-media-box,
	.social-card-intro .social-intro-box {
		height: 320px;
	}
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 576px) {

	.social-section {
		padding: 35px 15px;
	}

	.social-title {
		font-size: 18px;
	}

	.social-handle {
		font-size: 12px;
	}

	.social-card {
		width: 150px;
	}

	.social-media-box,
	.social-card-intro .social-intro-box {
		height: 220px;
		border-radius: 8px;
	}

	.social-play-icon {
		width: 36px;
		height: 36px;
		font-size: 14px;
	}

	.social-product-thumb {
		width: 40px;
		height: 40px;
	}

	.social-product-text h4 {
		font-size: 11px;
	}

	.social-product-price {
		font-size: 11px;
	}

	.social-card-intro h4 {
		font-size: 14px;
	}

	.social-shop-link {
		font-size: 12px;
	}

	.social-arrow {
		width: 32px;
		height: 32px;
		font-size: 11px;
	}
}