/* ================================
	ACCESSIBILITY STYLES
	================================ */

/* Skip Link for Screen Readers */
.skip-link {
	position: absolute;
	top: -40px;
	left: 6px;
	background: var(--dev-primary);
	color: var(--text-on-primary);
	padding: 8px 16px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	z-index: 10000;
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

.skip-link:focus {
	top: 6px;
	transform: translateY(0);
	outline: 2px solid var(--dev-accent-orange);
	outline-offset: 2px;
}

/* Keyboard Navigation Styles */
body.keyboard-navigation *:focus {
	outline: 2px solid var(--dev-primary);
	outline-offset: 2px;
}

body:not(.keyboard-navigation) *:focus {
	outline: none;
}

/* Focus indicators for interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--dev-primary);
	outline-offset: 2px;
}

/* ================================
	CUSTOM COLOR VARIABLES
	================================ */

:root {
	/* Primary Colors */
	--dev-primary: #4facfe;
	--primary-color: rgb(13, 19, 39);
	--dev-primary-hover: #3d8bfe;
	--dev-primary-light: rgba(79, 172, 254, 0.1);
	--dev-secondary: #667eea;
	--secondary-color: #667eea;
	--dev-secondary-hover: #5a6fd8;
	--dev-secondary-light: rgba(102, 126, 234, 0.1);

	/* Accent Colors */
	--dev-accent-red: #ff6b6b;
	--dev-accent-green: #28a745;
	--dev-accent-orange: #ff6347;

	/* Text Colors */
	--text-on-primary: #ffffff;
	--text-on-secondary: #ffffff;

	/* Background Colors */
	--bg-glass: rgba(255, 255, 255, 0.1);
	--bg-glass-hover: rgba(255, 255, 255, 0.15);
	--bg-glass-strong: rgba(255, 255, 255, 0.2);

	/* Shadow Colors */
	--shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
	--shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.1);
	--shadow-cookie: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

/* ================================
	THEME OVERRIDES FOR DARK MODE
	================================ */

[data-theme='dark'] {
	--dev-primary-light: rgba(79, 172, 254, 0.2);
	--dev-secondary-light: rgba(102, 126, 234, 0.2);
	--bg-glass: rgba(0, 0, 0, 0.1);
	--bg-glass-hover: rgba(0, 0, 0, 0.15);
	--bg-glass-strong: rgba(0, 0, 0, 0.2);
}

/* ================================
	MAIN STYLES
	================================ */

/* Анімації */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* FAQ сторінка покращення */
details[name='general-faq'] {
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-light);
}

details[name='general-faq'] summary {
	transition: background-color 0.2s ease;
}

details[name='general-faq'] summary:hover {
	background: var(--pico-card-background-color);
}

details[name='general-faq'][open] summary {
	background: var(--dev-primary);
	color: var(--text-on-primary);
}

details[name='general-faq'][open] summary i {
	color: var(--text-on-primary) !important;
}

/* Покращення для мобільних FAQ */
@media (max-width: 768px) {
	details[name='general-faq'] summary {
		font-size: 0.9rem;
		padding: 1rem 0.8rem;
	}

	details[name='general-faq'] div {
		padding: 0.8rem !important;
	}
}

/* Додаткові стилі для accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


/* ================================
	COOKIE CONSENT BANNER - PICO CSS STYLE
	================================ */





/* ================================
	МОДУЛЬНА СИСТЕМА - СТИЛІ
	================================ */

/* Нотифікації */
.notifications-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10000;
	max-width: 400px;
}

.notification {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	margin-bottom: 0.75rem;
	border-radius: var(--pico-border-radius);
	background: var(--pico-background-color);
	border: 1px solid var(--pico-border-color);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.3s ease;
}

.notification.show {
	transform: translateX(0);
	opacity: 1;
}

.notification.hide {
	transform: translateX(100%);
	opacity: 0;
}

.notification-success {
	border-left: 4px solid var(--dev-accent-green);
	background: color-mix(
		in srgb,
		var(--dev-accent-green) 5%,
		var(--pico-background-color)
	);
}

.notification-error {
	border-left: 4px solid var(--dev-accent-red);
	background: color-mix(
		in srgb,
		var(--dev-accent-red) 5%,
		var(--pico-background-color)
	);
}

