/* Riot Vault - Ultra Modern Dark Theme */
:root {
	--primary-color: #00d4ff;
	--secondary-color: #0099cc;
	--dark-bg: #0a0a0a;
	--card-bg: #1a1a1a;
	--text-primary: #ffffff;
	--text-secondary: #b0b0b0;
	--accent-gradient: linear-gradient(135deg, #00d4ff, #0099cc);
	--shadow-primary: 0 10px 30px rgba(0, 212, 255, 0.3);
	--shadow-card: 0 8px 25px rgba(0, 0, 0, 0.4);
	--border-radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--secondary-color);
}

* {
	scrollbar-width: thin;
	scrollbar-color: var(--primary-color) var(--dark-bg);
}

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

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--dark-bg);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	padding-top: 80px;
}

/* Loading Screen */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--dark-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loading-spinner {
	width: 60px;
	height: 60px;
	border: 3px solid rgba(0, 212, 255, 0.3);
	border-top: 3px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	z-index: 1000;
	padding: 1rem 0;
	transition: var(--transition);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
}

.nav-logo img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav-menu a {
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

.nav-menu a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-gradient);
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

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

.nav-cart {
	position: relative;
	color: var(--text-primary);
	font-size: 1.2rem;
	cursor: pointer;
	transition: var(--transition);
}

.nav-cart:hover {
	color: var(--primary-color);
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--primary-color);
	color: var(--dark-bg);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: bold;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
	padding: 8px;
	border-radius: 4px;
	transition: var(--transition);
	z-index: 1600;
	position: relative;
}

.hamburger:hover {
	background: rgba(0, 212, 255, 0.1);
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-primary);
	transition: all 0.3s ease;
	border-radius: 2px;
	transform-origin: center;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		display: none;
	}

	.nav-menu.active {
		display: flex;
	}
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* Other pages hero sections */
body:not([data-page="home"]) .hero {
	min-height: 60vh;
	background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-bg-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	animation: slideZoom 15s infinite;
	filter: blur(1px);
}

.hero-bg-slide:nth-child(1) {
	animation-delay: 0s;
}
.hero-bg-slide:nth-child(2) {
	animation-delay: 5s;
}
.hero-bg-slide:nth-child(3) {
	animation-delay: 10s;
}

@keyframes slideZoom {
	0%,
	33.33% {
		opacity: 1;
		transform: scale(1);
	}
	16.66%,
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
	66.66%,
	100% {
		opacity: 0;
		transform: scale(1.1);
	}
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(5px);
	background: rgba(10, 10, 10, 0.7);
	z-index: 2;
}

.hero-content {
	text-align: center;
	max-width: 800px;
	padding: 0 2rem;
	position: relative;
	z-index: 3;
}

.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: fadeInUp 1s ease;
}

.hero p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
	display: inline-block;
	background: var(--accent-gradient);
	color: var(--dark-bg);
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: var(--shadow-primary);
	animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Cards */
.cards-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 2rem;
	text-align: center;
	transition: var(--transition);
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(0, 212, 255, 0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

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

.card-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.card-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	position: relative;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.card:hover .card-image img {
	transform: scale(1.05);
}

.blog-header-image {
	width: 100%;
	max-height: 400px;
	overflow: hidden;
	border-radius: var(--border-radius);
	margin-bottom: 2rem;
}

.blog-header-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.card p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
	flex-grow: 1;
}

.card-button {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding: 0.8rem 1.5rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	margin-top: auto;
	display: inline-block;
}

.card-button:hover {
	background: var(--primary-color);
	color: var(--dark-bg);
}

/* Product Cards */
.product-card {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: var(--transition);
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(0, 212, 255, 0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-primary);
}

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

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

.product-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	position: relative;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

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

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

