/* ==========================================================================
   GADGETZONE - Premium Dark Tech Theme
   ========================================================================== */

:root {
	--bg: #090d16;
	--bg-subtle: #0d1322;
	--card-bg: #121826;
	--card-bg-hover: #182236;
	--fg: #f8fafc;
	--fg-muted: #94a3b8;
	--fg-subtle: #64748b;
	--border: #1e293b;
	--border-focus: #3b82f6;
	--accent: #2563eb;
	--accent-hover: #1d4ed8;
	--accent-glow: #38bdf8;
	--accent-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
	--amazon-amber: #f59e0b;
	--amazon-amber-glow: rgba(245, 158, 11, 0.2);
	--deal-emerald: #10b981;
	--viral-pink: #ec4899;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-full: 9999px;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
	--shadow-glow: 0 0 25px rgba(37, 99, 235, 0.25);
	--font-main: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
	--font-mono: "JetBrains Mono", monospace;
	--transition-fast: 180ms ease;
	--transition-normal: 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg);
	color: var(--fg);
	font-family: var(--font-main);
	-webkit-font-smoothing: antialiased;
}

body {
	min-height: 100vh;
	background: radial-gradient(circle at 50% 0%, #172554 0%, #090d16 50%, #06090e 100%);
	background-attachment: fixed;
	color: var(--fg);
	line-height: 1.5;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

/* Base Container */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(9, 13, 22, 0.82);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
	transition: all var(--transition-normal);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
	gap: 1.5rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.logo-icon {
	width: 2rem;
	height: 2rem;
	border-radius: var(--radius-sm);
	background: var(--accent-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
	color: white;
	font-size: 1.1rem;
}

.logo-text span {
	color: var(--accent-glow);
}

.logo-tag {
	font-size: 0.65rem;
	text-transform: uppercase;
	padding: 0.15rem 0.45rem;
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.3);
	color: var(--accent-glow);
	border-radius: var(--radius-full);
	font-weight: 700;
	letter-spacing: 0.05em;
	display: none;
}

@media (min-width: 640px) {
	.logo-tag {
		display: inline-block;
	}
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 0.25rem;
}

@media (min-width: 900px) {
	.nav-desktop {
		display: flex;
	}
}

.nav-link {
	padding: 0.5rem 0.85rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--fg-muted);
	border-radius: var(--radius-md);
	transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.05);
}

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

.header-search-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.9rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	border-radius: var(--radius-full);
	color: var(--fg-muted);
	font-size: 0.85rem;
	transition: all var(--transition-fast);
}

.header-search-btn:hover {
	border-color: var(--accent-glow);
	color: #ffffff;
	background: rgba(37, 99, 235, 0.08);
}

.header-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	color: var(--fg);
	transition: all var(--transition-fast);
}

.header-icon-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 900px) {
	.mobile-menu-btn {
		display: none;
	}
}

/* Mobile Drawer */
.mobile-nav {
	position: fixed;
	top: 4.5rem;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(9, 13, 22, 0.96);
	backdrop-filter: blur(20px);
	padding: 1.5rem;
	z-index: 99;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
	transition: all var(--transition-normal);
	border-bottom: 1px solid var(--border);
}

.mobile-nav.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.mobile-nav-link {
	padding: 0.9rem 1.1rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--fg);
	border-radius: var(--radius-md);
	background: var(--card-bg);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav-link:active {
	background: var(--accent);
}

