﻿

/* HOME PAGE */

:root {
	--bg: #0f0f0f;
	--bg2: #151515;
	--card: #1d1d1d;
	--muted: #b7b7b7;
	--text: #f2f2f2;
	--accent: #e67e22;
	--accent-2: #2ecc71;
	--border: #262626;
	--radius: 14px;
	--radius-sm: 10px;
	--shadow: 0 10px 24px rgba(0,0,0,.6);
	--max: 1200px;
}

.s1 {
	background: rgba(0, 0, 0, 0.25);
}

.s2 {
	background: rgba(24, 24, 24, 0.25);
}

.why {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 16px
}

	.why .card {
		background: var(--card);
		border: 1px solid var(--border);
		border-radius: var(--radius);
		padding: 18px
	}

@media (max-width: 991px) {
	.why {
		display: none;
	}

	#catfilters {
		display:none;
	}
}

.icon {
	font-size: 22px;
	margin-bottom: 8px
}

.section {
	padding: 12px 0 18px;
	border-top: 1px solid var(--border)
}

.muted {
	color: var(--muted)
}

.quotes {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px
}

blockquote {
	margin: 0;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 16px;
	color: #ddd
}

	blockquote xfooter {
		margin-top: 8px;
		color: #aaa;
		font-size: 14px
	}


.product-card {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #1c1c1c;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

	.product-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 8px 18px rgba(0,0,0,0.6);
	}

