/* Base */
:root {
	--bg: #fef5f0;
	--surface: #ffffff;
	--text: #1e293b;
	--muted: #64748b;
	--primary: #f97316;
	--primary-600: #ea580c;
	--primary-700: #c2410c;
	--primary-light: #ffedd5;
	--primary-lighter: #fff7ed;
	--ring: rgba(249, 115, 22, 0.25);
	--teal: #0d9488;
	--teal-dark: #0f766e;
	--border: #fed7aa;
	--success: #14b8a6;
	--success-600: #0d9488;
	--accent-1: #fff7ed;
	--accent-2: #fed7aa;
}

* { box-sizing: border-box; }
html, body { 
	height: 100%;
	height: -webkit-fill-available;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	overscroll-behavior-y: none;
}
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
	overflow-x: hidden;
}

/* Safe area support for notches */
@supports (padding: max(0px)) {
	body {
		padding-top: env(safe-area-inset-top);
		padding-bottom: env(safe-area-inset-bottom);
		padding-left: env(safe-area-inset-left);
		padding-right: env(safe-area-inset-right);
	}
}

.hidden { display: none !important; }
.muted { color: var(--muted); }
.sm { font-size: 12px; }

/* Splash */
.splash {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	background: radial-gradient(1200px 600px at 50% -20%, var(--accent-2), var(--bg));
	z-index: 60;
}
.splash-card {
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: 0 10px 30px rgba(249,115,22,0.12);
	border-radius: 16px;
	padding: 28px;
	text-align: center;
	width: min(520px, 92vw);
}
.logo { width: 72px; height: 72px; }
.logo.small { width: 36px; height: 36px; }
.brand { margin: 12px 0 4px; }
.socials { display: flex; gap: 12px; justify-content: center; margin: 12px 0; }
.social { color: var(--primary); text-decoration: none; font-weight: 600; }
.address { margin: 6px 0 12px; }

/* Header Banner Slider */
.header-banner {
	width: 100%;
	height: 180px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}
@media (min-width: 1024px) {
	.header-banner {
		height: 570px;
	}
}

.header-slider {
	position: absolute;
	inset: 0;
	display: flex;
	animation: slideShow 7.5s infinite;
}