/* Top Banner Notice */
.affiliate-notice-bar {
	background: linear-gradient(90deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
	border-bottom: 1px solid rgba(56, 189, 248, 0.2);
	font-size: 0.75rem;
	padding: 0.4rem 1rem;
	text-align: center;
	color: var(--fg-muted);
}

.affiliate-notice-bar span {
	color: var(--accent-glow);
	font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
	padding: 3.5rem 0 2rem;
	position: relative;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 960px) {
	.hero-grid {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 3.5rem;
	}
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-start;
	padding: 0.35rem 0.85rem;
	background: rgba(37, 99, 235, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent-glow);
	box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.hero-title {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.035em;
	color: #ffffff;
}

.hero-title-accent {
	background: linear-gradient(135deg, #ffffff 30%, var(--accent-glow) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtitle {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: var(--fg-muted);
	line-height: 1.6;
	max-width: 36rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 0.5rem;
}

.hero-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}

.hero-stat {
	display: flex;
	flex-direction: column;
}

.hero-stat-val {
	font-size: 1.3rem;
	font-weight: 800;
	color: #ffffff;
	font-family: var(--font-mono);
}

.hero-stat-lbl {
	font-size: 0.75rem;
	color: var(--fg-subtle);
	font-weight: 500;
}

/* Hero Showcase Card Stack */
.hero-showcase {
	position: relative;
}

.hero-card-featured {
	background: var(--card-bg);
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-md), 0 0 30px rgba(37, 99, 235, 0.2);
	position: relative;
	overflow: hidden;
	transition: transform var(--transition-normal);
}

.hero-card-featured:hover {
	transform: translateY(-4px);
}

.hero-card-glow {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
	pointer-events: none;
}

.hero-card-image-wrap {
	width: 100%;
	height: 220px;
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	background: #0d1424;
}

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

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

.hero-card-info {
	margin-top: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.hero-card-tag {
	align-self: flex-start;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
	border-radius: var(--radius-sm);
	background: var(--amazon-amber);
	color: #000;
}

.hero-card-name {
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

.hero-card-price-row {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.hero-card-price {
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	font-family: var(--font-mono);
}

.hero-card-old-price {
	font-size: 1rem;
	color: var(--fg-subtle);
	text-decoration: line-through;
}

.hero-card-discount {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--deal-emerald);
	background: rgba(16, 185, 129, 0.12);
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-sm);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 700;
	font-size: 0.92rem;
	padding: 0.75rem 1.4rem;
	border-radius: var(--radius-md);
	transition: all var(--transition-fast);
	cursor: pointer;
	text-align: center;
}

.btn-primary {
	background: var(--accent-gradient);
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
	filter: brightness(1.1);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	border: 1px solid var(--border);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.btn-amazon {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #0b0f19;
	font-weight: 800;
	letter-spacing: -0.01em;
	padding: 0.7rem 1.1rem;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all var(--transition-fast);
}

.btn-amazon:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
	filter: brightness(1.08);
}

.btn-amazon svg {
	width: 1.1rem;
	height: 1.1rem;
	flex-shrink: 0;
}

.btn-sm {
	padding: 0.45rem 0.8rem;
	font-size: 0.82rem;
	border-radius: var(--radius-sm);
}

/* ==========================================================================
   CATEGORIES BAR (HORIZONTAL SCROLLER)
   ========================================================================== */

.categories-bar-section {
	padding: 1.5rem 0 2rem;
	position: sticky;
	top: 4.5rem;
	z-index: 80;
	background: rgba(9, 13, 22, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.categories-scroll {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	overflow-x: auto;
	padding-bottom: 0.3rem;
	scrollbar-width: thin;
	scrollbar-color: var(--border) transparent;
}

.categories-scroll::-webkit-scrollbar {
	height: 4px;
}

.categories-scroll::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 4px;
}

.cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 1rem;
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-full);
	color: var(--fg-muted);
	font-size: 0.875rem;
	font-weight: 600;
	white-space: nowrap;
	transition: all var(--transition-fast);
	cursor: pointer;
}

.cat-pill:hover {
	background: var(--card-bg-hover);
	border-color: var(--fg-subtle);
	color: #ffffff;
}

.cat-pill.active {
	background: rgba(37, 99, 235, 0.15);
	border-color: var(--accent-glow);
	color: #ffffff;
	box-shadow: 0 0 14px rgba(37, 99, 235, 0.25);
}

/* ==========================================================================
   SEARCH & FILTER BAR
   ========================================================================== */

.search-filter-section {
	padding: 1.5rem 0;
}

.search-filter-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: var(--shadow-sm);
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.search-input-icon {
	position: absolute;
	left: 1rem;
	color: var(--fg-subtle);
	pointer-events: none;
}

.search-input {
	width: 100%;
	padding: 0.85rem 1rem 0.85rem 2.75rem;
	background: #090d16;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	color: #ffffff;
	font-size: 0.95rem;
	font-family: inherit;
	transition: all var(--transition-fast);
}

.search-input:focus {
	outline: none;
	border-color: var(--accent-glow);
	box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.search-clear-btn {
	position: absolute;
	right: 0.85rem;
	padding: 0.3rem 0.6rem;
	font-size: 0.75rem;
	color: var(--fg-subtle);
	background: rgba(255, 255, 255, 0.05);
	border-radius: var(--radius-sm);
}

.search-clear-btn:hover {
	color: #ffffff;
}

.filter-tags-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.filter-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--fg-subtle);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-right: 0.25rem;
}

