/* ============================================================
   MODERN E-COMMERCE DESIGN SYSTEM
   Sepet sayfasından türetilmiş tutarlı tasarım sistemi
============================================================ */

/* ========================================
   CSS VARIABLES - Design Tokens
======================================== */
:root {
	/* Colors - Primary */
	--primary: #FF6B35;
	--primary-dark: #E85A28;
	--primary-light: #FFE5DC;
	--primary-gradient: linear-gradient(135deg, #FF6B35 0%, #E85A28 100%);
	
	/* Colors - Semantic */
	--secondary: #004E89;
	--success: #06D6A0;
	--success-dark: #05B589;
	--danger: #EF476F;
	--warning: #FFD23F;
	--info: #3B82F6;
	
	/* Grays */
	--gray-50: #F9FAFB;
	--gray-100: #F3F4F6;
	--gray-200: #E5E7EB;
	--gray-300: #D1D5DB;
	--gray-400: #9CA3AF;
	--gray-500: #6B7280;
	--gray-600: #4B5563;
	--gray-700: #374151;
	--gray-800: #1F2937;
	--gray-900: #111827;
	
	/* Glassmorphism */
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-border: rgba(255, 255, 255, 0.18);
	--glass-blur: blur(12px);
	
	/* Spacing */
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-2xl: 3rem;
	--spacing-3xl: 4rem;
	--spacing-4xl: 6rem;
	
	/* Border Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-2xl: 32px;
	--radius-3xl: 48px;
	--radius-full: 9999px;
	
	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
	--shadow-glow: 0 0 40px rgba(255, 107, 53, 0.15);
	--shadow-card-hover: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 107, 53, 0.1);
	
	/* Transitions */
	--transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	
	/* Typography */
	--font-size-xs: 0.75rem;
	--font-size-sm: 0.875rem;
	--font-size-base: 1rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.25rem;
	--font-size-2xl: 1.5rem;
	--font-size-3xl: 2rem;
	--font-size-4xl: 2.5rem;
	--font-size-5xl: 3rem;
	--font-size-6xl: 3.75rem;
	
	--font-weight-normal: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--font-weight-extrabold: 800;
	
	--line-height-tight: 1.25;
	--line-height-normal: 1.5;
	--line-height-relaxed: 1.75;
}

/* ========================================
   GLOBAL STYLES
======================================== */
body {
	background: linear-gradient(135deg, #FAF9F6 0%, #F5F3EE 100%);
	min-height: 100vh;
	color: var(--gray-800);
	font-size: var(--font-size-base);
	line-height: var(--line-height-normal);
}

/* ========================================
   CONTAINER & LAYOUT
======================================== */
.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: var(--spacing-xl) var(--spacing-lg);
}

.container-narrow {
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--spacing-xl) var(--spacing-lg);
}

.container-wide {
	max-width: 1600px;
	margin: 0 auto;
	padding: var(--spacing-xl) var(--spacing-lg);
}

/* ========================================
   TYPOGRAPHY
======================================== */
.page-title {
	font-size: var(--font-size-4xl);
	font-weight: var(--font-weight-bold);
	color: var(--gray-900);
	margin-bottom: var(--spacing-lg);
	letter-spacing: -0.02em;
}

.section-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	line-height: 1.2;
}

.section-title i {
	font-size: 1.5rem;
	color: #3b82f6;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 1.375rem;
		margin-bottom: 1rem;
		gap: 0.5rem;
	}
	
	.section-title i {
		font-size: 1.25rem;
	}
}

.card-title {
	font-size: var(--font-size-2xl);
	font-weight: var(--font-weight-bold);
	color: var(--gray-900);
	margin-bottom: var(--spacing-md);
}

.subtitle {
	font-size: var(--font-size-lg);
	color: var(--gray-600);
	line-height: var(--line-height-relaxed);
}

/* ========================================
   CARDS
======================================== */
.card {
	background: white;
	border-radius: var(--radius-lg);
	padding: var(--spacing-xl);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gray-100);
	transition: all var(--transition-base);
}

.card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--gray-200);
}

.card-compact {
	padding: var(--spacing-lg);
}

.card-elevated {
	box-shadow: var(--shadow-md);
}

