.gallery-arrows-wrap {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Matches shop layout: centered under the grid, small gap, icon-only PNG arrows */
.gallery-arrows-wrap--images {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	gap: 1.25rem;
	margin: 1.75rem auto 0.5rem;
	padding: 0 1rem;
}

.gallery-arrows-btn {
	appearance: none;
	margin: 0;
	padding: 0.5rem 0.85rem;
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
	cursor: pointer;
	line-height: 1;
	font-size: 1.5rem;
	border-radius: 2px;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.gallery-arrows-btn:hover:not(:disabled) {
	opacity: 0.75;
}

.gallery-arrows-btn:focus {
	outline: none;
}

.gallery-arrows-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.gallery-arrows-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.gallery-arrows-btn__icon {
	display: block;
	font-weight: 600;
}

.gallery-arrows-wrap--images .gallery-arrows-btn {
	padding: 0.25rem;
	border: none;
	background: transparent;
	line-height: 0;
	border-radius: 0;
}

.gallery-arrows-wrap--images .gallery-arrows-btn:focus-visible {
	outline-offset: 2px;
}

.gallery-arrows-btn__img {
	display: block;
	height: auto;
	width: auto;
	max-height: 2.5rem;
	max-width: 2.5rem;
	object-fit: contain;
	vertical-align: middle;
}

@media (min-width: 768px) {
	.gallery-arrows-btn__img {
		max-height: 2.75rem;
		max-width: 2.75rem;
	}
}
