/*
Theme Name: Meher
Theme URI: https://example.com/meher-theme
Author: Your Name
Author URI: https://example.com
Description: A world-class, conversion-optimized, and lightweight theme for digital downloads and eco-friendly products, based on the user's design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: meher
Tags: custom-background, custom-logo, custom-menu, e-commerce, blog, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, accessibility-ready, block-styles, wide-blocks, woocommerce

This theme is designed to be lightweight, fast, and conversion-focused,
matching the provided visual mockups.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0  Normalization & Variables
  1.1  CSS Variables
  1.2  Reset & Normalization
  1.3  Base & Typography
  1.4  Global Layout & Helpers
2.0  Header & Navigation
  2.1  Site Header
  2.2  Primary Navigation
  2.3  Header Icons
  2.4  Mobile Navigation
3.0  Content & Blocks
  3.1  Buttons & Forms
  3.2  Accordion
  3.3  Product Grids
  3.4  Testimonials
  3.5  Banners
4.0  Template: Front Page
  4.1  Hero Section
  4.2  Top Selling
  4.3  Why Choose Us
  4.4  Feature Cards (USPs)
  4.5  Promo Banner
  4.6  All Products Tabs
5.0  Blog
  5.1  Blog Archive
  5.2  Single Post
6.0  WooCommerce
  6.1  Global Woo Styles
  6.2  Woo Archive/Shop
  6.3  Woo Single Product
  6.4  Mini Cart
7.0  Footer
  7.1  Site Footer
  7.2  Footer Widgets
  7.3  Footer Bottom
8.0  Accessibility & Utilities
  8.1  Skip Link
  8.2  Utility Classes
  8.3  Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalization & Variables
--------------------------------------------------------------*/

/* 1.1 CSS Variables */
:root {
	--font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		Helvetica, Arial, sans-serif;

	/* Colors */
	--color-text: #344054; /* Gray 700 */
	--color-headings: #101828; /* Gray 900 */
	--color-background: #ffffff;
	--color-surface: #f9fafb; /* Gray 50 */
	--color-border: #e5e7eb; /* Gray 200 */

	--color-primary: #0f172a; /* Dark Blue/Black from footer */
	--color-primary-light: #334155;
	--color-accent: #2563eb; /* Blue 600 */
	--color-accent-hover: #1d4ed8; /* Blue 700 */

	--color-star: #f59e0b; /* Amber 500 */
	--color-sale: #ef4444; /* Red 500 */

	/* Hero Card Colors */
	--color-hero-card-1: #fef3c7; /* Amber 100 */
	--color-hero-card-2: #fed7aa; /* Orange 200 */
	--color-hero-card-3: #bfdbfe; /* Blue 200 */

	/* Spacing */
	--space-xs: 0.25rem; /* 4px */
	--space-sm: 0.5rem; /* 8px */
	--space-md: 1rem; /* 16px */
	--space-lg: 1.5rem; /* 24px */
	--space-xl: 2rem; /* 32px */
	--space-section: clamp(3rem, 6vw, 5rem); /* 48px - 80px */

	/* Typography */
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-4xl: clamp(2.25rem, 5vw, 3rem); /* 36px - 48px */
	--text-5xl: clamp(3rem, 7vw, 3.75rem); /* 48px - 60px */

	/* Misc */
	--border-radius-sm: 0.25rem;
	--border-radius: 0.5rem;
	--border-radius-lg: 0.75rem;
	--border-radius-full: 9999px;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1),
		0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1),
		0 8px 10px -6px rgb(0 0 0 / 0.1);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1.2 Reset & Normalization */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background-color: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-main);
	line-height: 1.6;
	overflow-x: hidden;
}

img,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

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

a:hover {
	color: var(--color-accent-hover);
	text-decoration: underline;
}