.product-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.product-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.product-description {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.add-to-cart {
	background: var(--accent-gradient);
	color: var(--dark-bg);
	border: none;
	padding: 0.8rem 1.5rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	margin-top: auto;
}

.add-to-cart:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

/* Sections */
.section {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 3rem;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Footer */
.footer {
	background: var(--card-bg);
	padding: 3rem 0 1rem;
	border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	text-align: center;
}

.footer-logo img {
	height: 50px;
	margin-bottom: 2rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;
}

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

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: var(--card-bg);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(0, 212, 255, 0.2);
	z-index: 1001;
	transform: translateY(100px);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}

.cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.cookie-btn {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
}

.cookie-accept {
	background: var(--primary-color);
	color: var(--dark-bg);
}

.cookie-decline {
	background: transparent;
	color: var(--text-secondary);
	border: 1px solid var(--text-secondary);
}

/* Go to Top Button */
.go-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: var(--accent-gradient);
	color: var(--dark-bg);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

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

.go-top:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-primary);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.close-btn {
	display: none;

	position: absolute;
	top: 2rem;
	right: 2rem;
	background: none;
	border: none;
	color: var(--text-primary);
	font-size: 2rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: var(--transition);
	z-index: 10001;
}
.fade-in-up {
	animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
	body {
		padding-top: 70px;
	}

	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(10, 10, 10, 0.98);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 9999;
		display: flex;
		gap: 2rem;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.nav-menu.active {
		transform: translateX(0);
	}

	.nav-menu li {
		margin: 0;
		width: 80%;
		max-width: 300px;
	}

	.nav-menu a {
		font-size: 1.5rem;
		font-weight: 600;
		padding: 1rem 2rem;
		border-radius: 8px;
		transition: all 0.3s ease;
		display: block;
		text-align: center;
		width: 100%;
		border: 2px solid rgba(0, 212, 255, 0.3);
		background: rgba(0, 212, 255, 0.1);
		color: var(--text-primary);
		text-decoration: none;
	}

	.nav-menu a:hover {
		background: var(--primary-color);
		color: var(--dark-bg);
		border-color: var(--primary-color);
		transform: scale(1.05);
	}

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

	@media (max-width: 768px) {
		.close-btn {
			display: block !important;
		}
	}

	.nav-container {
		padding: 0 1rem;
	}

	.cards-container,
	.products-grid,
	.blog-posts {
		grid-template-columns: 1fr;
		padding: 0 1rem;
	}

	.hero-content {
		padding: 0 1rem;
	}

	.container {
		padding: 0 1rem;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}

	.cookie-popup {
		left: 1rem;
		right: 1rem;
	}

	/* Cart Mobile Styles */
	.cart-item {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.cart-item-image {
		width: 120px;
		height: 120px;
		align-self: center;
	}

	.cart-item-info {
		text-align: center;
	}

	.quantity-controls {
		justify-content: center;
	}

	.order-summary {
		position: static;
		margin-top: 2rem;
	}

	.checkout-actions {
		gap: 0.75rem;
	}

	.checkout-btn {
		padding: 0.875rem;
		font-size: 1rem;
	}
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
	font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select,
.search-box input,
.filter-select {
	width: 100%;
	padding: 0.8rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-size: 1rem;
	transition: var(--transition);
}

.search-box input::placeholder {
	color: var(--text-secondary);
}

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

.btn-primary {
	background: var(--accent-gradient);
	color: var(--dark-bg);
	border: none;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	font-size: 1rem;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-primary);
}

/* Notification */
.notification {
	position: fixed;
	top: 100px;
	right: 2rem;
	background: var(--card-bg);
	color: var(--text-primary);
	padding: 1rem 1.5rem;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-card);
	border-left: 4px solid var(--primary-color);
	z-index: 1002;
	transform: translateX(400px);
	opacity: 0;
	transition: var(--transition);
}

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

.notification.success {
	border-left-color: #00ff88;
}

.notification.error {
	border-left-color: #ff4757;
}

/* Cart Styles */
.cart-empty {
	text-align: center;
	padding: 5rem 2rem;
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.cart-empty i {
	font-size: 4rem;
	color: var(--text-secondary);
	margin-bottom: 1rem;
}

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

.cart-item:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-card);
}

