/* Critical CSS for Font Awesome icons */
.fa {
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
}
.fa,
.fa-brands,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}
.fa-brands:before,
.fa-regular:before,
.fa-solid:before,
.fa:before,
.fab:before,
.far:before,
.fas:before {
	content: var(--fa);
}

/* Skip Link Styles */
.skip-link {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--primary-color);
	color: var(--text-color);
	padding: 8px 12px;
	text-decoration: none;
	border-radius: 4px;
	z-index: 10000;
	font-weight: bold;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.skip-link:hover {
	color: var(--text-color);
}

.skip-link:focus {
	opacity: 1;
	outline: 3px solid var(--text-color);
	outline-offset: 2px;
}
.fa-shield-alt {
	--fa: "\f3ed";
}
.fa-user-secret {
	--fa: "\f21b";
}
.fa-lock {
	--fa: "\f023";
}
.fa-plus {
	--fa: "\2b";
}

:root {
	--primary-color: #bb86fc;
	--secondary-color: #414dfa;
	--purple-color: #7a1fff;
	--color-success: #4caf50;
	--color-danger: #f44336;
	--color-warning: #ff9800;
	--text-color: rgba(255, 255, 255, 0.9);
	--text-light: #ffffff;
	--transp-background: rgba(255, 255, 255, 0.15);
	--transp-backdrop: blur(15px);
}

/* General Styles */
body {
	font-family: "Segoe UI", Roboto, sans-serif;
	background: linear-gradient(
			135deg,
			var(--primary-color) 0%,
			var(--secondary-color) 100%
		)
		fixed;
	color: var(--text-light);
	margin: 0;
}

.header-placeholder {
	min-height: 30px;
	height: auto;
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
}

.container {
	max-width: 1200px;
	margin: 10px auto;
	padding: 2rem 1rem;
	background-color: var(--transp-background);
	backdrop-filter: var(--transp-backdrop);
	border-radius: 12px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
	.container {
		margin: 20px auto;
	}
}

h1 {
	color: var(--purple-color);
}

h2 {
	color: var(--purple-color);
}

.h2-background {
	color: var(--purple-color);
	text-align: center;
	margin-bottom: 1.5rem;
	padding: 5px 10px;
	border-radius: 12px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
}

/* Mobile h2 styles */
@media (max-width: 768px) {
	.h2-background {
		font-size: 1.2rem;
		margin-bottom: 1rem;
		padding: 4px 8px;
		border-radius: 12px;
	}
}

h3 {
	color: var(--secondary-color);
}

.h3-background {
	color: var(--secondary-color);
	text-align: center;
	margin-bottom: 1.5rem;
	padding: 5px 10px;
	border-radius: 12px;
	display: inline-block;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
}

/* Link Styles */
a {
	color: var(--text-color);
	transition: color 0.2s;
	text-decoration: none;
	/*display: inline-block;*/
	border-radius: 12px;
}

a:visited {
	color: var(--text-color);
}

a:hover {
	color: var(--primary-color);
}

/* Item Cards for edit and view page */
.item-title-link {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.2s;
}

.item-title-link:visited {
	color: var(--text-light);
}

.item-title-link:hover {
	color: var(--secondary-color);
}

/* Button Styles */
button {
	padding: 10px 15px;
	color: var(--text-light);
	background-color: var(--transp-background);
	backdrop-filter: var(--transp-backdrop);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-size: 16px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile button styles */
@media (max-width: 768px) {
	button {
		padding: 8px 12px;
		font-size: 14px;
		border-radius: 12px;
	}
}

button:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow:
		inset 0 1px 3px rgba(0, 0, 0, 0.3),
		0 4px 12px rgba(187, 134, 252, 0.2);
}

button:focus {
	outline: none;
	box-shadow:
		inset 0 1px 3px rgba(0, 0, 0, 0.3),
		0 0 0 3px rgba(187, 134, 252, 0.2);
}

button i {
	font-size: 14px;
}

/* Input Styles */
input,
select {
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	color: var(--text-light);
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	appearance: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 15px;
}

/* Mobile input styles */
@media (max-width: 768px) {
	input,
	select {
		padding: 10px 12px;
		font-size: 0.9rem;
		margin-bottom: 10px;
		border-radius: 12px;
	}
}

input:hover,
select:hover {
	border-color: rgba(187, 134, 252, 0.5);
	box-shadow: 0 4px 8px rgba(187, 134, 252, 0.2);
}