.thumb {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

	.thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.overlay2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.thumb:hover .overlay {
	opacity: 1;
}

.details {
	padding: 16px;
}

	.details h3 {
		margin: 0 0 6px;
		font-size: 24px;
	}

.desc {
	font-size: 14px;
	color: #bbb;
	margin-bottom: 12px;
	height: 42px;
	overflow: hidden;
}

	.desc p:after {
		content: "";
		background: linear-gradient(to right, transparent, #1c1c1c 80%);
		display: block;
		height: 15px;
		inset-block-end: 0;
		position: absolute;
		right: 13px;
		width: 50%;
		bottom: 116px;
	}

.meta {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 12px;
}

.actions {
	display: flex;
	justify-content: space-between;
}

.btn {
	padding: 8px 14px;
	background: #333;
	border-radius: 6px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
}

	.btn.primary {
		background: #e67e22;
	}

.version {
	display: inline-block;
	background: #444;
	padding: 7px 10px;
	border-radius: 6px;
	font-size: 13px;
	margin-right: 10px;
}


.cats {
	display: grid;
	grid-template-columns: repeat(6,1fr);
	gap: 14px;
	text-decoration: none;
}

.cat, .sorter {
	background: linear-gradient(180deg,#222,#1a1a1a);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 7px;
	text-align: center;
	transition: transform .25s ease;
		text-decoration:none;
		cursor: pointer;
}

	.cat:hover, .sorter:hover {
		transform: translateY(-4px);
		text-decoration: none;
	}

	.cat span, .sorter span {
		display: block;
		color: #ddd;
		margin-top: 8px;
		text-decoration: none;
	}
	.sorter span {
		margin-top: 0;
	}

	.cat.active, .sorter.active {
		background: linear-gradient(180deg,#515050,#484747);
	}



/* PRODUCTS */

.product-card {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	background: #1c1c1c;
	color: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

	.product-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 8px 18px rgba(0,0,0,0.6);
	}

.thumb {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
}

	.thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

.thumb:hover .overlay {
	opacity: 1;
}

.details {
	padding: 16px;
}

	.details h3 {
		margin: 0 0 6px;
		font-size: 24px;
	}


.meta {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	margin-bottom: 12px;
}

.actions {
	display: flex;
	justify-content: space-between;
}

/*.btn {
	padding: 8px 14px;
	background: #333;
	border-radius: 6px;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
}

	.btn.primary {
		background: #e67e22;
	}
*/

.version {
	display: inline-block;
	background: #444;
	padding: 7px 10px;
	border-radius: 6px;
	font-size: 13px;
	margin-right: 10px;
}



/* PRODUCT DETAILS */

h3.straightx, h4, h5, h6 {
	font-family: Impact, sans-serif;
	font-style: normal;
	font-weight: bold;
	letter-spacing: normal;
}

.hidden {
	display: none;
}

body {
	color: #eee;
	line-height: 1.6;
	margin: 0;
	padding: 0;
}

h1, h2, h3 {
	color: #fff;
	margin-bottom: 10px;
}

a {
	color: #e67e22;
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
	}

/* Buttons */
.btn {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.25s ease, transform 0.2s ease;
	text-decoration: none;
	background: #333;
}

	.btn:hover {
		background: #222;
		transform: translateY(-2px);
		text-decoration: none;
	}

	.btn.primary {
		background: #e67e22;
		color: #fff;
		text-decoration: none;
	}

		.btn.primary:hover {
			background: #d35400;
			transform: translateY(-2px);
			text-decoration: none;
		}

	.btn.secondary {
		background: #ffc107;
		color: #eee;
		text-decoration: none;
	}

		.btn.secondary:hover {
			background: #444;
			text-decoration: none;
		}

	.btn.tertiary {
		background: #a5978b;
		color: #eee;
		text-decoration: none;
	}

		.btn.tertiary:hover {
			background: #686058;
			text-decoration: none;
		}

.quickview {
	/* background: #e67e22; */
	border: none;
	padding: 10px 18px;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	width: 100%;
	height: 100%;
	padding-top: 20%;
}

	.quickview:hover {
		background: rgb(0 0 0 / 4%);
		color: white;
		text-decoration: none;
	}

/* Hero section */
.hero {
	display: flex;
	gap: 20px;
	padding: 30px;
	background: rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid #222;
}

	.hero img.main-img {
		width: 100%;
		border-radius: 12px;
		object-fit: cover;
	}

.hero-info {
	flex: 1;
}

	.hero-info h1 {
		font-size: 32px;
		margin: 0 0 12px;
	}

	.hero-info .version {
		display: inline-block;
		background: #444;
		padding: 4px 10px;
		border-radius: 6px;
		font-size: 13px;
		margin-right: 10px;
	}

	.hero-info .price {
		font-size: 20px;
		font-weight: bold;
		color: #2ecc71;
	}

	.hero-info .old-price {
		text-decoration: line-through;
		font-size: 14px;
		color: #888;
		margin-left: 6px;
	}

.description {
	padding: 30px;
	background: rgba(24, 24, 24, 0.25);
}

/* Features */
.features {
	padding: 30px;
	background: rgba(24, 24, 24, 0.25);
}

	.features ul {
		list-style: none;
		padding: 0;
	}

	.features li {
		margin: 8px 0;
		padding-left: 28px;
		position: relative;
	}

		.features li::before {
			content: "✔";
			position: absolute;
			left: 0;
			color: #2ecc71;
		}

/* Demo section */
.demo {
	padding: 30px;
	text-align: center;
	background: rgba(0, 0, 0, 0.25);
}

	.demo .video {
		margin-top: 15px;
	}

	.demo iframe {
		border-radius: 12px;
		max-width: 100%;
	}

/* Requirements */
.requirements {
	padding: 30px;
	background: rgba(0, 0, 0, 0.25);
}

	.requirements ul {
		list-style: none;
		padding: 0;
	}

	.requirements li {
		margin: 6px 0;
		padding-left: 20px;
		position: relative;
	}

		.requirements li::before {
			content: "•";
			position: absolute;
			left: 0;
			color: #e67e22;
		}

/* Reviews */
.reviews {
	padding: 30px;
	background: rgba(24, 24, 24, 0.25);
}

.review {
	background: rgba(34, 34, 34, 0.45);
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #ddd;
}

	.review strong {
		color: #fff;
	}

/* Changelog */
.changelog {
	padding: 30px;
	background: rgba(0, 0, 0, 0.25);
}

	.changelog details {
		background: #222;
		margin-bottom: 8px;
		padding: 10px 15px;
		border-radius: 6px;
	}

	.changelog summary {
		cursor: pointer;
		font-weight: bold;
	}

/* Related Products */
.related {
	margin-top: 50px;
	padding: 30px;
	text-align: center;
	background: rgba(24, 24, 24, 0.25);
}

.related-cards {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 15px;
}

.related .card {
	width: 200px;
	background: rgba(0, 0, 0, 0.40);
	border-radius: 10px;
	padding: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

	.related .card:hover {
		transform: translateY(-4px);
		box-shadow: 0 6px 12px rgba(0,0,0,0.6);
	}

	.related .card img {
		width: 100%;
		border-radius: 8px;
		margin-bottom: 10px;
	}

	.related .card h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}

.shortDesc {
	margin-bottom: 20px;
	font-weight: bold;
}


#spinnerspinner {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	animation: spin 2s linear infinite; /* Apply the spin animation */
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

