* {
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--white);
}

/* ======================
   HEADER STILLER
====================== */
.top-header {
	background-color: var(--primary-color);
	color: white;
	padding: 8px 0;
	font-size: 14px;
}

.top-header .social-icons a {
	color: white;
	margin-left: 10px;
	text-decoration: none;
	font-size: 16px;
}

.main-header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	padding: 15px 0;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
}

.search-bar {
	position: relative;
}

.search-bar input {
	border: 2px solid var(--primary-color);
	border-radius: 25px;
	padding: 12px 50px 12px 20px;
	width: 100%;
}

.search-bar button {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--primary-color);
	border: none;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	color: white;
}

.header-icons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-icons a {
	color: var(--text-color);
	font-size: 18px;
	text-decoration: none;
	position: relative;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	padding: 8px;
}

.header-icons .dropdown {
	flex: 1;
	display: flex;
	justify-content: center;
}

.header-icons .dropdown > a {
	margin-left: 0;
}

.btn-menu-toggle {
	background: none;
	border: none;
	color: var(--text-color);
	font-size: 20px;
	padding: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	transition: all 0.3s ease;
}

.btn-menu-toggle:hover {
	color: var(--primary-color);
}

@media (max-width: 991px) {
	.header-icons {
		gap: 5px;
		justify-content: flex-start;
	}
	
	.header-icons .btn-menu-toggle {
		margin-right: 5px;
		flex: 0 0 auto;
	}
	
	.header-icons a,
	.header-icons .dropdown {
		flex: 1;
	}
	
	.header-icons a {
		font-size: 16px;
		padding: 6px;
		min-width: 35px;
	}
}

.cart-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ======================
   NAVIGASYON STILLER
====================== */
.main-nav {
	background-color: var(--primary-color);
	padding: 0;
}

.navbar-nav .nav-link {
	color: white !important;
	font-weight: 500;
	padding: 15px 20px;
	transition: background-color 0.3s;
}

.navbar-nav .nav-link:hover {
	background-color: var(--primary-dark);
}

/* ======================
   BUTON STILLER
====================== */
.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	font-weight: 500;
	padding: 10px 25px;
	border-radius: 5px;
	transition: all 0.3s;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-1px);
}

.btn-outline-primary {
	color: var(--primary-color);
	border-color: var(--primary-color);
	font-weight: 500;
	padding: 10px 25px;
	border-radius: 5px;
	transition: all 0.3s;
}

.btn-outline-primary:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-add-cart {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
	cursor: pointer;
}

.btn-add-cart:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
}

/* ======================
   KART STILLER
====================== */
.product-card {
	border: 1px solid var(--border-color);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	height: 100%;
	background: white;
	position: relative;
}

.product-card:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	transform: translateY(-3px);
}

.product-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.product-card .card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-color);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-price {
	font-size: 18px;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.old-price {
	text-decoration: line-through;
	color: var(--text-muted);
	font-size: 14px;
	margin-right: 10px;
}

/* ======================
   SLİDER STILLER
====================== */
.hero-slider {
	height: 500px;
	overflow: hidden;
	border-radius: 15px;
	margin-bottom: 50px;
}

.hero-slider .carousel-item {
	height: 500px;
}

.hero-slider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-caption {
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
	padding: 30px;
	bottom: 50px;
	left: 50px;
	right: auto;
	text-align: left;
}

.carousel-caption h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 15px;
}

/* ======================
   VİTRİN STILLER
====================== */
.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	color: var(--text-color);
	margin-bottom: 15px;
}

.section-title .title-line {
	width: 80px;
	height: 3px;
	background: var(--primary-color);
	margin: 0 auto;
}

.category-item {
	text-align: center;
	padding: 30px 20px;
	border: 2px solid var(--border-color);
	border-radius: 15px;
	transition: all 0.3s;
	background: white;
	text-decoration: none;
	color: var(--text-color);
	display: block;
	height: 100%;
}

.category-item:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	text-decoration: none;
	color: var(--text-color);
}

.category-icon {
	font-size: 48px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.category-name {
	font-size: 18px;
	font-weight: 600;
}

/* ======================
   MARKA STILLER
====================== */
.brand-item {
	padding: 20px;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s;
	background: white;
}

.brand-item:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}

.brand-item img {
	max-height: 80px;
	width: auto;
	max-width: 100%;
}

/* ======================
   BANNER STILLER
====================== */
.banner-item {
	transition: all 0.3s ease;
	height: 100%;
	display: block;
}

.banner-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.banner-item img {
	transition: transform 0.3s ease;
	object-fit: cover;
	height: 300px;
}

.banner-item:hover img {
	transform: scale(1.05);
}

.banner-content {
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
	transition: all 0.3s ease;
}

.banner-item:hover .banner-content {
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.banner-content h4 {
	font-size: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
	font-size: 0.95rem;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
	.banner-item img {
		height: 200px;
	}
	
	.banner-content {
		padding: 15px !important;
	}
	
	.banner-content h4 {
		font-size: 1.2rem;
	}
	
	.banner-content p {
		font-size: 0.85rem;
	}
}

/* ======================
   FİLTRE STILLER
====================== */
.filter-sidebar {
	background: var(--light-gray);
	padding: 30px;
	border-radius: 10px;
	height: fit-content;
}

.filter-group {
	margin-bottom: 30px;
}

.filter-group h5 {
	color: var(--text-color);
	font-weight: 600;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-color);
}

.filter-checkbox {
	margin-bottom: 10px;
}

.filter-checkbox input[type="checkbox"] {
	margin-right: 10px;
}

.filter-clear {
	padding: 10px 20px;
}

.price-range-inputs {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.price-range-inputs input {
	flex: 1;
	padding: 8px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
}

/* ======================
   ÜRÜN LİSTESİ STILLER
====================== */
.products-header {
	display: flex;
	justify-content: between;
	align-items: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 15px;
}

.products-count {
	color: var(--text-muted);
}

.sort-dropdown select {
	padding: 8px 15px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	background: white;
}

/* ======================
   FOOTER STILLER
====================== */
.footer {
	background-color: #2c3e50;
	color: white;
	padding: 50px 0 20px;
	margin-top: 80px;
}

.footer h5 {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 20px;
}

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

.footer ul li {
	margin-bottom: 10px;
}

.footer ul li a {
	color: #bdc3c7;
	text-decoration: none;
	transition: color 0.3s;
}

.footer ul li a:hover {
	color: var(--primary-color);
}

.newsletter-form {
	display: flex;
	margin-top: 15px;
}

.newsletter-form input {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 5px 0 0 5px;
}

.newsletter-form button {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	margin-top: 30px;
	padding-top: 20px;
	text-align: center;
	color: #bdc3c7;
}

/* ======================
   ÜRÜN DETAY STILLER
====================== */
.product-gallery {
	position: relative;
}

.main-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 15px;
}

.thumbnail-images {
	display: flex;
	gap: 10px;
	overflow-x: auto;
}

.thumbnail-images img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 5px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.3s;
}

.thumbnail-images img.active,
.thumbnail-images img:hover {
	border-color: var(--primary-color);
}

.product-info {
	padding-left: 30px;
}

.product-info h1 {
	font-size: 28px;
	font-weight: bold;
	color: var(--text-color);
	margin-bottom: 15px;
}

.product-meta {
	margin-bottom: 20px;
}

.product-meta span {
	margin-right: 20px;
	color: var(--text-muted);
	font-size: 14px;
}

.product-price-section {
	margin: 30px 0;
}

.current-price {
	font-size: 32px;
	font-weight: bold;
	color: var(--primary-color);
}

.quantity-selector {
	display: flex;
	align-items: center;
	gap: 15px;
}

.quantity-input {
	display: flex;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	overflow: hidden;
}

.quantity-input button {
	background: var(--light-gray);
	border: none;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.quantity-input input {
	width: 60px;
	text-align: center;
	border: none;
	height: 40px;
}

.product-tabs {
	margin-top: 50px;
}

.nav-tabs .nav-link {
	color: var(--text-color);
	border: none;
	border-bottom: 2px solid transparent;
	font-weight: 500;
}

.nav-tabs .nav-link.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
	background: none;
}

/* ======================
   SEPET STILLER
====================== */
.cart-table {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cart-item {
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 20px;
}

.cart-item:last-child {
	border-bottom: none;
}

.cart-item img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 5px;
}

.cart-summary {
	background: var(--light-gray);
	padding: 30px;
	border-radius: 10px;
	height: fit-content;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
	border-bottom: 2px solid var(--primary-color);
	font-weight: bold;
	font-size: 18px;
}