.card-elevated:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-md);
	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-base);
	cursor: pointer;
	transition: all var(--transition-base);
	border: none;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

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

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

/* Button Variants */
.btn-primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
	background: var(--gray-100);
	color: var(--gray-700);
}

.btn-secondary:hover {
	background: var(--gray-200);
	transform: translateY(-1px);
}

.btn-success {
	background: linear-gradient(135deg, var(--success) 0%, #05B589 100%);
	color: white;
	box-shadow: 0 4px 16px rgba(6, 214, 160, 0.3);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

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

.btn-ghost {
	background: transparent;
	color: var(--gray-700);
}

.btn-ghost:hover {
	background: var(--gray-100);
}

/* Button Sizes */
.btn-sm {
	padding: 0.5rem 1rem;
	font-size: var(--font-size-sm);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: var(--font-size-lg);
}

.btn-block {
	width: 100%;
}

/* ========================================
   BADGES
======================================== */
.badge {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-xs);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-semibold);
	white-space: nowrap;
}

.badge-success {
	background: #D1FAE5;
	color: #065F46;
}

.badge-danger {
	background: #FEE2E2;
	color: #991B1B;
}

.badge-warning {
	background: #FEF3C7;
	color: #92400E;
}

.badge-info {
	background: #DBEAFE;
	color: #1E40AF;
}

.badge-primary {
	background: var(--primary-light);
	color: var(--primary-dark);
}

/* ========================================
   ALERTS & BANNERS
======================================== */
.alert {
	padding: var(--spacing-lg);
	border-radius: var(--radius-md);
	display: flex;
	align-items: flex-start;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-lg);
}

.alert-icon {
	font-size: var(--font-size-xl);
	flex-shrink: 0;
}

.alert-success {
	background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
	color: #065F46;
	border-left: 4px solid var(--success);
}

.alert-danger {
	background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
	color: #991B1B;
	border-left: 4px solid var(--danger);
}

.alert-warning {
	background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
	color: #92400E;
	border-left: 4px solid var(--warning);
}

.alert-info {
	background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
	color: #1E40AF;
	border-left: 4px solid var(--info);
}

/* ========================================
   SUCCESS BANNER (500TL+ style)
======================================== */
.success-banner {
	background: linear-gradient(135deg, var(--success) 0%, #05B589 100%);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1.5rem;
	margin-bottom: var(--spacing-lg);
	color: white;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(6, 214, 160, 0.2);
}

.success-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
}

.success-banner-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.success-icon {
	font-size: var(--font-size-3xl);
	flex-shrink: 0;
	animation: celebrate 0.6s ease-out;
}

@keyframes celebrate {
	0% {
		transform: scale(0.5) rotate(-10deg);
		opacity: 0;
	}
	50% {
		transform: scale(1.2) rotate(5deg);
	}
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}

/* ========================================
   PROGRESS BAR
======================================== */
.progress-wrapper {
	height: 12px;
	background: var(--gray-100);
	border-radius: var(--radius-full);
	overflow: hidden;
	position: relative;
}

.progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--primary) 0%, var(--warning) 100%);
	border-radius: var(--radius-full);
	transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.progress-bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

/* ========================================
   FORM ELEMENTS
======================================== */
.form-group {
	margin-bottom: var(--spacing-lg);
}

.form-label {
	display: block;
	font-weight: var(--font-weight-semibold);
	color: var(--gray-700);
	margin-bottom: var(--spacing-sm);
	font-size: var(--font-size-sm);
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	font-size: var(--font-size-base);
	transition: all var(--transition-base);
	background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
	color: var(--gray-400);
}

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

.form-error {
	color: var(--danger);
	font-size: var(--font-size-sm);
	margin-top: var(--spacing-xs);
}

.form-help {
	color: var(--gray-500);
	font-size: var(--font-size-sm);
	margin-top: var(--spacing-xs);
}

/* ========================================
   TRUST BADGES
======================================== */
.trust-badges {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	padding-top: var(--spacing-lg);
	border-top: 1px solid var(--gray-100);
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	color: var(--gray-600);
}

.trust-badge i {
	font-size: var(--font-size-base);
	width: 20px;
	text-align: center;
}

