* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	cursor: url("assets/images/favicon.svg") 16 16, auto;
}

:root {
	--primary-red: #dc143c;
	--dark-red: #8b0000;
	--light-red: #ff6b6b;
	--dark-bg: #0f0f0f;
	--darker-bg: #1a1a1a;
	--text-light: #e0e0e0;
	--text-white: #ffffff;
	--accent-gold: #ffd700;
}

html {
	scroll-behavior: smooth;
}

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

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

/* ============ Navigation Bar ============ */
.navbar {
	background: linear-gradient(135deg, var(--darker-bg) 0%, #2a0000 100%);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
	border-bottom: 2px solid var(--primary-red);
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.logo h1 {
	color: var(--primary-red);
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	color: var(--text-light);
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-red);
}

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

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.search-bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(220, 20, 60, 0.1);
	border: 2px solid var(--primary-red);
	border-radius: 25px;
	padding: 0.5rem 1rem;
	flex: 0 1 300px;
	position: relative;
}

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

.search-input::placeholder {
	color: rgba(224, 224, 224, 0.6);
}

.search-btn {
	background: transparent;
	border: none;
	color: var(--primary-red);
	cursor: pointer;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-btn:hover {
	color: var(--light-red);
	transform: scale(1.1);
}

.search-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, var(--darker-bg), #2a0000);
	border: 2px solid var(--primary-red);
	border-top: none;
	border-radius: 0 0 10px 10px;
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
	margin-top: -2px;
}

.suggestions-list {
	list-style: none;
	padding: 0.5rem 0;
	margin: 0;
}

.suggestion-item {
	padding: 0.75rem 1rem;
	color: var(--text-light);
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-left: 3px solid transparent;
}

.suggestion-item:hover {
	background: rgba(220, 20, 60, 0.2);
	border-left-color: var(--primary-red);
	color: var(--primary-red);
	padding-left: 1.5rem;
}

.suggestion-item i {
	color: var(--primary-red);
	font-size: 0.8rem;
}

.nav-icons {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.discount-banner {
	background: linear-gradient(135deg, var(--primary-red), var(--light-red));
	color: white;
	padding: 6px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.discount-banner:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 20, 60, 0.3);
}

.nav-icon {
	color: var(--text-light);
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.nav-icon:hover {
	color: var(--primary-red);
	transform: scale(1.2);
}

.cart-icon {
	position: relative;
}

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

/* ============ Hero Section ============ */
.hero {
	position: relative;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.animated-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #1a0000, #330000, #1a0000, #4d0000);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
	z-index: 1;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
}

.hero-content h2 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	text-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
	animation: fadeInDown 1s ease;
}

.hero-content p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--accent-gold);
	animation: fadeInUp 1s ease 0.2s both;
}

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

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

/* ============ Buttons ============ */
.btn {
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-red), var(--light-red));
	color: white;
	box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

/* Discord link specific styling: centered and more animated on hover */
.discord-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 12px 26px;
	border-radius: 8px;
	transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1),
		box-shadow 260ms ease, filter 260ms ease;
	will-change: transform, box-shadow;
	margin: 0.25rem auto;
}
.discord-link:hover {
	transform: translateY(-6px) scale(1.03) rotate(-0.5deg);
	box-shadow: 0 14px 30px rgba(102, 51, 153, 0.18),
		0 6px 20px rgba(220, 20, 60, 0.12);
	filter: saturate(1.04) brightness(1.03);
}
.discord-link:active {
	transform: translateY(-2px) scale(0.995);
}

/* a small floating pulse for the icon inside discord link on hover */
.discord-link .discord-icon {
	width: 18px;
	height: 18px;
}

/* Product title + icon */
.product-name {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.05rem;
	margin: 0.15rem 0;
}
.product-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	display: inline-block;
	vertical-align: middle;
}

/* Make sure icons and text scale down on small screens */
@media (max-width: 600px) {
	.product-icon {
		width: 16px;
		height: 16px;
		flex: 0 0 16px;
	}
	.product-name {
		font-size: 0.98rem;
	}
	.discord-link {
		padding: 10px 18px;
	}
}

