/**
 * FISHWINK Cookie Consent - Premium Banner Styles
 *
 * @package FishwinkCookieConsent
 */

/* ========================================
   CSS Custom Properties
   ======================================== */

.fishwink-consent {
	--fishwink-bg: #ffffff;
	--fishwink-text: #1a1a1a;
	--fishwink-text-muted: #6b7280;
	--fishwink-primary: #2563eb;
	--fishwink-primary-hover: #1d4ed8;
	--fishwink-primary-text: #ffffff;
	--fishwink-secondary: transparent;
	--fishwink-secondary-text: #2563eb;
	--fishwink-secondary-hover: rgba(37, 99, 235, 0.08);
	--fishwink-border: #e5e7eb;
	--fishwink-border-radius: 12px;
	--fishwink-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12), 0 -2px 8px rgba(0, 0, 0, 0.08);
	--fishwink-shadow-modal: 0 32px 64px -16px rgba(0, 0, 0, 0.24), 0 16px 32px -8px rgba(0, 0, 0, 0.12);
	--fishwink-backdrop: rgba(0, 0, 0, 0.6);
	--fishwink-z-index: 999999;
	--fishwink-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	--fishwink-success: #10b981;
	--fishwink-success-bg: rgba(16, 185, 129, 0.1);
}

/* Reset */
.fishwink-consent *,
.fishwink-consent *::before,
.fishwink-consent *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ========================================
   Banner Container - Premium Design
   ======================================== */

.fishwink-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	z-index: var(--fishwink-z-index);
	font-family: var(--fishwink-font-family);
	font-size: 14px;
	line-height: 1.6;
	color: var(--fishwink-text);
	background: var(--fishwink-bg);
	box-shadow: var(--fishwink-shadow);
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
				opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
				visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background: rgba(255, 255, 255, 0.95);
}

/* Support dark mode background */
.fishwink-consent-banner[data-color-mode="dark"] {
	background: rgba(31, 41, 55, 0.95);
}

.fishwink-consent-banner[data-color-mode="auto"] {
	background: rgba(255, 255, 255, 0.95);
}

@media (prefers-color-scheme: dark) {
	.fishwink-consent-banner[data-color-mode="auto"] {
		background: rgba(31, 41, 55, 0.95);
	}
}

.fishwink-consent-banner[data-visible="true"] {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

/* Banner Positions */
.fishwink-consent-banner[data-position="bottom"] {
	bottom: 0;
}

.fishwink-consent-banner[data-position="top"] {
	top: 0;
	bottom: auto;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
	transform: translateY(-100%);
}

.fishwink-consent-banner[data-position="top"][data-visible="true"] {
	transform: translateY(0);
}

/* Banner Layouts */
.fishwink-consent-banner[data-layout="bar"] {
	border-radius: 0;
}

.fishwink-consent-banner[data-layout="box"] {
	left: 24px;
	right: auto;
	bottom: 24px;
	max-width: 440px;
	border-radius: var(--fishwink-border-radius);
	border: 1px solid var(--fishwink-border);
}

.fishwink-consent-banner[data-layout="box"][data-position="bottom-right"] {
	left: auto;
	right: 24px;
}

.fishwink-consent-banner[data-layout="box"][data-position="bottom-left"] {
	left: 24px;
	right: auto;
}

.fishwink-consent-banner[data-layout="box"][data-position="center"] {
	left: 50%;
	right: auto;
	bottom: 24px;
	transform: translate(-50%, calc(100% + 48px));
}

.fishwink-consent-banner[data-layout="box"][data-position="center"][data-visible="true"] {
	transform: translate(-50%, 0);
}

/* ========================================
   Banner Content - Premium Layout
   ======================================== */

.fishwink-consent-banner__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 32px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
}

.fishwink-consent-banner[data-layout="box"] .fishwink-consent-banner__inner {
	padding: 24px;
	flex-direction: column;
	align-items: stretch;
}

.fishwink-consent-banner__content {
	flex: 1 1 auto;
	min-width: 280px;
}

.fishwink-consent-banner[data-layout="box"] .fishwink-consent-banner__content {
	text-align: center;
}

/* Cookie Icon */
.fishwink-consent-banner__icon {
	display: none;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	padding: 12px;
	background: linear-gradient(135deg, var(--fishwink-primary), var(--fishwink-primary-hover));
	border-radius: 12px;
	color: var(--fishwink-primary-text);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.fishwink-consent-banner[data-layout="box"] .fishwink-consent-banner__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fishwink-consent-banner__icon svg {
	width: 24px;
	height: 24px;
}

.fishwink-consent-banner__title {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--fishwink-text);
	letter-spacing: -0.02em;
}

