.mobilebuttonarea {
	display: none;
}
.mobileshowing {
	display: none;
}
.desktopshowing {
	display: block;
}
.mobilewidthshop {
	width: 100%;
}

@media only screen and (max-width: 600px) {
	.mobilebuttonarea {
		display: inline;
	}
	.mobileshowing {
		display: inline;
	}
	.desktopshowing {
		display: none;
	}
	.mobilewidthshop {
		width: 50%;
	}
}

:root {
	--primary-color: #674CF4;
	--primary-hover: #674CF4;
	--secondary-color: #212529; /* Koyu Gri/Siyah */
	--bg-body: #ffffff;
	--bg-section: #f9f9f9;
	--bg-card: #ffffff;
	--text-main: #212529;
	--text-muted: #6c757d;
	--border-color: #eeeeee;
	--shadow-color: rgba(103, 76, 244, 1);
	--navbar-bg: #ffffff;
	--light-bg: #f8f9fa;
	--white: #ffffff;
}

[data-theme="dark"] {
	--primary-color: #674CF4;
	--primary-hover: #674CF4;
	--secondary-color: #212529; /* Koyu Gri/Siyah */
	--bg-body: #121212;
	--bg-section: #1e1e1e;
	--bg-card: #252525;
	--text-main: #f1f1f1;
	--text-muted: #b0b3b8;
	--border-color: #333333;
	--shadow-color: rgba(103, 76, 244, 1);
	--navbar-bg: #1a1a1a;
	--light-bg: #f8f9fa;
	--white: #ffffff;
}


body {
	font-family: 'Inter', sans-serif;
	color: var(--secondary-color);
	background-color: var(--white);
	overflow-x: hidden;
}

/* --- TİPOGRAFİ & BAŞLIKLAR --- */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--primary-color);
	border-radius: 2px;
}

/* --- NAVBAR --- */
.navbar {
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	padding-top: 1rem;
	padding-bottom: 1rem;
	background-color: var(--white);
}

.navbar-brand {
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--primary-color) !important;
}

.nav-link {
	font-weight: 500;
	color: var(--secondary-color);
	margin-right: 15px;
	transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
	color: var(--primary-color);
}

.btn-whatsapp {
	background-color: var(--primary-color);
	color: white;
	border-radius: 50px;
	padding: 8px 20px;
	font-weight: 600;
	transition: all 0.3s;
}

.btn-whatsapp:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px var(--primary-color);
}

/* --- HERO SECTION --- */
.hero-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
	min-height: 600px;
	display: flex;
	align-items: center;
}

.hero-title {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero-title span {
	color: var(--primary-color);
}

.btn-primary-custom {
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: white;
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s;
}

.btn-primary-custom:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.btn-outline-custom {
	border: 2px solid var(--secondary-color);
	color: var(--secondary-color);
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s;
	background: transparent;
}

.btn-outline-custom:hover {
	background-color: var(--secondary-color);
	color: white;
}

/* --- KATEGORİLER --- */
.category-card {
	text-align: center;
	padding: 30px 20px;
	border-radius: 12px;
	background: white;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	border: 1px solid #eee;
	cursor: pointer;
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	border-color: var(--primary-color);
}

.cat-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

/* --- ÜRÜN KARTLARI --- */
.product-card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	height: 100%;
	overflow: hidden;
	background: white;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img-wrapper {
	position: relative;
	overflow: hidden;
	height: 220px;
	background-color: #fff;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-img-wrapper img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.5s;
}

.product-card:hover .product-img-wrapper img {
	transform: scale(1.05);
}

.badge-sale {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: var(--primary-color);
	color: white;
	padding: 5px 10px;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 600;
}

.product-body {
	padding: 20px;
}

.price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-color);
}