ul,
ol {
	list-style: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

/* 1.3 Base & Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	color: var(--color-headings);
	line-height: 1.2;
	margin-bottom: var(--space-md);
}

h1 {
	font-size: var(--text-5xl);
	font-weight: 800;
	letter-spacing: -0.02em;
}
h2 {
	font-size: var(--text-4xl);
	font-weight: 800;
	letter-spacing: -0.01em;
}
h3 {
	font-size: var(--text-3xl);
}
h4 {
	font-size: var(--text-2xl);
}
h5 {
	font-size: var(--text-xl);
}
h6 {
	font-size: var(--text-lg);
}

p {
	margin-bottom: var(--space-md);
}

/* 1.4 Global Layout & Helpers */
.container {
	width: 100%;
	max-width: 1320px; /* 1280px + 2*20px padding */
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.section-padding {
	padding-top: var(--space-section);
	padding-bottom: var(--space-section);
}

.section-bg {
	background-color: var(--color-surface);
}

/*--------------------------------------------------------------
2.0 Header & Navigation
--------------------------------------------------------------*/

/* 2.1 Site Header */
.site-header {
	background-color: var(--color-background);
	padding: var(--space-md) 0;
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: var(--transition);
}

.site-header.is-sticky {
	box-shadow: var(--shadow-md);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-lg);
}

.site-branding {
	flex-shrink: 0;
}

.site-title {
	font-size: var(--text-2xl);
	font-weight: 800;
	color: var(--color-primary);
	text-decoration: none;
	margin: 0;
}
.site-title:hover {
	text-decoration: none;
}

/* 2.2 Primary Navigation */
.main-navigation {
	display: none;
}

.main-navigation ul {
	display: flex;
	gap: var(--space-lg);
}

.main-navigation li {
	list-style: none;
}

.main-navigation a {
	font-size: var(--text-base);
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
	padding: var(--space-sm) 0;
	position: relative;
}

.main-navigation a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-accent);
	transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
	width: 100%;
}

/* 2.3 Header Icons */
.header-icons {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.header-icons .icon-link {
	color: var(--color-text);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.header-icons .icon-link:hover {
	color: var(--color-accent);
	transform: scale(1.1);
}

.header-icons .icon {
	width: 24px;
	height: 24px;
	stroke-width: 2;
}

.cart-count {
	position: absolute;
	top: -8px;
	right: -10px;
	background-color: var(--color-accent);
	color: white;
	border-radius: var(--border-radius-full);
	font-size: 0.75rem;
	font-weight: 700;
	width: 20px;
	height: 20px;
	display: grid;
	place-items: center;
	line-height: 1;
}

/* 2.4 Mobile Navigation */
.mobile-nav-toggle {
	display: block;
	background: none;
	border: none;
	padding: 0;
	color: var(--color-primary);
}
.mobile-nav-toggle .icon {
	width: 30px;
	height: 30px;
}
.mobile-nav-toggle .icon-close {
	display: none;
}

/* Mobile Nav Menu (Toggled) */
.mobile-nav-menu {
	display: none; /* Hidden by default */
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--color-background);
	border-top: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
	padding: var(--space-lg);
	z-index: 99;
}
.mobile-nav-menu ul {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}
.mobile-nav-menu a {
	display: block;
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--color-text);
	padding: var(--space-sm);
	border-radius: var(--border-radius-sm);
}
.mobile-nav-menu a:hover {
	background-color: var(--color-surface);
	color: var(--color-accent);
	text-decoration: none;
}

/* Toggled state */
.nav-open .mobile-nav-toggle .icon-menu {
	display: none;
}
.nav-open .mobile-nav-toggle .icon-close {
	display: block;
}
.nav-open .mobile-nav-menu {
	display: block;
}

/*--------------------------------------------------------------
3.0 Content & Blocks
--------------------------------------------------------------*/

/* 3.1 Buttons & Forms */
.btn {
	display: inline-block;
	font-size: var(--text-base);
	font-weight: 600;
	padding: 0.875em 1.75em; /* 14px 28px */
	border: none;
	border-radius: var(--border-radius-full);
	cursor: pointer;
	text-decoration: none;
	transition: var(--transition);
	line-height: 1;
}

