/* ===== PREMIUM COLORFUL GBITE SHOP ===== */
:root {
	--primary: #6366f1;
	--secondary: #ec4899;
	--accent: #14b8a6;
	--warning: #f59e0b;
	--success: #10b981;
	--danger: #ef4444;
	--bg: #0f0d23;
	--card: #1a1835;
	--text: #f5f3ff;
	--muted: #a8a5c9;
	--border: rgba(255,255,255,0.08);
	--shadow: 0 20px 60px rgba(0,0,0,0.4);
	--shadow-sm: 0 4px 15px rgba(0,0,0,0.2);
	--radius: 16px;
	--transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

body.light-mode {
	--bg: #fafaf9;
	--card: #ffffff;
	--text: #1f2937;
	--muted: #6b7280;
	--border: rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
	height: 100%;
	font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
	background: linear-gradient(135deg, var(--bg) 0%, #1a0f35 50%, #0f1d23 100%);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body {
	display: flex;
	flex-direction: column;
}

main { flex: 1; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== ADMIN PANEL ===== */
.admin-toggle {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	border: 0;
	color: white;
	font-size: 1.8rem;
	cursor: pointer;
	z-index: 999;
	box-shadow: var(--shadow);
	transition: all var(--transition);
}

.admin-toggle:hover {
	transform: scale(1.1) rotate(90deg);
	box-shadow: 0 25px 70px rgba(99,102,241,0.4);
}

.admin-panel {
	position: fixed;
	right: -450px;
	top: 0;
	width: 450px;
	height: 100vh;
	background: linear-gradient(180deg, var(--card) 0%, var(--bg) 100%);
	border-left: 1px solid var(--border);
	box-shadow: -20px 0 60px rgba(0,0,0,0.3);
	z-index: 998;
	transition: right var(--transition);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.admin-panel.open {
	right: 0;
}

.admin-header {
	padding: 1.5rem;
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(90deg, rgba(99,102,241,0.1) 0%, rgba(236,72,153,0.1) 100%);
}

.admin-header h1 { font-size: 1.3rem; margin: 0; }

.admin-close {
	background: transparent;
	border: 0;
	color: var(--text);
	font-size: 1.5rem;
	cursor: pointer;
	transition: all var(--transition);
}

.admin-close:hover { transform: rotate(90deg); }

.admin-tabs {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--border);
	overflow-x: auto;
}

.admin-tab-btn {
	flex: 1;
	background: transparent;
	border: 0;
	color: var(--muted);
	padding: 1rem;
	cursor: pointer;
	font-weight: 600;
	white-space: nowrap;
	transition: all var(--transition);
	border-bottom: 3px solid transparent;
}

.admin-tab-btn.active {
	color: var(--primary);
	border-bottom-color: var(--primary);
	background: rgba(99,102,241,0.05);
}

.admin-tab-btn:hover { color: var(--text); }

.admin-content {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
}

.admin-tab {
	display: none;
}

.admin-tab.active {
	display: block;
}

.admin-tab h2 {
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.products-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.admin-product-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255,255,255,0.03);
	padding: 1rem;
	border-radius: 12px;
	border: 1px solid var(--border);
	transition: all var(--transition);
}

.admin-product-item:hover {
	border-color: var(--primary);
	background: rgba(99,102,241,0.08);
}

.admin-product-info {
	display: flex;
	gap: 1rem;
	flex: 1;
}

.admin-product-emoji {
	font-size: 2rem;
}

.admin-product-item strong { color: var(--text); }

.admin-product-item small { color: var(--muted); display: block; margin-top: 0.3rem; }

.admin-product-actions {
	display: flex;
	gap: 0.5rem;
}

.admin-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.8rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	font-size: 0.95rem;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(99,102,241,0.1);
	box-shadow: 0 0 15px rgba(99,102,241,0.2);
}

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

.analytics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.analytics-card {
	background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(236,72,153,0.05) 100%);
	border: 1px solid var(--border);
	padding: 1.5rem;
	border-radius: 12px;
	text-align: center;
}