/* ======================
   FORM STILLER
====================== */
.form-group {
	margin-bottom: 20px;
}

.form-control {
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	font-size: 14px;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(86, 171, 70, 0.25);
}

.form-label {
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 8px;
}

/* ======================
   RESPONSIVE STILLER
====================== */
@media (max-width: 768px) {
	.product-info {
		padding-left: 0;
		margin-top: 30px;
	}

	.carousel-caption {
		left: 20px;
		bottom: 20px;
		padding: 20px;
	}

	.carousel-caption h2 {
		font-size: 24px;
	}

	.filter-sidebar {
		margin-bottom: 30px;
	}

	.cart-item {
		flex-wrap: wrap;
		text-align: center;
	}

	.products-header {
		text-align: center;
	}

	.quantity-selector {
		align-items: flex-start !important;
	}

	.quantity-selector .d-flex.justify-content-between {
		justify-content: flex-start !important;
		flex-direction: column !important;
		gap: 0.5rem;
	}

	.quantity-input {
		justify-content: flex-start !important;
		margin: 0 !important;
	}
}

/* ======================
   YARDIMCI SINIFLAR
====================== */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}

.loading {
	pointer-events: none;
	opacity: 0.6;
}

/* Badge ve Etiket Stiller */
.badge-discount {
	background: var(--danger-color);
	color: white;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 12px;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
}

.badge-new {
	background: var(--success-color);
	color: white;
	padding: 5px 10px;
	border-radius: 15px;
	font-size: 12px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

/* Yıldız Rating */
.rating {
	color: #ffc107;
	font-size: 14px;
	margin-bottom: 10px;
}

.rating .empty-star {
	color: #e9ecef;
}

/* Breadcrumb */
.breadcrumb {
	background: none;
	padding: 0;
	margin-bottom: 30px;
}

.breadcrumb-item + .breadcrumb-item::before {
	content: "›";
	color: var(--text-muted);
}

.breadcrumb-item.active {
	color: var(--primary-color);
}

/* ======================
   PROGRESS STEPS STILLER (ALIŞVERİŞ SÜRECİ)
====================== */
.shopping-progress {
	background-color: #f8f9fa;
	padding: 30px 0;
}

.progress-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	background: white;
	padding: 10px;
	border-radius: 50px;
	min-width: 120px;
}

.step-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 8px;
	transition: all 0.3s ease;
	background-color: #e9ecef;
	color: #6c757d;
	border: 3px solid #e9ecef;
}

.step.completed .step-icon {
	background-color: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.step.active .step-icon {
	background-color: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(86, 171, 70, 0.2);
}

.step-text {
	text-align: center;
}

.step-title {
	font-weight: 600;
	font-size: 14px;
	color: #333;
	display: block;
	margin-bottom: 2px;
}

.step.completed .step-title {
	color: var(--primary-color);
}

.step.active .step-title {
	color: var(--primary-color);
}

.step-desc {
	font-size: 11px;
	color: #6c757d;
	line-height: 1.2;
}

.step.completed .step-desc {
	color: var(--primary-color);
}

.step.active .step-desc {
	color: var(--primary-color);
}

.step-line {
	flex: 1;
	height: 3px;
	background-color: #e9ecef;
	position: relative;
	margin: 0 -10px;
	z-index: 1;
}

.step-line.completed {
	background-color: var(--primary-color);
}

/* Responsive Progress Steps */
@media (max-width: 768px) {
	.progress-steps {
		flex-direction: column;
		gap: 20px;
	}
	
	.step {
		min-width: auto;
		width: 200px;
	}
	
	.step-line {
		display: none;
	}
	
	.step::after {
		content: '';
		position: absolute;
		bottom: -30px;
		left: 50%;
		transform: translateX(-50%);
		width: 3px;
		height: 20px;
		background-color: #e9ecef;
	}
	
	.step.completed::after {
		background-color: var(--primary-color);
	}
	
	.step:last-child::after {
		display: none;
	}
}

/* ======================
   HESABIM SAYFALARI STILLER
====================== */
.account-sidebar {
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	overflow: hidden;
}

.user-info-card {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: white;
	padding: 30px 20px;
	text-align: center;
	position: relative;
}

.user-avatar {
	position: relative;
	display: inline-block;
}

.user-avatar img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border: 4px solid rgba(255,255,255,0.2);
}

.avatar-edit {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 30px;
	height: 30px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	cursor: pointer;
	transition: all 0.3s;
}

.avatar-edit:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
}

.user-name {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.user-email {
	font-size: 14px;
	opacity: 0.8;
	margin-bottom: 15px;
}

.user-status .badge {
	font-size: 12px;
	padding: 5px 12px;
}

.account-menu {
	padding: 0;
}

.menu-title {
	background: var(--light-gray);
	padding: 15px 20px;
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
	border-bottom: 1px solid var(--border-color);
}

.account-menu ul {
	margin: 0;
	padding: 0;
}

.account-menu li {
	border-bottom: 1px solid var(--border-color);
}

.account-menu li:last-child {
	border-bottom: none;
}

.account-menu a {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s;
	position: relative;
}

.account-menu a:hover {
	background: var(--light-gray);
	color: var(--primary-color);
	padding-left: 25px;
}

.account-menu a.active {
	background: var(--primary-color);
	color: white;
	font-weight: 600;
}

.account-menu a.active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--primary-dark);
}

.account-menu .badge {
	font-size: 10px;
	padding: 2px 6px;
}

/* Profil Sayfası Özel Stiller */
.page-header {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-actions {
	display: flex;
	gap: 10px;
}

.stat-card {
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	background: white;
	border: 2px solid var(--border-color);
	transition: all 0.3s;
}

.stat-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
	font-size: 24px;
	margin-bottom: 10px;
}

.stat-number {
	font-size: 28px;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 500;
}

.security-item {
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
}

.security-item:last-child {
	border-bottom: none;
}

.security-item h6 {
	margin-bottom: 5px;
	font-weight: 600;
}

.password-strength {
	margin-top: 8px;
}

.password-strength .progress {
	background-color: #e9ecef;
}

.password-rules ul {
	margin-bottom: 0;
	padding-left: 20px;
}

.password-rules li {
	margin-bottom: 5px;
	font-size: 12px;
}

