:root {
	--primary: #a855f7;
	--primary-light: #c084fc;
	--secondary: #06b6d4;
	--accent: #f43f5e;
	--gradient: linear-gradient(135deg, var(--primary), var(--secondary));
	--gradient-accent: linear-gradient(135deg, var(--accent), var(--primary));
	--text: #f1f5f9;
	--text-muted: #94a3b8;
	--text-dim: #64748b;
	--glass-bg: rgba(255, 255, 255, 0.06);
	--glass-border: rgba(255, 255, 255, 0.1);
	--glass-hover: rgba(255, 255, 255, 0.12);
	--glass-strong: rgba(255, 255, 255, 0.1);
	--bg-dark: #0f0a1a;
	--bg-gradient: linear-gradient(135deg, #0f0a1a 0%, #1a0a2e 30%, #0a1628 70%, #0f0a1a 100%);
	--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	--max-width: 1200px;
	--header-height: 64px;
	--glass-radius: 16px;
	--shadow: 0 8px 32px rgba(0,0,0,0.3);
	--shadow-sm: 0 4px 16px rgba(0,0,0,0.2);
}

* { margin: 0; padding: 0; outline: 0; box-sizing: border-box; }
html { height: 100%; }
body {
	font: 15px/1.6 var(--font-family);
	color: var(--text);
	background: var(--bg-dark);
	background-image: var(--bg-gradient);
	background-attachment: fixed;
	min-height: 100%;
}
a { color: var(--text); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

::selection { background: var(--primary); color: #fff; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-sm-6, .col-md, .col-md-3, .col-md-4, .col-md-6, .col-lg-3, .col-lg-4 { position: relative; width: 100%; min-height: 1px; padding: 0 10px; }
.col { flex: 1 0 0%; max-width: 100%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }

@media (min-width: 576px) {
	.col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 768px) {
	.col-md { flex: 1 0 0%; max-width: 100%; }
	.col-md-3 { flex: 0 0 25%; max-width: 25%; }
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-6 { flex: 0 0 50%; max-width: 50%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}
@media (min-width: 992px) {
	.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
	.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
}

/* HEADER */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: rgba(15, 10, 26, 0.75);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--glass-border);
	height: var(--header-height);
}
#header .wrap {
	display: flex;
	align-items: center;
	height: 100%;
}
#header .logo {
	flex-shrink: 0;
	line-height: 1;
}
#header .logo a { -webkit-text-fill-color: transparent; }
#menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	margin-left: auto;
}
#menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	margin: 5px 0;
	border-radius: 2px;
}
#nav {
	margin-left: auto;
}
#nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
}
#nav ul li a {
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 10px;
	transition: all 0.25s;
	white-space: nowrap;
	color: var(--text-muted);
	border: 1px solid transparent;
}
#nav ul li a:hover,
#nav ul li a.active {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	color: var(--text);
	border: 1px solid var(--glass-border);
}
.search-btn {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border) !important;
}
.nav-search {
	display: flex;
	align-items: center;
	gap: 0;
}
.nav-search input {
	width: 140px;
	padding: 6px 10px;
	font-size: 13px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-right: none;
	border-radius: 10px 0 0 10px;
	color: var(--text);
	outline: none;
	transition: width 0.25s, border-color 0.25s;
}
.nav-search input:focus {
	width: 200px;
	border-color: var(--primary);
}
.nav-search input::placeholder {
	color: var(--text-dim);
}
.nav-search button {
	padding: 6px 10px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 0 10px 10px 0;
	color: var(--text-muted);
	cursor: pointer;
	transition: color 0.2s;
	line-height: 1;
}
.nav-search button:hover {
	color: var(--primary-light);
}
.nav-search button .icon-search {
	font-size: 16px;
	display: block;
	line-height: 1;
}


/* NAV DROPDOWN */
.nav-dropdown {
	position: relative;
}
.nav-dropdown-toggle {
	cursor: pointer;
}
.nav-dropdown-toggle::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	margin-left: 6px;
	margin-bottom: 2px;
	transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-toggle::after {
	transform: rotate(-135deg);
}
.nav-dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 640px;
	max-width: 90vw;
	background: rgba(20, 15, 30, 0.97);
	backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border);
	border-radius: 14px;
	padding: 16px;
	box-shadow: var(--shadow);
	z-index: 1000;
}
.nav-dropdown.open .nav-dropdown-menu {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px 16px;
}
.nav-dropdown-group {
	padding: 0;
}
.nav-dropdown-group-title {
	display: block;
	padding: 4px 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--secondary);
	opacity: 0.7;
	margin-bottom: 4px;
}
.nav-dropdown-group a {
	display: block;
	padding: 5px 8px;
	font-size: 13px;
	color: var(--text-muted);
	border-radius: 8px;
	transition: all 0.2s;
}
.nav-dropdown-group a:hover {
	background: var(--glass-bg);
	color: var(--text);
}
.nav-dropdown-all {
	grid-column: 1 / -1;
	border-top: 1px solid var(--glass-border);
	margin-top: 8px;
	padding: 8px 0 0;
}
.nav-dropdown-all a {
	display: block;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-light);
	border-radius: 8px;
	transition: all 0.2s;
}
.nav-dropdown-all a:hover {
	background: var(--glass-bg);
}

