.furshop-withdrawal-footer {
	display: flex;
	justify-content: center;
	padding: 1rem 0 0.25rem;
}

.furshop-withdrawal-trigger {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: inherit;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.furshop-withdrawal-trigger:hover,
.furshop-withdrawal-trigger:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.6);
}

.furshop-withdrawal-modal[hidden] {
	display: none;
}

.furshop-withdrawal-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.furshop-withdrawal-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
}

.furshop-withdrawal-modal__dialog {
	position: relative;
	width: min(100%, 28rem);
	background: #fff;
	color: #111827;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.furshop-withdrawal-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	border: 0;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
}

.furshop-withdrawal-modal__dialog h2 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.furshop-withdrawal-modal__description {
	margin: 0 0 1rem;
	color: #4b5563;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.furshop-withdrawal-form {
	display: grid;
	gap: 0.875rem;
}

.furshop-withdrawal-form label {
	display: grid;
	gap: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.furshop-withdrawal-form input {
	width: 100%;
	border: 1px solid #d1d5db;
	border-radius: 0.625rem;
	padding: 0.75rem 0.875rem;
	font: inherit;
}

.furshop-withdrawal-form input:focus {
	outline: 2px solid #111827;
	outline-offset: 1px;
	border-color: #111827;
}

.furshop-withdrawal-form__submit {
	margin-top: 0.25rem;
	border: 0;
	border-radius: 999px;
	background: #111827;
	color: #fff;
	padding: 0.8rem 1.25rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.furshop-withdrawal-form__submit:hover,
.furshop-withdrawal-form__submit:focus-visible {
	background: #000;
}

.furshop-withdrawal-form__submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.furshop-withdrawal-form__message {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
}

.furshop-withdrawal-form__message.is-error {
	color: #b91c1c;
}

.furshop-withdrawal-form__message.is-success {
	color: #047857;
}

body.furshop-withdrawal-open {
	overflow: hidden;
}