.header-slider-item {
	min-width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.header-slider-item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.header-slider-item:nth-child(1) {
	background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1200&h=400&fit=crop');
}
.header-slider-item:nth-child(2) {
	background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1200&h=400&fit=crop');
}
.header-slider-item:nth-child(3) {
	background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&h=400&fit=crop');
}

@keyframes slideShow {
	0%, 33.33% { transform: translateX(0); }
	33.34%, 66.66% { transform: translateX(-100%); }
	66.67%, 100% { transform: translateX(-200%); }
}

.header-banner-content {
	position: relative;
	z-index: 2;
	padding: 20px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	height: 100%;
}

.header-logo {
	width: 80px;
	height: 80px;
	filter: brightness(1.1) contrast(1.1);
}
@media (min-width: 1024px) {
	.header-logo {
		width: 120px;
		height: 120px;
	}
}

/* Topbar */
.topbar {
	position: sticky;
	top: 0;
	background: rgba(255,255,255,0.98);
	backdrop-filter: saturate(1.1) blur(12px);
	border-bottom: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	z-index: 20;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-left .titles h2 { font-size: 16px; font-weight: 600; margin: 0; color: var(--text); }
.topbar-left .titles p { margin: 0; font-size: 11px; }
.topbar-right { display: flex; align-items: center; gap: 8px; }

/* Tabs Container */
.tabs-container {
	position: sticky;
	top: 56px;
	background: var(--bg);
	z-index: 19;
	margin-top: 0;
}

/* Search Section */
.search-section {
	padding: 12px 16px;
}
.search-section.mobile-only {
	display: block;
}
.search-section.desktop-only {
	display: none;
}
.search-wrapper {
	position: relative;
	width: 100%;
}
.search-input {
	width: 100%;
	padding: 12px 40px 12px 16px;
	border: 2px solid var(--border);
	border-radius: 12px;
	font-size: 15px;
	background: var(--surface);
	transition: all 0.2s ease;
	font-family: inherit;
}
.search-input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.clear-search {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border: none;
	background: var(--muted);
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: none;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	line-height: 1;
	font-weight: 700;
}
.clear-search:hover {
	background: var(--primary);
	transform: translateY(-50%) scale(1.1);
}

/* Tabs - Bootstrap Override */
.tabs-container .nav {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	padding: 12px 16px;
}
.tabs-container .nav-link {
	border-radius: 999px !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	min-height: 44px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: 1px solid var(--border) !important;
	background: var(--surface) !important;
	color: var(--text) !important;
}
.tabs-container .nav-link:hover { 
	background: var(--accent-1) !important; 
	border-color: var(--primary) !important; 
	color: var(--primary) !important;
}
.tabs-container .nav-link.active { 
	outline: 2px solid var(--ring) !important; 
	border-color: var(--primary) !important; 
	color: var(--primary) !important; 
	background: var(--primary-light) !important;
}

/* Buttons - Bootstrap Override */
.btn {
	font-weight: 600 !important;
	border-radius: 14px !important;
	min-height: 48px !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	position: relative;
	overflow: hidden;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
	width: 300px;
	height: 300px;
}
.btn-primary { 
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%) !important;
	border: none !important;
	box-shadow: 0 4px 14px rgba(249,115,22,0.4),
	            0 2px 4px rgba(249,115,22,0.2),
	            inset 0 1px 0 rgba(255,255,255,0.25) !important;
	letter-spacing: 0.3px;
	animation: btnPulse 2s ease-in-out infinite;
}
.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s ease;
	z-index: 1;
}
.btn-primary:hover::before {
	left: 100%;
}
.btn-primary > * {
	position: relative;
	z-index: 2;
}
/* Sepet ikonu kaldırıldı */
.btn-primary:hover { 
	background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary) 100%) !important;
	border: none !important;
	transform: translateY(-3px) scale(1.02); 
	box-shadow: 0 8px 24px rgba(249,115,22,0.5), 
	            0 4px 8px rgba(249,115,22,0.3),
	            inset 0 1px 0 rgba(255,255,255,0.35) !important;
	animation: btnPulseHover 1.5s ease-in-out infinite;
}
.btn-primary:active {
	background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary) 100%) !important;
	border: none !important;
	transform: translateY(-1px) scale(0.98);
	box-shadow: 0 4px 12px rgba(249,115,22,0.4),
	            0 2px 4px rgba(249,115,22,0.2) !important;
	animation: btnClick 0.3s ease-out;
}
.btn-outline-primary { 
	background: var(--primary-light) !important; 
	color: var(--primary) !important; 
	border: 2px solid var(--primary) !important; 
	box-shadow: none !important;
}
.btn-outline-primary:hover { 
	background: var(--primary) !important; 
	color: #fff !important; 
	border-color: var(--primary) !important;
	transform: translateY(-2px); 
	box-shadow: 0 4px 12px rgba(249,115,22,0.3) !important;
}
.btn-success {
	animation: btnPulse 2s ease-in-out infinite;
}
.btn-success:hover {
	animation: btnPulseHover 1.5s ease-in-out infinite;
}
.btn.ghost { background: #fff; color: var(--text); border: 2px solid var(--border); box-shadow: none; font-size: 13px; padding: 8px 16px; }
.btn.ghost:hover { background: var(--accent-1); border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-danger.btn-lg {
	background: linear-gradient(135deg, #dc2626, #ec4899) !important; 
	border: none !important;
	color: #fff !important; 
	box-shadow: 0 4px 12px rgba(220,38,38,0.4), 0 2px 4px rgba(236,72,153,0.3); 
	animation: bellRing 2s ease-in-out infinite;
	transform-origin: center top;
}
.btn-danger.btn-lg:hover { 
	transform: translateY(-2px); 
	box-shadow: 0 6px 16px rgba(220,38,38,0.5), 0 4px 8px rgba(236,72,153,0.4);
	background: linear-gradient(135deg, #b91c1c, #db2777) !important;
	animation: bellRingHover 1.5s ease-in-out infinite;
}
.btn-danger.btn-lg:active {
	animation: bellRingClick 0.3s ease-out;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; transform: none; }
.btn:active { transform: translateY(0); }
.icon-btn { border: 2px solid var(--border); background: #fff; width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 12px; cursor: pointer; font-size: 20px; display: grid; place-items: center; transition: all 0.2s ease; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.icon-btn:hover, .icon-btn:active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); transform: scale(1.05); }

/* Quick Actions */
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 16px 0; }
.quick-actions .btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* Content / Grid */
.content { 
	padding: 12px 16px 120px; 
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	min-height: calc(100vh - 56px - 180px - 60px);
}
@media (min-width: 1024px) {
	.content {
		min-height: calc(100vh - 56px - 570px - 60px);
	}
}
.grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
@media (min-width: 720px) {
	.grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
	.grid { grid-template-columns: repeat(8, 1fr); gap: 16px; }
	.tabs-container {
		display: flex;
		align-items: center;
		gap: 16px;
		padding: 12px 16px;
	}
	.tabs {
		flex: 1;
		padding: 0;
	}
	.search-section.desktop-only {
		display: block;
		flex: 0 0 600px;
		padding: 0;
	}
	.search-section.mobile-only {
		display: none;
	}
}

/* Mobile optimizations */

@media (max-width: 768px) {
	.content { padding: 12px 12px 140px; }
	.grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.card-body { padding: 14px; }
	.title { font-size: 16px; }
	.desc { font-size: 14px; }
	.price { font-size: 18px; }
	.price::before { font-size: 12px; }
	.btn { font-size: 14px; padding: 12px 16px; min-height: 44px; }
	.btn.primary::after { right: 10px; font-size: 16px; }
	.price-container { margin: 6px 0; }
}

/* No Results */
.no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 48px 16px;
	color: var(--muted);
}
.no-results p {
	font-size: 16px;
	margin: 0;
}

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 16px rgba(249,115,22,0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
	box-shadow: 0 8px 24px rgba(249,115,22,0.15);
	transform: translateY(-4px);
}
.card-media { 
	aspect-ratio: 4/3; 
	background: linear-gradient(135deg, var(--accent-2), var(--primary-light)); 
	overflow: hidden; 
	position: relative;
	display: block;
}
.card-media img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	object-position: center;
	display: block;
}
.card-body { 
	padding: 16px; 
	display: grid; 
	gap: 12px; 
	position: relative;
	text-align: center;
}
.title { 
	font-size: 17px; 
	font-weight: 700; 
	margin: 0; 
	color: var(--text); 
	line-height: 1.4;
	text-align: center;
}
.desc { 
	color: var(--muted); 
	font-size: 13px; 
	margin: 0; 
	line-height: 1.6;
	text-align: center;
}
.price-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 8px 0;
}
.price { 
	font-weight: 800; 
	background: linear-gradient(135deg, var(--teal-dark), var(--teal));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	line-height: 1;
	letter-spacing: -0.5px;
	position: relative;
	text-align: center;
}
.price::before {
	content: '₺';
	font-size: 14px;
	font-weight: 700;
	opacity: 1;
	color: var(--teal);
	-webkit-text-fill-color: var(--teal);
	margin-right: 2px;
}
.btn.primary.full-width {
	width: 100%;
	margin-top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn.primary span {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-weight: 600;
}
.btn.primary.full-width span {
	padding-right: 0;
}
.qty {
	display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 12px; padding: 6px 8px;
}
.qty button { width: 36px; height: 36px; min-width: 36px; min-height: 36px; border: 1px solid var(--border); border-radius: 10px; background: #fff; cursor: pointer; font-size: 18px; font-weight: 700; touch-action: manipulation; -webkit-tap-highlight-color: transparent; transition: all 0.2s ease; }
.qty button:active { transform: scale(0.9); background: var(--accent-1); }

/* Cart Bar */
.cart-bar {
	position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border);
	display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px 16px; z-index: 30;
	padding-bottom: calc(12px + env(safe-area-inset-bottom));
	box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.cart-summary { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--border); background: var(--surface); border-radius: 12px; padding: 14px 18px; cursor: pointer; font-size: 15px; font-weight: 600; transition: all 0.2s ease; min-height: 48px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.cart-summary:active { background: var(--accent-1); transform: scale(0.98); }
.cart-summary:hover { background: var(--accent-1); border-color: var(--primary); }
.checkout { background: var(--success); box-shadow: 0 4px 12px rgba(20,184,166,0.3); font-size: 15px; font-weight: 700; padding: 14px 20px; min-height: 48px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.checkout:active { background: var(--success-600); transform: scale(0.98); }
.checkout:hover { background: var(--success-600); box-shadow: 0 6px 16px rgba(20,184,166,0.4); }

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 50; }
.drawer .backdrop { position: absolute; inset: 0; background: rgba(2,6,23,0.5); opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 1; }
.drawer-content { position: absolute; left: 0; right: 0; bottom: -60%; background: #fff; border-top-left-radius: 20px; border-top-right-radius: 20px; border: 1px solid var(--border); padding: 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom)); min-height: 50%; max-height: 90vh; transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1); transform: translateY(0); z-index: 2; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.drawer.show .backdrop { opacity: 1; pointer-events: auto; }
.drawer.show .drawer-content { bottom: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 8px; }
.cart-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; max-height: 40vh; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center; border: 1px solid var(--border); border-radius: 12px; padding: 8px; }
.drawer-footer { display: grid; gap: 10px; padding-top: 8px; border-top: 1px dashed var(--border); }
.totals { display: flex; align-items: center; justify-content: space-between; }

/* Modal - Bootstrap Override */
.modal-content {
	border-radius: 24px !important;
	border: 1px solid var(--border) !important;
	box-shadow: 0 20px 40px rgba(249,115,22,0.18) !important;
}
.modal-header {
	padding: 20px 24px !important;
	border-bottom: 1px solid var(--border) !important;
}
.modal-header .modal-title {
	font-size: 20px !important;
	font-weight: 700 !important;
	color: var(--text) !important;
	margin: 0 !important;
}
.modal-body {
	padding: 24px !important;
}
.modal-footer {
	padding: 20px 24px !important;
	border-top: 1px solid var(--border) !important;
}
@media (max-width: 768px) {
	.modal-dialog:not(#qtyModal .modal-dialog) {
		margin: 0 !important;
		max-width: 100% !important;
	}
	.modal-content {
		border-radius: 20px 20px 0 0 !important;
	}
}
.modal.hidden {
	display: none !important;
}

/* Quantity Modal Specific Styles - Ortalama ve Uyumluluk */
#qtyModal .modal-dialog {
	max-width: 420px !important;
	margin: 1.75rem auto !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: calc(100% - 3.5rem) !important;
}
#qtyModal .modal-dialog-centered {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: calc(100% - 1rem) !important;
}
#qtyModal .modal-content {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 auto !important;
	position: relative !important;
}
#qtyModal.show .modal-dialog,
#qtyModal.modal.show .modal-dialog {
	transform: translate(0, 0) !important;
}
.qty-selector {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 32px 16px;
}
.btn-outline-primary.rounded-circle {
	width: 56px !important;
	height: 56px !important;
	min-width: 56px !important;
	min-height: 56px !important;
	border: 2px solid var(--border) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	box-shadow: 0 2px 8px rgba(249,115,22,0.1) !important;
}
.btn-outline-primary.rounded-circle:hover {
	background: var(--primary-light) !important;
	border-color: var(--primary) !important;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(249,115,22,0.2) !important;
}
.btn-outline-primary.rounded-circle:active {
	transform: scale(0.95);
}
.qty-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 100px;
}
.qty-number {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	color: var(--primary);
	font-variant-numeric: tabular-nums;
}
.qty-label {
	font-size: 14px;
	color: var(--muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
@media (max-width: 768px) {
	#qtyModal .modal-dialog {
		max-width: calc(100vw - 32px) !important;
		margin: 0 !important;
		min-height: auto !important;
	}
	#qtyModal .modal-content {
		border-radius: 20px 20px 0 0 !important;
		margin-top: auto !important;
	}
	.qty-selector { gap: 20px; padding: 24px 12px; }
	.btn-outline-primary.rounded-circle { width: 50px !important; height: 50px !important; min-width: 50px !important; min-height: 50px !important; }
	.qty-number { font-size: 40px; }
	.modal-header { padding: 16px 20px !important; }
	.modal-body { padding: 20px !important; }
	.modal-footer { padding: 16px 20px !important; }
}

