/* Minimal custom tweaks atop Tailwind */
button.qty {
	width: 1.75rem;
	height: 1.75rem;
	display: grid;
	place-items: center;
	border-radius: 0.25rem;
	border: 1px solid #d4d4d8;
	font-size: 0.875rem;
	line-height: 1.25rem;
	background-color: white;
	cursor: pointer;
}

button.qty:hover {
	background-color: #f5f5f5;
}

.gallery { transition: transform .2s ease, box-shadow .2s ease; }
.gallery:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgb(0 0 0 / 0.08); }

/* OAuth login buttons styling */
.oauth-button {
	transition: all 0.2s ease;
}

.oauth-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.oauth-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* RTL Support for Arabic */
[dir="rtl"] {
	text-align: right;
}

[dir="rtl"] .flex {
	flex-direction: row-reverse;
}

[dir="rtl"] .grid.md\:grid-cols-2,
[dir="rtl"] .grid.md\:grid-cols-3 {
	direction: rtl;
}

[dir="rtl"] .prose {
	text-align: right;
	direction: rtl;
}

[dir="rtl"] nav.hidden.sm\:flex {
	flex-direction: row-reverse;
}

[dir="rtl"] .flex.items-center.gap-2,
[dir="rtl"] .flex.items-center.gap-6 {
	flex-direction: row-reverse;
}

[dir="rtl"] .space-y-2 > * {
	text-align: right;
}

[dir="rtl"] .list-disc {
	padding-right: 1.25rem;
	padding-left: 0;
}

[dir="rtl"] .sticky {
	right: auto;
	left: 0;
}

/* Enhanced Arabic typography */
[dir="rtl"] body {
	font-family: 'Amiri', 'Traditional Arabic', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

[dir="rtl"] .text-2xl,
[dir="rtl"] .text-3xl,
[dir="rtl"] .text-5xl {
	font-weight: 600;
}

/* Arabic calligraphy font class */
.font-arabic {
	font-family: 'Amiri', 'Traditional Arabic', 'Arabic Typesetting', serif;
	font-feature-settings: 'liga', 'kern', 'mkmk', 'mark';
}

/* Islamic aesthetic enhancements */
.islamic-pattern-bg {
	background-image: 
		radial-gradient(circle at 25% 25%, rgba(180, 83, 9, 0.1) 2px, transparent 2px),
		radial-gradient(circle at 75% 75%, rgba(180, 83, 9, 0.1) 2px, transparent 2px),
		linear-gradient(45deg, transparent 48%, rgba(180, 83, 9, 0.05) 49%, rgba(180, 83, 9, 0.05) 51%, transparent 52%);
	background-size: 40px 40px, 40px 40px, 20px 20px;
}

/* Enhanced card hover effects */
.testimonial-card {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
	transform: translateY(-8px) scale(1.02);
}

/* Premium button animations - Override all Tailwind classes */
.btn-premium {
	position: relative !important;
	overflow: hidden !important;
	background: linear-gradient(135deg, #d97706 0%, #ea580c 100%) !important;
	border: none !important;
	color: white !important;
	background-color: #d97706 !important;
}

.btn-premium:hover {
	background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%) !important;
	background-color: #ea580c !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4) !important;
}

.btn-premium span,
.btn-premium * {
	color: white !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Ensure Arabic text visibility */
.btn-premium [data-i18n] {
	color: white !important;
	font-weight: 600 !important;
}

/* Additional override for any nested elements */
.btn-premium > span > span {
	color: white !important;
}

.btn-premium::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.8s ease;
}

.btn-premium:hover::before {
	left: 100%;
}

/* Geometric accent animations */
@keyframes gentle-pulse {
	0%, 100% { opacity: 0.4; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.05); }
}

.geometric-accent {
	animation: gentle-pulse 3s ease-in-out infinite;
}

/* Enhanced Cart Styling */
.cart-button {
	background: white;
	border: 1px solid #e2e8f0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cart-button:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-badge {
	animation: cart-bounce 0.3s ease-out;
}

@keyframes cart-bounce {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}