.cart-item-image {
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.cart-item-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

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

.cart-item-subtotal {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.quantity-controls {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(0, 212, 255, 0.1);
	padding: 0.5rem;
	border-radius: var(--border-radius);
}

.quantity-btn {
	background: var(--primary-color);
	color: var(--dark-bg);
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	font-weight: bold;
	font-size: 1.1rem;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.quantity-btn:hover:not(:disabled) {
	background: var(--secondary-color);
	transform: scale(1.1);
}

.quantity-btn:disabled {
	background: var(--text-secondary);
	cursor: not-allowed;
	opacity: 0.5;
}

.quantity-display {
	font-weight: 600;
	font-size: 1.1rem;
	min-width: 30px;
	text-align: center;
	color: var(--text-primary);
}

.remove-item {
	background: #ff4757;
	color: white;
	border: none;
	padding: 0.75rem;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
	font-size: 1.1rem;
}

.remove-item:hover {
	background: #ff3742;
	transform: scale(1.05);
}

/* Order Summary Styles */
.order-summary {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: var(--border-radius);
	border: 1px solid rgba(0, 212, 255, 0.1);
	box-shadow: var(--shadow-card);
	sticky: top;
	top: 100px;
}

.order-summary-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.order-summary-header h3 {
	color: var(--text-primary);
	font-size: 1.4rem;
	margin: 0;
}

.order-summary-header h3 i {
	color: var(--primary-color);
	margin-right: 0.5rem;
}

.item-count {
	background: var(--primary-color);
	color: var(--dark-bg);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.summary-items {
	margin-bottom: 1.5rem;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-item-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.summary-item-name {
	color: var(--text-primary);
	font-weight: 500;
	font-size: 0.95rem;
}

.summary-item-qty {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

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

.summary-calculations {
	padding: 1rem 0;
	border-top: 1px solid rgba(0, 212, 255, 0.2);
	margin-bottom: 1rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	color: var(--text-secondary);
}

.summary-row:last-child {
	margin-bottom: 0;
}

.free-shipping-note {
	background: rgba(0, 255, 136, 0.1);
	color: #00ff88;
	padding: 0.5rem;
	border-radius: var(--border-radius);
	font-size: 0.9rem;
	text-align: center;
	margin-top: 0.5rem;
}

.free-shipping-note i {
	margin-right: 0.5rem;
}

.shipping-note {
	color: var(--text-secondary);
	font-size: 0.85rem;
	text-align: center;
	margin-top: 0.5rem;
}

.summary-total {
	padding: 1rem 0;
	border-top: 2px solid var(--primary-color);
	margin-bottom: 1.5rem;
}

.total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
}

.total-amount {
	color: var(--primary-color);
	font-size: 1.5rem;
}

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

.checkout-btn {
	width: 100%;
	padding: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.checkout-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-primary);
}

.btn-secondary {
	background: transparent;
	color: var(--text-secondary);
	border: 1px solid var(--text-secondary);
	padding: 0.75rem 1rem;
	border-radius: var(--border-radius);
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.btn-secondary:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
	background: rgba(0, 212, 255, 0.1);
}

/* Modal */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.modal.show {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: var(--border-radius);
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	border: 1px solid rgba(0, 212, 255, 0.2);
}

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

.modal-close {
	background: none;
	border: none;
	color: var(--text-secondary);
	font-size: 1.5rem;
	cursor: pointer;
}

/* Search and Filter */
.search-filter-container {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin-bottom: 0.5rem;
	border: 1px solid rgba(0, 212, 255, 0.1);
	box-shadow: var(--shadow-card);
}

.search-filter-wrapper {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	flex-wrap: wrap;
}

.search-box {
	flex: 1;
	min-width: 300px;
	position: relative;
}

.search-box i {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	z-index: 1;
}

.search-box input {
	padding-left: 3rem;
	height: 50px;
	font-size: 1rem;
}

.filter-select {
	min-width: 200px;
	height: 50px;
	font-size: 1rem;
	cursor: pointer;
}

.filter-select option {
	background: var(--card-bg);
	color: var(--text-primary);
	border: none;
}

/* Testimonials */
.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
}

.testimonial {
	text-align: center;
	padding: 2rem;
}

.testimonial-text {
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
}

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

/* FAQ */
.faq-item {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	border: 1px solid rgba(0, 212, 255, 0.1);
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}

.faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-secondary);
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-icon {
	transition: var(--transition);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}