@keyframes discordBounce {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(-6px);
	}
	60% {
		transform: translateY(-2px);
	}
	100% {
		transform: translateY(0);
	}
}
.discord-link:hover .discord-icon {
	animation: discordBounce 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Contact buttons group alignment */
.contact-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.btn-block {
	width: 100%;
	margin-top: 1rem;
}

/* ============ Section Titles ============ */
.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--text-white);
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary-red), var(--light-red));
}

/* ============ Shop Section ============ */
.shop {
	padding: 5rem 0;
	background: linear-gradient(
		180deg,
		var(--dark-bg) 0%,
		var(--darker-bg) 100%
	);
}

.filter-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 25px;
	border: 2px solid var(--primary-red);
	background: transparent;
	color: var(--primary-red);
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--primary-red);
	color: white;
	transform: scale(1.05);
}

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

/* ============ Product Cards ============ */
.product-card {
	background: linear-gradient(135deg, var(--darker-bg) 0%, #2a0000 100%);
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 2px solid transparent;
	position: relative;
	box-shadow: 0 5px 20px rgba(220, 20, 60, 0.2);
}

.product-card:hover {
	transform: translateY(-15px) rotateZ(1deg);
	border-color: var(--primary-red);
	box-shadow: 0 15px 50px rgba(220, 20, 60, 0.6),
		0 0 30px rgba(220, 20, 60, 0.3);
	background: linear-gradient(135deg, #2a0000 0%, #4d0000 100%);
}

.product-image {
	position: relative;
	height: 250px;
	overflow: hidden;
	background: linear-gradient(135deg, #330000, #660000);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: var(--primary-red);
	border-radius: 18px 18px 0 0;
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-img {
	transform: scale(1.15) rotate(2deg);
	filter: brightness(1.1);
}

.product-card:hover .product-image {
	background: linear-gradient(135deg, #4d0000, #800000);
}

@keyframes scaleImage {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.15);
	}
}

.product-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--primary-red);
	color: white;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: bold;
	z-index: 2;
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.7);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 4px rgba(220, 20, 60, 0);
	}
}

.product-info {
	padding: 1.5rem;
}

