:root {
	/* Colors */
	--primary-color: hsl(11, 85%, 55%);
	--primary-hover: hsl(11, 85%, 45%);
	--primary-light: hsl(11, 100%, 96%);
	--secondary-color: hsl(150, 60%, 40%);
	--secondary-hover: hsl(150, 60%, 35%);
	--danger-color: hsl(354, 70%, 54%);
	--text-main: hsl(210, 20%, 15%);
	--text-muted: hsl(210, 10%, 45%);
	--bg-light: hsl(210, 30%, 98%);
	--bg-card: #ffffff;
	--border-color: rgba(0, 0, 0, 0.08);
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
	--border-radius-sm: 6px;
	--border-radius-md: 12px;
	--border-radius-lg: 20px;
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	
	/* Layout widths */
	--container-width: 1200px;
}

/* 1. Resets & Basic Setup */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background-color: var(--bg-light);
	color: var(--text-main);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

button, input {
	font-family: inherit;
	outline: none;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* 2. Header Styles */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	transition: var(--transition-smooth);
}

.header-container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 16px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Outfit', sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--text-main);
}

.logo-icon {
	position: relative;
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-color) 0%, hsl(11, 85%, 65%) 100%);
	color: #ffffff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: 0 4px 10px rgba(238, 77, 45, 0.3);
}

.logo-chart-dot {
	position: absolute;
	bottom: 6px;
	right: 6px;
	width: 8px;
	height: 8px;
	background-color: var(--secondary-color);
	border: 2px solid #ffffff;
	border-radius: 50%;
	animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.logo-text {
	letter-spacing: -0.5px;
}

.text-primary {
	color: var(--primary-color);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
	font-weight: 500;
	font-size: 0.95rem;
}

.nav-menu a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--text-muted);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
	color: var(--primary-color);
	background-color: var(--primary-light);
}

.mobile-nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.hamburger {
	width: 24px;
	height: 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.hamburger span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--text-main);
	border-radius: 2px;
	transition: var(--transition-smooth);
}

/* 3. Hero Search Section */
.hero-section {
	background: radial-gradient(circle at top right, rgba(238, 77, 45, 0.04) 0%, rgba(255, 255, 255, 0) 60%),
	            linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
	padding: 80px 24px;
	text-align: center;
	border-bottom: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
}

.hero-container {
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero-title {
	font-family: 'Outfit', sans-serif;
	font-size: 3rem;
	font-weight: 850;
	line-height: 1.15;
	margin-bottom: 16px;
	letter-spacing: -1.5px;
}

.hero-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 40px;
	font-weight: 400;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.search-box-wrapper {
	background: #ffffff;
	padding: 8px;
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: var(--transition-smooth);
}

.search-box-wrapper:focus-within {
	border-color: rgba(238, 77, 45, 0.25);
	box-shadow: 0 20px 40px -15px rgba(238, 77, 45, 0.15);
}

.search-form-flex {
	display: flex;
	align-items: center;
	gap: 8px;
}

.search-input-icon {
	padding-left: 16px;
	color: var(--text-muted);
	font-size: 1.2rem;
}

.search-input {
	flex: 1;
	border: none;
	padding: 16px 8px;
	font-size: 1.05rem;
	color: var(--text-main);
	background: transparent;
}

.search-input::placeholder {
	color: var(--text-muted);
	opacity: 0.7;
}

.search-submit-btn {
	background: linear-gradient(135deg, var(--primary-color) 0%, hsl(11, 85%, 60%) 100%);
	color: #ffffff;
	border: none;
	padding: 16px 36px;
	font-weight: 600;
	font-size: 1rem;
	border-radius: var(--border-radius-md);
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(238, 77, 45, 0.3);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition-smooth);
}

.search-submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(238, 77, 45, 0.4);
}

.search-submit-btn:active {
	transform: translateY(0);
}

/* AJAX Spinner inside search box */
.search-spinner {
	display: none;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ffffff;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.search-message {
	margin-top: 14px;
	font-size: 0.9rem;
	font-weight: 500;
	display: none;
}

.search-message.info { color: var(--text-muted); }
.search-message.success { color: var(--secondary-color); }
.search-message.error { color: var(--danger-color); }

/* 4. Product Section Layout */
.section-wrapper {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 60px 24px;
}

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--border-color);
	padding-bottom: 12px;
}

.section-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.6rem;
	font-weight: 750;
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-title i {
	color: var(--primary-color);
}

.section-more-link {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 6px;
}

.section-more-link:hover {
	color: var(--primary-hover);
	transform: translateX(3px);
}