.trust-badge.success i { color: var(--success); }
.trust-badge.info i { color: var(--info); }
.trust-badge.primary i { color: var(--primary); }

/* ========================================
   QUANTITY CONTROLS
======================================== */
.quantity-controls {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	background: var(--gray-50);
	padding: 0.375rem;
	border-radius: var(--radius-md);
}

.qty-btn {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: 10px;
	color: var(--gray-600);
	cursor: pointer;
	transition: all var(--transition-base);
	font-size: var(--font-size-sm);
}

.qty-btn:hover:not(:disabled) {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
	transform: scale(1.05);
}

.qty-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.qty-value {
	min-width: 52px;
	text-align: center;
	font-weight: var(--font-weight-bold);
	color: var(--gray-900);
	font-size: var(--font-size-lg);
}

/* ========================================
   GRID SYSTEMS
======================================== */
.grid {
	display: grid;
	gap: var(--spacing-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.grid-auto {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-muted { color: var(--gray-500); }

.bg-primary { background: var(--primary); }
.bg-gray { background: var(--gray-50); }
.bg-white { background: white; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

.animate-fadeIn {
	animation: fadeIn 0.3s ease-out;
}

.animate-slideUp {
	animation: slideUp 0.4s ease-out;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
	.container,
	.container-narrow,
	.container-wide {
		padding: var(--spacing-lg) var(--spacing-md);
	}
	
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	:root {
		--font-size-4xl: 2rem;
		--font-size-3xl: 1.5rem;
		--font-size-2xl: 1.25rem;
	}
	
	.container,
	.container-narrow,
	.container-wide {
		padding: var(--spacing-md) var(--spacing-md);
	}
	
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
	}
	
	.success-banner {
		padding: var(--spacing-md);
	}
	
	.success-icon {
		font-size: var(--font-size-2xl);
	}
}

@media (max-width: 480px) {
	.btn {
		padding: 0.625rem 1.25rem;
		font-size: var(--font-size-sm);
	}
	
	.card {
		padding: var(--spacing-lg);
	}
}

/* ============================================================
   HERO SECTION - Two Column Layout with Animated Background
============================================================ */
.hero-section {
	position: relative;
	overflow: hidden;
	padding: var(--spacing-4xl) 0;
	background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 40%, #E85A28 100%);
}

/* Animated Floating Circles */
.hero-section::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	top: -200px;
	right: -150px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
	animation: floatCircle1 20s ease-in-out infinite;
	pointer-events: none;
}

.hero-section::after {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	bottom: -100px;
	left: -100px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: floatCircle2 15s ease-in-out infinite;
	pointer-events: none;
}

@keyframes floatCircle1 {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	25% { transform: translate(-30px, 20px) rotate(90deg); }
	50% { transform: translate(-20px, -30px) rotate(180deg); }
	75% { transform: translate(20px, -20px) rotate(270deg); }
}

@keyframes floatCircle2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(40px, -30px) scale(1.1); }
	66% { transform: translate(-20px, 40px) scale(0.95); }
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-3xl);
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-content {
	color: white;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-sm);
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-semibold);
	margin-bottom: var(--spacing-lg);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
	font-size: var(--font-size-5xl);
	font-weight: var(--font-weight-extrabold);
	line-height: 1.1;
	margin-bottom: var(--spacing-lg);
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
	font-size: var(--font-size-xl);
	opacity: 0.95;
	line-height: 1.6;
	margin-bottom: var(--spacing-xl);
	max-width: 500px;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-xl);
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-feature-icon {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-feature-text {
	font-weight: var(--font-weight-semibold);
}

.hero-cta-group {
	display: flex;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: white;
	color: var(--primary);
	padding: 1rem 2rem;
	border-radius: var(--radius-full);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-bold);
	text-decoration: none;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	transition: all var(--transition-base);
}

.hero-cta:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-cta-secondary {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
	color: white;
}

/* Hero Slider - Elips/Oval Maskelenmiş */
.hero-slider-wrapper {
	position: relative;
	border-radius: var(--radius-3xl);
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	aspect-ratio: 4/3;
}

.hero-slider-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--radius-3xl);
	padding: 3px;
	background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 10;
}