.btn-primary {
	background-color: var(--color-accent);
	color: #ffffff;
	box-shadow: var(--shadow);
}
.btn-primary:hover {
	background-color: var(--color-accent-hover);
	color: #ffffff;
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	text-decoration: none;
}

.btn-secondary {
	background-color: var(--color-surface);
	color: var(--color-primary);
	border: 1px solid var(--color-border);
}
.btn-secondary:hover {
	background-color: var(--color-border);
	color: var(--color-primary);
	text-decoration: none;
}

.btn-link {
	background: none;
	color: var(--color-accent);
	padding: 0;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
}
.btn-link .icon {
	width: 20px;
	height: 20px;
	transition: var(--transition);
}
.btn-link:hover {
	color: var(--color-accent-hover);
	text-decoration: underline;
}
.btn-link:hover .icon {
	transform: translateX(4px);
}

/* 3.2 Accordion */
.accordion-item {
	border-bottom: 1px solid var(--color-border);
}
.accordion-header {
	width: 100%;
	background: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--space-md) 0;
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--color-headings);
	text-align: left;
}
.accordion-header .icon {
	width: 20px;
	height: 20px;
	transition: var(--transition);
	flex-shrink: 0;
	margin-left: var(--space-md);
}
.accordion-content {
	display: none;
	padding-bottom: var(--space-md);
	color: var(--color-text);
}
.accordion-item.active .accordion-content {
	display: block;
}
.accordion-item.active .accordion-header .icon {
	transform: rotate(180deg);
}

/* 3.3 Product Grids */
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--space-xl);
	flex-wrap: wrap;
	gap: var(--space-md);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: var(--space-lg);
}

.product-card {
	background-color: var(--color-background);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}
.product-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}
.product-card__image {
	display: block;
	position: relative;
}
.product-card__image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}
.product-card__content {
	padding: var(--space-lg);
}
.product-card__title {
	font-size: var(--text-lg);
	font-weight: 600;
	margin: 0 0 var(--space-sm) 0;
}
.product-card__title a {
	color: var(--color-headings);
	text-decoration: none;
}
.product-card__title a:hover {
	color: var(--color-accent);
}
.product-card__price {
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--color-primary);
}
.product-card .star-rating {
	color: var(--color-star);
	margin-bottom: var(--space-sm);
	font-size: var(--text-sm);
}

/* 3.4 Testimonials */
.testimonial-slider {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}

.testimonial-card {
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	padding: var(--space-xl);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--shadow);
}
.testimonial-card__header {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	margin-bottom: var(--space-md);
}
.testimonial-card__avatar img {
	width: 50px;
	height: 50px;
	border-radius: var(--border-radius-full);
	object-fit: cover;
}
.testimonial-card__author {
	flex: 1;
}
.testimonial-card__name {
	font-size: var(--text-base);
	font-weight: 600;
	color: var(--color-headings);
	margin: 0;
}
.testimonial-card__handle {
	font-size: var(--text-sm);
	color: var(--color-text);
	margin: 0;
}
.testimonial-card__rating {
	color: var(--color-star);
	font-size: var(--text-sm);
}
.testimonial-card__body {
	font-size: var(--text-base);
	color: var(--color-text);
}
.testimonial-card__body p {
	margin: 0;
}

/* 3.5 Banners */
.banner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: var(--space-xl);
	background-color: var(--color-surface);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	padding: var(--space-section);
}
.banner__content {
	text-align: center;
}
.banner__image img {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	border-radius: var(--border-radius-lg);
}

/*--------------------------------------------------------------
4.0 Template: Front Page
--------------------------------------------------------------*/