/* 5. Product Grid & Cards */
.products-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

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

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: rgba(238, 77, 45, 0.15);
}

.product-img-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 100%; /* 1:1 Aspect Ratio */
	overflow: hidden;
	background-color: #f7f7f9;
}

.product-card-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

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

/* Badges on product image */
.badge-shop {
	position: absolute;
	bottom: 8px;
	left: 8px;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 3px 6px;
	border-radius: 4px;
	color: #ffffff;
	text-transform: uppercase;
}

.badge-shop.mall {
	background-color: var(--danger-color);
	box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

.badge-shop.yeu-thich {
	background-color: var(--primary-color);
	box-shadow: 0 2px 4px rgba(238, 77, 45, 0.3);
}

.badge-discount {
	position: absolute;
	top: 8px;
	right: 8px;
	background-color: hsl(45, 100%, 50%);
	color: hsl(20, 100%, 25%);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(255, 193, 7, 0.2);
}

.badge-hot {
	position: absolute;
	top: 8px;
	left: 8px;
	background: linear-gradient(135deg, hsl(0, 85%, 55%) 0%, hsl(20, 90%, 60%) 100%);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
	animation: pulse-hot 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse-hot {
	0% { transform: scale(1); box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4); }
	50% { transform: scale(1.05); box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6); }
	100% { transform: scale(1); box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4); }
}

/* Card Content Details */
.product-info {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-card-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-main);
	line-height: 1.4;
	margin-bottom: 8px;
	height: 2.8em; /* Force exactly 2 lines */
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.product-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.product-stars {
	color: hsl(45, 100%, 50%);
	font-weight: 600;
}

.price-container {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-top: auto;
}

.price-current {
	font-family: 'Outfit', sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--primary-color);
}

.price-original {
	font-size: 0.8rem;
	color: var(--text-muted);
	text-decoration: line-through;
}

/* Trend badge showing price decline */
.price-trend-tag {
	margin-top: 10px;
	padding: 4px 8px;
	background-color: hsl(150, 60%, 95%);
	color: var(--secondary-color);
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	align-self: flex-start;
}

.price-trend-tag.saving {
	background-color: hsl(11, 100%, 96%);
	color: var(--primary-color);
	border: 1px solid rgba(238, 77, 45, 0.15);
}

.price-trend-tag.stable {
	background-color: hsl(210, 10%, 93%);
	color: var(--text-muted);
}

/* 6. FAQ Accordion Section */
.faq-section {
	background-color: #ffffff;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	padding: 80px 24px;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-title-block {
	text-align: center;
	margin-bottom: 50px;
}

.faq-title-block h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 12px;
}

.faq-title-block p {
	color: var(--text-muted);
	font-size: 1rem;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-md);
	background-color: var(--bg-light);
	overflow: hidden;
	transition: var(--transition-smooth);
}

.faq-item:hover {
	border-color: rgba(238, 77, 45, 0.15);
	box-shadow: var(--shadow-sm);
}

.faq-trigger {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 24px;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text-main);
	gap: 16px;
}

.faq-icon-chevron {
	color: var(--text-muted);
	font-size: 0.9rem;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background-color: #ffffff;
	border-top: 0 solid var(--border-color);
}

.faq-inner {
	padding: 20px 24px;
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.7;
}

/* Accordion Active States */
.faq-item.active {
	border-color: rgba(238, 77, 45, 0.2);
	box-shadow: var(--shadow-md);
}

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

.faq-item.active .faq-content {
	border-top-width: 1px;
}

/* 7. Single Product Detail Page Layout */
.product-detail-wrapper {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 40px 24px;
}

.breadcrumb {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}

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

.product-bento-grid {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 40px;
	align-items: start;
}

.product-sticky-left {
	position: sticky;
	top: 90px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.product-gallery-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	padding: 16px;
}

.product-gallery-img-box {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
	border-radius: var(--border-radius-md);
	overflow: hidden;
	background: #f7f7f9;
}

.product-gallery-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.affiliate-action-card {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-md);
	text-align: center;
}

.affiliate-buy-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, hsl(11, 85%, 55%) 0%, hsl(11, 85%, 60%) 100%);
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 750;
	padding: 16px 24px;
	border-radius: var(--border-radius-md);
	box-shadow: 0 6px 20px rgba(238, 77, 45, 0.3);
	margin-bottom: 12px;
	width: 100%;
	transition: var(--transition-smooth);
}

.affiliate-buy-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(238, 77, 45, 0.4);
}

.affiliate-disclaimer {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.product-detail-main {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-md);
}