.hero-swiper {
	width: 100%;
	height: 100%;
	border-radius: var(--radius-3xl);
}

.hero-swiper .swiper-slide {
	overflow: hidden;
}

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

/* Hero Responsive */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-2xl);
	}
	
	.hero-title {
		font-size: var(--font-size-4xl);
	}
	
	.hero-slider-wrapper {
		max-width: 100%;
		margin: 0;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: var(--spacing-xl) 0;
		overflow: hidden;
	}
	
	.hero-section::before,
	.hero-section::after {
		display: none;
	}
	
	.hero-title {
		font-size: var(--font-size-3xl);
	}
	
	.hero-subtitle {
		font-size: var(--font-size-base);
	}
	
	.hero-slider-wrapper {
		max-width: 100%;
		margin: 0;
	}
}

.swiper-pagination-progressbar-modern .swiper-pagination-progressbar-fill {
	background: linear-gradient(90deg, var(--primary), var(--primary-dark));
	border-radius: var(--radius-full);
}

/* Modern Navigation Arrows */
.swiper-nav-modern {
	width: 48px;
	height: 48px;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: 1px solid var(--gray-200);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-base);
	color: var(--gray-700);
	box-shadow: var(--shadow-md);
}

.swiper-nav-modern:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.swiper-nav-modern.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

.swiper-nav-modern::after {
	display: none;
}

/* Swiper Navigation Container */
.swiper-nav-container {
	display: flex;
	gap: var(--spacing-sm);
}

/* Custom Swiper Overrides */
.swiper-button-next,
.swiper-button-prev {
	width: 44px;
	height: 44px;
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	top: 50%;
	margin-top: -22px;
	position: absolute;
	z-index: 10;
}

.swiper-button-next {
	right: 10px;
}

.swiper-button-prev {
	left: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	font-size: 18px;
	font-weight: 900;
	color: #374151;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: #3b82f6;
	border-color: #3b82f6;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
	transform: scale(1.05);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
	color: white;
}

.swiper-button-disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.swiper-button-disabled:hover {
	background: white;
	border-color: #e5e7eb;
	transform: none;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--gray-300);
	opacity: 1;
	transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
	width: 28px;
	border-radius: var(--radius-full);
	background: var(--primary);
}

/* Mobile Touch-Friendly Pagination */
@media (max-width: 768px) {
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
	
	.swiper-pagination-bullet-active {
		width: 32px;
	}
	
	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

/* ============================================================
   CATEGORY CARDS
============================================================ */
.categories-swiper {
	padding-bottom: var(--spacing-xl);
}

.categories-swiper .swiper-slide {
	height: auto;
}

.categories-pagination {
	margin-top: var(--spacing-md);
}

.category-card {
	position: relative;
	display: block;
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: all var(--transition-base);
	border: 2px solid var(--gray-200);
	background: white;
	text-decoration: none;
}

.category-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card-hover);
	border-color: var(--primary);
}

.category-card img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.category-card:hover img {
	transform: scale(1.1);
}

.category-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	color: white;
	padding: 2rem 1rem 1rem;
	font-size: var(--font-size-base);
	font-weight: var(--font-weight-bold);
	text-align: center;
}

/* ============================================================
   PRODUCT CARDS - Modern Design
============================================================ */
.product-card {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: all var(--transition-base);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-card-hover);
	border-color: var(--primary-light);
}

.product-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, transparent 100%);
	opacity: 0;
	transition: opacity var(--transition-base);
	pointer-events: none;
	z-index: 1;
}

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

.product-image-container {
	position: relative;
	background: var(--gray-50);
	overflow: hidden;
}

.product-image {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
	transform: scale(1.08);
}

/* Product Badges */
.product-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.discount-badge {
	background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
	color: white;
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-bold);
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-full);
	box-shadow: 0 4px 15px rgba(238, 90, 90, 0.25);
	animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.featured-badge {
	background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
	color: white;
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-bold);
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	gap: 0.25rem;
	box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.popular-badge {
	background: linear-gradient(135deg, #10B981 0%, #059669 100%);
	color: white;
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-bold);
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	gap: 0.25rem;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

/* Like Button */
.like-btn {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 40px;
	height: 40px;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition-base);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	z-index: 10;
}