/* Cart Drawer Animations */
.cart-overlay {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.show {
	opacity: 1;
	visibility: visible;
}

.cart-drawer {
	backdrop-filter: blur(10px);
	transform: translateX(100%) !important;
	transition: transform 0.3s ease-out !important;
	right: 0 !important;
	left: auto !important;
	position: absolute !important;
}

.cart-overlay.show .cart-drawer {
	transform: translateX(0) !important;
}

/* Force cart to always slide from right, even in RTL - highest specificity */
html[dir="rtl"] .cart-drawer,
[dir="rtl"] .cart-drawer,
body[dir="rtl"] .cart-drawer {
	right: 0 !important;
	left: auto !important;
	transform: translateX(100%) !important;
	position: absolute !important;
}

html[dir="rtl"] .cart-overlay.show .cart-drawer,
[dir="rtl"] .cart-overlay.show .cart-drawer,
body[dir="rtl"] .cart-overlay.show .cart-drawer {
	transform: translateX(0) !important;
	right: 0 !important;
	left: auto !important;
}

/* Override any Tailwind RTL classes */
.cart-drawer.right-0 {
	right: 0 !important;
	left: auto !important;
}

.cart-header {
	background: white;
	border-bottom: 1px solid #e2e8f0;
}

.cart-close:hover {
	background-color: #f1f5f9;
}

/* Unified cart header styling */
.cart-header h3,
.cart-header p {
	transition: text-align 0.2s ease;
}

/* Arabic text positioning at maximum right */
[dir="rtl"] .cart-header .absolute.right-14 {
	right: 3.5rem !important;
}

/* Ensure close button stays accessible */
[dir="rtl"] .cart-close {
	position: relative !important;
	z-index: 10 !important;
}

/* Cart Items Styling */
.cart-item {
	background: white;
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	padding: 16px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.cart-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

.cart-item-image {
	width: 64px;
	height: 64px;
	border-radius: 8px;
	object-fit: cover;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.cart-item-price {
	color: #1e293b;
	font-weight: 600;
}

/* Quantity Controls */
.quantity-controls {
	display: flex;
	align-items: center;
	background: #f8fafc;
	border-radius: 8px;
	padding: 4px;
}

.quantity-btn {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 1px solid #e2e8f0;
	color: #64748b;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quantity-btn:hover {
	background: #64748b;
	color: white;
	border-color: #475569;
}

.quantity-display {
	min-width: 40px;
	text-align: center;
	font-weight: 600;
	color: #1e293b;
}

/* Checkout Button Enhancement */
.checkout-button {
	background: white;
	border: 1px solid #e2e8f0;
	color: #334155;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.checkout-button:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Empty State Styling */
#empty-cart-state {
	background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.5) 100%);
	border-radius: 16px;
	border: 1px dashed rgba(148, 163, 184, 0.3);
}

.cart-continue-shopping {
	background: white;
	border: 1px solid #e2e8f0;
	color: #334155;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.cart-continue-shopping:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

/* Cart drawer RTL fixes */
[dir="rtl"] #cart aside {
	right: auto;
	left: 0;
}

[dir="rtl"] .justify-between {
	flex-direction: row-reverse;
}

/* Language selector positioning for RTL */
[dir="rtl"] .flex.items-center.gap-2 select {
	margin-left: 0.5rem;
	margin-right: 0;
}

/* Smooth transitions for layout changes */
* {
	transition: text-align 0.3s ease, direction 0.3s ease;
}

/* Language Switcher Styles */
#lang-dropdown {
	display: none;
	opacity: 0;
	transform: translateY(-10px) scale(0.95);
	transition: all 0.2s ease;
}

#lang-dropdown.show {
	display: block !important;
	opacity: 1 !important;
	transform: translateY(0) scale(1) !important;
}

.lang-option {
	text-align: left;
	direction: ltr;
}

.lang-option:hover {
	background-color: #f8fafc;
}

.lang-option.active {
	background-color: #f8fafc;
	color: #475569;
}

/* RTL adjustments for language switcher */
[dir="rtl"] #lang-dropdown {
	right: auto;
	left: 0;
}

[dir="rtl"] .lang-option {
	text-align: right;
	direction: rtl;
	flex-direction: row-reverse;
}

/* Responsive language switcher */
@media (max-width: 640px) {
	#lang-toggle span {
		display: none;
	}
	
	#lang-toggle {
		padding: 8px;
	}
	
	#current-flag {
		display: block !important;
	}
}

