/* Mobile Accessories Roma — SBMart Addon styles */

/* ---- Floating WhatsApp button (bottom-right, every page) ---- */
.rts-floating-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	z-index: 9999;
	text-decoration: none;
	transition: transform 0.15s ease;
}
.rts-floating-whatsapp:hover {
	transform: scale(1.08);
	color: #fff;
}
.rts-floating-whatsapp .dashicons {
	font-size: 30px;
	width: 30px;
	height: 30px;
}

/* ---- "Order via WhatsApp" button, single product page ---- */
.rts-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #25D366;
	color: #fff !important;
	padding: 10px 18px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	margin-top: 12px;
}
.rts-whatsapp-btn:hover {
	background: #1ebd59;
	color: #fff !important;
}
.rts-whatsapp-btn .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

/* Smaller variant used on shop / category grid cards */
.rts-whatsapp-btn--loop {
	padding: 6px 12px;
	font-size: 12px;
	margin-top: 8px;
}

/* ---- Footer info bar: WhatsApp Orders / Home Delivery / Payment / Contact ---- */
.rts-footer-info-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	gap: 24px;
	padding: 32px 16px;
	background: #f5f5f5;
	border-top: 4px solid transparent;
	border-image: linear-gradient(to right, #1f8a3b 0 33%, #111111 33% 66%, #c8102e 66% 100%) 1;
	text-align: center;
}
.rts-footer-info-bar .rts-footer-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: #222;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	min-width: 140px;
}
.rts-footer-info-bar .rts-footer-item .dashicons {
	font-size: 26px;
	width: 26px;
	height: 26px;
	color: #1f8a3b;
}
.rts-footer-info-bar a.rts-footer-item:hover {
	color: #1f8a3b;
}

@media (max-width: 640px) {
	.rts-footer-info-bar {
		gap: 20px;
		padding: 24px 12px;
	}
	.rts-floating-whatsapp {
		right: 14px;
		bottom: 14px;
		width: 48px;
		height: 48px;
	}
}