.like-btn:hover {
	transform: scale(1.15);
	background: white;
}

.like-btn i {
	font-size: 1.125rem;
	color: var(--gray-500);
	transition: all var(--transition-base);
}

.like-btn:hover i {
	color: var(--danger);
}

.like-btn .like-icon {
	color: var(--danger);
	animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
	0%, 100% { transform: scale(1); }
	25% { transform: scale(1.3); }
	50% { transform: scale(0.9); }
	75% { transform: scale(1.1); }
}

/* Product Content */
.product-content {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.product-category {
	display: inline-block;
	padding: 0.25rem 0.625rem;
	background: var(--primary-light);
	color: var(--primary-dark);
	border-radius: 6px;
	font-size: 0.6875rem;
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.625rem;
	width: fit-content;
}

.product-name {
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: var(--font-weight-semibold);
	color: var(--gray-900);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 0.75rem;
	transition: color var(--transition-base);
	min-height: 2.6em;
}

.product-name:hover {
	color: var(--primary);
}

.product-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--gray-100);
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.product-rating i {
	color: #FFD700;
	font-size: 0.75rem;
}

.product-rating span {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-semibold);
	color: var(--gray-700);
	margin-left: 0.25rem;
}

.product-delivery {
	font-size: 0.75rem;
	font-weight: var(--font-weight-semibold);
	color: var(--success);
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.product-price-row {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin-bottom: 1rem;
	margin-top: auto;
}

.product-price {
	font-size: 1.375rem;
	font-weight: var(--font-weight-extrabold);
	color: var(--primary);
}

.product-old-price {
	font-size: 0.9375rem;
	color: var(--gray-400);
	text-decoration: line-through;
}

.product-add-btn {
	width: 100%;
	padding: 0.875rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: var(--radius-md);
	font-weight: var(--font-weight-bold);
	font-size: 0.9375rem;
	cursor: pointer;
	transition: all var(--transition-base);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
}

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

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

.product-add-btn:hover {
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
	transform: translateY(-2px);
}

/* ============================================================
   REVIEW CARDS - Fixed Height (CLS = 0)
============================================================ */
.review-card {
	background: white;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-xl);
	padding: 1.5rem;
	height: 280px; /* Fixed height for CLS prevention */
	display: flex;
	flex-direction: column;
	transition: all var(--transition-base);
	overflow: hidden;
}

.review-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-4px);
	border-color: var(--primary-light);
}

.review-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-shrink: 0;
}

.review-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-light) 0%, #FFF7F2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: var(--font-weight-bold);
	color: var(--primary);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.review-info {
	flex: 1;
	min-width: 0;
}

.review-author {
	font-weight: var(--font-weight-semibold);
	color: var(--gray-900);
	margin-bottom: 0.25rem;
}

.review-stars {
	display: flex;
	gap: 0.25rem;
	color: #FFD700;
}

.review-stars i {
	font-size: 0.875rem;
}

.review-date {
	font-size: var(--font-size-xs);
	color: var(--gray-400);
	margin-left: auto;
	flex-shrink: 0;
}

.review-text {
	color: var(--gray-700);
	line-height: 1.6;
	font-size: 0.9375rem;
	flex: 1;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.review-product {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--gray-100);
	font-size: 0.8125rem;
	color: var(--gray-600);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.review-product i {
	color: var(--primary);
}

/* ============================================================
   BLOG CARDS
============================================================ */
.blog-card {
	background: white;
	border: 2px solid #f3f4f6;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	border-color: #3b82f6;
}

.blog-image-container {
	position: relative;
	overflow: hidden;
	background: #f9fafb;
}

.blog-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
	transform: scale(1.08);
}

.blog-content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.blog-date {
	font-size: 0.8125rem;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-weight: 500;
}

.blog-date i {
	color: #3b82f6;
}

.blog-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.blog-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.blog-title a:hover {
	color: #3b82f6;
}