.analytics-label { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.5rem; }

.analytics-value {
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.settings-group {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(255,255,255,0.02);
	border-radius: 10px;
	border: 1px solid var(--border);
}

.settings-group label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	cursor: pointer;
	font-weight: 500;
}

.settings-group input[type="checkbox"] {
	cursor: pointer;
	accent-color: var(--primary);
}

/* ===== HEADER ===== */
.site-header {
	background: linear-gradient(180deg, rgba(26,24,53,0.95) 0%, rgba(15,13,35,0.9) 100%);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 0.75rem 0;
}

.header-content {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.brand {
	font-size: 1.8rem;
	font-weight: 900;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: all var(--transition);
	white-space: nowrap;
	flex-shrink: 0;
}

.brand:hover { transform: scale(1.05); }

.header-search {
	flex: 1;
	max-width: 400px;
	display: flex;
	background: rgba(255,255,255,0.05);
	border: 1.5px solid var(--border);
	border-radius: 50px;
	padding: 0.6rem 1.2rem;
	transition: all var(--transition);
}

.header-search:focus-within {
	background: linear-gradient(90deg, rgba(99,102,241,0.1), rgba(236,72,153,0.05));
	border-color: var(--primary);
	box-shadow: 0 0 20px rgba(99,102,241,0.2);
}

.search-input {
	background: transparent;
	border: 0;
	color: var(--text);
	flex: 1;
	outline: none;
	font-size: 1rem;
}

.search-input::placeholder { color: var(--muted); }

.search-btn {
	background: transparent;
	border: 0;
	color: var(--primary);
	cursor: pointer;
	font-size: 1.1rem;
	transition: all var(--transition);
}

.search-btn:hover { transform: scale(1.1); }

.header-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-shrink: 0;
}

.header-icon {
	background: linear-gradient(135deg, rgba(99,102,241,0.15) 0%, rgba(236,72,153,0.1) 100%);
	border: 1.5px solid rgba(99,102,241,0.3);
	color: var(--text);
	padding: 0.7rem 1rem;
	border-radius: 12px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all var(--transition);
	display: flex;
	align-items: center;
	gap: 0.4rem;
	position: relative;
}

.header-icon:hover {
	background: linear-gradient(135deg, rgba(99,102,241,0.25) 0%, rgba(236,72,153,0.15) 100%);
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(99,102,241,0.25);
}

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	color: white;
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: 700;
}

.nav {
	display: flex;
	gap: 2.5rem;
	justify-content: center;
	padding: 1rem 0 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.nav-link {
	color: var(--muted);
	text-decoration: none;
	padding: 0.5rem 0;
	font-weight: 600;
	transition: all var(--transition);
	border-bottom: 2px solid transparent;
	cursor: pointer;
}

.nav-link:hover {
	color: var(--primary);
	border-bottom-color: var(--primary);
}

/* ===== HERO ===== */
.hero {
	padding: 5rem 0;
	background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(236,72,153,0.05) 50%, rgba(20,184,166,0.03) 100%);
	border-bottom: 1px solid var(--border);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--muted);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero-visual {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.gradient-box {
	height: 200px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3.5rem;
	font-weight: 700;
	animation: float 3s ease-in-out infinite;
	box-shadow: var(--shadow);
}

.gradient-1 { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
.gradient-2 { background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%); animation-delay: 0.3s; }
.gradient-3 { background: linear-gradient(135deg, var(--accent) 0%, var(--success) 100%); animation-delay: 0.6s; }

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

/* ===== BUTTONS ===== */
.btn {
	padding: 0.9rem 1.8rem;
	border: 0;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition);
	text-align: center;
	font-size: 1rem;
	display: inline-block;
	text-decoration: none;
	outline: none;
	font-family: inherit;
}