.notification-warning {
	border-left: 4px solid var(--dev-accent-orange);
	background: color-mix(
		in srgb,
		var(--dev-accent-orange) 5%,
		var(--pico-background-color)
	);
}

.notification-info {
	border-left: 4px solid var(--dev-primary);
	background: color-mix(
		in srgb,
		var(--dev-primary) 5%,
		var(--pico-background-color)
	);
}

.notification-icon {
	font-size: 1.25rem;
	flex-shrink: 0;
}

.notification-message {
	flex: 1;
	font-size: 0.9rem;
	line-height: 1.4;
}

.notification-close {
	background: none;
	border: none;
	color: var(--pico-color);
	cursor: pointer;
	padding: 0.25rem;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: background 0.2s ease;
	flex-shrink: 0;
}

.notification-close:hover {
	background: var(--pico-muted-border-color);
}

/* Анімації скролу */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* Помилки форм */
.field-error {
	color: var(--dev-accent-red);
	font-size: 0.85rem;
	margin-top: 0.25rem;
	display: block;
}

input[aria-invalid='true'],
textarea[aria-invalid='true'] {
	border-color: var(--dev-accent-red);
	--pico-form-element-focus-color: var(--dev-accent-red);
}

/* Доступність - фокус клавіатури */
.keyboard-navigation button:focus,
.keyboard-navigation [role='button']:focus,
.keyboard-navigation input:focus,
.keyboard-navigation textarea:focus,
.keyboard-navigation select:focus,
.keyboard-navigation a:focus {
	outline: 2px solid var(--dev-primary);
	outline-offset: 2px;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--dev-primary) 20%, transparent);
}

/* Responsive нотифікації */
@media (max-width: 480px) {
	.notifications-container {
		left: 10px;
		right: 10px;
		max-width: none;
	}

	.notification {
		font-size: 0.85rem;
		padding: 0.75rem;
	}
}

/* Покращення контрасту для темної теми */
[data-theme='dark'] .notification {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme='dark'] .field-error {
	color: #ff8a80;
}

[data-theme='dark'] input[aria-invalid='true'],
[data-theme='dark'] textarea[aria-invalid='true'] {
	border-color: #ff8a80;
	--pico-form-element-focus-color: #ff8a80;
}

/* Плавні переходи для тем */
* {
	transition: color 0.3s ease, background-color 0.3s ease,
		border-color 0.3s ease;
}

button,
input,
textarea,
select {
	transition: color 0.3s ease, background-color 0.3s ease,
		border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-collage {
	gap: 0.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.image-box {
	background-size: cover;
	background-position: center;
	border-radius: var(--border-radius);
}

/* ================================
   UNIVERSAL HERO SECTION - FLEXBOX/GRID
   ================================ */

.hero-universal {
	background: linear-gradient(
		135deg,
		var(--dev-primary) 0%,
		var(--dev-secondary) 100%
	);
	color: var(--text-on-primary);
	padding: 4rem 0;
	margin: 2rem 0;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
}

.hero-universal::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 30% 40%,
			rgba(255, 255, 255, 0.1) 1px,
			transparent 1px
		),
		radial-gradient(
			circle at 70% 60%,
			rgba(255, 255, 255, 0.1) 1px,
			transparent 1px
		);
	background-size: 50px 50px;
	opacity: 0.3;
	pointer-events: none;
}

.hero-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1rem;
	position: relative;
	z-index: 2;
}

.hero-container {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	align-items: center;
	min-height: 500px;
}

.hero-text-content {
	flex: 1;
	min-width: 300px;
}

.hero-visual-content {
	flex: 1;
	min-width: 300px;
}

/* Статистика */
.hero-stats-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 2rem 0;
}

.hero-stat-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 1rem;
	text-align: center;
	flex: 1;
	min-width: 120px;
	transition: transform 0.3s ease;
}

.hero-stat-item:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.15);
}

.hero-stat-item strong {
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-on-primary);
	margin-bottom: 0.25rem;
}

.hero-stat-item small {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.85rem;
}