.row > .ad {
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 10px;
}

@media (min-width: 768px) {
	.nav-dropdown:hover .nav-dropdown-menu {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 8px 16px;
	}
}

@media (max-width: 767px) {
	#menu-toggle { display: block; }
	#nav {
		display: none;
		position: absolute;
		top: var(--header-height);
		left: 0;
		width: 100%;
		background: rgba(15, 10, 26, 0.95);
		backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--glass-border);
		box-shadow: var(--shadow);
	}
	#nav.open { display: block; }
	#nav ul { flex-direction: column; padding: 10px; }
	#nav ul li { width: 100%; }
	#nav ul li a { display: block; padding: 12px 16px; }
	.nav-dropdown.open .nav-dropdown-menu {
		display: block;
	}
	.nav-dropdown-menu {
		position: static;
		box-shadow: none;
		border: none;
		background: transparent;
		padding: 0 0 0 16px;
		min-width: auto;
		width: auto;
		max-width: none;
		transform: none;
	}
	.nav-dropdown-group {
		flex: none;
		padding: 0;
	}
	.nav-dropdown-all {
		flex: none;
	}
	.nav-dropdown-toggle::after {
		float: right;
		margin-top: 6px;
	}
	.search-item {
		padding: 8px 0;
	}
	.nav-search input {
		width: 100%;
		flex: 1;
	}
	.nav-search {
		width: 100%;
	}
}

/* MAIN */
#main { padding-top: var(--header-height); min-height: calc(100vh - 200px); }

/* SECTION TITLE */
.section-title {
	margin: 50px 0 30px;
	text-align: center;
}
.section-title h2 {
	font-size: 28px;
	font-weight: 400;
	color: var(--text);
	letter-spacing: -0.03em;
	line-height: 1.3;
}
.section-title h2 strong {
	font-weight: 800;
	background: linear-gradient(135deg, var(--primary-light), #67e8f9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.section-title h2::after {
	content: '';
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
	margin: 10px auto 0;
	border-radius: 3px;
}
.section-desc {
	margin-top: 10px;
	color: var(--text-muted);
	text-align: center;
	font-size: 15px;
}

/* HERO / CAROUSEL */
.hero-section {
	padding: 40px 0 30px;
	margin-bottom: 10px;
	overflow: hidden;
	background: radial-gradient(ellipse at 50% -20%, rgba(168, 85, 247, 0.07), transparent 60%),
	            radial-gradient(ellipse at 80% 80%, rgba(6, 182, 212, 0.04), transparent 50%);
	border-radius: 0;
}
.event-hero {
	padding: 16px 0 6px;
}
.event-hero .event-hero-inner {
	background: linear-gradient(135deg, var(--event-c1), var(--event-c2));
	border-radius: 14px;
	padding: 18px 22px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}
.event-hero .event-hero-inner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 50%);
	pointer-events: none;
}
.event-kicker {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.85;
	margin-bottom: 4px;
}
.event-hero h2 {
	font-size: 26px;
	line-height: 1.15;
	margin-bottom: 4px;
	position: relative;
	z-index: 1;
}
.event-range {
	font-size: 13px;
	opacity: 0.95;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 14px;
}
.event-cta {
	display: inline-block;
	padding: 6px 12px;
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 8px;
	font-weight: 700;
	font-size: 12px;
	text-decoration: none;
	color: #fff;
	transition: background 0.2s;
	white-space: nowrap;
}
.event-cta:hover {
	background: rgba(255,255,255,0.3);
}
.top-carousel-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.top-carousel {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 8px 0;
	flex: 1;
}
.top-carousel::-webkit-scrollbar {
	display: none;
}
.top-carousel-item {
	flex: 0 0 100%;
	display: flex;
	gap: 16px;
	scroll-snap-align: start;
}
.top-carousel-item > .top-item {
	flex: 0 0 calc(33.333% - 11px);
	min-width: 0;
}
@media (max-width: 768px) {
	.top-carousel-item > .top-item {
		flex: 0 0 calc(50% - 8px);
	}
}
@media (max-width: 480px) {
	.top-carousel-item > .top-item {
		flex: 0 0 100%;
	}
}
.top-item {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--glass-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
	position: relative;
	display: flex;
	flex-direction: column;
}
.top-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	background: var(--glass-hover);
}
.top-item .top-foto-link {
	display: block;
	overflow: hidden;
	margin-bottom: 0;
}
.top-item .top-foto {
	margin-bottom: 0;
}
.top-item .top-foto img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s;
	border-radius: 0;
}
.top-item:hover .top-foto img {
	transform: scale(1.08);
}
.top-item .top-info {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
	text-align: left;
}
.top-item .top-info .product-cat {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-muted);
	margin-bottom: 4px;
}
.top-item h3 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 6px;
}
.top-item h3 a {
	color: var(--text);
}
.top-item h3 a:hover {
	color: var(--primary-light);
}
.top-item .price-current {
	font-size: 18px;
}
@media (max-width: 768px) {
	.top-item .top-foto img {
		height: 170px;
	}
	.top-item h3 {
		font-size: 14px;
	}
}