input:focus,
select:focus {
	outline: none;
	border-color: #bb86fc;
	box-shadow: 0 0 0 3px rgba(187, 134, 252, 0.3);
}

input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

input:required {
	border-left: 3px solid var(--purple-color);
}

select {
	background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="6 9 12 15 18 9"%3E%3C/polyline%3E%3C/svg%3E');
	background-position: right 16px center;
	background-repeat: no-repeat;
	background-size: 18px;
	padding-right: 40px;
}

option {
	background: #2a2a2a;
	color: var(--text-light);
}

.color-picker-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.color-picker-wrapper::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	pointer-events: none;
}

.logo-link img {
	height: 40px;
}

/* Form Styles */
form {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

/* Mobile form styles */
@media (max-width: 768px) {
	form {
		gap: 0;
	}
}

label {
	font-weight: bold;
	margin-top: 1px;
	color: #e0e0e0;
}

/* Global notification / alert styles */
.notification-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 99999;
	pointer-events: none;
}

.notification {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 15px 25px;
	border-radius: 12px;
	background-color: var(--transp-background);
	backdrop-filter: var(--transp-backdrop);
	color: var(--text-light);
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.15),
		inset 0 1px 3px rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 300px;
	transform: translateY(100px);
	opacity: 0;
	border: 1px solid rgba(187, 134, 252, 0.2);
}

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

/* Notification variants */
.notification.success {
	border-left: 4px solid #4caf50;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.15),
		inset 0 1px 3px rgba(255, 255, 255, 0.1),
		0 0 15px rgba(76, 175, 80, 0.2);
}

.notification.error {
	border-left: 4px solid #f44336;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.15),
		inset 0 1px 3px rgba(255, 255, 255, 0.1),
		0 0 15px rgba(244, 67, 54, 0.2);
}

.notification.warning {
	border-left: 4px solid #ff9800;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.15),
		inset 0 1px 3px rgba(255, 255, 255, 0.1),
		0 0 15px rgba(255, 152, 0, 0.2);
}

.notification.info {
	border-left: 4px solid #2196f3;
	box-shadow:
		0 4px 12px rgba(0, 0, 0, 0.15),
		inset 0 1px 3px rgba(255, 255, 255, 0.1),
		0 0 15px rgba(33, 150, 243, 0.2);
}

.notification-icon {
	font-size: 1.2rem;
	color: var(--text-light);
}

/* Hover effects */
.notification:hover {
	transform: translateY(-2px);
	box-shadow:
		0 6px 16px rgba(0, 0, 0, 0.2),
		inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

/* Animation keyframes */
@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* Animation classes */
.notification.slide-in {
	animation: slideIn 0.3s ease-out forwards;
}

.notification.slide-out {
	animation: slideOut 0.3s ease-out forwards;
}

/* Responsive design */
@media (max-width: 768px) {
	.notification {
		right: 10px;
		left: 10px;
		max-width: calc(100% - 20px);
	}

	.notification-icon {
		font-size: 1rem;
	}
}

/* Popup Styles */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1001;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
}

.popup.show {
	display: flex;
}

.popup-open {
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Popup Content */
.popup-content {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	border-radius: 12px;
	max-width: 500px;
	width: 90%;
	position: relative;
	padding: 2rem;
	animation: slideUp 0.4s ease-out;
	box-shadow: 0 8px 32px rgba(187, 134, 252, 0.2);
	border: 1px solid rgba(187, 134, 252, 0.2);
	overflow-y: auto;
	max-height: 90vh;
}

/* Mobile compact styles */
@media (max-width: 768px) {
	.popup-content {
		width: 95%;
		max-width: 400px;
		padding: 1rem;
		border-radius: 12px;
		max-height: 85vh;
	}
}

/* Add smooth scrolling behavior */
.popup-content::-webkit-scrollbar {
	width: 8px;
}

.popup-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
}

.popup-content::-webkit-scrollbar-thumb {
	background: rgba(187, 134, 252, 0.3);
	border-radius: 12px;
}

/* Add these styles to your CSS */
@keyframes popOutFromRight {
	0% {
		opacity: 0;
		transform: scale(0.8) translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateX(0);
	}
}