.delivery-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.toggle { border: 1px solid var(--border); background: #fff; border-radius: 12px; padding: 10px; font-weight: 700; cursor: pointer; }
.toggle:hover { background: var(--accent-1); border-color: var(--primary); }
.toggle.active { outline: 2px solid var(--ring); border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

.form { display: grid; gap: 10px; }
.fields { display: grid; gap: 10px; }
.field span { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea { width: 100%; border: 2px solid var(--border); border-radius: 14px; padding: 14px 16px; font-size: 16px; font: inherit; background: #fff; -webkit-appearance: none; appearance: none; touch-action: manipulation; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
.field textarea { min-height: 100px; resize: vertical; }

/* Footer */
.footer {
	background: linear-gradient(135deg, #1e293b, #334155);
	color: #e2e8f0;
	padding: 48px 16px 24px;
	margin-top: 64px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 32px;
	margin-bottom: 32px;
}

.footer-section h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px;
}

.footer-section h4 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 12px;
}

.footer-section p {
	color: #cbd5e1;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 16px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.footer-social a {
	color: var(--primary-light);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 12px;
	border: 1px solid rgba(249,115,22,0.3);
	border-radius: 8px;
	transition: all 0.2s ease;
}

.footer-social a:hover {
	background: rgba(249,115,22,0.1);
	border-color: var(--primary);
	color: #fff;
}

.footer-section ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-section ul li {
	color: #cbd5e1;
	font-size: 14px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-section ul li a {
	color: var(--primary-light);
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-section ul li a:hover {
	color: #fff;
}

.footer-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-keywords span {
	display: inline-block;
	background: rgba(249,115,22,0.15);
	color: var(--primary-light);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	border: 1px solid rgba(249,115,22,0.2);
	transition: all 0.2s ease;
}

.footer-keywords span:hover {
	background: rgba(249,115,22,0.25);
	border-color: var(--primary);
	color: #fff;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
	color: #94a3b8;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 768px) {
	.footer-container {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* SweetAlert2 Toast Customization */
.swal-toast {
	border-radius: 16px !important;
	box-shadow: 0 8px 24px rgba(249,115,22,0.2), 0 4px 8px rgba(0,0,0,0.1) !important;
	border: 1px solid var(--border) !important;
	padding: 16px 20px !important;
	font-family: inherit !important;
}
.swal-centered {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	margin: 0 !important;
	width: auto !important;
	max-width: min(420px, calc(100vw - 40px)) !important;
}
.swal-toast-title {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: var(--text) !important;
	margin-bottom: 8px !important;
}
.swal-toast-content {
	font-size: 14px !important;
	color: var(--text) !important;
	line-height: 1.5 !important;
}
.swal2-timer-progress-bar {
	background: linear-gradient(135deg, var(--primary), var(--primary-600)) !important;
}
.swal2-success [class^=swal2-success-line] {
	background-color: var(--teal) !important;
}
.swal2-success .swal2-success-ring {
	border-color: var(--teal) !important;
}
.swal2-icon.swal2-success .swal2-success-ring {
	border-color: rgba(20,184,166,0.3) !important;
}

/* Button Animations */
@keyframes btnPulse {
	0%, 100% {
		box-shadow: 0 4px 14px rgba(249,115,22,0.4),
		            0 2px 4px rgba(249,115,22,0.2),
		            inset 0 1px 0 rgba(255,255,255,0.25);
	}
	50% {
		box-shadow: 0 6px 18px rgba(249,115,22,0.5),
		            0 3px 6px rgba(249,115,22,0.3),
		            inset 0 1px 0 rgba(255,255,255,0.25);
	}
}
@keyframes btnPulseHover {
	0%, 100% {
		transform: translateY(-3px) scale(1.02);
		box-shadow: 0 8px 24px rgba(249,115,22,0.5), 
		            0 4px 8px rgba(249,115,22,0.3),
		            inset 0 1px 0 rgba(255,255,255,0.35);
	}
	50% {
		transform: translateY(-4px) scale(1.03);
		box-shadow: 0 10px 28px rgba(249,115,22,0.6), 
		            0 5px 10px rgba(249,115,22,0.4),
		            inset 0 1px 0 rgba(255,255,255,0.35);
	}
}
@keyframes btnClick {
	0% {
		transform: translateY(-3px) scale(1.02);
	}
	50% {
		transform: translateY(0px) scale(0.95);
	}
	100% {
		transform: translateY(-1px) scale(0.98);
	}
}

/* Bell Ring Animations */
@keyframes bellRing {
	0%, 100% {
		transform: rotate(0deg);
	}
	10%, 30%, 50%, 70%, 90% {
		transform: rotate(-8deg);
	}
	20%, 40%, 60%, 80% {
		transform: rotate(8deg);
	}
}
@keyframes bellRingHover {
	0%, 100% {
		transform: translateY(-2px) rotate(0deg);
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translateY(-2px) rotate(-10deg);
	}
	20%, 40%, 60%, 80% {
		transform: translateY(-2px) rotate(10deg);
	}
}
@keyframes bellRingClick {
	0% {
		transform: rotate(-12deg) scale(0.95);
	}
	25% {
		transform: rotate(12deg) scale(1.05);
	}
	50% {
		transform: rotate(-8deg) scale(0.98);
	}
	75% {
		transform: rotate(8deg) scale(1.02);
	}
	100% {
		transform: rotate(0deg) scale(1);
	}
}