/* ========================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ======================================== */

/* Base Mobile Adjustments */
@media (max-width: 768px) {
	/* Improve text readability on mobile */
	body {
		font-size: 16px;
		line-height: 1.6;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	/* Prevent horizontal scroll */
	html, body {
		overflow-x: hidden;
		max-width: 100vw;
	}

	/* Optimize touch targets - minimum 44x44px */
	button, a, input, select, textarea {
		min-height: 44px;
		min-width: 44px;
	}
}

/* Header Mobile Optimizations */
@media (max-width: 640px) {
	header {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	header .mx-auto {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	/* Logo sizing */
	#header-logo {
		height: 2.5rem !important;
		max-height: 2.5rem !important;
	}

	/* Compact header buttons */
	#currency-toggle,
	#lang-toggle,
	#auth-button {
		padding: 0.5rem !important;
		font-size: 0.75rem !important;
	}

	#currency-label,
	#current-lang {
		font-size: 0.75rem !important;
	}

	/* Cart button mobile optimization */
	.cart-button {
		padding: 0.5rem 0.75rem !important;
	}

	#cart-count {
		width: 1.25rem !important;
		height: 1.25rem !important;
		font-size: 0.625rem !important;
	}
}

/* Hero Section Mobile Optimizations */
@media (max-width: 768px) {
	/* Hero padding */
	section.relative.overflow-hidden {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	section.relative.overflow-hidden .mx-auto {
		padding-left: 1.25rem !important;
		padding-right: 1.25rem !important;
	}

	/* Arabic Bismillah text */
	.font-arabic {
		font-size: 1rem !important;
		line-height: 1.8 !important;
	}

	/* Hero title sizing */
	h1.text-4xl {
		font-size: 2rem !important;
		line-height: 1.2 !important;
	}

	h1.text-4xl span {
		font-size: 2rem !important;
	}

	/* Storytelling card mobile */
	.max-w-4xl {
		max-width: 100% !important;
	}

	.relative.group .relative.bg-white\/95 {
		padding: 1.5rem !important;
	}

	/* Adjust decorative corners for mobile */
	.absolute.top-4.left-4,
	.absolute.bottom-4.right-4 {
		width: 1.5rem !important;
		height: 1.5rem !important;
	}

	/* Arabic and English text in hero */
	.relative.group p {
		font-size: 0.875rem !important;
		line-height: 1.6 !important;
	}

	/* Video section mobile */
	.max-w-3xl.mx-auto {
		padding-top: 2rem !important;
		padding-bottom: 1.5rem !important;
	}
}

/* Product Gallery Mobile Optimizations */
@media (max-width: 1024px) {
	/* Product Gallery Section */
	.bg-gradient-to-b.from-slate-50\/30 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	/* Gallery grid spacing */
	.grid.lg\:grid-cols-12 {
		gap: 2rem !important;
	}

	/* Gallery images - optimize aspect ratios */
	.aspect-\[4\/3\] {
		aspect-ratio: 4/3 !important;
	}

	.aspect-square {
		aspect-ratio: 1/1 !important;
	}

	/* Gallery gap adjustments */
	.grid.grid-cols-2.gap-3 {
		gap: 0.75rem !important;
	}
}

@media (max-width: 640px) {
	/* Section header mobile */
	.space-y-4.pb-6 h3 {
		font-size: 1.75rem !important;
		line-height: 1.3 !important;
	}

	.space-y-4.pb-6 p {
		font-size: 0.875rem !important;
	}

	/* Trust indicators below gallery */
	.flex.flex-wrap.items-center.gap-4 {
		gap: 0.5rem !important;
		font-size: 0.75rem !important;
	}

	/* Gallery thumbnails - 2 column grid on mobile */
	.grid.grid-cols-2 {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* Premium badge mobile */
	.absolute.top-6.left-6 div {
		font-size: 0.625rem !important;
		padding: 0.375rem 0.625rem !important;
	}

	/* View All button mobile */
	.flex.items-center.justify-center.aspect-square p {
		font-size: 0.625rem !important;
	}
}

/* Product Details Sidebar Mobile */
@media (max-width: 1024px) {
	/* Sidebar becomes full width on mobile */
	.lg\:col-span-5 {
		margin-top: 2rem;
	}

	/* Sticky behavior removed on mobile */
	.lg\:sticky {
		position: relative !important;
		top: auto !important;
	}

	/* Product card mobile */
	.product-details-card {
		padding: 1.5rem !important;
	}

	/* Product title mobile */
	.text-2xl.md\:text-3xl {
		font-size: 1.5rem !important;
		line-height: 1.3 !important;
	}

	/* Price mobile */
	.text-3xl.font-light {
		font-size: 2rem !important;
	}

	/* Rating display mobile */
	.flex.items-center.gap-2 {
		font-size: 0.75rem !important;
	}

	.flex.items-center.gap-2 svg {
		width: 0.875rem !important;
		height: 0.875rem !important;
	}

	/* Features list mobile */
	.space-y-3 ul {
		font-size: 0.875rem !important;
	}

	/* CTA button mobile - full width always */
	.add-to-cart {
		padding: 1rem 1.5rem !important;
		font-size: 1rem !important;
	}

	/* Trust badges mobile */
	.flex.items-center.justify-center.gap-4 {
		flex-wrap: wrap !important;
		gap: 0.75rem !important;
		font-size: 0.75rem !important;
	}
}

@media (max-width: 640px) {
	/* Product details adjustments */
	.space-y-6 {
		gap: 1.25rem !important;
	}

	/* Icon sizing mobile */
	.w-10.h-10 {
		width: 2rem !important;
		height: 2rem !important;
	}

	.w-10.h-10 svg {
		width: 1.25rem !important;
		height: 1.25rem !important;
	}

	/* Gift highlight mobile */
	.bg-gradient-to-br.from-amber-50 {
		padding: 1rem !important;
	}

	.bg-gradient-to-br.from-amber-50 p {
		font-size: 0.75rem !important;
	}
}

/* Testimonials Section Mobile */
@media (max-width: 768px) {
	/* Testimonials section */
	.bg-gradient-to-br.from-amber-50\/30 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	/* Section title mobile */
	.text-center.space-y-3 h3 {
		font-size: 1.5rem !important;
	}

	.text-center.space-y-3 p {
		font-size: 0.875rem !important;
	}

	/* Testimonial cards mobile - stack vertically */
	.grid.md\:grid-cols-3 {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}

	/* Testimonial card mobile */
	.bg-white\/80.backdrop-blur-sm {
		padding: 1.25rem !important;
	}

	/* Star rating mobile */
	.flex.items-center.space-x-1 svg {
		width: 1rem !important;
		height: 1rem !important;
	}

	/* Testimonial text mobile */
	.text-slate-700.leading-relaxed {
		font-size: 0.875rem !important;
	}

	/* Trust statistics mobile */
	.grid.md\:grid-cols-4 {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem !important;
	}

	.grid.md\:grid-cols-4 .text-3xl {
		font-size: 1.75rem !important;
	}

	.grid.md\:grid-cols-4 .text-sm {
		font-size: 0.75rem !important;
	}
}

/* Cart Drawer Mobile Optimizations */
@media (max-width: 640px) {
	/* Cart drawer full width on mobile */
	.cart-drawer {
		max-width: 100% !important;
		width: 100% !important;
	}

	/* Cart header mobile */
	.cart-header {
		padding: 1rem !important;
	}

	.cart-header h3 {
		font-size: 1.125rem !important;
	}

	.cart-header p {
		font-size: 0.75rem !important;
	}

	/* Cart items mobile */
	#cart-items {
		padding: 1rem !important;
	}

	.cart-item {
		padding: 1rem !important;
	}

	.cart-item-image {
		width: 3.5rem !important;
		height: 3.5rem !important;
	}

	/* Cart footer mobile */
	.cart-footer {
		padding: 1rem !important;
	}

	#cart-subtotal {
		font-size: 1.25rem !important;
	}

	/* Checkout button mobile */
	.checkout-button {
		padding: 0.875rem 1.25rem !important;
		font-size: 0.875rem !important;
	}

	/* Quantity controls mobile */
	.quantity-btn {
		width: 2rem !important;
		height: 2rem !important;
		font-size: 0.875rem !important;
	}

	.quantity-display {
		min-width: 2.5rem !important;
		font-size: 0.875rem !important;
	}
}

