@charset "UTF-8";

/* FontAwesome CSS dosyası eksik - CDN kullanılıyor */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("../plugins/themify/themify.css");
@import url("../plugins/feather/feather.css");
@import url("../plugins/line-awesome/css/line-awesome.css");

/* Feather Icons - Disabled Font Loading (Prevents 404 Errors) */
/* Feather Icons 4.x is SVG-based and doesn't use font files */
/* Icons work via CSS content codes, not font files */
@font-face {
	font-family: "feather";
	/* Empty font-face to prevent 404 errors */
	/* Icons will still work via CSS content: "\eXXX" codes */
	src: local("Arial");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Force icon visibility */
.fe,
.fe:before,
[class^="fe-"]:before,
[class*=" fe-"]:before {
	font-family: 'feather' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* BUTTON ICONS OVERRIDE - Convert to Font Awesome for buttons */
.btn .fe:before,
.btn [class^="fe-"]:before,
.btn [class*=" fe-"]:before,
button .fe:before,
button [class^="fe-"]:before,
button [class*=" fe-"]:before,
a.btn .fe:before,
a.btn [class^="fe-"]:before,
a.btn [class*=" fe-"]:before {
	font-family: 'Font Awesome 6 Free', 'FontAwesome', sans-serif !important;
	font-weight: 900 !important;
}