.btn-primary {
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	color: white;
	box-shadow: 0 8px 20px rgba(99,102,241,0.3);
}

.btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(99,102,241,0.4);
}

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

.btn-secondary:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-2px);
}

.btn-accent {
	background: linear-gradient(90deg, var(--accent), var(--success));
	color: white;
	box-shadow: 0 8px 20px rgba(20,184,166,0.3);
}

.btn-accent:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(20,184,166,0.4);
}

.btn-success {
	background: linear-gradient(90deg, var(--success), var(--accent));
	color: white;
	box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}

.btn-success:hover:not(:disabled) {
	transform: translateY(-4px);
	box-shadow: 0 12px 35px rgba(16,185,129,0.4);
}

.btn-small { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* ===== COUPON BANNER ===== */
.coupon-banner {
	padding: 2rem 0;
	background: linear-gradient(90deg, rgba(99,102,241,0.08) 0%, rgba(236,72,153,0.05) 100%);
	border-bottom: 1px solid var(--border);
}

.coupon-box {
	max-width: 1300px;
	margin: 0 auto;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.coupon-label { font-weight: 700; white-space: nowrap; }

.coupon-input-group {
	display: flex;
	gap: 0.75rem;
	flex: 1;
	min-width: 300px;
}

.coupon-input {
	flex: 1;
	padding: 0.8rem;
	background: rgba(255,255,255,0.08);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	font-weight: 600;
	text-transform: uppercase;
	transition: all var(--transition);
}

.coupon-input:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(99,102,241,0.1);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
	padding: 4rem 0;
}

.featured-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ===== SHOP SECTION ===== */
.shop-section { padding: 4rem 0; }

.shop-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.shop-header h2 { font-size: 2.5rem; }

.shop-controls {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
}

.sort {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.sort label { font-weight: 600; white-space: nowrap; }

.sort select {
	padding: 0.7rem;
	background: rgba(255,255,255,0.05);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	cursor: pointer;
	font-weight: 500;
	min-width: 180px;
	transition: all var(--transition);
}

.sort select:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(99,102,241,0.1);
}

.view-toggle {
	display: flex;
	gap: 0.5rem;
	background: rgba(255,255,255,0.05);
	padding: 0.5rem;
	border-radius: 10px;
	border: 1.5px solid var(--border);
}

.view-btn {
	background: transparent;
	border: none;
	color: var(--muted);
	padding: 0.6rem 1rem;
	cursor: pointer;
	border-radius: 8px;
	font-size: 1.2rem;
	transition: all var(--transition);
}

.view-btn.active {
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	color: white;
}

.shop-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2rem;
}

.filters-sidebar {
	background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(99,102,241,0.05) 100%);
	border: 1.5px solid var(--border);
	padding: 2rem;
	border-radius: var(--radius);
	height: fit-content;
	position: sticky;
	top: 100px;
}

.filters-sidebar h3 { margin-bottom: 1.5rem; font-size: 1.3rem; }

.filter-group {
	margin-bottom: 1.5rem;
}

.filter-group label {
	display: block;
	margin-bottom: 0.75rem;
	font-weight: 600;
	color: var(--text);
}

.filter-group select,
.filter-group input[type="range"] {
	width: 100%;
	padding: 0.7rem;
	background: rgba(255,255,255,0.05);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	font-weight: 500;
	transition: all var(--transition);
}

.filter-group select:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(99,102,241,0.1);
}

.price-display {
	margin-top: 1rem;
	padding: 0.75rem;
	background: linear-gradient(90deg, rgba(99,102,241,0.1), rgba(236,72,153,0.05));
	border-radius: 10px;
	text-align: center;
	font-weight: 600;
	color: var(--accent);
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	cursor: pointer;
	font-size: 0.95rem;
}

.checkbox input {
	cursor: pointer;
	accent-color: var(--primary);
}