.product-category {
	color: var(--primary-red);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 0.5rem;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.product-card:hover .product-category {
	opacity: 1;
	text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.product-name {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--text-white);
	font-weight: 600;
	transition: color 0.3s ease;
}

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

.product-description {
	color: var(--text-light);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	min-height: 2.7rem;
	transition: color 0.3s ease;
}

.product-card:hover .product-description {
	color: var(--text-white);
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(220, 20, 60, 0.2);
	transition: border-color 0.3s ease;
}

.product-card:hover .product-footer {
	border-top-color: rgba(220, 20, 60, 0.5);
}

.product-price {
	color: var(--accent-gold);
	font-size: 1.5rem;
	font-weight: bold;
	transition: all 0.3s ease;
}

.product-card:hover .product-price {
	color: var(--light-red);
	font-size: 1.6rem;
	text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* Original price (struck) and discounted price styling */
.product-original-price {
	color: rgba(224, 224, 224, 0.7);
	text-decoration: line-through;
	font-size: 0.9rem;
}
.product-discount-price {
	color: var(--accent-gold);
	font-size: 1.2rem;
	font-weight: 700;
}

@keyframes priceFlash {
	0%,
	100% {
		color: var(--accent-gold);
	}
	50% {
		color: var(--primary-red);
	}
}

.product-btn {
	background: var(--primary-red);
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 15px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-size: 0.9rem;
	box-shadow: 0 3px 10px rgba(220, 20, 60, 0.3);
}

.product-btn:hover {
	background: var(--light-red);
	transform: scale(1.08) rotate(-2deg);
	box-shadow: 0 5px 15px rgba(255, 107, 107, 0.5);
}

/* ============ Modal ============ */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-content {
	background: linear-gradient(135deg, var(--darker-bg) 0%, #2a0000 100%);
	margin: 50px auto;
	padding: 0;
	border: 2px solid var(--primary-red);
	border-radius: 10px;
	width: 90%;
	max-width: 800px;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
}

/* Discount Modal Styles */
.discount-modal {
	max-width: 480px;
	margin: 2rem auto;
	border-radius: 16px;
	padding: 1.5rem;
}
.discount-body {
	text-align: center;
	color: var(--text-white);
	padding: 1rem;
}
.discount-body h2 {
	font-size: 1.6rem;
	color: var(--accent-gold);
}
.discount-body p {
	color: var(--text-light);
}
.discount-body .small {
	font-size: 0.85rem;
	opacity: 0.8;
	margin-top: 0.5rem;
}

/* Coupon Area in Cart */
.coupon-row {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	margin-bottom: 0.5rem;
}
.coupon-row input[type="text"] {
	flex: 1;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	border: 1px dashed rgba(220, 20, 60, 0.3);
	background: rgba(20, 20, 20, 0.6);
	color: var(--text-light);
	outline: none;
}
.coupon-row input[type="text"]:focus {
	border-color: var(--primary-red);
}
.coupon-row .btn-secondary {
	background: #222;
	color: var(--primary-red);
	border: 1px solid rgba(220, 20, 60, 0.2);
}
.btn-tertiary {
	background: transparent;
	color: var(--text-light);
	border: 1px dashed rgba(255, 255, 255, 0.06);
	padding: 6px 10px;
	border-radius: 8px;
	cursor: pointer;
}
.btn-tertiary:hover {
	border-color: var(--primary-red);
	color: var(--primary-red);
}
.coupon-message {
	font-size: 0.9rem;
	color: var(--text-light);
	margin-top: 0.25rem;
}
.coupon-message.success {
	color: #9be7a0;
}
.coupon-message.error {
	color: #ff7875;
}

.close {
	color: var(--text-light);
	float: right;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	padding: 20px;
	transition: color 0.3s ease;
}

.close:hover {
	color: var(--primary-red);
}

.modal-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	padding: 2rem;
}

.modal-image {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #330000, #660000);
	border-radius: 10px;
	min-height: 300px;
}

.modal-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.modal-info h2 {
	color: var(--text-white);
	margin-bottom: 1rem;
	font-size: 2rem;
}

.modal-info > p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.modal-price {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding: 1rem;
	background: rgba(220, 20, 60, 0.1);
	border-radius: 5px;
}
.modal-original-price {
	text-decoration: line-through;
	color: rgba(224, 224, 224, 0.7);
	font-size: 1rem;
	margin-bottom: 0.25rem;
}
.modal-discount-price {
	color: var(--accent-gold);
	font-size: 1.4rem;
	font-weight: 700;
}

.price {
	color: var(--accent-gold);
	font-size: 2rem;
	font-weight: bold;
}

.modal-features {
	margin-top: 2rem;
}

.modal-features h4 {
	color: var(--primary-red);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

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

.modal-features li {
	color: var(--text-light);
	padding: 0.5rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.modal-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-red);
	font-weight: bold;
}

@media (max-width: 768px) {
	.modal-body {
		grid-template-columns: 1fr;
	}
}

/* ============ Cart Sidebar ============ */
.cart-sidebar {
	position: fixed;
	right: 0;
	top: 0;
	width: 350px;
	height: 100vh;
	background: linear-gradient(180deg, var(--darker-bg) 0%, #2a0000 100%);
	box-shadow: -5px 0 20px rgba(220, 20, 60, 0.3);
	z-index: 999;
	transform: translateX(400px);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	border-left: 2px solid var(--primary-red);
}

.cart-sidebar.active {
	transform: translateX(0);
}

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

.cart-header h3 {
	color: var(--text-white);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.close-cart {
	color: var(--text-light);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.3s ease;
}

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

.cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 1rem;
	.cart-item-original {
		text-decoration: line-through;
		color: rgba(224, 224, 224, 0.7);
		font-size: 0.85rem;
	}
	.cart-item-discount {
		color: var(--accent-gold);
		font-weight: 700;
	}
}

.cart-item {
	background: rgba(220, 20, 60, 0.1);
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 5px;
	border-left: 3px solid var(--primary-red);
}

.cart-item-name {
	color: var(--text-white);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.cart-item-price {
	color: var(--accent-gold);
	font-weight: bold;
}

.cart-footer {
	border-top: 2px solid var(--primary-red);
	padding: 1.5rem;
}

.cart-total {
	color: var(--text-light);
	margin-bottom: 1rem;
	font-size: 1.1rem;
	display: flex;
	justify-content: space-between;
}

.cart-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
	display: none;
}

.cart-overlay.active {
	display: block;
}

/* ============ About Section ============ */
.about {
	padding: 5rem 0;
	background: linear-gradient(
		180deg,
		var(--darker-bg) 0%,
		var(--dark-bg) 100%
	);
}

.about-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.about-content p {
	font-size: 1.1rem;
	color: var(--text-light);
	line-height: 1.8;
}

/* ============ Contact Section ============ */
.contact {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--dark-bg) 0%, #1a0000 100%);
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
	padding: 1rem;
	border: 2px solid var(--primary-red);
	background: var(--darker-bg);
	color: var(--text-light);
	border-radius: 5px;
	font-family: inherit;
	transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
	border-color: var(--light-red);
}

/* ============ Footer ============ */
.footer {
	background: linear-gradient(135deg, var(--darker-bg) 0%, #0a0a0a 100%);
	border-top: 2px solid var(--primary-red);
	padding: 3rem 0 1rem;
}

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

.footer-section h4 {
	color: var(--primary-red);
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-section p,
.footer-section ul {
	color: var(--text-light);
}

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

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

.footer-section a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

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

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

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 2px solid var(--primary-red);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--primary-red);
	color: white;
	transform: scale(1.1);
}

.footer-bottom {
	text-align: center;
	padding-top: 1rem;
	border-top: 1px solid rgba(220, 20, 60, 0.2);
	color: var(--text-light);
}

/* ============ Mobile-First Responsive Design ============ */

/* Extra Small Devices (iPhone 1-13 Pro, 320px - 430px) */
@media (max-width: 430px) {
	.container {
		padding: 0 12px;
	}

	.navbar {
		padding: 0.75rem 0;
	}

	.nav-wrapper {
		flex-wrap: wrap;
		gap: 0.25rem;
	}

	.logo h1 {
		font-size: 1.1rem;
		letter-spacing: 0.5px;
	}

	.nav-menu {
		display: none;
	}

	.search-bar {
		order: 3;
		width: 100%;
		flex: 1;
		margin: 0.5rem 0;
		border-radius: 15px;
		padding: 0.4rem 0.8rem;
	}

	.search-input {
		font-size: 0.85rem;
	}

	.nav-icons {
		gap: 1rem;
	}

	.hero {
		height: 300px;
	}

	.hero-content h2 {
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}

	.hero-content p {
		font-size: 0.95rem;
		margin-bottom: 1rem;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}

	.filter-buttons {
		gap: 0.4rem;
		flex-wrap: wrap;
	}

	.filter-btn {
		padding: 6px 12px;
		font-size: 0.8rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.product-card {
		border-radius: 8px;
	}

	.product-image {
		height: 180px;
	}

	.product-name {
		font-size: 1rem;
	}

	.product-price {
		font-size: 1.3rem;
	}

	.product-btn {
		padding: 6px 10px;
		font-size: 0.8rem;
	}

	.modal-content {
		width: 95%;
		margin: 20px auto;
	}

	.modal-body {
		grid-template-columns: 1fr;
		padding: 1.5rem;
		gap: 1rem;
	}

	.modal-image {
		min-height: 200px;
	}

	.modal-info h2 {
		font-size: 1.5rem;
	}

	.contact-form input,
	.contact-form textarea {
		padding: 0.8rem;
		font-size: 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.cart-sidebar {
		width: 100%;
	}

	.search-suggestions {
		max-height: 300px;
	}
}

/* Small Devices (iPhone 14-15 Plus, 430px - 600px) */
@media (min-width: 431px) and (max-width: 600px) {
	.container {
		padding: 0 15px;
	}

	.navbar {
		padding: 0.8rem 0;
	}

	.nav-wrapper {
		gap: 1rem;
	}

	.logo h1 {
		font-size: 1.3rem;
	}

	.nav-menu {
		display: none;
	}

	.search-bar {
		flex: 0 1 180px;
		border-radius: 20px;
		padding: 0.5rem 0.9rem;
	}

	.hero {
		height: 350px;
	}

	.hero-content h2 {
		font-size: 1.6rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

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

	.product-image {
		height: 200px;
	}

	.filter-buttons {
		gap: 0.5rem;
	}

	.filter-btn {
		padding: 7px 14px;
		font-size: 0.85rem;
	}

	.modal-body {
		grid-template-columns: 1fr;
	}

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

/* Tablets (iPad, 600px - 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
	.container {
		padding: 0 20px;
	}

	.navbar {
		padding: 0.9rem 0;
	}

	.nav-wrapper {
		gap: 1.5rem;
	}

	.logo h1 {
		font-size: 1.6rem;
	}

	.nav-menu {
		display: flex;
		gap: 1.5rem;
	}

	.nav-link {
		font-size: 0.95rem;
	}

	.search-bar {
		flex: 0 1 250px;
	}

	.hero {
		height: 400px;
	}

	.hero-content h2 {
		font-size: 2.2rem;
	}

	.hero-content p {
		font-size: 1.15rem;
	}

	.section-title {
		font-size: 2.2rem;
	}

	.products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}

	.product-image {
		height: 220px;
	}

	.filter-buttons {
		gap: 0.7rem;
	}

	.filter-btn {
		padding: 8px 16px;
		font-size: 0.9rem;
	}

	.modal-body {
		grid-template-columns: 1fr 1fr;
	}

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

/* Large Devices (Desktop, 1024px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
	.products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}

	.section-title {
		font-size: 2.5rem;
	}

	.logo h1 {
		font-size: 1.8rem;
	}

	.search-bar {
		flex: 0 1 300px;
	}
}

/* Extra Large Devices (4K, 1440px - 2160px) */
@media (min-width: 1441px) and (max-width: 2160px) {
	.container {
		max-width: 1600px;
	}

	.products-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 2.5rem;
	}

	.product-card {
		border-radius: 12px;
	}

	.product-image {
		height: 300px;
	}

	.section-title {
		font-size: 3rem;
	}

	.logo h1 {
		font-size: 2rem;
	}

	.search-bar {
		flex: 0 1 350px;
		padding: 0.7rem 1.2rem;
	}

	.modal-content {
		max-width: 1000px;
	}
}

/* Ultra Large Devices (8K & Beyond, 2160px+) */
@media (min-width: 2161px) {
	.container {
		max-width: 2000px;
		padding: 0 40px;
	}

	.products-grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 3rem;
	}

	.product-card {
		border-radius: 15px;
	}

	.product-image {
		height: 350px;
	}

	.product-name {
		font-size: 1.4rem;
	}

	.product-price {
		font-size: 1.8rem;
	}

	.section-title {
		font-size: 3.5rem;
		margin-bottom: 4rem;
	}

	.logo h1 {
		font-size: 2.2rem;
	}

	.hero {
		height: 600px;
	}

	.hero-content h2 {
		font-size: 4rem;
	}

	.hero-content p {
		font-size: 1.8rem;
	}

	.search-bar {
		flex: 0 1 450px;
		padding: 0.8rem 1.5rem;
	}

	.search-input {
		font-size: 1.1rem;
	}

	.btn {
		padding: 15px 40px;
		font-size: 1.2rem;
	}

	.filter-buttons {
		gap: 1.5rem;
	}

	.filter-btn {
		padding: 12px 30px;
		font-size: 1.1rem;
	}

	.modal-content {
		max-width: 1200px;
	}

	.modal-body {
		padding: 3rem;
		gap: 3rem;
	}

	.modal-image {
		min-height: 500px;
	}

	.modal-info h2 {
		font-size: 2.5rem;
	}

	.footer-content {
		gap: 3rem;
	}
}

/* Landscape Mode Optimization */
@media (max-height: 500px) {
	.hero {
		height: 250px;
	}

	.hero-content h2 {
		font-size: 1.5rem;
	}

	.hero-content p {
		font-size: 0.9rem;
	}

	.hero-content button {
		padding: 8px 16px;
		font-size: 0.85rem;
	}
}

/* Touch Device Optimization */
@media (hover: none) {
	.product-card {
		transform: none;
	}

	.product-btn {
		padding: 8px 12px;
	}

	.btn {
		min-height: 44px;
	}

	.nav-link {
		padding: 0.5rem 0;
	}

	.filter-btn {
		min-height: 44px;
	}

	.search-input {
		font-size: 16px;
	}
}

/* ============ Scrollbar Styling ============ */
::-webkit-scrollbar {
	width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
	background: var(--light-red);
}