.carousel-arrow {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	color: var(--text-muted);
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	z-index: 2;
}
.carousel-arrow:hover {
	background: var(--glass-hover);
	color: var(--text);
	border-color: var(--primary);
}
@media (max-width: 767px) {
	.carousel-arrow {
		display: none;
	}
}

/* PRODUCT CARD */
.product-card {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--glass-radius);
	overflow: hidden;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
	position: relative;
}
.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
	background: var(--glass-hover);
	border-color: rgba(168, 85, 247, 0.3);
}
.product-foto {
	position: relative;
	overflow: hidden;
	background: transparent;
}
.product-foto img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	transition: transform 0.5s;
}
.product-card:hover .product-foto img {
	transform: scale(1.08);
}
.marketplace-rating {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: 999px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)) padding-box,
		linear-gradient(120deg, rgba(251, 191, 36, 0.7), rgba(244, 63, 94, 0.38), rgba(6, 182, 212, 0.4)) border-box;
	border: 1px solid transparent;
	line-height: 12px;
	overflow: hidden;
	box-shadow: 0 7px 18px rgba(3, 6, 15, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.marketplace-rating.compact {
	padding: 3px 9px;
	gap: 6px;
}
.marketplace-rating::before {
	content: "";
	position: absolute;
	top: 0;
	left: -35%;
	width: 35%;
	height: 100%;
	background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.45) 45%, transparent 100%);
	opacity: 0;
	transform: skewX(-20deg);
	pointer-events: none;
}
.rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	height: 12px;
	line-height: 12px;
}

.rating-star {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	line-height: 12px;
}
.rating-star .icon-star {
	display: block;
	font-size: 12px;
	line-height: 12px;
}

.rating-star.empty .icon-star { color: rgba(255, 255, 255, 0.28); }
.rating-star.full .icon-star {
	color: #fbbf24;
	text-shadow: 0 0 6px rgba(251, 191, 36, 0.28);
}
.rating-star.half .icon-star {
	color: rgba(255, 255, 255, 0.28);
}
.rating-star.half::after {
	content: "\e9d9";
	font-family: 'icons' !important;
	position: absolute;
	top: 50%;
	left: 0;
	width: 50%;
	height: 12px;
	overflow: hidden;
	color: #fbbf24;
	line-height: 12px;
	transform: translateY(-50%);
	text-shadow: 0 0 6px rgba(251, 191, 36, 0.28);
}
.rating-value {
	display: inline-flex;
	align-items: center;
	height: 12px;
	font-size: 12px;
	font-weight: 800;
	color: #f8fafc;
	letter-spacing: 0.2px;
	font-variant-numeric: tabular-nums;
	line-height: 12px;
}
.rating-source {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: rgba(248, 250, 252, 0.78);
	white-space: nowrap;
}
.marketplace-rating.compact .rating-source { display: none; }

.views-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(9, 14, 25, 0.62);
	border: 1px solid rgba(148, 163, 184, 0.28);
	font-size: 11px;
	font-weight: 600;
	color: #e2e8f0;
	line-height: 1;
	white-space: nowrap;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.views-badge .icon-fire {
	color: #f97316;
	font-size: 11px;
}
.views-badge.views-top { font-size: 10px; }

.product-meta-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin: 10px 0 12px;
}
.product-meta-row .views-badge {
	margin-left: auto;
}
.product-meta-row.context-top {
	margin: 10px 0 0;
}
.product-meta-row.context-detail {
	margin: 0;
	gap: 10px;
}
.votes-badge.votes-detail {
	display: grid;
	grid-template-columns: auto auto 1fr;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 10px 12px;
	margin: 10px 0 16px;
	border-radius: 10px;
	background: rgba(15, 23, 42, 0.28);
	border: 1px solid rgba(148, 163, 184, 0.18);
}
.vote-title {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-muted);
}
.vote-actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.vote-btn {
	height: 30px;
	padding: 0 11px;
	border-radius: 8px;
	border: 1px solid rgba(148, 163, 184, 0.28);
	background: rgba(255,255,255,0.01);
	color: var(--text);
	cursor: pointer;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	transition: all 0.2s;
}
.vote-btn:hover {
	border-color: var(--primary);
	background: rgba(168, 85, 247, 0.1);
}
.vote-btn.is-active {
	border-color: var(--primary);
	background: rgba(168, 85, 247, 0.16);
	color: #fff;
}
.vote-up.is-active {
	border-color: rgba(34, 197, 94, 0.55);
	background: rgba(34, 197, 94, 0.18);
}
.vote-down.is-active {
	border-color: rgba(239, 68, 68, 0.5);
	background: rgba(239, 68, 68, 0.16);
}
.vote-up:hover {
	border-color: rgba(34, 197, 94, 0.4);
	background: rgba(34, 197, 94, 0.1);
}
.vote-down:hover {
	border-color: rgba(239, 68, 68, 0.35);
	background: rgba(239, 68, 68, 0.1);
}
.votes-count {
	font-size: 12px;
	color: var(--text-muted);
	justify-self: end;
	white-space: nowrap;
}
.votes-count strong {
	color: var(--text);
	font-size: 14px;
}
@media (max-width: 767px) {
	.votes-badge.votes-detail {
		grid-template-columns: 1fr;
		justify-items: start;
		gap: 8px;
	}
	.votes-count {
		justify-self: start;
	}
}
.product-info {
	padding: 12px 14px 16px;
}
.deal-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}
.deal-badges-card,
.deal-badges-top {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	z-index: 3;
	margin-bottom: 0;
}
.deal-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 1px solid transparent;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.badge-discount {
	background: rgba(34, 197, 94, 0.2);
	border-color: rgba(34, 197, 94, 0.35);
	color: #86efac;
}
.badge-hot {
	background: rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.35);
	color: #fca5a5;
}
.badge-shipping {
	background: rgba(59, 130, 246, 0.22);
	border-color: rgba(59, 130, 246, 0.4);
	color: #93c5fd;
}
.badge-coupon {
	background: rgba(251, 191, 36, 0.2);
	border-color: rgba(251, 191, 36, 0.35);
	color: #fde68a;
}
.badge-expired {
	background: rgba(239, 68, 68, 0.22);
	border-color: rgba(239, 68, 68, 0.45);
	color: #fca5a5;
}
.badge-ending,
.badge-date {
	background: rgba(249, 115, 22, 0.2);
	border-color: rgba(249, 115, 22, 0.35);
	color: #fdba74;
}
.product-cat {
	font-size: 11px;
	color: var(--text-dim);
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 5px;
}
.product-cat a { color: var(--text-dim); }
.product-cat a:hover { color: var(--primary-light); }
.product-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 8px;
}
.product-title a {
	color: var(--text);
}
.product-title a:hover {
	color: var(--primary-light);
}
.product-foto-link {
	display: block;
	overflow: hidden;
}
.product-foto-link .product-foto img {
	display: block;
}
.product-card:hover .product-foto-link .product-foto img {
	transform: scale(1.08);
}

