.custom-product-share{
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 24px;
	flex-wrap: wrap;
}
.custom-product-share .share-label{
	font-weight:600;
	color:#555;
}
.custom-product-share a{
	text-decoration:none;
	color:#333;
	transition:.3s ease;
}
.custom-product-share a:hover{
	color: #379237;
}

/*================
 Whatsapp
==================*/

.yt-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 100px;
	z-index: 999999;
}
.yt-whatsapp-toggle {
	width: 60px;
	height: 60px;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
	padding: 15px;
}
.yt-whatsapp-toggle svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}
.yt-whatsapp-box {
	position: absolute;
	right: 0;
	bottom: 75px;
	width: 350px;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		transform 0.25s ease;
}
.yt-whatsapp.is-open .yt-whatsapp-box {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.yt-whatsapp-header {
	padding: 18px;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 12px;
}
.yt-whatsapp-header-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}
.yt-whatsapp-header-icon svg {
	width: 24px;
	height: 24px;
	fill: #fff;
}
.yt-whatsapp-header strong {
	display: block;
	font-size: 16px;
	line-height: 1.3;
}
.yt-whatsapp-header span {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	opacity: 0.9;
}
.yt-whatsapp-close {
	margin-left: auto;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
.yt-whatsapp-content {
	padding: 20px;
}
.yt-whatsapp-message {
	padding: 14px;
	background: #f4f4f4;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}
.yt-whatsapp-replies {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 15px;
}
.yt-whatsapp-reply {
	width: 100%;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 7px;
	padding: 10px 12px;
	text-align: left;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.2s ease;
}
.yt-whatsapp-reply:hover {
	background: #f5f5f5;
}
.yt-whatsapp-start {
	width: 100%;
	border: 0;
	background: #25d366;
	color: #fff;
	border-radius: 7px;
	padding: 12px 15px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.yt-whatsapp-start svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

@media (max-width: 480px) {

	.yt-whatsapp {
		right: 15px;
		bottom: 15px;
	}

	.yt-whatsapp-box {
		width: calc(100vw - 30px);
		right: 0;
	}

	.yt-whatsapp-toggle {
		width: 56px;
		height: 56px;
	}
}