.product-specs {
	font-size: 0.85rem;
	color: var(--text-muted);
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.product-specs li {
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.product-specs li i {
	margin-right: 8px;
	color: var(--primary-color);
}

/* --- HİZMETLER --- */
.service-box {
	padding: 40px 30px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	text-align: center;
	height: 100%;
	border-bottom: 4px solid transparent;
	transition: all 0.3s;
}

.service-box:hover {
	border-bottom-color: var(--primary-color);
	transform: translateY(-5px);
}

.service-icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	border-radius: 50%;
	background-color: rgba(211, 47, 47, 0.1);
	color: var(--primary-color);
	font-size: 2rem;
	margin: 0 auto 20px;
}

/* --- HAKKIMIZDA --- */
.feature-list .feature-item {
	display: flex;
	align-items: start;
	margin-bottom: 20px;
}

.feature-icon {
	min-width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-right: 15px;
}

/* --- İLETİŞİM & FOOTER --- */
.contact-info i {
	color: var(--primary-color);
	font-size: 1.2rem;
	margin-right: 10px;
}

footer {
	background-color: #1a1a1a;
	color: #aaa;
	padding: 60px 0 20px;
}

footer h5 {
	color: white;
	margin-bottom: 20px;
}

footer ul li {
	margin-bottom: 10px;
}

footer a {
	color: #aaa;
	text-decoration: none;
	transition: color 0.3s;
}

footer a:hover {
	color: var(--primary-color);
}

.social-icons a {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #333;
	color: white;
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s;
}

.social-icons a:hover {
	background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	.section-title {
		margin-bottom: 2rem;
	}
}

/* --- BREADCRUMB STİLLERİ --- */
.breadcrumb-section {
	background-color: var(--bg-section);
	border-bottom: 1px solid var(--border-color);
	padding: 12px 0;
}

.breadcrumb {
	margin-bottom: 0;
	font-size: 0.9rem;
	font-weight: 500;
}

.breadcrumb-item a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.3s;
	display: inline-flex;
	align-items: center;
}

.breadcrumb-item a:hover {
	color: var(--primary-color);
}

.breadcrumb-item.active {
	color: var(--text-main);
	font-weight: 600;
}

/* Standart '/' yerine İkon (Chevron) Kullanımı */
.breadcrumb-item + .breadcrumb-item::before {
	content: "\F285"; /* Bootstrap Icons: chevron-right */
	font-family: "bootstrap-icons";
	font-size: 0.75rem;
	color: var(--text-muted);
	vertical-align: 1px;
	opacity: 0.7;
	padding: 0 8px; /* Aralık */
}


/* --- SIKÇA SORULAN SORULAR (FAQ) --- */
.accordion-item {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	margin-bottom: 10px;
	border-radius: 8px !important;
	overflow: hidden;
}

.accordion-button {
	background-color: var(--bg-card);
	color: var(--text-main);
	font-weight: 600;
	box-shadow: none !important; /* Mavi outline'ı kaldır */
}

.accordion-button:not(.collapsed) {
	background-color: rgba(211, 47, 47, 0.05); /* Kırmızının çok açık tonu */
	color: var(--primary-color);
}

.accordion-body {
	color: var(--text-muted);
}

/* Dark Modda ok işareti görünürlüğü için filtre */
[data-theme="dark"] .accordion-button::after {
	filter: invert(1);
}
[data-theme="dark"] .accordion-button:not(.collapsed)::after {
	filter: invert(1) sepia(1) saturate(5) hue-rotate(-50deg); /* Kırmızımsı ok */
}

/* --- 404 ÖZEL STİLLERİ --- */
.error-container {
	flex: 1; /* Footer'ı aşağı itmek için */
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
	text-align: center;
}

.error-code {
	font-size: 8rem;
	font-weight: 900;
	line-height: 1;
	color: var(--text-main);
	position: relative;
	display: inline-block;
}

/* Glitch (Bozulma) Efekti */
.error-code::before, .error-code::after {
	content: '404';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: var(--bg-body);
}
.error-code::before {
	color: var(--primary-color);
	animation: glitch-1 2s infinite linear alternate-reverse;
	clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
	transform: translate(-2px, -2px);
	z-index: -1;
	opacity: 0.7;
}
.error-code::after {
	color: #2196F3; /* Mavi (Sistem hatası rengi) */
	animation: glitch-2 2s infinite linear alternate-reverse;
	clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0 100%);
	transform: translate(2px, 2px);
	z-index: -2;
	opacity: 0.7;
}