/* FEATURED CARD */
@media (min-width: 992px) {
	.product-card.featured {
		display: flex;
		flex-direction: row;
		align-items: stretch;
	}
	.product-card.featured .product-foto-link {
		flex: 0 0 280px;
		max-width: 280px;
		overflow: hidden;
	}
	.product-card.featured .product-foto {
		height: 100%;
	}
	.product-card.featured .product-foto img {
		height: 100%;
		width: 280px;
		object-fit: cover;
	}
	.product-card.featured .product-info {
		flex: 1;
		padding: 24px 28px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.product-card.featured .product-title {
		font-size: 20px;
		-webkit-line-clamp: 3;
	}
	.product-card.featured .price-current {
		font-size: 22px;
	}
}
.product-card.featured {
	border-color: rgba(168, 85, 247, 0.25);
	background: rgba(168, 85, 247, 0.05);
}
.product-card.featured:hover {
	border-color: rgba(168, 85, 247, 0.5);
}

.product-price {
	margin-bottom: 6px;
}
.price-old {
	font-size: 12px;
	color: var(--text-dim);
	text-decoration: line-through;
	margin-right: 8px;
}
.price-current {
	font-size: 17px;
	font-weight: 700;
	color: var(--accent);
}
.coupon-box {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(251, 191, 36, 0.12);
	border: 1px dashed rgba(251, 191, 36, 0.4);
	border-radius: 10px;
	padding: 8px 10px;
	margin-top: 8px;
	max-width: 100%;
}
.coupon-box.compact {
	padding: 6px 8px;
	gap: 6px;
}
.coupon-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-weight: 700;
	color: #fcd34d;
}
.coupon-code {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	font-size: 12px;
	font-weight: 700;
	color: #fde68a;
	background: rgba(0,0,0,0.2);
	padding: 3px 8px;
	border-radius: 6px;
	max-width: 160px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.coupon-copy {
	border: 1px solid rgba(251, 191, 36, 0.4);
	background: rgba(0,0,0,0.2);
	color: #fde68a;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
	padding: 5px 8px;
	cursor: pointer;
}
.coupon-copy:hover {
	background: rgba(251, 191, 36, 0.2);
}

/* PRODUCT CARD MINI (related) */
.product-card.mini .product-foto img {
	aspect-ratio: 4/3;
}
.product-card.mini .product-title {
	font-size: 14px;
}

/* BREADCRUMB */
.breadcrumb {
	padding: 28px 0 16px;
	font-size: 13px;
	color: var(--text-dim);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 0;
	letter-spacing: 0.01em;
	border-bottom: 1px solid var(--glass-border);
	margin-bottom: 28px;
}
.breadcrumb a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.2s;
	display: inline-flex;
	align-items: center;
}
.breadcrumb a:hover {
	color: #fff;
}
.breadcrumb a::after {
	content: '›';
	margin: 0 12px;
	color: var(--text-muted);
	opacity: 0.5;
	font-size: 16px;
	font-weight: 600;
}
.breadcrumb a:last-child::after {
	display: none;
}
.breadcrumb span {
	color: var(--primary-light);
	font-weight: 450;
	display: inline-flex;
	align-items: center;
}

