/* Floating Sidebar Buttons */
#ard-floating-sidebar {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ard-float-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 72px;
	padding: 14px 8px 10px;
	background: #2b2b2b;
	color: #c5a46d;
	text-decoration: none !important;
	transition: background 0.3s ease, transform 0.3s ease;
	cursor: pointer;
	border: none;
	outline: none;
}

.ard-float-btn:first-child {
	border-radius: 8px 0 0 0;
}

.ard-float-btn:last-child {
	border-radius: 0 0 0 8px;
}

.ard-float-btn:hover {
	background: #3a3a3a;
	color: #d4b87a;
}

.ard-float-btn svg {
	width: 26px;
	height: 26px;
	margin-bottom: 6px;
	color: #c5a46d;
	fill: none;
	stroke: #c5a46d;
}

.ard-float-btn:nth-child(2) svg {
	fill: #c5a46d;
	stroke: none;
}

.ard-float-btn:hover svg {
	color: #d4b87a;
	stroke: #d4b87a;
}

.ard-float-btn:nth-child(2):hover svg {
	fill: #d4b87a;
}

.ard-float-btn span {
	font-family: 'Inter', sans-serif;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 1.2;
}

/* Mobile: horizontal bottom bar */
@media (max-width: 480px) {
	#ard-floating-sidebar {
		display: flex !important;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		top: auto;
		transform: none;
		flex-direction: row;
		gap: 0;
		z-index: 99999;
		background: #1e1e1e;
		border-top: 1px solid rgba(197, 164, 109, 0.2);
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
	}

	.ard-float-btn {
		flex: 1 1 0%;
		width: auto;
		padding: 8px 4px 6px;
		border-radius: 0 !important;
		background: transparent;
		min-width: 0;
	}

	.ard-float-btn:hover {
		background: rgba(197, 164, 109, 0.1);
	}

	.ard-float-btn svg {
		width: 20px;
		height: 20px;
		margin-bottom: 3px;
	}

	.ard-float-btn span {
		font-size: 7px;
		letter-spacing: 0.3px;
	}
}
