.scroll-to-top-btn {
	position: fixed;
	bottom: 100px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #dc3545, #c82333);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
	transition: all 0.3s ease;
	font-size: 20px;
}

.scroll-to-top-btn:hover {
	background: linear-gradient(135deg, #c82333, #bd2130);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
}

.scroll-to-top-btn:active {
	transform: translateY(0);
}

.scroll-to-top-btn.show {
	display: flex;
}

/* Social buttons styling */
.contact-box-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	margin-bottom: 10px;
	padding: 0;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-box-wrapper:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 24px;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}

.contact-icon-box svg {
	width: 30px;
	height: 30px;
}

.contact-icon-box img {
	width: 30px;
	height: 30px;
}

/* Blinking animation */
@keyframes blink {
	0%, 50% { opacity: 1; }
	51%, 100% { opacity: 0.7; }
}

.contact-box-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	z-index: 1;
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
	.scroll-to-top-btn {
		bottom: 80px;
		right: 15px;
		width: 45px;
		height: 45px;
		font-size: 18px;
	}

	.contact-box-wrapper {
		width: 50px;
		height: 50px;
	}

	.contact-icon-box svg,
	.contact-icon-box img {
		width: 25px;
		height: 25px;
	}

	.nut-cart-float {
		display: none !important;
	}
}