/* PRODUCT DETAIL */
.product-detail { margin: 24px 0; }
.product-detail-foto {
	max-height: 480px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: var(--glass-radius);
}
.product-detail-foto img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-height: 480px;
	box-shadow: var(--shadow-sm);
}
.product-detail-cat {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--text-dim);
	letter-spacing: 1px;
	margin-bottom: 8px;
}
.product-detail-cat a { color: var(--text-dim); }
.product-detail-cat a:hover { color: var(--primary-light); }
.product-detail-title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text);
	margin-bottom: 18px;
}
.product-detail-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.product-detail-rating .marketplace-rating {
	padding: 6px 12px;
}
.views-badge.views-detail {
	background: rgba(15, 23, 42, 0.22);
	border-color: rgba(148, 163, 184, 0.24);
	color: var(--text);
}

.product-card:hover .marketplace-rating,
.top-item:hover .marketplace-rating {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(2, 6, 23, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.product-card:hover .marketplace-rating::before,
.top-item:hover .marketplace-rating::before {
	opacity: 1;
	animation: rating-shimmer 0.9s ease;
}

@keyframes rating-shimmer {
	from { left: -35%; }
	to { left: 125%; }
}
.product-detail-price { margin-bottom: 12px; }
.product-detail-price .price-current {
	font-size: 30px;
}

/* COUNTDOWN */
.countdown-block {
	margin-bottom: 20px;
	padding: 16px 20px;
	background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(239,68,68,0.04));
	border: 1px solid rgba(249,115,22,0.15);
	border-radius: 14px;
	text-align: center;
}
.countdown-urgent {
	background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(249,115,22,0.06));
	border-color: rgba(239,68,68,0.25);
	animation: cd-pulse 2s ease-in-out infinite;
}
@keyframes cd-pulse {
	0%, 100% { border-color: rgba(239,68,68,0.25); }
	50% { border-color: rgba(239,68,68,0.5); box-shadow: 0 0 20px rgba(239,68,68,0.15); }
}
.countdown-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #fb923c;
}
.countdown-urgent .countdown-header {
	color: #f87171;
}
.countdown-icon {
	font-size: 16px;
}
.countdown-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin-bottom: 12px;
}
.countdown-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 56px;
}
.countdown-num {
	font-size: 32px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
	background: rgba(255,255,255,0.06);
	padding: 6px 10px;
	border-radius: 10px;
	min-width: 44px;
	display: inline-block;
}
.countdown-urgent .countdown-num {
	background: rgba(239,68,68,0.12);
	color: #fca5a5;
}
.countdown-unit-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--text-dim);
	margin-top: 4px;
}
.countdown-sep {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-dim);
	padding-bottom: 18px;
}
.countdown-bar-wrap {
	height: 3px;
	background: rgba(255,255,255,0.06);
	border-radius: 3px;
	overflow: hidden;
}
.countdown-bar {
	height: 100%;
	background: linear-gradient(90deg, #fb923c, #f87171);
	border-radius: 3px;
	transition: width 1s linear;
}
.countdown-urgent .countdown-bar {
	background: linear-gradient(90deg, #f87171, #ef4444);
}
.countdown-expired .countdown-num {
	color: var(--text-dim);
	background: rgba(255,255,255,0.03);
}
.countdown-expired .countdown-bar {
	width: 100% !important;
	background: var(--text-dim);
}

.product-detail .coupon-box {
	margin-bottom: 18px;
}

.btn-buy {
	display: inline-block;
	background: var(--gradient);
	color: #fff;
	padding: 14px 32px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	transition: opacity 0.25s, transform 0.25s;
	margin-bottom: 20px;
	box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}
.btn-buy:hover { opacity: 0.92; transform: translateY(-2px); color: #fff; }

.product-detail-meta {
	font-size: 13px;
	color: var(--text-dim);
	margin-bottom: 18px;
	margin-top: 14px;
}
.product-detail-meta span {
	margin-right: 18px;
}

/* SHARE */
.share {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.shbt a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	transition: transform 0.2s, opacity 0.2s;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
}
.shbt a:hover { transform: translateY(-2px); opacity: 0.85; }
.shbt.facebook a { background: #3b5998; }
.shbt.twitter a { background: #1da1f2; }
.shbt.whatsapp a { background: #25d366; }
.shbt a span { color: #fff; font-size: 16px; line-height: 1; }
.shbt.copy button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.9), rgba(168, 85, 247, 0.9));
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(6, 182, 212, 0.28);
	transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
}
.shbt.copy button:hover {
	transform: translateY(-2px);
	opacity: 0.95;
	box-shadow: 0 10px 24px rgba(168, 85, 247, 0.32);
}

/* DESCRIPTION */
.product-description {
	margin: 35px 0;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: var(--glass-radius);
	padding: 28px;
}
.product-description h2 {
	font-size: 20px;
	margin-bottom: 18px;
	color: var(--text);
}
.product-description .text p {
	margin-bottom: 14px;
	color: var(--text-muted);
}
.product-description .features {
	padding-left: 20px;
	margin-bottom: 15px;
}
.product-description .features li {
	list-style: disc;
	margin-bottom: 8px;
	line-height: 1.6;
	color: var(--text-muted);
}

/* TAGS */
.product-tags { margin: 25px 0 35px; }
.product-tags h3 { font-size: 14px; margin-bottom: 10px; color: var(--text-dim); }
.tag {
	display: inline-block;
	background: var(--glass-bg);
	backdrop-filter: blur(8px);
	border: 1px solid var(--glass-border);
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 12px;
	margin: 0 5px 10px 0;
	transition: all 0.25s;
	color: var(--text-muted);
}
.tag:hover {
	background: var(--gradient);
	color: #fff;
	border-color: transparent;
	transform: translateY(-1px);
}

/* RELATED */
.related-section { margin: 40px 0; }
.related-section h2 { font-size: 20px; margin-bottom: 20px; }

/* SEARCH */
.search-box { margin: 24px 0; }
.search-box form { display: flex; gap: 10px; max-width: 500px; }
.search-box input {
	flex: 1;
	padding: 12px 18px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	font-size: 14px;
	color: var(--text);
	transition: border-color 0.2s;
}
.search-box input:focus { border-color: var(--primary); }
.search-box input::placeholder { color: var(--text-dim); }
.search-box button {
	padding: 12px 24px;
	background: var(--gradient);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.25s;
}
.search-box button:hover { opacity: 0.9; }

/* STATIC PAGES */
.static-page {
	max-width: 800px;
	margin: 35px auto;
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--glass-radius);
	padding: 35px;
}
.static-page h1 { font-size: 28px; margin-bottom: 20px; }
.static-page h2 { font-size: 20px; margin: 28px 0 14px; color: var(--text); }
.static-page p { margin-bottom: 14px; line-height: 1.7; color: var(--text-muted); }
.static-page ul { padding-left: 20px; margin-bottom: 15px; }
.static-page ul li { list-style: disc; margin-bottom: 8px; color: var(--text-muted); }

.footer-all-link {
	color: var(--primary-light) !important;
	font-weight: 600;
	font-size: 13px;
}

/* CATEGORIES LIST */
.categories-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.category-group {
	flex: 1 1 280px;
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--glass-radius);
	padding: 24px;
}
.category-group h2 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--secondary);
	margin-bottom: 14px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--glass-border);
}
.category-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 10px;
	border-radius: 10px;
	transition: all 0.2s;
}
.category-item:hover {
	background: var(--glass-hover);
}
.category-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
}
.category-count {
	font-size: 12px;
	color: var(--text-dim);
}

