/**
 * Sticky side panel (social links + phone) - shown on every page, see
 * inc/side-panel.php. Loaded unconditionally (not gated behind the
 * product catalogue's conditional asset loading).
 */

.rolrols-side-panel {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 30px 10px;
	width: 60px;
	background: #F2F2F2;
}

.rolrols-side-panel__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #1F1F1F;
	color: #fff;
	text-decoration: none;
	transition: background .2s ease;
}

.rolrols-side-panel__icon:hover {
	background: var(--ast-global-color-0);
	color: #fff;
}

.rolrols-side-panel__icon svg {
	width: 16px;
	height: 16px;
}

.rolrols-side-panel__label {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	margin-top: 8px;
	color: var(--e-global-color-astglobalcolor2);
	font-size: 1rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.rolrols-side-panel__toggle {
	display: none;
}

@media (max-width: 1429px) {
	.rolrols-side-panel {
		top: auto;
		left: 30px;
		bottom: 90px;
		transform: none;
		flex-direction: column;
		padding: 10px;
		border-radius: 10px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
	}

	.rolrols-side-panel:not(.is-open) {
		display: none;
	}

	.rolrols-side-panel__label {
		display: none;
	}

	.rolrols-side-panel__toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		left: 30px;
		bottom: 30px;
		z-index: 10000;
		width: 42px;
		height: 42px;
		border: none;
		border-radius: 50%;
		background: var(--ast-global-color-0);
		color: #fff;
		font-size: 1.2rem;
		font-weight: 700;
		line-height: 1;
		cursor: pointer;
		box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
	}
}