.fishwink-consent-banner__message {
	font-size: 14px;
	color: var(--fishwink-text-muted);
	margin: 0;
	line-height: 1.6;
}

.fishwink-consent-banner__message a {
	color: var(--fishwink-primary);
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.2s ease;
}

.fishwink-consent-banner__message a:hover {
	opacity: 0.8;
}

/* ========================================
   Premium Buttons
   ======================================== */

.fishwink-consent-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.fishwink-consent-banner[data-layout="box"] .fishwink-consent-banner__actions {
	flex-direction: column;
	width: 100%;
}

.fishwink-consent-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	border: none;
	border-radius: calc(var(--fishwink-border-radius) - 2px);
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.fishwink-consent-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.fishwink-consent-btn:hover::before {
	opacity: 1;
}

.fishwink-consent-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.fishwink-consent-btn:active {
	transform: scale(0.98);
}

/* Primary Button - Gradient */
.fishwink-consent-btn--primary {
	background: linear-gradient(135deg, var(--fishwink-primary) 0%, var(--fishwink-primary-hover) 100%);
	color: var(--fishwink-primary-text);
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.fishwink-consent-btn--primary:hover {
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
}

.fishwink-consent-btn--primary:active {
	transform: translateY(0) scale(0.98);
}

/* Secondary Button - Outlined */
.fishwink-consent-btn--secondary {
	background: var(--fishwink-bg);
	color: var(--fishwink-text);
	border: 1.5px solid var(--fishwink-border);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fishwink-consent-btn--secondary:hover {
	background: var(--fishwink-secondary-hover);
	border-color: var(--fishwink-primary);
	color: var(--fishwink-primary);
}

.fishwink-consent-btn--secondary:focus {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Link Button */
.fishwink-consent-btn--link {
	background: transparent;
	color: var(--fishwink-text-muted);
	padding: 12px 16px;
	font-weight: 500;
}

.fishwink-consent-btn--link:hover {
	color: var(--fishwink-primary);
	background: var(--fishwink-secondary-hover);
}

.fishwink-consent-btn--link:focus {
	box-shadow: none;
	background: var(--fishwink-secondary-hover);
}

/* Full width buttons in box layout */
.fishwink-consent-banner[data-layout="box"] .fishwink-consent-btn {
	width: 100%;
}

.fishwink-consent-banner[data-layout="box"] .fishwink-consent-btn--link {
	width: auto;
}

/* ========================================
   Preference Modal - Premium Design
   ======================================== */

.fishwink-consent-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: calc(var(--fishwink-z-index) + 1);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fishwink-consent-modal[data-visible="true"] {
	opacity: 1;
	visibility: visible;
}

.fishwink-consent-modal__backdrop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--fishwink-backdrop);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.fishwink-consent-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 520px;
	max-height: calc(100vh - 48px);
	background: var(--fishwink-bg);
	border-radius: calc(var(--fishwink-border-radius) + 4px);
	box-shadow: var(--fishwink-shadow-modal);
	display: flex;
	flex-direction: column;
	transform: scale(0.92) translateY(24px);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
	border: 1px solid var(--fishwink-border);
}

.fishwink-consent-modal[data-visible="true"] .fishwink-consent-modal__dialog {
	transform: scale(1) translateY(0);
}

/* Modal Header */
.fishwink-consent-modal__header {
	padding: 24px 28px 20px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.fishwink-consent-modal__header-content {
	flex: 1;
}

.fishwink-consent-modal__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 12px;
	background: linear-gradient(135deg, var(--fishwink-primary), var(--fishwink-primary-hover));
	border-radius: 10px;
	color: var(--fishwink-primary-text);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.fishwink-consent-modal__icon svg {
	width: 22px;
	height: 22px;
}

.fishwink-consent-modal__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--fishwink-text);
	margin: 0;
	letter-spacing: -0.02em;
}

.fishwink-consent-modal__subtitle {
	font-size: 14px;
	color: var(--fishwink-text-muted);
	margin-top: 4px;
}