/* PAGINATION */
.pages {
	text-align: center;
	margin: 40px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.pages a, .pages span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}
.pages a {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	transition: all 0.25s;
	color: var(--text-muted);
}
.pages a:hover {
	background: var(--glass-hover);
	color: var(--text);
	border-color: var(--primary);
}
.pages .current {
	background: var(--gradient);
	color: #fff;
	border: none;
	box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

/* FOOTER */
#footer {
	background: rgba(15, 10, 26, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid var(--glass-border);
	padding: 50px 0 20px;
	margin-top: 60px;
}
#footer h3 {
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 14px;
	letter-spacing: 0.5px;
}
#footer p { color: var(--text-dim); font-size: 13px; line-height: 1.6; }
#footer ul li { margin-bottom: 8px; }
#footer ul li a { color: var(--text-dim); font-size: 13px; transition: color 0.2s; }
#footer ul li a:hover { color: var(--primary-light); }
#footer .copyright {
	border-top: 1px solid var(--glass-border);
	margin-top: 35px;
	padding-top: 22px;
	text-align: center;
	font-size: 13px;
	color: var(--text-dim);
}

/* COOKIE CONSENT */
#cookie-consent {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 700px;
	width: calc(100% - 40px);
	background: rgba(15, 10, 26, 0.9);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid var(--glass-border);
	border-radius: var(--glass-radius);
	color: var(--text);
	padding: 18px 24px;
	z-index: 99999;
	text-align: center;
	box-shadow: var(--shadow);
}
#cookie-consent p {
	display: inline;
	margin-right: 18px;
	font-size: 13px;
	color: var(--text-muted);
}
.btn {
	display: inline-block;
	padding: 9px 20px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}
.btn-outline {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--glass-border);
}
.btn-outline:hover { background: var(--glass-bg); }
#cookie-accept { background: var(--gradient); color: #fff; }
#cookie-accept:hover { opacity: 0.9; }
#cookie-reject { background: transparent; color: var(--text-dim); border: 1px solid var(--glass-border); margin-left: 8px; }
#cookie-reject:hover { background: var(--glass-bg); }

/* EMPTY STATE */
.empty { text-align: center; padding: 80px 0; color: var(--text-dim); font-size: 16px; }

/* ADS */
.ad {
	text-align: center;
	overflow: hidden;
}
.ad-inner {
	display: inline-block;
	max-width: 100%;
}
.ad-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--glass-bg);
	border: 1px dashed var(--glass-border);
	border-radius: var(--glass-radius);
	color: var(--text-dim);
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	user-select: none;
}
.ad-leaderboard .ad-placeholder { width: 728px; height: 90px; max-width: 100%; }
.ad-banner .ad-placeholder { width: 468px; height: 60px; max-width: 100%; }
.ad-rectangle .ad-placeholder { width: 336px; height: 280px; max-width: 100%; }
.ad-rectangle-sm .ad-placeholder { width: 300px; height: 250px; max-width: 100%; }
.ad-anchor .ad-placeholder { width: 320px; height: 100px; max-width: 100%; }
.ad-placeholder-infeed {
	width: 100%;
	min-height: 90px;
	padding: 30px 20px;
}