/* 4.1 Hero Section */
.hero {
	padding: var(--space-section) 0;
}
.hero .container {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: var(--space-xl);
}
.hero__content {
	text-align: center;
}
.hero__content h1 {
	margin-bottom: var(--space-lg);
}
.hero__content .btn {
	margin-top: var(--space-lg);
}
.hero__cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: var(--space-lg);
}
.hero-card {
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	position: relative;
	box-shadow: var(--shadow);
	transition: var(--transition);
}
.hero-card:hover {
	transform: scale(1.03);
	box-shadow: var(--shadow-lg);
}
.hero-card img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}
.hero-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--space-lg);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero-card__content h3 {
	font-size: var(--text-xl);
	color: #ffffff;
	margin: 0;
}
.hero-card__content .btn-link {
	font-size: var(--text-base);
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
}
.hero-card__content .btn-link:hover {
	text-decoration: underline;
}
/* Card specific colors from image */
.hero-card:nth-child(1) {
	background-color: var(--color-hero-card-1);
}
.hero-card:nth-child(2) {
	background-color: var(--color-hero-card-2);
}
.hero-card:nth-child(3) {
	background-color: var(--color-hero-card-3);
}

/* 4.2 Top Selling */
.top-selling-grid {
	grid-template-columns: repeat(1, 1fr);
}

/* 4.3 Why Choose Us */
.why-choose-us {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-xl);
	align-items: center;
}
.why-choose-us__image img {
	border-radius: var(--border-radius-lg);
	width: 100%;
	height: 500px;
	object-fit: cover;
}

/* 4.4 Feature Cards (USPs) */
.feature-cards {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: var(--space-lg);
	margin: var(--space-xl) 0;
}
.feature-card {
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-lg);
	padding: var(--space-lg);
	text-align: center;
}
.feature-card .icon {
	width: 40px;
	height: 40px;
	color: var(--color-accent);
	margin-bottom: var(--space-md);
}
.feature-card h4 {
	font-size: var(--text-lg);
	margin-bottom: var(--space-sm);
}
.feature-card p {
	font-size: var(--text-base);
	margin: 0;
}

/* 4.5 Promo Banner */
.promo-banner {
	background-color: var(--color-accent);
	color: #ffffff;
	border-radius: var(--border-radius-lg);
	padding: var(--space-xl);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.promo-banner h3 {
	color: #ffffff;
	margin: 0;
}
.promo-banner .icon { /* Starburst */
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 80px;
	height: 80px;
	opacity: 0.8;
}

/* 4.6 All Products Tabs */
.product-tabs {
	display: flex;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
	flex-wrap: wrap;
}
.product-tabs .tab-link {
	font-size: var(--text-base);
	font-weight: 600;
	color: var(--color-text);
	padding: var(--space-sm) var(--space-md);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius-full);
	background: none;
}
.product-tabs .tab-link.active,
.product-tabs .tab-link:hover {
	background-color: var(--color-primary);
	color: #ffffff;
	border-color: var(--color-primary);
	text-decoration: none;
}
.product-tab-content {
	display: none;
}
.product-tab-content.active {
	display: block;
}

/*--------------------------------------------------------------
6.0 WooCommerce
--------------------------------------------------------------*/
/* 6.4 Mini Cart */
.meher-mini-cart {
	position: absolute;
	top: calc(100% + var(--space-sm));
	right: 0;
	width: 360px;
	background-color: var(--color-background);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--color-border);
	padding: var(--space-lg);
	display: none;
	z-index: 101;
}
.cart-link:hover .meher-mini-cart,
.cart-link:focus-within .meher-mini-cart,
.meher-mini-cart:hover {
	display: block;
}

.widget_shopping_cart_content .buttons {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}
.widget_shopping_cart_content .button {
	width: 100%;
	text-align: center;
	justify-content: center;
}

/*--------------------------------------------------------------
7.0 Footer
--------------------------------------------------------------*/

/* 7.1 Site Footer */
.site-footer {
	background-color: var(--color-primary);
	color: #eaecf0; /* Gray 200 */
	padding-top: var(--space-section);
}

.footer-main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-xl);
	padding-bottom: var(--space-xl);
}

.footer-brand {
	grid-column: 1 / -1;
}
.footer-brand .footer-logo {
	font-size: var(--text-2xl);
	font-weight: 800;
	color: #ffffff;
	text-decoration: none;
	margin-bottom: var(--space-md);
	display: block;
}
.footer-brand p {
	max-width: 350px;
	font-size: var(--text-base);
}