@keyframes glitch-1 {
	0% { clip-path: inset(20% 0 80% 0); }
	20% { clip-path: inset(60% 0 10% 0); }
	40% { clip-path: inset(40% 0 50% 0); }
	60% { clip-path: inset(80% 0 5% 0); }
	80% { clip-path: inset(10% 0 70% 0); }
	100% { clip-path: inset(30% 0 20% 0); }
}
@keyframes glitch-2 {
	0% { clip-path: inset(10% 0 60% 0); }
	20% { clip-path: inset(30% 0 20% 0); }
	40% { clip-path: inset(70% 0 10% 0); }
	60% { clip-path: inset(20% 0 50% 0); }
	80% { clip-path: inset(60% 0 20% 0); }
	100% { clip-path: inset(5% 0 80% 0); }
}

.error-icon {
	font-size: 4rem;
	color: var(--text-muted);
	margin-bottom: 20px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0px); }
}

/* --- SAYFALAMA (PAGINATION) --- */
.pagination {
	justify-content: center;
	margin-top: 3rem;
	gap: 8px; /* Butonlar arası boşluk */
}

.page-link {
	color: var(--text-main);
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 8px !important; /* Köşeleri yuvarlat */
	padding: 10px 18px;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yumuşak yaylanma efekti */
	box-shadow: 0 2px 5px var(--shadow-color);
}

.page-link:hover {
	background-color: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 8px 15px rgba(211, 47, 47, 0.25);
	z-index: 2;
}

.page-link:focus {
	box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.25);
	background-color: var(--bg-card);
	color: var(--primary-color);
}

.page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
	box-shadow: 0 8px 15px rgba(211, 47, 47, 0.3);
	transform: scale(1.05);
}

.page-item.disabled .page-link {
	background-color: var(--bg-body);
	color: var(--text-muted);
	border-color: var(--border-color);
	opacity: 0.6;
	cursor: not-allowed;
	transform: none !important;
	box-shadow: none !important;
}


/* --- ÜRÜN DETAY GALERİSİ --- */
.main-image-container {
	background-color: #fff; /* Resimler her zaman beyaz zeminde */
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 400px;
	position: relative;
	overflow: hidden;
}

.main-image-container img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.main-image-container:hover img {
	transform: scale(1.1); /* Zoom efekti */
}

.thumbnail-container {
	display: flex;
	gap: 10px;
	overflow-x: auto;
}

.thumbnail {
	width: 80px;
	height: 80px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	cursor: pointer;
	padding: 5px;
	background: #fff;
	opacity: 0.7;
	transition: all 0.3s;
}