.fishwink-consent-modal__close {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	color: var(--fishwink-text-muted);
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.fishwink-consent-modal__close:hover {
	background: var(--fishwink-secondary-hover);
	color: var(--fishwink-text);
}

.fishwink-consent-modal__close:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.fishwink-consent-modal__close svg {
	width: 20px;
	height: 20px;
}

/* Modal Body */
.fishwink-consent-modal__body {
	flex: 1;
	overflow-y: auto;
	padding: 0 28px 24px;
	scrollbar-width: thin;
	scrollbar-color: var(--fishwink-border) transparent;
}

.fishwink-consent-modal__body::-webkit-scrollbar {
	width: 6px;
}

.fishwink-consent-modal__body::-webkit-scrollbar-track {
	background: transparent;
}

.fishwink-consent-modal__body::-webkit-scrollbar-thumb {
	background: var(--fishwink-border);
	border-radius: 3px;
}

.fishwink-consent-modal__desc {
	display: none; /* Moved to header subtitle */
}

/* ========================================
   Category Cards - Premium Design
   ======================================== */

.fishwink-consent-categories {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fishwink-consent-category {
	background: var(--fishwink-bg);
	border: 1px solid var(--fishwink-border);
	border-radius: calc(var(--fishwink-border-radius) - 2px);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fishwink-consent-category:hover {
	border-color: rgba(37, 99, 235, 0.3);
}

.fishwink-consent-category[data-enabled="true"] {
	border-color: var(--fishwink-primary);
	background: rgba(37, 99, 235, 0.02);
}

.fishwink-consent-category__header {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	cursor: default;
}

.fishwink-consent-category__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--fishwink-secondary-hover);
	border-radius: 10px;
	color: var(--fishwink-primary);
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.fishwink-consent-category[data-enabled="true"] .fishwink-consent-category__icon {
	background: linear-gradient(135deg, var(--fishwink-primary), var(--fishwink-primary-hover));
	color: var(--fishwink-primary-text);
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.fishwink-consent-category__icon svg {
	width: 20px;
	height: 20px;
}

.fishwink-consent-category__info {
	flex: 1;
	min-width: 0;
}

.fishwink-consent-category__name {
	font-size: 15px;
	font-weight: 600;
	color: var(--fishwink-text);
	margin-bottom: 2px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.fishwink-consent-category__badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--fishwink-success-bg);
	color: var(--fishwink-success);
	border-radius: 100px;
}

.fishwink-consent-category__badge svg {
	width: 10px;
	height: 10px;
}

.fishwink-consent-category__desc {
	font-size: 13px;
	color: var(--fishwink-text-muted);
	margin: 0;
	line-height: 1.5;
}

/* Premium Toggle Switch */
.fishwink-consent-toggle {
	position: relative;
	flex-shrink: 0;
}

.fishwink-consent-toggle__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.fishwink-consent-toggle__slider {
	display: block;
	width: 52px;
	height: 28px;
	background: var(--fishwink-border);
	border-radius: 14px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.fishwink-consent-toggle__slider::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 24px;
	height: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fishwink-consent-toggle__input:checked + .fishwink-consent-toggle__slider {
	background: linear-gradient(135deg, var(--fishwink-primary), var(--fishwink-primary-hover));
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(37, 99, 235, 0.3);
}

.fishwink-consent-toggle__input:checked + .fishwink-consent-toggle__slider::after {
	transform: translateX(24px);
}

.fishwink-consent-toggle__input:focus + .fishwink-consent-toggle__slider {
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.fishwink-consent-toggle__input:disabled + .fishwink-consent-toggle__slider {
	opacity: 0.7;
	cursor: not-allowed;
}

.fishwink-consent-toggle__input:disabled:checked + .fishwink-consent-toggle__slider {
	background: linear-gradient(135deg, var(--fishwink-primary), var(--fishwink-primary-hover));
}

/* ========================================
   Modal Footer - Premium
   ======================================== */

.fishwink-consent-modal__footer {
	padding: 20px 28px 24px;
	border-top: 1px solid var(--fishwink-border);
	display: flex;
	gap: 12px;
	background: linear-gradient(180deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.02) 100%);
}

.fishwink-consent-modal__footer .fishwink-consent-btn {
	flex: 1;
}

.fishwink-consent-modal__footer .fishwink-consent-btn--primary {
	flex: 1.2;
}

/* ========================================
   Floating Button - Premium Design
   ======================================== */

.fishwink-consent-floating {
	position: fixed;
	z-index: calc(var(--fishwink-z-index) - 1);
	opacity: 0;
	visibility: hidden;
	transform: scale(0) rotate(-180deg);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fishwink-consent-floating[data-visible="true"] {
	opacity: 1;
	visibility: visible;
	transform: scale(1) rotate(0deg);
}

.fishwink-consent-floating[data-position="bottom-left"] {
	bottom: 24px;
	left: 24px;
}

.fishwink-consent-floating[data-position="bottom-right"] {
	bottom: 24px;
	right: 24px;
}

.fishwink-consent-floating__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--fishwink-primary) 0%, var(--fishwink-primary-hover) 100%);
	color: var(--fishwink-primary-text);
	border: none;
	border-radius: 16px;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35), 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
}