/* Form Elements Mobile Optimization */
@media (max-width: 640px) {
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea,
	select {
		font-size: 16px !important; /* Prevents zoom on iOS */
		padding: 0.75rem !important;
	}

	/* Modal mobile optimization */
	.fixed.inset-0 > div {
		max-width: 95% !important;
		max-height: 90vh !important;
		overflow-y: auto !important;
	}
}

/* Improved Touch Interactions */
@media (hover: none) and (pointer: coarse) {
	/* Remove hover effects on touch devices */
	.group:hover .group-hover\:scale-105,
	.group:hover .group-hover\:scale-110,
	.group:hover .group-hover\:scale-\[1\.03\],
	.group:hover .group-hover\:scale-\[1\.08\] {
		transform: none !important;
	}

	/* Improve button feedback on touch */
	button:active,
	.add-to-cart:active {
		transform: scale(0.95) !important;
		transition: transform 0.1s ease !important;
	}

	/* Remove hover shadows on touch */
	.hover\:shadow-xl:hover,
	.hover\:shadow-2xl:hover {
		box-shadow: inherit !important;
	}
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
	/* Reduce animation complexity on mobile */
	* {
		will-change: auto !important;
	}

	.product-gallery-main,
	.product-gallery-thumb {
		will-change: transform !important;
	}

	/* Optimize transitions for mobile */
	.transition-all {
		transition-duration: 200ms !important;
	}

	.duration-300,
	.duration-500,
	.duration-700 {
		transition-duration: 200ms !important;
	}
}