.filter-tag-btn {
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--fg-muted);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border);
	transition: all var(--transition-fast);
}

.filter-tag-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.filter-tag-btn.active {
	background: var(--accent);
	color: #ffffff;
	border-color: var(--accent);
}

.active-filter-status {
	font-size: 0.85rem;
	color: var(--fg-muted);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.results-count {
	font-weight: 700;
	color: var(--accent-glow);
}

/* ==========================================================================
   SECTIONS & HEADINGS
   ========================================================================== */

.section {
	padding: 3rem 0;
	scroll-margin-top: 8rem;
}

.section-header {
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.section-title-wrap {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.section-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.025em;
}

.section-subtitle {
	font-size: 0.95rem;
	color: var(--fg-muted);
	max-width: 40rem;
}

/* ==========================================================================
   PRODUCT GRID & CARDS
   ========================================================================== */

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(17.5rem, 100%), 1fr));
	gap: 1.5rem;
}

.product-card {
	background: var(--card-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all var(--transition-normal);
	box-shadow: var(--shadow-sm);
}

.product-card:hover {
	transform: translateY(-5px);
	border-color: rgba(56, 189, 248, 0.4);
	box-shadow: var(--shadow-md), 0 0 20px rgba(37, 99, 235, 0.15);
	background: var(--card-bg-hover);
}

.product-image-container {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #0c121e;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge-stack {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	z-index: 2;
}

.badge-tag {
	font-size: 0.7rem;
	font-weight: 800;
	padding: 0.25rem 0.55rem;
	border-radius: var(--radius-sm);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.badge-best-seller {
	background: var(--amazon-amber);
	color: #0b0f19;
}

.badge-deal {
	background: var(--deal-emerald);
	color: #ffffff;
}

.badge-viral {
	background: linear-gradient(135deg, #ec4899, #8b5cf6);
	color: #ffffff;
}

.badge-useful {
	background: #0284c7;
	color: #ffffff;
}

.badge-discount {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	font-size: 0.75rem;
	font-weight: 800;
	padding: 0.25rem 0.55rem;
	border-radius: var(--radius-sm);
	background: rgba(16, 185, 129, 0.95);
	color: #ffffff;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.product-content {
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 0.75rem;
}

.product-category-chip {
	font-size: 0.75rem;
	color: var(--accent-glow);
	font-weight: 600;
}

.product-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 2.8rem;
}

.product-rating-row {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.8rem;
}

.stars {
	color: #fbbf24;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
}

.rating-score {
	font-weight: 700;
	color: #ffffff;
}

.reviews-count {
	color: var(--fg-subtle);
}

.product-desc {
	font-size: 0.85rem;
	color: var(--fg-muted);
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 0.25rem;
}

.product-highlights {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin: 0.25rem 0;
}

.highlight-item {
	font-size: 0.75rem;
	color: var(--fg-subtle);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.highlight-dot {
	color: var(--accent-glow);
	font-size: 0.65rem;
}

.product-price-box {
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.price-values {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.current-price {
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	font-family: var(--font-mono);
}

.old-price {
	font-size: 0.85rem;
	color: var(--fg-subtle);
	text-decoration: line-through;
}

.product-card-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.btn-details-link {
	font-size: 0.78rem;
	color: var(--fg-muted);
	text-align: center;
	padding: 0.3rem;
	font-weight: 600;
	transition: color var(--transition-fast);
}

.btn-details-link:hover {
	color: var(--accent-glow);
}

/* ==========================================================================
   FEATURED BANNER "¿NO SABES QUÉ GADGET ELEGIR?"
   ========================================================================== */

.smart-choice-section {
	padding: 3rem 0;
}

.smart-choice-card {
	background: radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.25) 0%, rgba(18, 24, 38, 0.95) 70%);
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-radius: var(--radius-lg);
	padding: 2.5rem 1.75rem;
	box-shadow: var(--shadow-glow), var(--shadow-md);
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	position: relative;
	overflow: hidden;
}

@media (min-width: 860px) {
	.smart-choice-card {
		grid-template-columns: 1.2fr 0.8fr;
		padding: 3rem 2.5rem;
		align-items: center;
	}
}

.smart-choice-title {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.smart-choice-desc {
	font-size: 1rem;
	color: var(--fg-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.smart-choice-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
}

@media (min-width: 500px) {
	.smart-choice-features {
		grid-template-columns: 1fr 1fr;
	}
}

.smart-feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.88rem;
	color: #ffffff;
}

.smart-feature-icon {
	color: var(--deal-emerald);
}

.smart-choice-preview {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: rgba(9, 13, 22, 0.8);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 1.25rem;
}

.smart-choice-preview-title {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent-glow);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.smart-choice-item-mini {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.smart-mini-img {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: var(--radius-sm);
	object-fit: cover;
	flex-shrink: 0;
}

.smart-mini-info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.smart-mini-name {
	font-size: 0.9rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25;
}

.smart-mini-price {
	font-size: 1rem;
	font-weight: 800;
	color: var(--deal-emerald);
	font-family: var(--font-mono);
}

/* ==========================================================================
   MODAL (PRODUCT QUICK VIEW & LEGAL/AFFILIATE POLICY)
   ========================================================================== */

.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(4, 7, 12, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: fadeIn 200ms ease;
}

.modal-card {
	background: #0e1422;
	border: 1px solid rgba(56, 189, 248, 0.3);
	border-radius: var(--radius-lg);
	max-width: 680px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.8);
	position: relative;
	animation: slideUp 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	z-index: 10;
	transition: background var(--transition-fast);
}

.modal-close-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

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

@media (min-width: 600px) {
	.modal-product-grid {
		grid-template-columns: 1fr 1.2fr;
		padding: 2rem;
		gap: 2rem;
	}
}

.modal-product-img-wrap {
	width: 100%;
	height: 260px;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: #080d17;
}

.modal-product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-product-details {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

.modal-legal-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.modal-legal-content h3 {
	font-size: 1.3rem;
	color: #ffffff;
}

.modal-legal-content p {
	font-size: 0.9rem;
	color: var(--fg-muted);
	line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
	background: #060910;
	border-top: 1px solid var(--border);
	padding: 4rem 0 2rem;
	margin-top: 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

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

.footer-desc {
	font-size: 0.9rem;
	color: var(--fg-muted);
	line-height: 1.6;
	max-width: 22rem;
}

.footer-col-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: 0.02em;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer-link-item {
	font-size: 0.88rem;
	color: var(--fg-muted);
	transition: color var(--transition-fast);
	cursor: pointer;
}

.footer-link-item:hover {
	color: var(--accent-glow);
}

.footer-affiliate-box {
	background: rgba(18, 24, 38, 0.7);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.footer-affiliate-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-affiliate-text {
	font-size: 0.82rem;
	color: var(--fg-subtle);
	line-height: 1.55;
}

.footer-bottom {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.8rem;
	color: var(--fg-subtle);
}

@media (min-width: 600px) {
	.footer-bottom {
		flex-direction: row;
	}
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

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

/* ==========================================================================
   AFFILIATE CONFIG HELPER ACCORDION (DEVELOPER/OWNER TOOLTIP)
   ========================================================================== */

.owner-helper-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(245, 158, 11, 0.1);
	border: 1px dashed rgba(245, 158, 11, 0.4);
	color: #fbbf24;
	font-size: 0.75rem;
	padding: 0.3rem 0.75rem;
	border-radius: var(--radius-full);
	cursor: pointer;
	margin-top: 0.5rem;
}

.owner-helper-pill:hover {
	background: rgba(245, 158, 11, 0.18);
}