@keyframes popOutFromBottom {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* Mobile-specific animation */
@media (max-width: 1024px) {
	.popup-content {
		transform-origin: bottom center;
		animation: popOutFromBottom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}
}

/* Desktop-specific animation */
@media (min-width: 1024px) {
	.popup-content {
		transform-origin: right center;
		animation: popOutFromRight 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}
}

/* Close Button */
.close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 1.5rem;
	color: var(--text-light);
	cursor: pointer;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(187, 134, 252, 0.2);
	box-shadow: none;
}

/* Mobile close button */
@media (max-width: 768px) {
	.close {
		top: 10px;
		right: 10px;
		width: 32px;
		height: 32px;
		font-size: 1.2rem;
	}
}

.close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: scale(1.1);
	box-shadow: 0 0 15px rgba(187, 134, 252, 0.3);
}
/* Popup Styles */

/* Items Grid */
.items-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
	position: relative;
	width: 95vw;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.items-grid {
		grid-template-columns: repeat(2, minmax(300px, 1fr));
	}
}

@media (min-width: 1024px) {
	.items-grid {
		grid-template-columns: repeat(3, minmax(300px, 1fr));
	}
}
/* Items Grid */

/* Wishlist Header / Title */
.wishlist-header {
	background: var(--transp-background);
	backdrop-filter: var(--transp-backdrop);
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wishlist-title {
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	word-break: break-word;
	white-space: normal;
	text-align: center;
	line-height: 1.3;
	padding: 0 10px;
	margin: 0 auto 1rem;
	max-width: 100%;
	display: inline-block;
	color: var(--purple-color);
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-weight: 600;
}

.wishlist-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--primary-color),
		var(--secondary-color)
	);
	border-radius: 2px;
}

@media (max-width: 480px) {
	.wishlist-title {
		font-size: 1.7rem;
		max-width: 90%;
	}
}

/* Item Card */
.item-card {
	position: relative;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
	display: flex;
	width: 100%;
	box-sizing: border-box;
	flex-direction: column;
}

.item-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.item-card .buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
}

.item-card .buttons button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	color: var(--text-light);
}

.item-card img {
	display: block;
	margin: 0 auto 15px;
	width: 100%;
	height: 350px;
	object-fit: contain;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
}

.item-card.fulfilled {
	position: relative;
	opacity: 0.8;
	background: rgba(255, 255, 255, 0);
	backdrop-filter: blur(10px);
}

.item-card.fulfilled::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(187, 134, 252, 0.1) 0%,
		rgba(187, 134, 252, 0.05) 100%
	);
	border-radius: 12px;
	pointer-events: none;
}

.image-placeholder {
	width: 100%;
	height: 350px;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	font-size: 5em;
	margin: 0 auto 15px;
}

.item-card h2 {
	text-align: center;
	margin: 0 0 10px;
	color: var(--text-light);
}

.item-card p {
	text-align: center;
	margin: 5px 0;
	color: #e0e0e0;
}

.item-card .price {
	font-weight: bold;
	color: var(--text-light);
	font-style: italic;
}

.hidden {
	display: none !important;
}

.margin-top-10 {
	margin-top: 10px;
}

.error-text {
	color: var(--color-danger);
}