.shop-main { display: flex; flex-direction: column; }

.search-results { margin-bottom: 1.5rem; color: var(--muted); font-weight: 600; }

/* ===== PRODUCTS GRID ===== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.75rem;
	margin-bottom: 3rem;
}

.product-card {
	background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(99,102,241,0.04) 100%);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all var(--transition);
	display: flex;
	flex-direction: column;
	position: relative;
	cursor: pointer;
}

.product-card:hover {
	transform: translateY(-12px);
	border-color: var(--primary);
	box-shadow: 0 25px 60px rgba(99,102,241,0.3);
	background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(236,72,153,0.06) 100%);
}

.sale-badge, .bestseller-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	z-index: 10;
	box-shadow: 0 8px 20px rgba(99,102,241,0.3);
}

.bestseller-badge {
	background: linear-gradient(90deg, var(--warning), var(--secondary));
	left: auto;
	right: 1rem;
	top: auto;
	bottom: 1rem;
}

.product-image {
	width: 100%;
	height: 220px;
	background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(236,72,153,0.08));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	border-bottom: 1.5px solid var(--border);
	transition: all var(--transition);
	cursor: pointer;
}

.product-card:hover .product-image {
	background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(236,72,153,0.15));
	transform: scale(1.08);
}

.product-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-category {
	display: inline-block;
	background: linear-gradient(90deg, rgba(99,102,241,0.2), rgba(20,184,166,0.1));
	color: var(--accent);
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 0.7rem;
	width: fit-content;
	letter-spacing: 0.5px;
}

.product-name {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	flex-grow: 1;
	cursor: pointer;
	transition: color var(--transition);
}

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

.product-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
}

.product-rating span:last-child { color: var(--muted); }

.product-price {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--accent);
	margin-bottom: 1rem;
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.original-price {
	font-size: 0.9rem;
	color: var(--muted);
	text-decoration: line-through;
	font-weight: 500;
}

.product-footer {
	display: flex;
	gap: 0.6rem;
	padding-top: 1rem;
	border-top: 1.5px solid var(--border);
}

.product-footer .btn { flex: 1; padding: 0.7rem; font-size: 0.9rem; }

.btn-wishlist {
	background: transparent;
	border: 1.5px solid var(--border);
	color: var(--text);
	padding: 0.7rem;
	border-radius: 10px;
	cursor: pointer;
	transition: all var(--transition);
}

.btn-wishlist:hover {
	border-color: var(--danger);
	background: rgba(239,68,68,0.1);
	color: var(--danger);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(236,72,153,0.08) 100%);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	margin: 4rem 0;
}

.newsletter-box {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-box h3 { font-size: 2rem; margin-bottom: 0.75rem; }

.newsletter-box p {
	color: var(--muted);
	margin-bottom: 1.5rem;
	font-size: 1.05rem;
}

.newsletter-form {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
}

.newsletter-form input {
	min-width: 280px;
	padding: 1rem;
	background: rgba(255,255,255,0.1);
	border: 1.5px solid var(--border);
	border-radius: 12px;
	color: var(--text);
	font-size: 1rem;
	transition: all var(--transition);
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(99,102,241,0.15);
	box-shadow: 0 0 15px rgba(99,102,241,0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
	padding: 4rem 0;
}

.testimonials-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 100%);
	border: 1.5px solid var(--border);
	padding: 2rem;
	border-radius: var(--radius);
	transition: all var(--transition);
}

.testimonial-card:hover {
	border-color: var(--primary);
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(99,102,241,0.2);
}

.testimonial-card .stars {
	font-size: 1.2rem;
	color: #fbbf24;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.testimonial-card p {
	margin-bottom: 1rem;
	font-style: italic;
	line-height: 1.8;
}

.testimonial-author { color: var(--primary); font-weight: 700; }

/* ===== ABOUT ===== */
.about-section { padding: 4rem 0; }