/* Кнопки */
.hero-buttons-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.hero-btn-primary,
.hero-btn-secondary {
	flex: 1;
	min-width: 200px;
	text-align: center;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.hero-btn-primary {
	background: var(--dev-accent-red);
	color: var(--text-on-primary);
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero-btn-primary:hover {
	background: var(--dev-accent-orange);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero-btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-on-primary);
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

/* Візуальний контент */
.hero-image-wrapper {
	position: relative;
	margin-bottom: 2rem;
}

.hero-main-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-info-card {
	position: absolute;
	bottom: -20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	color: #1a1a1a;
	max-width: 250px;
}

.hero-card-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.hero-card-icon {
	font-size: 1.2rem;
}

.hero-card-header h4 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}

.hero-info-card p {
	margin: 0.5rem 0;
	font-size: 0.85rem;
	color: #666;
}

.hero-tech-badges {
	display: flex;
	gap: 0.5rem;
}

.tech-badge {
	background: var(--dev-primary);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 500;
}

/* Фічери */
.hero-features-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.75rem 0.75rem;
	border-radius: 8px;
	backdrop-filter: blur(10px);
	flex: 1;
	min-width: 140px;
}

.feature-icon {
	font-size: 1.2rem;
}

.hero-feature-item small {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

/* Адаптивність */
@media (max-width: 768px) {
	.hero-universal {
		padding: 3rem 0;
		margin: 1rem 0;
	}

	.hero-container {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
		min-height: auto;
	}

	.hero-stats-flex {
		justify-content: center;
	}

	.hero-stat-item {
		min-width: 100px;
	}

	.hero-buttons-flex {
		flex-direction: column;
		align-items: center;
	}

	.hero-btn-primary,
	.hero-btn-secondary {
		min-width: 250px;
	}

	.hero-main-image {
		height: 250px;
	}

	.hero-info-card {
		position: static;
		margin: 1rem auto 0;
		max-width: 300px;
	}

	.hero-features-flex {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero-wrapper {
		padding: 0 0.5rem;
	}

	.hero-universal {
		padding: 2rem 0;
		border-radius: 8px;
	}

	.hero-stats-flex,
	.hero-features-flex {
		flex-direction: column;
		align-items: center;
	}

	.hero-stat-item,
	.hero-feature-item {
		min-width: 200px;
	}

	.hero-main-image {
		height: 200px;
	}
}

/* Темна тема */
[data-theme='dark'] .hero-info-card {
	background: rgba(30, 30, 30, 0.95);
	color: #e0e0e0;
}

[data-theme='dark'] .hero-info-card p {
	color: #aaa;
}

[data-theme='dark'] .hero-universal {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* ================================
   PORTFOLIO & GALLERY IMAGES
   ================================ */

/* Rounded images */
.rounded-image {
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-image:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Portfolio images - однаковий розмір */
.portfolio-image,
.rounded-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.portfolio-image:hover,
.rounded-image:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Portfolio grid container */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

/* Portfolio item */
.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.portfolio-item:hover {
	transform: translateY(-8px);
}

.portfolio-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.portfolio-item:hover img {
	transform: scale(1.05);
}

/* Portfolio overlay */
.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to bottom,
		transparent 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-info {
	color: white;
}

.portfolio-info h4 {
	margin: 0 0 0.5rem 0;
	font-size: 1.2rem;
	font-weight: 600;
}

.portfolio-info p {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

/* Responsive portfolio */
@media (max-width: 768px) {
	.portfolio-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}
	
	.portfolio-image,
	.rounded-image,
	.portfolio-item img {
		height: 200px;
	}
}

@media (max-width: 480px) {
	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.portfolio-image,
	.rounded-image,
	.portfolio-item img {
		height: 180px;
	}
}

/* ================================
   EXISTING STYLES CONTINUATION
   ================================ */
.gallery-image {
    width: 100%;
    height: 200px; /* Фіксована висота */
    object-fit: cover; /* Обрізає зображення, зберігаючи пропорції */
    object-position: center; /* Центрує зображення */
    border-radius: 8px; /* Округлені кути */
    transition: transform 0.3s ease; /* Плавна анімація при наведенні */
}

.gallery-image:hover {
    transform: scale(1.05); /* Легке збільшення при наведенні */
}

/* Альтернативний варіант з більшою висотою */
.gallery-image-large {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Для мобільних пристроїв */
@media (max-width: 768px) {
    .gallery-image {
        height: 150px;
    }
}
.team-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%; /* Круглі фото */
    margin: 0 auto;
    display: block;
    border: 3px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Альтернативний варіант з квадратними фото */
.team-image-square {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

/* Для мобільних пристроїв */
@media (max-width: 768px) {
    .team-image {
        width: 120px;
        height: 120px;
    }
}
/* ================================
	COOKIE CONSENT BANNER - PICO CSS STYLE
	================================ */

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent-container {
	background: var(--pico-card-background-color);
	border-top: 1px solid var(--pico-border-color);
	padding: 1.5rem;
	box-shadow: var(--shadow-cookie);
	backdrop-filter: blur(10px);
}

.cookie-consent-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--pico-color);
	margin-bottom: 1rem;
}

.cookie-consent-description {
	color: var(--pico-muted-color);
	margin-bottom: 2.5rem;
	line-height: 1.5;
}

.cookie-consent-description a {
	color: var(--dev-primary);
	text-decoration: underline;
}

.cookie-consent-buttons {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.cookie-consent-button {
	background: var(--dev-primary);
	color: var(--text-on-primary);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: var(--pico-border-radius);
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.cookie-consent-button:hover {
	background: var(--dev-primary-hover);
}

.cookie-consent-button:nth-child(2) {
	background: var(--dev-secondary);
	color: var(--text-on-secondary);
}

.cookie-consent-button:nth-child(2):hover {
	background: var(--dev-secondary-hover);
}

.cookie-consent-button:nth-child(3) {
	background: transparent;
	color: var(--pico-color);
	border: 1px solid var(--pico-border-color);
}

.cookie-consent-button:nth-child(3):hover {
	background: var(--pico-muted-border-color);
}

/* Customize cookies view */
.cookie-consent-back {
	color: var(--dev-primary);
	cursor: pointer;
	margin-bottom: 1rem;
	display: inline-flex;
	align-items: center;
	font-size: 0.875rem;
	transition: color 0.2s ease;
}

.cookie-consent-back:hover {
	color: var(--dev-primary-hover);
}

.cookie-consent-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid var(--pico-muted-border-color);
}

.cookie-consent-option:last-of-type {
	border-bottom: none;
}

.cookie-consent-option-text {
	flex: 1;
	margin-right: 1rem;
}

.cookie-consent-subtitle {
	font-weight: 600;
	color: var(--pico-color);
	margin-bottom: 0.25rem;
}

.cookie-consent-option .cookie-consent-description {
	color: var(--pico-muted-color);
	font-size: 0.875rem;
	margin-bottom: 0;
}

/* Custom Toggle Switch - Override Pico CSS */
.cookie-consent .switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 32px;
	vertical-align: middle;
}

.cookie-consent .switch input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
	pointer-events: none;
}

.cookie-consent .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 32px;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-consent .slider:before {
	position: absolute;
	content: '';
	height: 26px;
	width: 26px;
	left: 3px;
	top: 2px;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 50%;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-consent input:checked + .slider {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15),
	0 1px 3px rgba(59, 130, 246, 0.3);
}

.cookie-consent input:checked + .slider:before {
	transform: translateX(28px);
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cookie-consent input:disabled + .slider {
	opacity: 0.5;
	cursor: not-allowed;
	background: #e2e8f0;
}

.cookie-consent input:disabled + .slider:before {
	background: #f8fafc;
}

.cookie-consent .slider:hover:not(:has(input:disabled)) {
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1), 0 2px 12px rgba(0, 0, 0, 0.15);
	transform: scale(1.02);
}

.cookie-consent input:checked + .slider:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15),
	0 2px 12px rgba(59, 130, 246, 0.4);
}

.cookie-consent-save {
	margin-top: 1.5rem;
	text-align: center;
}

.cookie-consent-save button {
	background: var(--dev-primary);
	color: var(--text-on-primary);
	border: none;
	padding: 0.75rem 2rem;
	border-radius: var(--pico-border-radius);
	cursor: pointer;
	font-weight: 500;
	transition: background-color 0.2s ease;
}

.cookie-consent-save button:hover {
	background: var(--dev-primary-hover);
}

/* Responsive design */
@media (max-width: 768px) {
	.cookie-consent-container {
		padding: 1rem;
	}

	.cookie-consent-buttons {
		flex-direction: column;
	}

	.cookie-consent-button {
		width: 100%;
		text-align: center;
	}

	.cookie-consent-option {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.cookie-consent-option-text {
		margin-right: 0;
	}
}