.ad-leaderboard,
.ad-banner { margin: 24px 0; }
.ad-rectangle,
.ad-rectangle-sm { margin: 28px 0; }
.ad-infeed { margin: 20px 0; }

@media (max-width: 767px) {
	.ad-leaderboard .ad-placeholder { width: 320px; height: 100px; }
	.marketplace-rating.compact {
		padding: 3px 8px;
	}
	.rating-star {
		width: 11px;
		height: 11px;
		line-height: 11px;
	}
	.rating-star .icon-star {
		font-size: 11px;
		line-height: 11px;
	}
	.rating-star.half::after {
		height: 11px;
		line-height: 11px;
	}
	.rating-value {
		font-size: 11px;
		height: 11px;
		line-height: 11px;
	}
	.views-badge {
		font-size: 10px;
		padding: 3px 8px;
	}
	.product-meta-row {
		gap: 6px;
		margin: 8px 0;
	}
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { }
.sidebar .widget {
	background: rgba(15, 23, 42, 0.28);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 12px;
	padding: 18px 16px;
	margin-bottom: 22px;
}
.sidebar .widget-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.15);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
/* Latest / Top deals mini cards */
.widget-product-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget-product-item {
	display: flex;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}
.widget-product-item:last-child {
	border-bottom: none;
}
.widget-product-item .wp-foto {
	flex: 0 0 60px;
	width: 60px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255,255,255,0.03);
}
.widget-product-item .wp-foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.widget-product-item .wp-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.widget-product-item .wp-title {
	font-size: 12px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 2px;
}
.widget-product-item .wp-title a {
	color: inherit;
}
.widget-product-item .wp-title a:hover {
	color: var(--primary);
}
.widget-product-item .wp-price {
	font-size: 13px;
	font-weight: 700;
	color: var(--accent);
}
.widget-product-item .wp-price-old {
	font-size: 11px;
	color: var(--text-dim);
	text-decoration: line-through;
	margin-right: 4px;
}
.widget-product-item .wp-discount {
	font-size: 10px;
	font-weight: 700;
	color: var(--accent);
	background: rgba(16, 185, 129, 0.15);
	padding: 1px 5px;
	border-radius: 4px;
	margin-left: 4px;
}
.widget-product-item .wp-cat {
	font-size: 10px;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 1px;
}
/* Categories widget */
.widget-cat-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget-cat-item {
	padding: 5px 0;
	border-bottom: 1px solid rgba(148, 163, 184, 0.07);
}
.widget-cat-item:last-child {
	border-bottom: none;
}
.widget-cat-item a {
	font-size: 13px;
	color: var(--text);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.widget-cat-item a:hover {
	color: var(--primary);
}
.widget-cat-item .cat-count {
	font-size: 11px;
	color: var(--text-muted);
	background: rgba(148, 163, 184, 0.1);
	padding: 1px 8px;
	border-radius: 10px;
}
/* Tag cloud */
.widget-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.widget-tag-cloud a {
	font-size: 12px;
	color: var(--text-dim);
	background: rgba(148, 163, 184, 0.08);
	padding: 3px 10px;
	border-radius: 14px;
	border: 1px solid rgba(148, 163, 184, 0.12);
	transition: all 0.2s;
}
.widget-tag-cloud a:hover {
	color: var(--primary);
	border-color: var(--primary);
	background: rgba(168, 85, 247, 0.08);
}
.widget-tag-cloud a.size-lg { font-size: 14px; }
.widget-tag-cloud a.size-md { font-size: 12px; }
.widget-tag-cloud a.size-sm { font-size: 10px; }
/* Newsletter widget */
.widget-newsletter p {
	font-size: 12px;
	color: var(--text-muted);
	margin-bottom: 10px;
	line-height: 1.4;
}
.widget-newsletter .nl-form {
	display: flex;
	gap: 6px;
}
.widget-newsletter .nl-form input {
	flex: 1;
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid rgba(148, 163, 184, 0.2);
	background: rgba(255,255,255,0.03);
	color: var(--text);
	font-size: 12px;
	outline: none;
}
.widget-newsletter .nl-form input:focus {
	border-color: var(--primary);
}
.widget-newsletter .nl-form button {
	padding: 8px 14px;
	border-radius: 8px;
	border: none;
	background: linear-gradient(135deg, var(--primary), #7c3aed);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s;
}
.widget-newsletter .nl-form button:hover {
	opacity: 0.9;
}
/* Sidebar ad */
.sidebar .widget-ad {
	background: none;
	border: none;
	padding: 0;
}
.sidebar .widget-ad .ad-placeholder {
	width: 100%;
	height: 250px;
	background: rgba(15, 23, 42, 0.2);
	border: 1px dashed rgba(148, 163, 184, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--text-dim);
}
/* Sidebar responsive */
@media (max-width: 767px) {
	.sidebar {
		margin-top: 30px;
	}
}

/* ============================================================
   PRODUCT SPECS TABLE
   ============================================================ */
.product-specs {
	margin: 24px 0;
	padding: 16px 18px;
	background: rgba(15, 23, 42, 0.2);
	border-radius: 12px;
	border: 1px solid rgba(148, 163, 184, 0.12);
}
.product-specs h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 12px;
}
.product-specs table {
	width: 100%;
	border-collapse: collapse;
}
.product-specs table tr {
	border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}
.product-specs table tr:last-child {
	border-bottom: none;
}
.product-specs table th,
.product-specs table td {
	padding: 6px 10px;
	font-size: 13px;
	vertical-align: top;
	text-align: left;
}
.product-specs table th {
	color: var(--text-muted);
	font-weight: 600;
	width: 30%;
	white-space: nowrap;
}
.product-specs table td {
	color: var(--text);
}

/* ============================================================
   BEST DEALS SECTION (HOMEPAGE)
   ============================================================ */
.best-deals-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 30px;
}
@media (max-width: 900px) {
	.best-deals-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}