.about-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 100%);
	border: 1.5px solid var(--border);
	padding: 2.5rem 2rem;
	border-radius: var(--radius);
	text-align: center;
	transition: all var(--transition);
}

.feature-card:hover {
	border-color: var(--primary);
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(99,102,241,0.15);
}

.feature-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }

.feature-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== STATS ===== */
.stats-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(236,72,153,0.04) 100%);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	margin: 4rem 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	text-align: center;
}

.stat-card { padding: 2rem; }

.stat-number {
	font-size: 2.5rem;
	font-weight: 900;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.75rem;
}

.stat-card p { color: var(--muted); font-size: 1rem; font-weight: 500; }

/* ===== MODALS ===== */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	backdrop-filter: blur(8px);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
}

.modal.open { display: flex; }

.modal-content {
	background: linear-gradient(135deg, var(--card) 0%, #221f42 100%);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	padding: 2.5rem;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow);
	animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	margin: 2rem 0;
}

.modal-large { max-width: 900px; }
.modal-small { max-width: 450px; }

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

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1.5px solid var(--border);
}

.modal-header h2 { font-size: 1.5rem; margin: 0; }

.close-btn {
	background: transparent;
	border: 0;
	color: var(--text);
	font-size: 2.5rem;
	cursor: pointer;
	transition: all var(--transition);
	line-height: 1;
	padding: 0;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
}

.close-btn:hover { color: var(--primary); background: rgba(99,102,241,0.1); }

/* ===== CART & WISHLIST ===== */
.cart-items, .wishlist-items { min-height: 100px; margin-bottom: 2rem; }

.empty-state { text-align: center; color: var(--muted); padding: 2rem; font-size: 1.1rem; font-weight: 500; }

.cart-item {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem;
	background: rgba(255,255,255,0.03);
	border: 1.5px solid var(--border);
	border-radius: 12px;
	margin-bottom: 1rem;
	align-items: center;
	transition: all var(--transition);
}

.cart-item:hover { border-color: var(--primary); background: rgba(99,102,241,0.08); }

.cart-item-image {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(236,72,153,0.08));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	flex-shrink: 0;
	border: 1.5px solid var(--border);
}

.cart-item-info { flex: 1; }

.cart-item-name { font-weight: 700; margin-bottom: 0.5rem; font-size: 1.05rem; }

.cart-item-price { color: var(--accent); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; }

.cart-item-qty { color: var(--muted); font-size: 0.9rem; }

.cart-item-remove {
	background: transparent;
	border: 0;
	color: var(--muted);
	cursor: pointer;
	font-size: 1.8rem;
	transition: color var(--transition);
	padding: 0.5rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.cart-item-remove:hover { color: var(--danger); background: rgba(239,68,68,0.1); }

.cart-summary { border-top: 1.5px solid var(--border); padding-top: 1.5rem; }

.cart-coupon { display: flex; gap: 0.5rem; margin-bottom: 1rem; }

.cart-total {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 1rem;
}

.cart-total.discount { color: var(--success); }

.cart-total.total {
	font-size: 1.3rem;
	color: var(--accent);
	border-top: 1.5px solid var(--border);
	padding-top: 1rem;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
}

/* ===== CHECKOUT ===== */
.checkout-form { display: flex; flex-direction: column; gap: 2rem; }

.checkout-section {
	background: rgba(255,255,255,0.03);
	padding: 1.5rem;
	border: 1.5px solid var(--border);
	border-radius: 12px;
}

.checkout-section h3 { margin-bottom: 1.5rem; font-size: 1.1rem; }

.checkout-section input,
.checkout-section select {
	width: 100%;
	padding: 0.8rem;
	background: rgba(255,255,255,0.05);
	border: 1.5px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	margin-bottom: 1rem;
}

.checkout-section input:focus,
.checkout-section select:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(99,102,241,0.1);
}

.radio {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	cursor: pointer;
	font-weight: 500;
}

