/**
 * Footer Styles
 * 
 * @package Playground for Beaver Themer
 * @since 1.0.0
 */

/* Button Group - Mobile Only */
.button-group {
	display: none;
}

.button-group.button-group-horizontal {
	text-align: center;
	margin: 0;
	font-size: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #ffffff;
	padding: 15px;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

.button-group.button-group-horizontal.at-bottom {
	position: static;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.button-group .button-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #009b42;
	color: #ffffff;
	padding: 12px 20px;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.button-group .button-item:hover {
	background-color: #007a32;
}

/* Show button group only on mobile devices */
@media (max-width: 768px) {
	.button-group {
		display: flex;
	}
}