.footer-widget-title {
	font-size: var(--text-sm);
	font-weight: 600;
	color: #98a2b3; /* Gray 400 */
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-md);
}

.footer-widget ul {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}
.footer-widget a {
	color: #ffffff;
	font-weight: 500;
	text-decoration: none;
}
.footer-widget a:hover {
	text-decoration: underline;
}

/* 7.3 Footer Bottom */
.footer-bottom {
	border-top: 1px solid var(--color-primary-light);
	padding: var(--space-lg) 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-md);
	font-size: var(--text-sm);
}
.footer-socials {
	display: flex;
	gap: var(--space-lg);
}
.footer-socials a {
	color: #98a2b3;
}
.footer-socials a:hover {
	color: #ffffff;
}
.footer-socials .icon {
	width: 20px;
	height: 20px;
}
.footer-copyright {
	color: #98a2b3;
}

/*--------------------------------------------------------------
8.0 Accessibility & Utilities
--------------------------------------------------------------*/

/* 8.1 Skip Link */
.skip-link {
	position: absolute;
	top: -999px;
	left: 0;
	background-color: var(--color-primary);
	color: white;
	padding: var(--space-md);
	z-index: 9999;
	font-weight: 600;
	text-decoration: none;
}
.skip-link:focus {
	top: 10px;
	left: 10px;
}

/* 8.2 Utility Classes */
.text-center {
	text-align: center;
}
.visually-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}

/*--------------------------------------------------------------
8.3 Media Queries
--------------------------------------------------------------*/

@media (min-width: 640px) {
	/* 2 Col Grids */
	.top-selling-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.testimonial-slider {
		grid-template-columns: repeat(2, 1fr);
	}
	.feature-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Hero */
	.hero__cards {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Footer */
	.footer-main {
		grid-template-columns: repeat(4, 1fr);
	}
	.footer-brand {
		grid-column: span 4;
	}
	.footer-bottom {
		flex-direction: row;
	}
}

@media (min-width: 768px) {
	/* Header */
	.main-navigation {
		display: block;
	}
	.mobile-nav-toggle {
		display: none;
	}
	.mobile-nav-menu {
		display: none !important;
	}

	/* Hero */
	.hero .container {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-xl);
	}
	.hero__content {
		text-align: left;
	}
	.hero__cards {
		grid-column: 1 / -1;
	}

	/* Why Choose Us */
	.why-choose-us {
		grid-template-columns: 1fr 1fr;
	}
	.why-choose-us__content {
		order: 1; /* Puts content on right */
	}
	.why-choose-us__image {
		order: 2; /* Puts image on left */
	}
	/* Swap for Banner */
	.banner.image-right .banner__content {
		order: 1;
	}
	.banner.image-right .banner__image {
		order: 2;
	}
	.banner.image-left .banner__content {
		order: 2;
	}
	.banner.image-left .banner__image {
		order: 1;
	}

	/* 3 Col Grids */
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.feature-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	/* 4 Col Grids */
	.top-selling-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.product-grid {
		grid-template-columns: repeat(3, 1fr); /* Stays 3 for the main grid */
	}

	/* Hero */
	.hero .container {
		grid-template-columns: 1fr; /* Back to 1 col for text */
	}
	.hero__content {
		grid-column: 1 / -1;
		max-width: 700px;
		margin: 0 auto;
		text-align: center;
	}

	/* Banners */
	.banner {
		grid-template-columns: 1fr 1fr;
		padding: 0;
	}
	.banner__content {
		padding: var(--space-section);
		text-align: left;
	}
	.banner__image img {
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: cover;
		border-radius: 0;
	}
	.banner.image-right .banner__image {
		border-top-right-radius: var(--border-radius-lg);
		border-bottom-right-radius: var(--border-radius-lg);
	}
	.banner.image-left .banner__image {
		border-top-left-radius: var(--border-radius-lg);
		border-bottom-left-radius: var(--border-radius-lg);
	}

	/* Footer */
	.footer-main {
		grid-template-columns: repeat(6, 1fr);
	}
	.footer-brand {
		grid-column: span 2;
	}
}