.blog-excerpt {
	color: #4b5563;
	font-size: 0.9375rem;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.blog-read-more {
	color: #3b82f6;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	transition: all 0.2s;
}

.blog-read-more:hover {
	gap: 0.75rem;
	color: #2563eb;
}

.blog-read-more i {
	transition: transform 0.2s;
}

.blog-read-more:hover i {
	transform: translateX(3px);
}

/* Blog Mini Nav */
.blog-mini-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin-bottom: 2rem;
	padding: 1rem;
	background: #f9fafb;
	border-radius: 12px;
}

.blog-mini-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 50px;
	color: #374151;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.blog-mini-link:hover {
	background: #eff6ff;
	border-color: #3b82f6;
	color: #3b82f6;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.blog-mini-link.active {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	border-color: #3b82f6;
	color: white;
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.blog-mini-link i {
	font-size: 0.875rem;
}

/* Blog Category Badge */
.blog-category-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.25rem 0.625rem;
	background: var(--primary);
	color: white;
	font-size: 0.6875rem;
	font-weight: 700;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	z-index: 2;
}

/* Blog Title Link */
.blog-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.blog-title a:hover {
	color: var(--primary);
}

/* Section Link */
.section-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: gap 0.2s;
}

.section-link:hover {
	gap: 0.75rem;
}

/* Blog Grid Home */
.blog-grid-home {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
}

@media (max-width: 992px) {
	.blog-grid-home {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.blog-grid-home {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
	background: linear-gradient(135deg, var(--primary-light) 0%, #FFF7F2 100%);
	padding: var(--spacing-4xl) var(--spacing-xl);
	border-radius: var(--radius-2xl);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: var(--font-size-4xl);
	font-weight: var(--font-weight-extrabold);
	color: var(--gray-900);
	margin-bottom: var(--spacing-md);
}

.cta-description {
	font-size: var(--font-size-xl);
	color: var(--gray-600);
	margin-bottom: var(--spacing-xl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 1.25rem 3rem;
	border-radius: var(--radius-full);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-bold);
	text-decoration: none;
	box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
	transition: all var(--transition-base);
}

.cta-button:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
	color: white;
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
}

.stat-card {
	background: white;
	border-radius: var(--radius-xl);
	padding: var(--spacing-xl);
	text-align: center;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gray-100);
	transition: all var(--transition-base);
}

.stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.stat-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--spacing-md);
	font-size: 1.5rem;
	color: var(--primary);
}

.stat-value {
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-extrabold);
	color: var(--primary);
	margin-bottom: var(--spacing-xs);
}

.stat-label {
	font-size: var(--font-size-sm);
	color: var(--gray-600);
	font-weight: var(--font-weight-medium);
}

@media (max-width: 1024px) {
	.stats-bar {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.stats-bar {
		grid-template-columns: 1fr;
	}
	
	.stat-card {
		padding: var(--spacing-lg);
	}
}

/* ============================================================
   FEATURED & POPULAR SECTIONS
============================================================ */
.featured-section,
.popular-section {
	padding: var(--spacing-4xl) 0;
}

.section-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--spacing-2xl);
}

.section-header-left {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.section-header-left .section-title {
	margin-bottom: 0;
}

.section-view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary);
	font-weight: var(--font-weight-semibold);
	text-decoration: none;
	transition: gap var(--transition-base);
}

.section-view-all:hover {
	gap: 0.75rem;
}

/* ============================================================
   FLOATING ELEMENTS & DECORATIONS
============================================================ */
.floating-badge {
	position: absolute;
	background: white;
	padding: 0.75rem 1rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: var(--font-weight-semibold);
	font-size: var(--font-size-sm);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* ============================================================
   LOADING STATES
============================================================ */
.skeleton {
	background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s infinite;
	border-radius: var(--radius-md);
}

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

.skeleton-text {
	height: 1em;
	margin-bottom: 0.5em;
}

.skeleton-image {
	aspect-ratio: 4/3;
}

/* ============================================================
   ACCESSIBILITY & FOCUS STATES
============================================================ */
*:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

.btn:focus-visible,
.like-btn:focus-visible {
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

/* ============================================================
   PRINT STYLES
============================================================ */
@media print {
	.hero-section,
	.swiper-button-next,
	.swiper-button-prev,
	.swiper-pagination {
		display: none;
	}
}