/* Landscape Orientation Mobile */
@media (max-width: 896px) and (orientation: landscape) {
	/* Reduce vertical padding in landscape */
	section {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}

	/* Header more compact */
	header {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}

	/* Hero section landscape */
	.relative.overflow-hidden {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}
}

/* Very Small Screens (iPhone SE, etc.) */
@media (max-width: 375px) {
	/* Extra compact header */
	header .flex.items-center.gap-2 {
		gap: 0.375rem !important;
	}

	/* Smaller text sizes */
	h1.text-4xl {
		font-size: 1.75rem !important;
	}

	.text-2xl {
		font-size: 1.25rem !important;
	}

	.text-xl {
		font-size: 1.125rem !important;
	}

	/* Compact padding */
	.px-4 {
		padding-left: 0.75rem !important;
		padding-right: 0.75rem !important;
	}

	.py-16 {
		padding-top: 2rem !important;
		padding-bottom: 2rem !important;
	}
}

/* Tablet Optimizations (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	/* Optimize for tablet portrait/landscape */
	.mx-auto {
		max-width: 720px !important;
	}

	/* Gallery grid - show 3 columns on tablet */
	.grid.grid-cols-2 {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	/* Product details - slightly more compact */
	.product-details-card {
		padding: 2rem !important;
	}

	/* Testimonials - 2 columns on tablet */
	.grid.md\:grid-cols-3 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* Prevent Layout Shift (CLS) */
img, video {
	height: auto;
	max-width: 100%;
}

/* Image placeholders to prevent CLS */
img[src=""],
img:not([src]) {
	visibility: hidden;
}

/* Reserve space for images */
.aspect-video,
.aspect-square,
.aspect-\[4\/3\] {
	position: relative;
}

.aspect-video::before,
.aspect-square::before,
.aspect-\[4\/3\]::before {
	content: "";
	display: block;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Font Loading Optimization */
.font-arabic {
	font-display: swap;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Safe Area Insets for Notched Devices */
@supports (padding: max(0px)) {
	header {
		padding-left: max(1rem, env(safe-area-inset-left));
		padding-right: max(1rem, env(safe-area-inset-right));
	}

	.cart-drawer {
		padding-left: max(1.5rem, env(safe-area-inset-left));
		padding-right: max(1.5rem, env(safe-area-inset-right));
		padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
	}
}

/* Focus Indicators for Accessibility */
@media (max-width: 768px) {
	button:focus-visible,
	a:focus-visible,
	input:focus-visible {
		outline: 2px solid #3b82f6 !important;
		outline-offset: 2px !important;
	}
}