/* Form Stiller - Hesabım Sayfaları */
.form-check-label {
	cursor: pointer;
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check-input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

.input-group .btn {
	border-color: var(--border-color);
}

.card-header {
	background-color: var(--light-gray) !important;
	border-bottom: 1px solid var(--border-color);
}

.card {
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Alert Stiller */
.alert {
	border-radius: 10px;
	border: none;
	padding: 15px 20px;
}

.alert-success {
	background-color: rgba(86, 171, 70, 0.1);
	color: var(--primary-dark);
}

/* Badge Stiller */
.badge {
	font-size: 11px;
	padding: 4px 8px;
}

.badge.bg-primary {
	background-color: var(--primary-color) !important;
}

/* Responsive - Hesabım Sayfaları */
@media (max-width: 768px) {
	.account-sidebar {
		margin-bottom: 30px;
	}
	
	.user-info-card {
		padding: 20px 15px;
	}
	
	.user-avatar img {
		width: 80px;
		height: 80px;
	}
	
	.page-header {
		padding: 20px;
		text-align: center;
	}
	
	.page-actions {
		justify-content: center;
		margin-top: 15px;
	}
	
	.stat-card {
		margin-bottom: 15px;
	}
	
	.account-menu a {
		padding: 12px 15px;
	}
}

/* ======================
   FAVORİLER SAYFASI STILLER
====================== */
.favorites-toolbar {
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 30px;
}

.filter-tabs .nav-pills .nav-link {
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--border-color);
	margin-right: 10px;
	padding: 8px 16px;
	border-radius: 20px;
	transition: all 0.3s;
}

.filter-tabs .nav-pills .nav-link:hover {
	background: var(--light-gray);
	color: var(--primary-color);
}

.filter-tabs .nav-pills .nav-link.active {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.view-toggle .btn {
	border-color: var(--border-color);
	color: var(--text-color);
}

.view-toggle .btn.active {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

/* Favoriler Grid Layout */
.favorites-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
}

/* Favoriler List Layout */
.favorites-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.favorites-list .favorite-item {
	width: 100%;
}

.favorites-list .product-card {
	flex-direction: row;
	align-items: center;
}

.favorites-list .card-img-top {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 10px;
	margin-right: 20px;
}

.favorites-list .card-body {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.favorites-list .product-info {
	flex: 1;
}

.favorites-list .product-actions {
	margin-left: 20px;
}

/* Favori Ürün Kartları */
.favorite-item {
	transition: all 0.3s ease;
}

.favorite-item:hover {
	transform: translateY(-5px);
}

.favorite-actions {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

.favorite-actions .btn {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.9);
	border: none;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	transition: all 0.3s;
}

.favorite-actions .btn:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.favorite-actions .btn-danger {
	color: #dc3545;
}

.favorite-actions .btn-danger:hover {
	background: #dc3545;
	color: white;
}

.product-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
}

.product-badges .badge {
	font-size: 11px;
	padding: 5px 10px;
	border-radius: 15px;
	margin-bottom: 5px;
	display: block;
}

.favorite-date {
	border-top: 1px solid var(--border-color);
	padding-top: 10px;
}

.product-rating .stars {
	display: inline-flex;
	gap: 2px;
}

.price-section {
	display: flex;
	align-items: center;
	gap: 10px;
}

.current-price {
	font-size: 18px;
	font-weight: bold;
	color: var(--primary-color);
}

.old-price {
	font-size: 14px;
	color: var(--text-muted);
}

/* Boş Favoriler */
.empty-favorites {
	background: white;
	border-radius: 15px;
	padding: 60px 40px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-icon {
	opacity: 0.3;
}

/* Toplu İşlemler */
.bulk-actions .card {
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bulk-actions .btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Önerilen Ürünler */
.recommended-products {
	background: var(--light-gray);
	border-radius: 15px;
	padding: 40px;
}

.recommended-products .product-card {
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.recommended-products .product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Checkbox Stiller */
.favorite-checkbox {
	width: 18px;
	height: 18px;
	border: 2px solid var(--primary-color);
	border-radius: 4px;
}

.favorite-checkbox:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.favorite-checkbox:focus {
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

/* Form Select Stiller */
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

/* Responsive - Favoriler */
@media (max-width: 768px) {
	.favorites-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 20px;
	}
	
	.favorites-toolbar {
		padding: 15px;
	}
	
	.filter-tabs .nav-pills {
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.filter-tabs .nav-pills .nav-link {
		margin-right: 0;
		margin-bottom: 10px;
		font-size: 14px;
		padding: 6px 12px;
	}
	
	.favorites-list .product-card {
		flex-direction: column;
		text-align: center;
	}
	
	.favorites-list .card-img-top {
		width: 100%;
		height: 200px;
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	.favorites-list .card-body {
		flex-direction: column;
	}
	
	.favorites-list .product-actions {
		margin-left: 0;
		margin-top: 15px;
		width: 100%;
	}
	
	.bulk-actions .row {
		text-align: center;
	}
	
	.bulk-actions .col-md-4 {
		margin-top: 15px;
	}
	
	.recommended-products {
		padding: 30px 20px;
	}
}

@media (max-width: 576px) {
	.favorites-grid {
		grid-template-columns: 1fr;
	}
	
	.page-actions {
		margin-top: 15px;
		text-align: center;
	}
	
	.view-toggle {
		margin-top: 15px;
	}
}

/* ======================
   ADRESLER SAYFASI STILLER
====================== */
.address-type-tabs {
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 30px;
}

.address-type-tabs .nav-pills .nav-link {
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--border-color);
	margin-right: 10px;
	padding: 12px 20px;
	border-radius: 25px;
	transition: all 0.3s;
	font-weight: 500;
}

.address-type-tabs .nav-pills .nav-link:hover {
	background: var(--light-gray);
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.address-type-tabs .nav-pills .nav-link.active {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

/* Adresler Grid */
.addresses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 25px;
}

/* Adres Kartları */
.address-card {
	transition: all 0.3s ease;
}

.address-card:hover {
	transform: translateY(-5px);
}

.address-card .card {
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.address-card .card:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.address-card .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 20px;
}

.address-title h6 {
	font-weight: 600;
	color: var(--text-color);
	margin: 0;
}

.address-badges .badge {
	font-size: 11px;
	padding: 4px 8px;
	border-radius: 12px;
}

.address-card .card-body {
	padding: 20px;
}

.address-info p {
	line-height: 1.6;
	margin-bottom: 15px;
}

.contact-info p {
	margin-bottom: 8px;
	font-size: 14px;
}

.contact-info i {
	width: 16px;
	text-align: center;
}

.address-card .card-footer {
	background: transparent;
	border-top: 1px solid var(--border-color);
	padding: 15px 20px;
}

.address-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.address-actions .btn {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 5px;
	transition: all 0.3s;
}

.address-actions .btn:hover {
	transform: translateY(-1px);
}

/* Boş Adresler */
.empty-addresses {
	background: white;
	border-radius: 15px;
	padding: 60px 40px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-icon {
	opacity: 0.3;
}

/* Modal Stiller */
.modal-content {
	border-radius: 15px;
	border: none;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	border-radius: 15px 15px 0 0;
	padding: 20px 25px;
}

.modal-title {
	font-weight: 600;
	color: var(--text-color);
}

.modal-body {
	padding: 25px;
}

.modal-footer {
	background: var(--light-gray);
	border-top: 1px solid var(--border-color);
	border-radius: 0 0 15px 15px;
	padding: 20px 25px;
}

/* Form Stiller - Adresler */
.form-label {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.form-check-input:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

.form-check-label {
	cursor: pointer;
	font-weight: 500;
}

/* Responsive - Adresler */
@media (max-width: 768px) {
	.addresses-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.address-type-tabs {
		padding: 15px;
	}
	
	.address-type-tabs .nav-pills {
		flex-direction: column;
		gap: 10px;
	}
	
	.address-type-tabs .nav-pills .nav-link {
		margin-right: 0;
		text-align: center;
	}
	
	.address-actions {
		justify-content: center;
	}
	
	.address-actions .btn {
		flex: 1;
		min-width: 80px;
	}
	
	.modal-dialog {
		margin: 10px;
	}
	
	.modal-body {
		padding: 20px;
	}
	
	.modal-header,
	.modal-footer {
		padding: 15px 20px;
	}
}

@media (max-width: 576px) {
	.page-actions {
		margin-top: 15px;
		text-align: center;
	}
	
	.address-actions {
		flex-direction: column;
	}
	
	.address-actions .btn {
		width: 100%;
		margin-bottom: 5px;
	}
	
	.empty-addresses {
		padding: 40px 20px;
	}
}

/* ======================
   SİPARİŞLER SAYFASI STILLER
====================== */
.orders-filter {
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.orders-filter .card {
	border: none;
	box-shadow: none;
}

.filter-tabs .nav-pills .nav-link {
	color: var(--text-color);
	background: transparent;
	border: 1px solid var(--border-color);
	margin-right: 10px;
	padding: 8px 16px;
	border-radius: 20px;
	transition: all 0.3s;
	font-size: 14px;
}

.filter-tabs .nav-pills .nav-link:hover {
	background: var(--light-gray);
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.filter-tabs .nav-pills .nav-link.active {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

/* Sipariş Kartları */
.order-card {
	transition: all 0.3s ease;
}

.order-card:hover {
	transform: translateY(-2px);
}

.order-card .card {
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.order-card .card:hover {
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.order-card .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 20px;
}

.order-info h6 {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 5px;
}

.order-info small {
	color: var(--text-muted);
}

.order-status .badge {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 15px;
}

.order-amount {
	font-size: 16px;
}

.order-card .card-body {
	padding: 20px;
}

.order-products {
	margin-bottom: 0;
}

.order-product {
	padding: 10px 0;
	border-bottom: 1px solid var(--border-color);
}

.order-product:last-child {
	border-bottom: none;
}

.order-product img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
}

.product-info h6 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}

.product-info small {
	color: var(--text-muted);
	font-size: 12px;
}

.product-price {
	font-weight: 600;
	color: var(--primary-color);
	font-size: 14px;
}

.order-details {
	background: var(--light-gray);
	padding: 15px;
	border-radius: 8px;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.detail-item:last-child {
	margin-bottom: 0;
}

.detail-item small {
	color: var(--text-muted);
	font-size: 12px;
}

.detail-item strong {
	font-size: 13px;
	font-weight: 600;
}

.order-card .card-footer {
	background: transparent;
	border-top: 1px solid var(--border-color);
	padding: 15px 20px;
}

.order-actions {
	display: block;
	gap: 8px;
	flex-wrap: wrap;
}

.order-actions .btn {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 5px;
	transition: all 0.3s;
}

.order-actions .btn:hover {
	transform: translateY(-1px);
}

/* Sipariş Durumu Badge'leri */
.badge.bg-success {
	background-color: var(--success-color) !important;
}

.badge.bg-info {
	background-color: #17a2b8 !important;
}

.badge.bg-warning {
	background-color: var(--warning-color) !important;
	color: #000 !important;
}

.badge.bg-danger {
	background-color: var(--danger-color) !important;
}

/* Boş Siparişler */
.empty-orders {
	background: white;
	border-radius: 15px;
	padding: 60px 40px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-icon {
	opacity: 0.3;
}

/* Form Stiller - Siparişler */
.form-control:focus,
.form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

.input-group .btn {
	border-color: var(--border-color);
}

/* Responsive - Siparişler */
@media (max-width: 768px) {
	.orders-filter {
		padding: 15px;
	}
	
	.filter-tabs .nav-pills {
		flex-wrap: wrap;
		gap: 10px;
		margin-bottom: 15px;
	}
	
	.filter-tabs .nav-pills .nav-link {
		margin-right: 0;
		margin-bottom: 5px;
		font-size: 12px;
		padding: 6px 12px;
	}
	
	.order-card .card-header {
		padding: 15px;
	}
	
	.order-card .card-body {
		padding: 15px;
	}
	
	.order-card .card-footer {
		padding: 15px;
	}
	
	.order-actions {
		justify-content: center;
	}
	
	.order-actions .btn {
		flex: 1;
		min-width: 80px;
		margin-bottom: 5px;
	}
	
	.order-details {
		margin-top: 15px;
	}
	
	.detail-item {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	
	.detail-item strong {
		margin-top: 2px;
	}
}

@media (max-width: 576px) {
	.page-actions {
		margin-top: 15px;
		text-align: center;
	}
	
	.order-actions {
		flex-direction: column;
	}
	
	.order-actions .btn {
		width: 100%;
		margin-bottom: 8px;
	}
	
	.empty-orders {
		padding: 40px 20px;
	}
	
	.order-product {
		flex-direction: column;
		text-align: center;
	}
	
	.order-product img {
		margin-bottom: 10px;
		margin-right: 0;
	}
}

/* ======================
   SİPARİŞ DETAY SAYFASI STILLER
====================== */
.order-header {
	background: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 30px;
}

.order-status-badge .badge {
	font-size: 16px;
	padding: 12px 24px;
	border-radius: 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.order-total {
	font-size: 24px;
	font-weight: 700;
}

/* Sipariş Takip Zaman Çizelgesi */
.tracking-timeline {
	position: relative;
	padding-left: 30px;
}

.tracking-timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 5px;
	bottom: 0;
	width: 2px;
	background: var(--border-color);
}

.timeline-item {
	position: relative;
	padding-left: 30px;
}

.timeline-item.completed::before {
	content: '';
    position: absolute;
    left: -22px;
    top: 5px;
    bottom: 0;
    width: 2px;
    background: var(--success-color);
}

.timeline-icon {
	position: absolute;
	left: -37px;
	top: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light-gray);
	color: var(--text-muted);
	border: 3px solid white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	z-index: 2;
}

.timeline-item.completed .timeline-icon {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.timeline-content {
	background: var(--light-gray);
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid var(--primary-color);
}

.timeline-title {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
}

.timeline-desc {
	color: var(--text-muted);
	margin-bottom: 8px;
	font-size: 14px;
}

.timeline-date {
	color: var(--text-muted);
	font-size: 12px;
	font-weight: 500;
}

/* Sipariş Ürünleri */
.order-product-item {
	padding: 20px 0;
	border-bottom: 1px solid var(--border-color);
}

.order-product-item:last-child {
	border-bottom: none;
}

.product-details .product-name {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
}

.product-details .product-desc {
	font-size: 14px;
	margin-bottom: 10px;
}

.product-specs .badge {
	font-size: 11px;
	padding: 4px 8px;
	margin-right: 5px;
}

.product-quantity {
	text-align: center;
}

.quantity-label {
	display: block;
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 5px;
}

.quantity-value {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.product-price .price-current {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.product-price .price-unit {
	font-size: 12px;
}

.product-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.product-actions .btn {
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 5px;
}

/* Sipariş Özeti */
.summary-item {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
	border-bottom: none;
}

.summary-total {
	padding: 15px 0 0;
	font-size: 18px;
}

/* Ödeme Bilgileri */
.payment-method {
	text-align: center;
}

.payment-details {
	margin-top: 20px;
}

.detail-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.detail-row .label {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 500;
}

.detail-row .value {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
}

/* Teslimat Bilgileri */
.delivery-address address {
	font-style: normal;
	line-height: 1.6;
	color: var(--text-color);
}

.contact-info {
	margin-top: 15px;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	font-size: 14px;
	color: var(--text-color);
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-item i {
	color: var(--primary-color);
	width: 16px;
}

/* Sipariş İşlemleri */
.order-actions .btn {
	margin-bottom: 10px;
	border-radius: 8px;
	padding: 12px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.order-actions .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sipariş Notları */
.order-note {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	border-left: 4px solid var(--info-color);
}

/* Toast Mesajları */
.toast-container {
	z-index: 9999;
}

.toast {
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Responsive - Sipariş Detay */
@media (max-width: 768px) {
	.order-header {
		padding: 20px;
		text-align: center;
	}
	
	.order-header .col-md-6:first-child {
		margin-bottom: 20px;
	}
	
	.tracking-timeline {
		padding-left: 20px;
	}
	
	.tracking-timeline::before {
		left: 10px;
	}
	
	.timeline-icon {
		left: -25px;
		width: 20px;
		height: 20px;
		font-size: 10px;
	}
	
	.timeline-content {
		padding: 15px;
	}
	
	.order-product-item .row {
		text-align: center;
	}
	
	.order-product-item .col-md-2 {
		margin-bottom: 15px;
	}
	
	.product-actions {
		justify-content: center;
	}
	
	.product-actions .btn {
		flex: 1;
		min-width: 100px;
		margin-bottom: 5px;
	}
	
	.detail-row {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	
	.detail-row .value {
		margin-top: 5px;
	}
}

@media (max-width: 576px) {
	.order-header {
		padding: 15px;
	}
	
	.order-status-badge .badge {
		font-size: 14px;
		padding: 8px 16px;
	}
	
	.order-total {
		font-size: 20px;
	}
	
	.timeline-content {
		padding: 12px;
	}
	
	.timeline-title {
		font-size: 14px;
	}
	
	.timeline-desc {
		font-size: 13px;
	}
	
	.product-actions {
		flex-direction: column;
	}
	
	.product-actions .btn {
		width: 100%;
		margin-bottom: 8px;
	}
	
	.order-actions .btn {
		padding: 10px 15px;
		font-size: 14px;
	}
}

/* ======================
   SİPARİŞ ONAY SAYFASI STILLER
====================== */
.order-success-message {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 20px;
	padding: 60px 40px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon {
	margin-bottom: 30px;
}

.success-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--success-color) 0%, #28a745 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
	animation: pulse 2s infinite;
}

.success-circle i {
	font-size: 3rem;
	color: white;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
	}
	70% {
		box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
	}
}

.success-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 20px;
}

.success-message {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 30px;
}

.order-number-badge .badge {
	font-size: 1.2rem;
	padding: 15px 30px;
	border-radius: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	animation: bounce 1s ease-in-out;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Sipariş Özet Kartı */
.order-summary-card .card {
	border: none;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	border-radius: 15px;
}

.order-summary-card .card-header {
	background: linear-gradient(135deg, var(--primary-color) 0%, #4a9d3a 100%);
	color: white;
	border-radius: 15px 15px 0 0;
	padding: 20px;
}

.order-summary-card .card-body {
	padding: 30px;
}

.order-product-item {
	padding: 20px 0;
	border-bottom: 1px solid var(--border-color);
}

.order-product-item:last-child {
	border-bottom: none;
}

.product-details .product-name {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
}

.product-details .product-desc {
	font-size: 14px;
	margin-bottom: 10px;
}

.product-specs .badge {
	font-size: 11px;
	padding: 4px 8px;
	margin-right: 5px;
}

.quantity-value {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
}

.price-current {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.price-summary {
	background: var(--light-gray);
	padding: 20px;
	border-radius: 10px;
	margin-top: 20px;
}

.summary-row {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

.summary-row:last-child {
	border-bottom: none;
}

.summary-total {
	padding: 15px 0 0;
	font-size: 20px;
	border-top: 2px solid var(--primary-color);
	margin-top: 15px;
}

/* Sipariş Detay Kartları */
.order-details-cards .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.order-details-cards .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.order-details-cards .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 20px;
	border-radius: 12px 12px 0 0;
}

.payment-info .payment-method {
	text-align: center;
	padding: 15px;
	background: var(--light-gray);
	border-radius: 8px;
	margin-bottom: 15px;
}

.payment-details .detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

.payment-details .detail-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.delivery-address address {
	font-style: normal;
	line-height: 1.6;
	color: var(--text-color);
	margin-bottom: 15px;
}

.delivery-details .detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

.delivery-details .detail-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

/* Sipariş Durumu */
.order-status-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.status-info {
	padding: 20px 0;
}

.status-title {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
}

.status-desc {
	font-size: 14px;
	line-height: 1.5;
}

/* Sonraki Adımlar */
.next-steps-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.steps-list {
	position: relative;
	padding-left: 30px;
}

.steps-list::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--border-color);
}

.step-item {
	position: relative;
	margin-bottom: 25px;
	padding-left: 30px;
}

.step-item:last-child {
	margin-bottom: 0;
}

.step-icon {
	position: absolute;
	left: -37px;
	top: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--light-gray);
	color: var(--text-muted);
	border: 3px solid white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	z-index: 2;
}

.step-item.completed .step-icon {
	background: var(--success-color);
	color: white;
	border-color: var(--success-color);
}

.step-item.active .step-icon {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
	animation: pulse 2s infinite;
}

.step-title {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 5px;
}

.step-desc {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 0;
}

/* Hızlı İşlemler */
.quick-actions-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.quick-actions-card .btn {
	margin-bottom: 10px;
	border-radius: 8px;
	padding: 12px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.quick-actions-card .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Müşteri Hizmetleri */
.customer-service-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.service-item {
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
	border-bottom: none;
}

.service-item h6 {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 5px;
}

.service-item p {
	font-size: 14px;
	margin-bottom: 0;
}

/* Devam Et Butonları */
.continue-actions .btn {
	margin-bottom: 10px;
	border-radius: 8px;
	padding: 15px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.continue-actions .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* E-posta Bildirimi */
.email-notification .card {
	border: none;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	border-radius: 15px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.notification-icon {
	opacity: 0.8;
}

.notification-actions .btn {
	border-radius: 25px;
	padding: 10px 25px;
	font-weight: 500;
}

/* Responsive - Sipariş Onay */
@media (max-width: 768px) {
	.order-success-message {
		padding: 40px 20px;
		text-align: center;
	}
	
	.success-title {
		font-size: 2rem;
	}
	
	.success-message {
		font-size: 1rem;
	}
	
	.order-number-badge .badge {
		font-size: 1rem;
		padding: 12px 20px;
	}
	
	.order-summary-card .card-body {
		padding: 20px;
	}
	
	.order-product-item .row {
		text-align: center;
	}
	
	.order-product-item .col-md-2 {
		margin-bottom: 15px;
	}
	
	.steps-list {
		padding-left: 20px;
	}
	
	.steps-list::before {
		left: 10px;
	}
	
	.step-icon {
		left: -25px;
		width: 20px;
		height: 20px;
		font-size: 10px;
	}
	
	.detail-item {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	
	.detail-item span {
		margin-top: 5px;
	}
}

@media (max-width: 576px) {
	.order-success-message {
		padding: 30px 15px;
	}
	
	.success-circle {
		width: 80px;
		height: 80px;
	}
	
	.success-circle i {
		font-size: 2rem;
	}
	
	.success-title {
		font-size: 1.5rem;
	}
	
	.order-details-cards .col-md-6 {
		margin-bottom: 20px;
	}
	
	.quick-actions-card .btn {
		padding: 10px 15px;
		font-size: 14px;
	}
	
	.continue-actions .btn {
		padding: 12px 15px;
		font-size: 14px;
	}
}

/* ======================
   İLETİŞİM SAYFASI STILLER
====================== */
.page-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 20px;
	padding: 60px 40px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-header h1 {
	color: var(--text-color);
	margin-bottom: 20px;
}

.page-header p {
	font-size: 1.2rem;
	line-height: 1.6;
}

/* İletişim Formu */
.contact-form-card .card {
	border: none;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	border-radius: 15px;
}

.contact-form-card .card-header {
	background: linear-gradient(135deg, var(--primary-color) 0%, #4a9d3a 100%);
	color: white;
	border-radius: 15px 15px 0 0;
	padding: 20px;
}

.contact-form-card .card-body {
	padding: 30px;
}

.contact-form .form-label {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
	border: 2px solid var(--border-color);
	border-radius: 8px;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

.contact-form .form-control.is-valid {
	border-color: var(--success-color);
}

.contact-form .form-control.is-invalid {
	border-color: var(--danger-color);
}

.contact-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-form .form-text {
	text-align: right;
	font-size: 12px;
	color: var(--text-muted);
}

.contact-form .form-check {
	margin-bottom: 15px;
}

.contact-form .form-check-input {
	margin-top: 0.25em;
}

.contact-form .form-check-label {
	font-size: 14px;
	line-height: 1.5;
}

.contact-form .btn {
	border-radius: 8px;
	padding: 15px 30px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.contact-form .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* SSS Önizleme */
.faq-preview .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.faq-preview .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 20px;
	border-radius: 12px 12px 0 0;
}

.faq-preview .accordion-item {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 10px;
}

.faq-preview .accordion-button {
	background: white;
	border: none;
	padding: 15px 20px;
	font-weight: 500;
	color: var(--text-color);
}

.faq-preview .accordion-button:not(.collapsed) {
	background: var(--primary-color);
	color: white;
}

.faq-preview .accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(86, 171, 70, 0.25);
}

.faq-preview .accordion-body {
	padding: 20px;
	background: var(--light-gray);
}

/* İletişim Bilgileri */
.contact-info-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.contact-info-card .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 20px;
	border-radius: 12px 12px 0 0;
}

.contact-info-list {
	padding: 0;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.contact-details h6 {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 8px;
}

.contact-details p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.5;
}

.contact-details a {
	color: var(--primary-color);
	text-decoration: none;
}

.contact-details a:hover {
	text-decoration: underline;
}

/* Sosyal Medya */
.social-media-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.social-media-card .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 20px;
	border-radius: 12px 12px 0 0;
}

.social-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.social-link {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border-radius: 8px;
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: all 0.3s ease;
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	color: white;
	text-decoration: none;
}

.social-link i {
	margin-right: 10px;
	font-size: 16px;
}

.social-link.facebook {
	background: #1877f2;
}

.social-link.instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter {
	background: #1da1f2;
}

.social-link.youtube {
	background: #ff0000;
}

.social-link.linkedin {
	background: #0077b5;
}

.social-link.whatsapp {
	background: #25d366;
}

/* Harita */
.map-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
	overflow: hidden;
}

.map-card .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 20px;
}

.map-container {
	position: relative;
	overflow: hidden;
}

.map-container iframe {
	border: none;
	width: 100%;
	height: 250px;
}

.map-actions {
	background: var(--light-gray);
	border-top: 1px solid var(--border-color);
}

/* Hızlı İletişim */
.quick-contact-card .card {
	border: none;
	box-shadow: 0 3px 15px rgba(0,0,0,0.1);
	border-radius: 12px;
}

.quick-contact-card .card-header {
	background: var(--light-gray);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 20px;
	border-radius: 12px 12px 0 0;
}

.quick-contact-actions .btn {
	border-radius: 8px;
	padding: 12px 20px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.quick-contact-actions .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive - İletişim */
@media (max-width: 768px) {
	.page-header {
		padding: 40px 20px;
		text-align: center;
	}
	
	.page-header h1 {
		font-size: 2rem;
	}
	
	.page-header p {
		font-size: 1rem;
	}
	
	.contact-form-card .card-body {
		padding: 20px;
	}
	
	.contact-item {
		flex-direction: column;
		text-align: center;
	}
	
	.contact-icon {
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	.social-links {
		grid-template-columns: 1fr;
	}
	
	.map-container iframe {
		height: 200px;
	}
}

@media (max-width: 576px) {
	.page-header {
		padding: 30px 15px;
	}
	
	.page-header h1 {
		font-size: 1.5rem;
	}
	
	.contact-form-card .card-body {
		padding: 15px;
	}
	
	.contact-form .btn {
		padding: 12px 20px;
		font-size: 14px;
	}
	
	.contact-icon {
		width: 40px;
		height: 40px;
	}
	
	.social-link {
		padding: 10px 12px;
		font-size: 14px;
	}
	
	.quick-contact-actions .btn {
		padding: 10px 15px;
		font-size: 14px;
	}
}

/* ======================
   THEME1 ÖZEL UTILITY CLASS'LAR
====================== */

/* Hesabım Dropdown */
.account-dropdown {
    display: inline-block;
}

.header-icon-link {
    color: var(--text-color);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.header-icon-link:hover {
    color: var(--primary-color);
}

.account-dropdown .dropdown-menu {
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 8px;
}

.account-dropdown .dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
	margin-left: 0 !important;
}

.account-dropdown .dropdown-item i {
    width: 18px;
    color: var(--primary-color);
}

.account-dropdown .dropdown-item:hover {
    background-color: rgba(86, 171, 70, 0.1);
    color: var(--primary-color);
}

.account-dropdown .dropdown-divider {
    margin: 8px 0;
}

/* Main.js ile uyumlu class'lar */
.add-to-cart-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.add-to-wishlist {
	width: 40px;
	height: 40px;
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.add-to-wishlist:hover {
    color: var(--danger-color);
    background-color: rgba(220, 53, 69, 0.1);
}

.add-to-wishlist.active {
    color: var(--danger-color);
}

.buy-now-btn {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Product Overlay for Quick View */
.product-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.overlay-actions .btn {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.overlay-actions .btn:hover {
    background: var(--primary-color, #56ab46);
    color: white;
    transform: scale(1.1);
}

.quick-view {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.quick-view:hover {
    color: var(--primary-dark);
    background-color: rgba(86, 171, 70, 0.1);
}

.add-to-compare {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 50%;
}

.add-to-compare:hover {
    color: var(--warning-color);
    background-color: rgba(255, 193, 7, 0.1);
}

/* Toast bildirimleri */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Back to top butonu */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Main header sticky */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.main-header.sticky .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Search results */
.search-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f8f9fa;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    color: #333;
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.search-placeholder-image {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.search-item-content {
    flex: 1;
}

.search-item-title {
    font-weight: 500;
    margin-bottom: 4px;
}

.search-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.search-item-old-price {
    color: #6c757d;
    text-decoration: line-through;
    margin-right: 8px;
}

.search-item-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

.search-results-group {
    padding: 8px 0;
}

.search-results-group h6 {
    padding: 8px 16px;
    margin: 0;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.search-footer {
    padding: 12px 16px;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #6c757d;
}

/* Cookie notice */
#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 15px 0;
    z-index: 9998;
}

/* Filter toggle */
.filter-toggle {
    background: none;
    border: 1px solid #dee2e6;
    padding: 8px 16px;
    border-radius: 4px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.filter-toggle:hover {
    background: #f8f9fa;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filters-wrapper {
    display: none;
    transition: all 0.3s ease;
}

.filters-wrapper.show {
    display: block;
}

/* Search toggle */
.search-toggle {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    color: var(--primary-color);
    background: rgba(86, 171, 70, 0.1);
}

.search-form-wrapper {
    display: none;
    transition: all 0.3s ease;
}

.search-form-wrapper.active {
    display: block;
}

/* Product hover effects */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    object-fit: cover;
}

/* Category navigation hover */
.category-nav .dropdown:hover .dropdown-menu {
    display: block;
}

/* Page loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Skeleton loading */
.skeleton-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Mini Cart Theme1 Styles */
.mini-cart {
    min-width: 380px;
    max-width: 420px;
    padding: 0 !important;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	z-index: 9999 !important;
}

.mini-cart-item {
    position: relative;
}

.mini-cart-item:hover {
    background-color: #f8f9fa;
}

.mini-cart-item img {
    transition: transform 0.3s ease;
}

.mini-cart-item:hover img {
    transform: scale(1.05);
}

.mini-cart-items {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.mini-cart-items::-webkit-scrollbar {
    width: 6px;
}

.mini-cart-items::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.mini-cart-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.mini-cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.mini-cart-content a.clear-cart,
.mini-cart-content a.remove-from-cart {
	display: inherit !important;
	justify-content: end !important;
}

.remove-from-cart {
    opacity: 0.7;
}

.remove-from-cart:hover {
    opacity: 1;
}

.mini-cart .btn {
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mini-cart .btn-primary {
    margin-left: 0 !important;
	font-size: 16px !important;
}

.mini-cart .btn-outline-secondary {
	margin-left: 0 !important;
	font-size: 16px !important;
}

.mini-cart .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .search-results-container {
        max-height: 300px;
    }
    
    .toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }
    
    .mini-cart {
        min-width: 320px;
        max-width: 340px;
    }
    
    .mini-cart-items {
        max-height: 250px !important;
    }
}

@media (max-width: 480px) {
    .mini-cart {
        min-width: 300px;
        max-width: 310px;
    }
}

/* ======================
   CHECKOUT CART STİLLERİ
====================== */

/* Checkout Cart Section */
.checkout-cart-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.checkout-cart-section .section-header h4 {
    color: #333;
    display: flex;
    align-items: center;
}

/* Checkout Cart Items */
.checkout-cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.checkout-cart-item:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: #dee2e6;
}

.checkout-cart-item .item-image {
    flex-shrink: 0;
}

.checkout-cart-item .item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #dee2e6;
}

.checkout-cart-item .item-details {
    flex-grow: 1;
}

.checkout-cart-item .item-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-cart-item .item-title a {
    color: #333;
    transition: color 0.2s ease;
}

.checkout-cart-item .item-title a:hover {
    color: var(--primary-color);
}

.checkout-cart-item .item-meta {
    margin-top: 5px;
}

.checkout-cart-item .feature-tag {
    display: inline-block;
    font-size: 12px;
    color: #6c757d;
    margin-right: 10px;
    padding: 2px 0;
}

/* Quantity Selector - Checkout */
.quantity-selector-checkout label {
    font-size: 12px;
    font-weight: 600;
}

.quantity-input-checkout {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
    background: white;
}

.quantity-input-checkout button {
    background: #f8f9fa;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    color: #495057;
}

.quantity-input-checkout button:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-input-checkout input {
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    width: 50px;
    height: 32px;
    text-align: center;
    outline: none;
    font-weight: 600;
    background: white;
}

.quantity-input-checkout input::-webkit-outer-spin-button,
.quantity-input-checkout input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input-checkout input[type=number] {
    -moz-appearance: textfield;
}

/* Item Price */
.checkout-cart-item .item-price label,
.checkout-cart-item .item-total-price label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
}

.checkout-cart-item .current-price {
    font-size: 16px;
}

.checkout-cart-item .old-price {
    font-size: 13px;
}

.checkout-cart-item .total-price {
    font-size: 18px;
    color: var(--primary-color);
}

.checkout-cart-item .savings {
    font-size: 12px;
    margin-top: 2px;
}

/* Item Remove */
.checkout-cart-item .item-remove {
    flex-shrink: 0;
}

.checkout-cart-item .item-remove .btn {
    padding: 6px 10px;
    font-size: 14px;
}

/* Checkout Coupon Section */
.checkout-coupon-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.checkout-coupon-section h6 {
    color: #333;
    margin-bottom: 15px;
}

.checkout-coupon-section .input-group {
    max-width: 400px;
}

.checkout-coupon-section .btn-primary {
    white-space: nowrap;
}

/* Empty Checkout Cart */
.empty-checkout-cart {
    background: #fafafa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 50px 20px;
}

.empty-checkout-cart .empty-cart-icon {
    opacity: 0.5;
}

.empty-checkout-cart h4 {
    color: #495057;
}

.empty-checkout-cart p {
    max-width: 500px;
    margin: 0 auto 25px;
}

/* Responsive Design - Checkout Cart */
@media (max-width: 768px) {
    .checkout-cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .checkout-cart-item .item-image {
        align-self: center;
    }

    .checkout-cart-item .item-image img {
        width: 100px;
        height: 100px;
    }

    .checkout-cart-item .item-details {
        width: 100%;
    }

    .checkout-cart-item .item-actions .row {
        justify-content: center;
    }

    .checkout-cart-item .item-actions .col-md-4 {
        text-align: center !important;
    }

    .checkout-cart-item .item-remove {
        width: 100%;
    }

    .checkout-cart-item .item-remove .btn {
        width: 100%;
    }

    .checkout-coupon-section .input-group {
        max-width: 100%;
    }

    .checkout-cart-section {
        padding: 15px;
    }
}

/* ======================
   CHECKOUT ADDRESS STİLLERİ
====================== */

/* Checkout Address Section */
.checkout-address-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.checkout-address-section .section-header h4 {
    color: #333;
}

/* Address Form Card */
.address-form-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.address-form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a9039 100%);
    color: white;
    padding: 15px 20px;
}

.address-form-header h5 {
    margin: 0;
}

.address-form-body {
    padding: 25px;
}

/* Form Check Custom */
.form-check-custom {
    transition: all 0.3s ease;
}

.form-check-custom:hover {
    border-color: var(--primary-color);
    background-color: rgba(86, 171, 70, 0.05);
}

.form-check-custom .form-check-input:checked ~ .form-check-label {
    color: var(--primary-color);
}

/* Nav Address Tabs */
.nav-address-tabs {
    border-bottom: 2px solid #e9ecef;
    gap: 10px;
}

.nav-address-tabs .nav-link {
    color: #6c757d;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-address-tabs .nav-link:hover {
    color: var(--primary-color);
    background: rgba(86, 171, 70, 0.05);
    border-color: var(--primary-color);
}

.nav-address-tabs .nav-link.active {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Address Cards (Updated for Checkout) */
.addresses .address-card {
    cursor: pointer;
    position: relative;
}

.addresses .address-card .address-selector {
    position: absolute;
    top: 15px;
    left: 15px;
}

.addresses .address-card .address-selector .form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.addresses .address-card .address-content {
    padding-left: 40px;
}

.addresses .address-card .address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.addresses .address-card .address-title {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
}

.addresses .address-card .address-details {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.8;
}

.addresses .address-card.selected {
    border-color: var(--primary-color);
    background-color: rgba(86, 171, 70, 0.05);
}

.addresses .address-card .address-actions {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.addresses .address-card:hover .address-actions,
.addresses .address-card.selected .address-actions {
    opacity: 1;
}

/* Add New Address Button */
.add-new-address .btn {
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.add-new-address .btn:hover {
    border-style: solid;
    border-color: var(--primary-color);
    background-color: rgba(86, 171, 70, 0.05);
}

/* Address Form Labels */
.address-form-body .form-label {
    color: #495057;
    margin-bottom: 8px;
}

.address-form-body .form-label i {
    color: var(--primary-color);
}

.address-form-body .form-control,
.address-form-body .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
}

.address-form-body .form-control:focus,
.address-form-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(86, 171, 70, 0.25);
}

/* Alert Info */
.add-first-address-form .alert-info {
    background-color: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
    color: #084298;
}

/* Selected Address Info in Summary */
.selected-address-info .address-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #dee2e6;
}

.selected-address-info .address-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #2d3436;
}

.selected-address-info .address-info-body {
    padding-left: 26px;
}

.selected-address-info .address-info-body p {
    line-height: 1.5;
}

/* Shipping Companies Section */
.shipping-companies-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.shipping-companies-section .section-header {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.shipping-companies-section .section-header i {
    color: var(--primary-color);
    font-size: 20px;
}

.shipping-companies-section .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3436;
}

.shipping-companies-wrapper {
    display: grid;
    gap: 15px;
}

.shipping-company-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.shipping-company-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.15);
    transform: translateY(-2px);
}

.shipping-company-card.selected {
    border-color: var(--primary-color);
    background: rgba(86, 171, 70, 0.05);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.2);
}

.shipping-company-card .form-check-custom {
    margin: 0;
}

.shipping-company-card .form-check-custom .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    cursor: pointer;
    border: 2px solid #dee2e6;
    position: absolute;
    top: 20px;
    left: 20px;
}

.shipping-company-card .form-check-custom .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.shipping-company-card .form-check-label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
    cursor: pointer;
    margin: 0;
}

.shipping-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.shipping-logo {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 5px;
}

.shipping-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shipping-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shipping-name {
    font-size: 15px;
    font-weight: 600;
    color: #2d3436;
    display: block;
}

.shipping-description {
    font-size: 13px;
    color: #6c757d;
    display: block;
}

.shipping-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 15px;
}

/* Payment Page Styles */
.payment-methods-section h4 {
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    position: relative;
}

.payment-btn {
    border-radius: 12px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    background: white;
}

.payment-btn:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.15);
    transform: translateY(-2px);
}

.btn-check:checked + .payment-btn {
    background: rgba(86, 171, 70, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.2);
}

.payment-btn .card-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-forms {
    margin-top: 20px;
}

.payment-form-wrapper {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Security Info */
.security-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.security-info i {
    font-size: 2rem;
}

.security-info h6 {
    color: #2d3436;
    font-weight: 600;
}


/* Credit Card Form */
.credit-card-form .card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a8c3d 100%);
    border-radius: 12px 12px 0 0;
}

.credit-card-form .card-body {
    padding: 25px;
}

.credit-card-form .form-label {
    color: #2d3436;
    font-size: 14px;
    margin-bottom: 8px;
}

.credit-card-form .form-control,
.credit-card-form .form-select {
    border-radius: 8px;
    border: 2px solid #dee2e6;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.credit-card-form .form-control:focus,
.credit-card-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(86, 171, 70, 0.25);
}

/* Bank Transfer Info */
.bank-transfer-info .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 12px;
}

.bank-transfer-info .card-header {
    border-radius: 12px 12px 0 0;
}

.bank-accounts h6 {
    color: #2d3436;
}

.bank-account-card {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bank-account-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.15);
    transform: translateY(-2px);
}

.bank-account-card.selected {
    border-color: var(--primary-color);
    background: rgba(86, 171, 70, 0.05);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.2);
}

.bank-account-card .form-check {
    margin: 0;
}

.bank-account-card .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    cursor: pointer;
}

.bank-account-card .form-check-label {
    cursor: pointer;
    padding-left: 30px;
}

.bank-account-card .bank-name {
    color: #2d3436;
    font-size: 16px;
}

.bank-account-card .copy-iban {
    padding: 4px 8px;
    font-size: 12px;
}

.transfer-instructions {
    background: rgba(13, 110, 253, 0.1);
    border-left: 4px solid #0d6efd;
}

.transfer-instructions h6 {
    color: #0d6efd;
}

.transfer-instructions ul {
    padding-left: 20px;
}

.transfer-instructions li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Cash Payment Info */
.cash-on-delivery-info .card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 12px;
}

.cash-on-delivery-info .card-header {
    border-radius: 12px 12px 0 0;
}

.payment-type-card {
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.15);
    transform: translateY(-2px);
}

.payment-type-card.selected {
    border-color: var(--primary-color);
    background: rgba(86, 171, 70, 0.05);
    box-shadow: 0 4px 12px rgba(86, 171, 70, 0.2);
}

.payment-type-card .form-check {
    margin: 0;
}

.payment-type-card .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    cursor: pointer;
}

.payment-type-card .form-check-label {
    cursor: pointer;
    padding-left: 30px;
}

.important-notes {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

.important-notes h6 {
    color: #856404;
}

.important-notes ul {
    padding-left: 20px;
}

.important-notes li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cash-payment-options h6 {
    color: #2d3436;
}

/* Account Addresses Styles */
.account-addresses-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.page-header-modern h2 {
    color: #2d3436;
    font-size: 28px;
    font-weight: 700;
}

.page-header-modern p {
    font-size: 14px;
}

.nav-address-tabs {
    border-bottom: 2px solid #e9ecef;
    gap: 10px;
}

.nav-address-tabs .nav-link {
    border: none;
    border-radius: 10px 10px 0 0;
    color: #6c757d;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.nav-address-tabs .nav-link:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.nav-address-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
}

.nav-address-tabs .nav-link .badge {
    font-size: 11px;
    font-weight: 600;
}

/* Address Card Modern */
.address-card-modern {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.address-card-modern:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(86, 171, 70, 0.15);
    transform: translateY(-3px);
}

.address-card-header {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.address-card-header .address-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.address-card-header .badge {
    font-size: 11px;
    padding: 5px 10px;
}

.address-card-body {
    padding: 20px;
    flex: 1;
}

.address-info-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}

.address-info-item i {
    width: 20px;
    flex-shrink: 0;
}

.address-info-item strong {
    margin-right: 5px;
}

.address-card-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.address-card-footer .btn {
    font-size: 13px;
    padding: 8px 16px;
}

/* Address Empty State */
.address-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px dashed #dee2e6;
}

.empty-state-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-title {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 15px;
}

.empty-state-description {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal Styles */
.modal-header.bg-primary {
    border-radius: 0;
}

.modal-body .form-label {
    font-weight: 600;
    color: #2d3436;
    font-size: 14px;
}

.modal-body .form-control,
.modal-body .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 10px 15px;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(86, 171, 70, 0.25);
}

.modal-body .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.modal-body .form-check-label {
    cursor: pointer;
    font-weight: 500;
}

.modal-footer {
    border-top: 2px solid #e9ecef;
    padding: 20px;
}

/* Page Header */
.page-header h1 {
    color: #2d3436;
    margin-bottom: 10px;
}

.page-header i.fa-lock {
    font-size: 1.8rem;
}

/* Responsive Design - Checkout Address */
@media (max-width: 768px) {
    .checkout-address-section {
        padding: 15px;
    }

    .address-form-body {
        padding: 15px;
    }

    .addresses .address-card {
        margin-bottom: 15px;
    }

    .addresses .address-card .address-content {
        padding-left: 0;
        padding-top: 35px;
    }

    .addresses .address-card .address-selector {
        top: 10px;
        left: 10px;
    }

    .nav-address-tabs .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    /* Shipping Companies Responsive */
    .shipping-companies-section {
        padding: 15px;
    }
    
    .shipping-company-card {
        padding: 15px;
    }
    
    .shipping-company-card .form-check-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .shipping-info {
        width: 100%;
    }
    
    .shipping-price {
        margin-left: 0;
        align-self: flex-end;
    }
    
    /* Payment Page Responsive */
    .payment-btn {
        padding: 20px 15px !important;
    }
    
    .payment-btn .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .payment-btn .card-icons {
        align-self: flex-start;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header i.fa-lock {
        font-size: 1.3rem;
    }
    
    /* Account Addresses Responsive */
    .account-addresses-container {
        padding: 20px 15px;
    }
    
    .page-header-modern .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .page-header-modern h2 {
        font-size: 22px;
    }
    
    .page-header-modern .btn {
        width: 100%;
    }
    
    .nav-address-tabs {
        flex-direction: column;
        gap: 5px;
        border-bottom: none;
    }
    
    .nav-address-tabs .nav-link {
        border-radius: 8px;
        text-align: center;
    }
    
    .address-card-modern {
        margin-bottom: 20px;
    }
    
    .address-card-footer {
        flex-direction: column;
    }
    
    .address-card-footer .btn,
    .address-card-footer form {
        width: 100%;
    }
    
    .empty-state-icon {
        font-size: 60px;
    }
    
    .empty-state-title {
        font-size: 18px;
    }
}

.carousel-inner {
	overflow: unset;
}

.carousel-control-prev {
    width: 5%;
	left: -50px;
}
.carousel-control-prev-icon {
	background-color: #000;
}

.carousel-control-next {
    width: 5%;
	right: -50px;
}
.carousel-control-next-icon {
	background-color: #000;
}

/* Renk Class'ları */
.t1-text-primary { color: var(--primary-color) !important; }
.t1-text-secondary { color: var(--secondary-color) !important; }
.t1-text-success { color: var(--success-color) !important; }
.t1-text-danger { color: var(--danger-color) !important; }
.t1-text-warning { color: var(--warning-color) !important; }
.t1-text-white { color: var(--white) !important; }
.t1-text-muted { color: var(--text-muted) !important; }
.t1-text-color { color: var(--text-color) !important; }
.t1-text-body { color: var(--body-color) !important; }

/* Arka Plan Class'ları */
.t1-bg-primary { background-color: var(--primary-color) !important; }
.t1-bg-secondary { background-color: var(--secondary-color) !important; }
.t1-bg-success { background-color: var(--success-color) !important; }
.t1-bg-danger { background-color: var(--danger-color) !important; }
.t1-bg-warning { background-color: var(--warning-color) !important; }
.t1-bg-white { background-color: var(--white) !important; }
.t1-bg-light-gray { background-color: var(--light-gray) !important; }
.t1-bg-body { background-color: var(--body-bg) !important; }
.t1-bg-header { background-color: var(--header-bg-color) !important; }
.t1-bg-footer { background-color: var(--footer-bg-color) !important; }

/* Border Class'ları */
.t1-border-primary { border-color: var(--primary-color) !important; }
.t1-border-secondary { border-color: var(--secondary-color) !important; }
.t1-border-success { border-color: var(--success-color) !important; }
.t1-border-danger { border-color: var(--danger-color) !important; }
.t1-border-warning { border-color: var(--warning-color) !important; }
.t1-border-color { border-color: var(--border-color) !important; }

/* ======================
   PRODUCT LIST ITEM MODERN - Custom Styles (Sadece .product-list-item-modern için, diğer yerlerle karışmaz)
====================== */
.product-list-item-modern {
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-list-item-modern:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
	border-color: var(--primary-color, #56ab46);
}

/* Resim Container */
.product-list-item-modern .product-image-container {
	height: 100%;
	min-height: 200px;
	overflow: hidden;
	background: #f8f9fa;
	position: relative;
}

.product-list-item-modern .product-image-container a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.product-list-item-modern .product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}

.product-list-item-modern:hover .product-image {
	transform: scale(1.05);
}

/* Ürün Etiketleri */
.product-list-item-modern .product-badges {
	z-index: 3;
	top: 10px;
	left: 10px;
}

.product-list-item-modern .product-badges .badge {
	font-size: 11px;
	padding: 5px 10px;
	border-radius: 6px;
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover Overlay */
.product-list-item-modern .product-overlay {
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 2;
	backdrop-filter: blur(2px);
}

.product-list-item-modern:hover .product-overlay {
	opacity: 1;
}

.product-list-item-modern .overlay-actions {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

.product-list-item-modern .overlay-actions .btn {
	width: 40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.product-list-item-modern .overlay-actions .btn:hover {
	background: var(--primary-color, #56ab46);
	color: white;
	transform: scale(1.1);
}

/* Ürün Bilgileri */
.product-list-item-modern .product-info {
	padding: 1.5rem !important;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.product-list-item-modern .product-brand {
	margin-bottom: 0.5rem;
}

.product-list-item-modern .brand-link {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-list-item-modern .brand-link:hover {
	color: var(--primary-color, #56ab46) !important;
}

/* Ürün Başlığı */
.product-list-item-modern .product-title {
	margin-bottom: 1rem !important;
	line-height: 1.4;
}

.product-list-item-modern .product-title h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.product-list-item-modern .title-link {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-list-item-modern .title-link:hover {
	color: var(--primary-color, #56ab46) !important;
}

/* Değerlendirme */
.product-list-item-modern .product-rating {
	margin-bottom: 1rem;
}

.product-list-item-modern .rating-stars {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
}

.product-list-item-modern .rating-stars i {
	font-size: 14px;
}

.product-list-item-modern .rating-text {
	font-size: 12px;
	margin-left: 8px;
}

/* Açıklama */
.product-list-item-modern .product-description {
	margin-bottom: 1rem;
	flex-grow: 1;
}

.product-list-item-modern .description-text {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Footer (Fiyat ve Aksiyonlar) */
.product-list-item-modern .product-footer {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #f0f0f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Fiyat */
.product-list-item-modern .product-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.product-list-item-modern .old-price {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
}

.product-list-item-modern .current-price {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color, #56ab46);
	margin: 0;
}

.product-list-item-modern .vat-text {
	font-size: 12px;
	color: #999;
}

/* Aksiyonlar */
.product-list-item-modern .product-actions {
	flex-shrink: 0;
}

.product-list-item-modern .btn-add-cart {
	background: var(--primary-color, #56ab46);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.product-list-item-modern .btn-add-cart:hover {
	background: #4a9a3a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(86, 171, 70, 0.3);
	color: white;
}

.product-list-item-modern .btn-add-cart:active {
	transform: translateY(0);
}

.product-list-item-modern .btn-outline-secondary {
	padding: 10px 20px;
	border-radius: 6px;
	font-size: 14px;
	white-space: nowrap;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
	.product-list-item-modern {
		margin-bottom: 1.5rem;
	}

	.product-list-item-modern .product-image-container {
		min-height: 180px;
	}

	.product-list-item-modern .product-info {
		padding: 1rem !important;
	}

	.product-list-item-modern .product-title h3 {
		font-size: 16px;
	}

	.product-list-item-modern .current-price {
		font-size: 20px;
	}

	.product-list-item-modern .product-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.product-list-item-modern .product-actions {
		width: 100%;
	}

	.product-list-item-modern .btn-add-cart,
	.product-list-item-modern .btn-outline-secondary {
		width: 100%;
		justify-content: center;
	}

	.product-list-item-modern .overlay-actions .btn {
		width: 35px;
		height: 35px;
	}
}