.thumbnail:hover, .thumbnail.active {
	border-color: var(--primary-color);
	opacity: 1;
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* --- ÜRÜN BİLGİLERİ (SAĞ TARAF) --- */
.product-title { font-size: 2rem; margin-bottom: 10px; }
.product-rating { color: #ffc107; font-size: 1rem; margin-bottom: 15px; }
.review-count { color: var(--text-muted); font-size: 0.9rem; margin-left: 5px; }

.product-price {
	font-size: 2.5rem;
	color: var(--primary-color);
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 15px;
}

.old-price {
	font-size: 1.2rem;
	color: var(--text-muted);
	text-decoration: line-through;
	font-weight: 400;
}

.stock-status {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	background-color: rgba(25, 135, 84, 0.1);
	color: #198754;
	margin-bottom: 20px;
}

.stock-status-out {
	display: inline-block;
	padding: 5px 12px;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	background-color: rgba(227, 47, 14, 0.1);
	color: #E32F0E;
	margin-bottom: 20px;
}

.feature-list-check {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}
.feature-list-check li {
	margin-bottom: 8px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
}
.feature-list-check li i {
	color: var(--primary-color);
	margin-right: 10px;
	font-size: 1.1rem;
}

/* Miktar ve Butonlar */
.quantity-control {
	display: flex;
	align-items: center;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	width: fit-content;
	overflow: hidden;
}
.qty-btn {
	background: var(--bg-section);
	border: none;
	width: 40px;
	height: 40px;
	font-size: 1.2rem;
	color: var(--text-main);
	cursor: pointer;
	transition: background 0.2s;
}
.qty-btn:hover { background: var(--border-color); }
.qty-input {
	width: 50px;
	height: 40px;
	border: none;
	text-align: center;
	background: var(--bg-card);
	color: var(--text-main);
	font-weight: 600;
	outline: none;
}

.btn-add-cart {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
	flex-grow: 1;
}
.btn-add-cart:hover {
	background-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.btn-whatsapp-buy {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s;
}
.btn-whatsapp-buy:hover { background-color: var(--primary-color); color: white; }

/* --- SEKMELER (TABS) --- */
.nav-tabs { border-bottom: 1px solid var(--border-color); }
.	 .nav-link {
	color: var(--text-muted);
	border: none;
	border-bottom: 3px solid transparent;
	font-weight: 600;
	padding: 15px 25px;
}
.nav-tabs .nav-link:hover { color: var(--primary-color); border-color: transparent; }
.nav-tabs .nav-link.active {
	color: var(--primary-color);
	background: transparent;
	border-bottom-color: var(--primary-color);
}
.tab-content {
	background-color: var(--bg-card);
	padding: 30px;
	border: 1px solid var(--border-color);
	border-top: none;
	border-radius: 0 0 12px 12px;
}

/* --- SİPARİŞ SORGULAMA FORMU --- */
.tracking-hero {
	background-color: var(--bg-section);
	padding: 60px 0;
	border-bottom: 1px solid var(--border-color);
}
.search-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 10px 30px var(--shadow-color);
}

/* --- SİPARİŞ DETAY ALANI --- */
#orderResult { display: none; /* Başlangıçta gizli */ }

/* Timeline (Sipariş Durumu) */
.steps {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 40px 0;
	padding: 0;
	list-style: none;
}
.step-item {
	position: relative;
	flex: 1;
	text-align: center;
}
.step-item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 15px;
	left: 50%;
	width: 100%;
	height: 3px;
	background: var(--border-color);
	z-index: 1;
}
.step-item.active:not(:last-child)::after {
	background: var(--primary-color);
}
.step-circle {
	width: 35px;
	height: 35px;
	background: var(--bg-card);
	border: 3px solid var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	position: relative;
	z-index: 2;
	color: var(--text-muted);
	font-weight: bold;
}
.step-item.active .step-circle {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: white;
}
.step-text { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.step-item.active .step-text { color: var(--text-main); }

/* Ürün Listesi Tablosu */
.order-table th { background-color: var(--bg-section); color: var(--text-main); border-color: var(--border-color); }
.order-table td { vertical-align: middle; color: var(--text-main); border-color: var(--border-color); background-color: var(--bg-card); }
.order-item-img { width: 60px; height: 60px; object-fit: contain; border: 1px solid var(--border-color); border-radius: 8px; padding: 5px; background: #fff; }

/* Özet Kartı */
.summary-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 25px;
	position: sticky;
	top: 100px;
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-muted); }
.summary-row.total { color: var(--primary-color); font-size: 1.2rem; font-weight: 700; border-top: 1px solid var(--border-color); padding-top: 15px; margin-top: 15px; }

/* Ödeme Yöntemi Seçimi (Radio Cards) */
.payment-option-label {
	display: block;
	cursor: pointer;
	position: relative;
}
.payment-option-input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.payment-card {
	border: 2px solid var(--border-color);
	border-radius: 10px;
	padding: 15px;
	display: flex;
	align-items: center;
	transition: all 0.3s;
	background-color: var(--bg-card);
}
.payment-option-input:checked + .payment-card {
	border-color: var(--primary-color);
	background-color: rgba(211, 47, 47, 0.05);
}
.payment-icon { font-size: 1.5rem; color: var(--text-muted); margin-right: 15px; transition: color 0.3s; }
.payment-option-input:checked + .payment-card .payment-icon { color: var(--primary-color); }

.btn-primary-custom {
	background-color: var(--primary-color); border: 2px solid var(--primary-color); color: white;
	padding: 12px 30px; font-weight: 600; border-radius: 8px; transition: all 0.3s; width: 100%;
}
.btn-primary-custom:hover { background-color: var(--primary-hover); border-color: var(--primary-hover); }

/* Input Dark Mode Fix */
[data-theme="dark"] .form-control { background-color: #333; border-color: #444; color: #fff; }
[data-theme="dark"] .form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 0.25rem rgba(211, 47, 47, 0.25); }