/* Toggle Switch Styles */
.toggle-container {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.toggle-card {
	background-color: var(--transp-background);
	backdrop-filter: var(--transp-backdrop);
	border-radius: 12px;
	padding: 12px 20px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.toggle-label {
	color: var(--text-light);
	font-weight: 500;
	font-size: 1rem;
	order: 1;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 28px;
	margin-top: -0px;
	order: 2;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #555;
	transition: 0.4s;
	border-radius: 34px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 3px;
	bottom: 3px;
	background-color: var(--text-light);
	transition: 0.4s;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
	background-color: var(--color-success);
}

input:checked + .slider:before {
	transform: translateX(32px);
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(187, 134, 252, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(187, 134, 252, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(187, 134, 252, 0);
	}
}

input:checked + .slider {
	animation: pulse 0.5s ease;
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse-glow {
	0% {
		box-shadow: 0 0 10px 5px rgba(187, 134, 252, 0.7);
	}
	50% {
		box-shadow: 0 0 25px 15px rgba(187, 134, 252, 1);
	}
	100% {
		box-shadow: 0 0 10px 5px rgba(187, 134, 252, 0.7);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.flex-display {
	display: flex !important;
}

.block-display {
	display: block !important;
}

.body-no-scroll {
	overflow: hidden !important;
}

.disabled-button {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}

.popup-fade-out {
	animation: fadeOut 0.3s ease-out !important;
}

.highlight-tutorial {
	z-index: 9999 !important;
	animation: pulse-glow 2s infinite !important;
}

/* Custom Loading Spinner */
.spinner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.217);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.wrapper {
	padding-left: 1em;
	padding-right: 1em;
	margin: auto;
	display: block;
	width: 195px;
}

.cssload-loader {
	width: 49px;
	height: 49px;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	background-color: var(--purple-color);
	margin: 5rem;
}

.cssload-loader,
.cssload-loader:before,
.cssload-loader:after {
	animation: 1.15s infinite ease-in-out;
	-o-animation: 1.15s infinite ease-in-out;
	-ms-animation: 1.15s infinite ease-in-out;
	-webkit-animation: 1.15s infinite ease-in-out;
	-moz-animation: 1.15s infinite ease-in-out;
}

.cssload-loader:before,
.cssload-loader:after {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.cssload-loader:before,
.cssload-loader:after {
	content: "";
}

.cssload-loader {
	animation: cssload-animation 1.15s infinite linear;
	-o-animation: cssload-animation 1.15s infinite linear;
	-ms-animation: cssload-animation 1.15s infinite linear;
	-webkit-animation: cssload-animation 1.15s infinite linear;
	-moz-animation: cssload-animation 1.15s infinite linear;
}

@keyframes cssload-animation {
	0% {
		transform: rotate(0deg);
		border-radius: 50%;
	}
	50% {
		transform: rotate(90deg);
		border-radius: 0%;
	}
	100% {
		transform: rotate(180deg);
		border-radius: 50%;
	}
}

@-o-keyframes cssload-animation {
	0% {
		-o-transform: rotate(0deg);
		border-radius: 50%;
	}
	50% {
		-o-transform: rotate(90deg);
		border-radius: 0%;
	}
	100% {
		-o-transform: rotate(180deg);
		border-radius: 50%;
	}
}

@-ms-keyframes cssload-animation {
	0% {
		-ms-transform: rotate(0deg);
		border-radius: 50%;
	}
	50% {
		-ms-transform: rotate(90deg);
		border-radius: 0%;
	}
	100% {
		-ms-transform: rotate(180deg);
		border-radius: 50%;
	}
}

@-webkit-keyframes cssload-animation {
	0% {
		-webkit-transform: rotate(0deg);
		border-radius: 50%;
	}
	50% {
		-webkit-transform: rotate(90deg);
		border-radius: 0%;
	}
	100% {
		-webkit-transform: rotate(180deg);
		border-radius: 50%;
	}
}

@-moz-keyframes cssload-animation {
	0% {
		-moz-transform: rotate(0deg);
		border-radius: 50%;
	}
	50% {
		-moz-transform: rotate(90deg);
		border-radius: 0%;
	}
	100% {
		-moz-transform: rotate(180deg);
		border-radius: 50%;
	}
}

/* Accessibility Focus Indicators */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

.close:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

/* Loading Skeleton */
.loading-skeleton {
	display: block;
}

.loading-skeleton .skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite;
	border-radius: 4px;
}

@keyframes shimmer {
	0% { background-position: -200% 0; }
	100% { background-position: 200% 0; }
}

.skeleton-title {
	height: 40px;
	width: 250px;
	margin: 0 auto 20px;
}

.skeleton-meta {
	height: 30px;
	width: 200px;
	margin: 0 auto 20px;
}

.skeleton-controls {
	height: 40px;
	width: 150px;
	margin: 0 auto 20px;
}

.skeleton-toggle {
	height: 50px;
	width: 200px;
	margin: 0 auto 20px;
}

.skeleton-price {
	height: 60px;
	width: 150px;
	margin: 0 auto 20px;
}

.skeleton-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
}

.skeleton-image {
	height: 150px;
	width: 100%;
	margin-bottom: 10px;
}

.skeleton-text {
	height: 20px;
	width: 80%;
	margin-bottom: 8px;
}

.skeleton-text.short {
	width: 50%;
}

.skeleton-button {
	height: 35px;
	width: 100px;
	margin-top: 10px;
}

.skeleton-buttons {
	height: 35px;
	width: 100%;
	margin-top: 10px;
	display: flex;
	gap: 10px;
}

.skeleton-buttons .skeleton {
	flex: 1;
}

.hidden {
	display: none !important;
}