.fishwink-consent-floating__btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
	border-radius: 16px;
}

.fishwink-consent-floating__btn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fishwink-consent-floating__btn:active {
	transform: translateY(-2px) scale(1.02);
}

.fishwink-consent-floating__btn:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3), 0 8px 24px rgba(37, 99, 235, 0.35);
}

.fishwink-consent-floating__btn svg {
	width: 26px;
	height: 26px;
	position: relative;
	z-index: 1;
}

.fishwink-consent-floating__tooltip {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	padding: 10px 16px;
	background: var(--fishwink-text);
	color: var(--fishwink-bg);
	font-family: var(--fishwink-font-family);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.fishwink-consent-floating__tooltip::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 8px solid transparent;
	border-top-color: var(--fishwink-text);
}

.fishwink-consent-floating__btn:hover + .fishwink-consent-floating__tooltip,
.fishwink-consent-floating__btn:focus + .fishwink-consent-floating__tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* ========================================
   Screen Reader Only
   ======================================== */

.fishwink-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ========================================
   Responsive - Mobile First Premium
   ======================================== */

@media (max-width: 768px) {
	.fishwink-consent-banner__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 24px;
	}

	.fishwink-consent-banner__icon {
		display: inline-flex;
		margin: 0 auto 16px;
	}

	.fishwink-consent-banner__actions {
		flex-direction: column;
		width: 100%;
	}

	.fishwink-consent-banner__actions .fishwink-consent-btn {
		width: 100%;
	}

	.fishwink-consent-banner__actions .fishwink-consent-btn--link {
		width: auto;
	}

	.fishwink-consent-banner[data-layout="box"] {
		left: 16px;
		right: 16px;
		bottom: 16px;
		max-width: none;
	}

	.fishwink-consent-modal {
		padding: 16px;
	}

	.fishwink-consent-modal__dialog {
		max-height: calc(100vh - 32px);
		border-radius: var(--fishwink-border-radius);
	}

	.fishwink-consent-modal__header {
		padding: 20px 20px 16px;
	}

	.fishwink-consent-modal__body {
		padding: 0 20px 20px;
	}

	.fishwink-consent-modal__footer {
		padding: 16px 20px 20px;
		flex-direction: column;
	}

	.fishwink-consent-modal__footer .fishwink-consent-btn {
		width: 100%;
		flex: none;
	}

	.fishwink-consent-category__header {
		padding: 14px 16px;
	}

	.fishwink-consent-floating[data-position="bottom-left"],
	.fishwink-consent-floating[data-position="bottom-right"] {
		bottom: 16px;
	}

	.fishwink-consent-floating[data-position="bottom-left"] {
		left: 16px;
	}

	.fishwink-consent-floating[data-position="bottom-right"] {
		right: 16px;
	}
}

@media (max-width: 480px) {
	.fishwink-consent-banner__inner {
		padding: 20px 16px;
	}

	.fishwink-consent-category__icon {
		width: 36px;
		height: 36px;
		border-radius: 8px;
	}

	.fishwink-consent-category__icon svg {
		width: 18px;
		height: 18px;
	}

	.fishwink-consent-toggle__slider {
		width: 48px;
		height: 26px;
	}

	.fishwink-consent-toggle__slider::after {
		width: 22px;
		height: 22px;
	}

	.fishwink-consent-toggle__input:checked + .fishwink-consent-toggle__slider::after {
		transform: translateX(22px);
	}
}

/* ========================================
   Reduced Motion
   ======================================== */

@media (prefers-reduced-motion: reduce) {
	.fishwink-consent-banner,
	.fishwink-consent-modal,
	.fishwink-consent-modal__dialog,
	.fishwink-consent-floating,
	.fishwink-consent-floating__btn,
	.fishwink-consent-btn,
	.fishwink-consent-toggle__slider,
	.fishwink-consent-toggle__slider::after,
	.fishwink-consent-category,
	.fishwink-consent-category__icon,
	.fishwink-consent-floating__tooltip {
		transition: none;
	}
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
	.fishwink-consent-banner,
	.fishwink-consent-modal,
	.fishwink-consent-floating {
		display: none !important;
	}
}