@media (max-width: 480px) {
	.best-deals-grid {
		grid-template-columns: 1fr;
	}
}
.best-deal-card {
	background: linear-gradient(160deg, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.55));
	border: 1px solid rgba(148, 163, 184, 0.1);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
	display: flex;
	flex-direction: column;
	position: relative;
}
.best-deal-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--primary-light), var(--secondary), transparent);
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 2;
}
.best-deal-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(168, 85, 247, 0.08);
	border-color: rgba(168, 85, 247, 0.25);
}
.best-deal-card:hover::before {
	opacity: 1;
}
.best-deal-card .bd-foto {
	position: relative;
	width: 100%;
	height: 170px;
	overflow: hidden;
	background: rgba(255,255,255,0.02);
}
.best-deal-card .bd-foto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s;
}
.best-deal-card:hover .bd-foto img {
	transform: scale(1.1);
}
.best-deal-card .bd-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	padding: 5px 10px;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
	line-height: 1;
}
.best-deal-card .bd-body {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.best-deal-card .bd-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.3;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1 0 auto;
}
.best-deal-card .bd-title a {
	color: inherit;
}
.best-deal-card .bd-title a:hover {
	color: var(--primary);
}
.best-deal-card .bd-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 4px;
}
.best-deal-card .bd-current {
	font-size: 18px;
	font-weight: 700;
	color: var(--accent);
}
.best-deal-card .bd-old {
	font-size: 12px;
	color: var(--text-dim);
	text-decoration: line-through;
}
.best-deal-card .bd-save {
	font-size: 12px;
	font-weight: 600;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.1);
	padding: 2px 8px;
	border-radius: 5px;
	display: inline-block;
	align-self: flex-start;
}

/* ============================================================
   HTML SITEMAP PAGE
   ============================================================ */
.sitemap-page h2 {
	font-size: 20px;
	margin: 20px 0 10px;
	color: var(--text);
}
.sitemap-page .sm-section {
	margin-bottom: 24px;
}
.sitemap-page .sm-section h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
}
.sitemap-page .sm-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
	columns: 3;
	column-gap: 20px;
}
.sitemap-page .sm-section ul li {
	padding: 3px 0;
	font-size: 13px;
	break-inside: avoid;
}
.sitemap-page .sm-section ul li a {
	color: var(--text-dim);
}
.sitemap-page .sm-section ul li a:hover {
	color: var(--primary);
}
@media (max-width: 767px) {
	.sitemap-page .sm-section ul {
		columns: 2;
	}
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page .faq-item {
	margin-bottom: 16px;
	padding: 16px 18px;
	background: rgba(15, 23, 42, 0.2);
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 12px;
}
.faq-page .faq-item h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--text);
	margin-bottom: 6px;
}
.faq-page .faq-item p {
	font-size: 13px;
	color: var(--text-dim);
	line-height: 1.5;
	margin: 0;
}

/* FULL-WIDTH TAG CLOUD */
.tag-cloud-section {
	padding: 20px 0 50px;
	background: radial-gradient(ellipse at 50% 120%, rgba(168, 85, 247, 0.05), transparent 60%);
}
.tag-cloud-section .section-title {
	margin: 30px 0 24px;
}
.tag-cloud-inner {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: var(--glass-radius);
	padding: 28px 30px;
	box-shadow: var(--shadow-sm);
}
.tag-cloud-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	align-items: center;
}
.tag-cloud-wrap a {
	font-size: 13px;
	color: var(--text-dim);
	background: rgba(148, 163, 184, 0.06);
	padding: 6px 14px;
	border-radius: 16px;
	border: 1px solid rgba(148, 163, 184, 0.1);
	transition: all 0.2s;
	text-decoration: none;
	line-height: 1;
}
.tag-cloud-wrap a:hover {
	color: var(--primary);
	border-color: var(--primary);
	background: rgba(168, 85, 247, 0.08);
	transform: translateY(-2px);
}
.tag-cloud-wrap a.size-lg { font-size: 16px; padding: 6px 18px; }
.tag-cloud-wrap a.size-md { font-size: 14px; padding: 6px 16px; }
.tag-cloud-wrap a.size-sm { font-size: 12px; padding: 6px 12px; }