.radio input { width: auto; margin: 0; accent-color: var(--primary); cursor: pointer; }

.checkout-summary { display: flex; flex-direction: column; gap: 1rem; }

.summary-item {
	display: flex;
	justify-content: space-between;
	padding: 0.75rem;
	background: rgba(255,255,255,0.02);
	border-radius: 6px;
	font-weight: 600;
}

.summary-item.discount { color: var(--success); }

.summary-item.total {
	font-size: 1.2rem;
	border-top: 1.5px solid var(--border);
	padding-top: 1rem;
	color: var(--accent);
}

/* ===== CONFIRMATION ===== */
.confirmation-content { text-align: center; padding: 1rem; }

.confirmation-icon { font-size: 4rem; margin-bottom: 1rem; display: block; animation: bounce 0.6s ease-in-out; }

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

.confirmation-content h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--success); }

.order-number { color: var(--primary); font-weight: 700; font-size: 1.2rem; margin: 1.5rem 0; }

/* ===== FOOTER ===== */
.site-footer {
	background: linear-gradient(180deg, rgba(26,24,53,0.95) 0%, rgba(15,13,35,0.9) 100%);
	border-top: 1.5px solid var(--border);
	padding: 3rem 0 1rem;
	margin-top: auto;
	color: var(--muted);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 { color: var(--text); margin-bottom: 1rem; font-weight: 700; }

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

.footer-section ul li { margin-bottom: 0.5rem; }

.footer-section a { color: var(--muted); text-decoration: none; transition: color var(--transition); }

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

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(99,102,241,0.1);
	border: 1.5px solid var(--border);
	border-radius: 50%;
	font-weight: 700;
	transition: all var(--transition);
}

.social-links a:hover {
	background: var(--primary);
	color: white;
	border-color: var(--primary);
	transform: translateY(-4px);
}

.footer-bottom { border-top: 1.5px solid var(--border); padding-top: 1.5rem; text-align: center; }

.footer-links { margin-top: 1rem; font-size: 0.9rem; }

.footer-links a { color: var(--muted); text-decoration: none; display: inline-block; margin: 0 0.5rem; transition: color var(--transition); }

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

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 2rem; right: 2rem; display: flex; flex-direction: column; gap: 1rem; z-index: 2000; pointer-events: none; }

.toast {
	background: var(--card);
	border: 1.5px solid var(--border);
	color: var(--text);
	padding: 1rem 1.5rem;
	border-radius: 12px;
	font-weight: 600;
	box-shadow: var(--shadow-sm);
	pointer-events: auto;
	transform: translateX(400px);
	opacity: 0;
	transition: all var(--transition);
}

.toast.show { transform: translateX(0); opacity: 1; }

.toast-success { border-left: 4px solid var(--success); }

.toast-error { border-left: 4px solid var(--danger); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.hero { grid-template-columns: 1fr; }
	.hero-visual { grid-template-columns: 1fr; }
	.hero-content h1 { font-size: 2.5rem; }
	.shop-wrapper { grid-template-columns: 1fr; }
	.filters-sidebar { position: relative; top: 0; }
	.modal-content { padding: 2rem; }
}

@media (max-width: 768px) {
	.admin-panel { width: 100%; right: -100%; }
	.brand { font-size: 1.5rem; }
	.header-search { max-width: none; }
	.header-actions { gap: 0.5rem; }
	.nav { display: none; }
	.hero-content h1 { font-size: 2rem; }
	.hero-cta { flex-direction: column; }
	.btn { width: 100%; }
	.products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
	.shop-controls { flex-direction: column; }
	.hero-visual { grid-template-columns: 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.features-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.products-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr; }
	.coupon-box { flex-direction: column; }
	.coupon-input-group { flex-direction: column; min-width: 100%; }
	.container { padding: 0 1rem; }
	.modal-content { width: 95%; padding: 1.5rem; }
}