.product-detail-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.85rem;
	font-weight: 850;
	line-height: 1.3;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.product-detail-meta-list {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 30px;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.product-detail-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.product-detail-meta-item i {
	color: var(--primary-color);
}

.product-detail-meta-item strong {
	color: var(--text-main);
}

/* Bento Stats Box */
.stats-bento-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.stat-card {
	padding: 20px;
	border-radius: var(--border-radius-md);
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.stat-card-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-card-value {
	font-family: 'Outfit', sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
}

.stat-card-value.primary { color: var(--primary-color); }
.stat-card-value.success { color: var(--secondary-color); }
.stat-card-value.warning { color: hsl(35, 90%, 50%); }

/* Chart Area */
.chart-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.chart-header-row h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.3rem;
	font-weight: 750;
	display: flex;
	align-items: center;
	gap: 8px;
}

.chart-container-box {
	background-color: var(--bg-light);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-md);
	padding: 24px;
	margin-bottom: 40px;
	position: relative;
	height: 320px;
}

/* Table of history log */
.history-table-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.25rem;
	font-weight: 750;
	margin-bottom: 16px;
}

.history-log-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.history-log-table th,
.history-log-table td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.history-log-table th {
	font-weight: 600;
	color: var(--text-muted);
	background-color: var(--bg-light);
}

.history-log-table tr:hover td {
	background-color: rgba(238, 77, 45, 0.02);
}

.price-change-pill {
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
}

.price-change-pill.down {
	background-color: hsl(150, 60%, 95%);
	color: var(--secondary-color);
}

.price-change-pill.up {
	background-color: hsl(0, 75%, 95%);
	color: var(--danger-color);
}

.price-change-pill.start {
	background-color: hsl(210, 10%, 93%);
	color: var(--text-muted);
}

/* 8. Footer Styles */
.site-footer {
	background-color: #1a1e26;
	color: #a0aec0;
	padding: 80px 24px 20px;
	border-top: 1px solid #2d3748;
}

.footer-container {
	max-width: var(--container-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-logo .logo-text {
	color: #ffffff;
}

.footer-desc {
	margin-top: 20px;
	font-size: 0.9rem;
	line-height: 1.7;
}

.footer-socials {
	display: flex;
	gap: 16px;
	margin-top: 24px;
}

.footer-socials a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #2d3748;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.footer-col h4 {
	font-family: 'Outfit', sans-serif;
	color: #ffffff;
	font-size: 1.05rem;
	margin-bottom: 20px;
	font-weight: 700;
	position: relative;
	padding-bottom: 8px;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--primary-color);
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 0.9rem;
}

.footer-links a:hover {
	color: #ffffff;
	transform: translateX(4px);
}

.footer-links-grid {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	font-size: 0.9rem;
}

.footer-links-grid a:hover {
	color: #ffffff;
	transform: translateX(4px);
}

.footer-bottom {
	border-top: 1px solid #2d3748;
	padding-top: 30px;
	font-size: 0.8rem;
}

.footer-bottom-container {
	max-width: var(--container-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

.footer-bottom a {
	color: #ffffff;
	font-weight: 500;
}

.footer-disclaimer {
	color: #718096;
}

/* 9. Responsive Layouts */
@media (max-width: 1200px) {
	.products-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 992px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.product-bento-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.product-sticky-left {
		position: static;
	}
	.footer-container {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.footer-about {
		grid-column: span 2;
	}
	.hero-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.hero-section {
		padding: 60px 16px;
	}
	.hero-title {
		font-size: 2.1rem;
	}
	.search-form-flex {
		flex-direction: column;
		align-items: stretch;
		padding: 4px;
	}
	.search-input-icon {
		display: none;
	}
	.search-input {
		padding: 12px 10px;
		text-align: center;
	}
	.search-submit-btn {
		justify-content: center;
		padding: 14px;
	}
	.mobile-nav-toggle {
		display: block;
	}
	.site-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: #ffffff;
		border-bottom: 1px solid var(--border-color);
		box-shadow: var(--shadow-md);
		padding: 16px 24px;
	}
	.site-navigation.open {
		display: block;
	}
	.nav-menu {
		flex-direction: column;
		gap: 12px;
	}
	.stats-bento-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.faq-trigger {
		padding: 16px 20px;
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.product-info {
		padding: 10px;
	}
	.product-card-title {
		font-size: 0.8rem;
		height: 2.8em;
	}
	.price-current {
		font-size: 0.95rem;
	}
	.price-original {
		font-size: 0.75rem;
	}
	.badge-discount, .price-trend-tag {
		font-size: 0.65rem;
		padding: 2px 4px;
	}
	.footer-container {
		grid-template-columns: 1fr;
	}
	.footer-about {
		grid-column: span 1;
	}
}
