/*
Theme Name: Emargy Demo Store
Theme URI: https://plugins.emargy.com/
Description: Premium reviewer storefront for the Emargy WooCommerce plugin suite (GEO, Flows, StoreKit, WhatsApp Notify). Fictional Northstar Supply sneaker catalog.
Author: Emargy
Template: emargy
Version: 3.0.0
Text Domain: emargy-demo
*/

/* =========================================================================
   Design tokens — Emargy design system + warm athletic-retail palette
   ========================================================================= */
:root {
	--navy: #233446;
	--deep: #141d26;
	--accent: #06c39d;
	--accent-600: #05a988;
	--accent-tint: rgba(6, 195, 157, .1);
	--silver: #d9e2e4;
	--ink: #233446;
	--muted: #5f7080;
	--muted-2: #8496a3;

	/* Warm neutrals — replace the old cool white/gray with sand/stone */
	--stone-50: #f7f5f0;
	--stone-100: #efebe1;
	--stone-200: #e3ddcf;
	--stone-line: #e6e0d3;
	--olive: #6b7256;
	--olive-dark: #4f5540;
	--olive-tint: rgba(107, 114, 86, .12);

	--line: var(--stone-line);
	--soft: var(--stone-50);
	--white: #fff;

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-xl: 28px;
	--radius-full: 999px;

	--shadow-sm: 0 1px 2px rgba(40, 34, 20, .05);
	--shadow-md: 0 8px 22px rgba(40, 34, 20, .07);
	--shadow-lg: 0 20px 52px rgba(40, 34, 20, .11);
	--shadow-accent: 0 10px 28px rgba(6, 195, 157, .28);

	--shell: 1280px;
	--ease: cubic-bezier(.4, 0, .2, 1);
	--ease-out: cubic-bezier(0, 0, .2, 1);
}

/* =========================================================================
   Base
   ========================================================================= */
html { scroll-behavior: smooth; }

body.emargy-demo-store {
	background: var(--white);
	color: var(--ink);
	font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	letter-spacing: -.005em;
}

.emargy-demo-store h1,
.emargy-demo-store h2,
.emargy-demo-store h3,
.emargy-demo-store h4 {
	color: var(--navy);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -.03em;
}

/* Base link color is intentionally low-specificity (:where = 0) so every
   button / CTA / nav rule below always wins its own text color. */
.emargy-demo-store :where(a) { color: var(--navy); transition: color .15s var(--ease); }
.emargy-demo-store :where(a:hover) { color: var(--accent-600); }

.demo-shell { margin: 0 auto; max-width: var(--shell); padding: 0 24px; width: 100%; }
.demo-eyebrow,
.demo-kicker {
	color: var(--olive-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

/* =========================================================================
   LAYOUT FIX — full-width, single column, no phantom sidebar column.
   ========================================================================= */
.emargy-demo-store .emargy-page-wrap { overflow-x: clip; }

.emargy-demo-store #page.emargy-container {
	max-width: var(--shell);
	padding-left: 24px;
	padding-right: 24px;
}

.emargy-demo-store #content.site-content {
	display: block;
	gap: 0;
	padding: 48px 0 0;
}

.emargy-demo-store #content.site-content > * { width: 100%; }
.emargy-demo-store .widget-area.sidebar,
.emargy-demo-store #right-sidebar,
.emargy-demo-store #left-sidebar { display: none; }

.home .emargy-demo-store #page.emargy-container,
.emargy-demo-store.home #page.emargy-container { max-width: none; padding: 0; }
.emargy-demo-store.home #content.site-content { padding: 0; }

.demo-bleed {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* =========================================================================
   Header — unified branding, navigation and actions
   ========================================================================= */
.emargy-demo-store .site-header {
	background: rgba(247, 245, 240, .88);
	backdrop-filter: saturate(140%) blur(14px);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 200;
}
.admin-bar .emargy-demo-store .site-header { top: 32px; }

.emargy-demo-store .inside-header {
	align-items: center;
	display: flex;
	gap: 26px;
	min-height: 76px;
	padding: 10px 24px;
}

/* Brand */
.emargy-demo-store .site-branding-container { align-items: center; display: flex; gap: 12px; }
.demo-brandmark {
	align-items: center;
	background: var(--navy);
	border-radius: var(--radius-sm);
	color: var(--white);
	display: inline-flex;
	font-size: 18px;
	font-weight: 800;
	height: 38px;
	justify-content: center;
	letter-spacing: -.02em;
	width: 38px;
}
.emargy-demo-store .site-branding { line-height: 1.05; }
.emargy-demo-store .main-title { font-size: 20px; letter-spacing: -.03em; margin: 0; }
.emargy-demo-store .main-title a { color: var(--deep); font-weight: 800; }
.emargy-demo-store .site-description {
	color: var(--muted-2);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .12em;
	margin: 3px 0 0;
	text-transform: uppercase;
}

/* Primary navigation, now inline in the header */
.emargy-demo-store .main-navigation { background: transparent; color: inherit; margin-left: auto; }
.emargy-demo-store .site-header .inside-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	max-width: none;
	padding: 0;
	width: auto;
}
.emargy-demo-store .site-header .main-nav > ul { display: flex; flex-wrap: nowrap; gap: 2px; }
.emargy-demo-store .site-header .main-nav a {
	background: transparent;
	border-radius: var(--radius-full);
	color: var(--navy);
	font-size: 14px;
	font-weight: 600;
	padding: 9px 15px;
}
.emargy-demo-store .site-header .main-nav a:hover { background: var(--stone-100); color: var(--olive-dark); }
.emargy-demo-store .site-header .main-nav .sub-menu {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	min-width: 210px;
	overflow: hidden;
	padding: 6px;
}
.emargy-demo-store .site-header .main-nav .sub-menu a { border-radius: var(--radius-sm); color: var(--navy); }
.emargy-demo-store .site-header .main-nav .sub-menu a:hover { background: var(--stone-100); }

/* Actions cluster */
.demo-header-actions { align-items: center; display: flex; gap: 6px; }
.demo-header-icon {
	align-items: center;
	border-radius: var(--radius-full);
	color: var(--navy);
	display: inline-flex;
	height: 40px;
	justify-content: center;
	position: relative;
	width: 40px;
}
.demo-header-icon:hover { background: var(--stone-100); color: var(--olive-dark); }
.demo-header-cart .demo-cart-count {
	align-items: center;
	background: var(--accent);
	border-radius: var(--radius-full);
	color: var(--deep);
	display: flex;
	font-size: 10px;
	font-style: normal;
	font-weight: 800;
	height: 17px;
	justify-content: center;
	min-width: 17px;
	padding: 0 4px;
	position: absolute;
	right: 3px;
	top: 3px;
}
.demo-cart-count.is-empty { display: none; }

.demo-admin-link {
	align-items: center;
	background: var(--deep);
	border-radius: var(--radius-full);
	color: #fff !important;
	display: inline-flex;
	font-size: 12.5px;
	font-weight: 700;
	gap: 7px;
	letter-spacing: .01em;
	margin-left: 8px;
	padding: 11px 18px;
	transition: transform .15s var(--ease), background .15s var(--ease);
	white-space: nowrap;
}
.demo-admin-link:hover { background: var(--accent); color: var(--deep) !important; transform: translateY(-1px); }

.emargy-demo-store .menu-toggle { display: none; }

/* =========================================================================
   Buttons — pill-shaped, matches reference CTAs
   ========================================================================= */
.demo-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--radius-full);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	gap: 9px;
	justify-content: center;
	line-height: 1;
	padding: 16px 26px;
	transition: transform .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
	white-space: nowrap;
}
.demo-button--primary { background: var(--accent); color: var(--deep); }
.demo-button--primary:hover { background: var(--accent-600); box-shadow: var(--shadow-accent); color: var(--deep); transform: translateY(-1px); }
.demo-button--dark { background: var(--deep); color: #fff; }
.demo-button--dark:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.demo-button--ghost { border-color: rgba(35, 52, 70, .22); color: var(--navy); }
.demo-button--ghost:hover { border-color: var(--navy); color: var(--navy); }
.demo-button--on-dark.demo-button--ghost { border-color: rgba(255, 255, 255, .28); color: #fff; }
.demo-button--on-dark.demo-button--ghost:hover { border-color: #fff; color: #fff; }
.emargy-demo-store .demo-button span[aria-hidden],
.emargy-demo-store .demo-admin-link span[aria-hidden],
.emargy-demo-store .demo-edit__card span[aria-hidden] { color: inherit; font-variant-emoji: text; }

/* =========================================================================
   Homepage — hero
   ========================================================================= */
.demo-home { background: var(--white); }

.demo-hero { background: linear-gradient(180deg, var(--stone-50) 0%, #fff 100%); border-bottom: 1px solid var(--line); overflow: hidden; }
.demo-hero__inner {
	align-items: center;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	padding: 72px 24px 64px;
}
.demo-hero__badge {
	align-items: center;
	background: var(--stone-100);
	border-radius: var(--radius-full);
	color: var(--olive-dark);
	display: inline-flex;
	font-size: 11.5px;
	font-weight: 800;
	gap: 8px;
	letter-spacing: .1em;
	margin-bottom: 20px;
	padding: 8px 16px;
	text-transform: uppercase;
}
.demo-hero__badge span[aria-hidden] { color: var(--accent); font-size: 8px; }
.demo-hero h1 { font-size: clamp(40px, 5.4vw, 76px); letter-spacing: -.04em; margin: 0 0 20px; }
.demo-hero p.demo-hero__lead { color: var(--muted); font-size: 18px; line-height: 1.65; margin: 0; max-width: 480px; }
.demo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.demo-note { align-items: center; color: var(--muted-2); display: flex; font-size: 12.5px; gap: 8px; margin-top: 26px; }
.demo-note::before { background: var(--accent); border-radius: 50%; content: ""; height: 7px; width: 7px; }

/* Hero visual — big lifestyle image with floating trust chips */
.demo-hero__visual { position: relative; }
.demo-hero__image {
	aspect-ratio: 4 / 5;
	background: var(--stone-100);
	border-radius: var(--radius-xl);
	overflow: hidden;
	position: relative;
}
.demo-hero__image img { display: block; height: 100%; object-fit: cover; width: 100%; }
.demo-hero__floating {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 16px 18px;
	position: absolute;
}
.demo-hero__floating--top { right: -18px; top: 26px; }
.demo-hero__floating--bottom { bottom: 26px; left: -18px; }
.demo-hero__floating-row { align-items: center; display: flex; gap: 12px; }
.demo-hero__floating-icon {
	align-items: center;
	background: var(--olive-tint);
	border-radius: var(--radius-md);
	color: var(--olive-dark);
	display: flex;
	flex: none;
	height: 40px;
	justify-content: center;
	width: 40px;
}
.demo-hero__floating strong { color: var(--navy); display: block; font-size: 13.5px; font-weight: 700; }
.demo-hero__floating span { color: var(--muted-2); font-size: 11.5px; }
.demo-hero__rating {
	align-items: center;
	background: #fff;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-md);
	bottom: -20px;
	display: inline-flex;
	gap: 10px;
	left: 50%;
	padding: 10px 18px;
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}
.demo-hero__rating strong { color: var(--navy); font-size: 13px; }
.demo-hero__rating span { color: #e0a52c; font-size: 13px; }

/* Category quick-nav pills under the hero */
.demo-catnav { border-bottom: 1px solid var(--line); padding: 22px 0; }
.demo-catnav__inner { align-items: center; display: flex; flex-wrap: wrap; gap: 10px; }
.demo-catnav__search {
	align-items: center;
	background: var(--stone-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-full);
	color: var(--muted-2);
	display: inline-flex;
	flex: 1 1 260px;
	font-size: 13.5px;
	gap: 10px;
	max-width: 360px;
	padding: 12px 18px;
}
.demo-catnav__pill {
	align-items: center;
	background: var(--stone-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-full);
	color: var(--navy);
	display: inline-flex;
	font-size: 13.5px;
	font-weight: 600;
	gap: 8px;
	padding: 11px 18px;
	transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
}
.demo-catnav__pill:hover { background: var(--olive-tint); border-color: var(--olive); color: var(--olive-dark); }

/* =========================================================================
   Trust strip
   ========================================================================= */
.demo-trust { border-bottom: 1px solid var(--line); }
.demo-trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.demo-trust__item {
	align-items: center;
	color: var(--navy);
	display: flex;
	font-size: 13.5px;
	font-weight: 600;
	gap: 12px;
	justify-content: center;
	padding: 22px 18px;
}
.demo-trust__item + .demo-trust__item { border-left: 1px solid var(--line); }
.demo-trust__item svg { color: var(--olive-dark); flex: none; }
.demo-trust__item span small { color: var(--muted-2); display: block; font-size: 11px; font-weight: 500; }

/* =========================================================================
   Sections
   ========================================================================= */
.demo-section { padding: 92px 0; }
.demo-section--soft { background: var(--stone-50); }
.demo-section--dark { background: var(--deep); color: #fff; }
.demo-section__head { align-items: flex-end; display: flex; gap: 40px; justify-content: space-between; margin-bottom: 40px; }
.demo-section__head h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 10px 0 0; }
.demo-section--dark .demo-section__head h2 { color: #fff; }
.demo-section__head p { color: var(--muted); margin: 0; max-width: 440px; }
.demo-section--dark .demo-section__head p { color: #9fb0bc; }
.demo-storekit-badge {
	align-items: center;
	background: var(--accent-tint);
	border-radius: var(--radius-full);
	color: var(--accent-600);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	gap: 7px;
	padding: 7px 14px;
}
.demo-storekit-badge .dot { background: var(--accent); border-radius: 50%; height: 8px; width: 8px; }

.demo-storekit-frame { position: relative; }

/* Fallback grid (only if Elementor/StoreKit unavailable) */
.demo-fallback-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.demo-product-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.demo-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.demo-product-card img { aspect-ratio: 1 / 1; background: var(--stone-50); object-fit: cover; width: 100%; }
.demo-product-card__body { padding: 16px 18px 20px; }
.demo-product-card h3 { font-size: 15.5px; line-height: 1.35; margin: 0 0 6px; }
.demo-product-card .price { color: var(--navy); font-size: 14px; font-weight: 800; }

/* Editorial category band — Running / Basketball / Training / Lifestyle */
.demo-edit { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.demo-edit__card {
	background: linear-gradient(160deg, var(--navy), var(--deep));
	border-radius: var(--radius-xl);
	color: #fff;
	min-height: 240px;
	overflow: hidden;
	padding: 30px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.demo-edit__card--accent { background: linear-gradient(160deg, var(--accent-600), #048f74); }
.demo-edit__card span { color: rgba(255, 255, 255, .72); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.demo-edit__card h3 { color: #fff; font-size: 22px; margin: 8px 0 4px; }
.demo-edit__card p { color: rgba(255, 255, 255, .78); font-size: 13.5px; margin: 0; }
.demo-edit__card a.demo-edit__link,
.demo-edit__card .demo-edit__link { color: #fff; font-weight: 700; margin-top: 14px; }

/* =========================================================================
   Technology / capability strip (Emargy plugin features, styled like a
   product-technology row)
   ========================================================================= */
.demo-tech { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.demo-tech__item { text-align: center; }
.demo-tech__icon {
	align-items: center;
	background: var(--stone-100);
	border-radius: var(--radius-lg);
	color: var(--olive-dark);
	display: flex;
	height: 64px;
	justify-content: center;
	margin: 0 auto 14px;
	width: 64px;
}
.demo-tech__item strong { color: var(--navy); display: block; font-size: 13px; letter-spacing: .04em; margin-bottom: 6px; text-transform: uppercase; }
.demo-tech__item p { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 0; }

/* =========================================================================
   Reviewer guidance (compact, dark)
   ========================================================================= */
.demo-review__grid { display: grid; gap: 34px; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; }
.demo-review__stats { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.demo-review__stat { background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09); border-radius: var(--radius-md); padding: 22px; }
.demo-review__stat strong { color: #fff; display: block; font-size: 30px; letter-spacing: -.03em; }
.demo-review__stat span { color: #9fb0bc; font-size: 12.5px; font-weight: 600; }
.demo-workflow { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.demo-workflow__item { border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-md); padding: 22px; }
.demo-workflow__number { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.demo-workflow h3 { color: #fff; font-size: 17px; margin: 14px 0 7px; }
.demo-workflow p { color: #9fb0bc; font-size: 13.5px; line-height: 1.55; margin: 0; }
.demo-review__cta { margin-top: 30px; }

/* =========================================================================
   Footer content band
   ========================================================================= */
.demo-footer { background: var(--deep); color: #b7c3cc; }
.demo-footer__inner { display: grid; gap: 40px; grid-template-columns: 2fr 1fr 1fr; margin: 0 auto; max-width: var(--shell); padding: 64px 24px; }
.demo-footer__brand { display: flex; gap: 16px; }
.demo-footer__brand .demo-brandmark { background: var(--accent); color: var(--deep); flex: none; }
.demo-footer__brand strong { color: #fff; display: block; font-size: 17px; margin-bottom: 8px; }
.demo-footer__brand p { color: #8496a3; font-size: 13.5px; line-height: 1.6; margin: 0; max-width: 420px; }
.demo-footer__links h4 { color: #fff; font-size: 12px; letter-spacing: .12em; margin: 4px 0 16px; text-transform: uppercase; }
.demo-footer__links a { color: #b7c3cc; display: block; font-size: 14px; margin-bottom: 10px; }
.demo-footer__links a:hover { color: var(--accent); }
.demo-footer__badge { align-items: center; color: #8496a3; display: flex; font-size: 12px; font-weight: 600; gap: 8px; margin-top: 8px; }
.demo-footer__badge .dot { background: var(--accent); border-radius: 50%; height: 8px; width: 8px; }

.emargy-demo-store .site-info { background: var(--deep); border-top: 1px solid rgba(255, 255, 255, .08); color: #8496a3; }
.emargy-demo-store .inside-site-info { font-size: 12.5px; padding: 22px 24px; }
.emargy-demo-store .site-info a { color: #fff; }

/* =========================================================================
   WooCommerce — shared store chrome
   ========================================================================= */
.emargy-demo-store.woocommerce-page #page.emargy-container,
.emargy-demo-store.woocommerce #page.emargy-container { max-width: var(--shell); }

.store-page-head { background: var(--stone-50); border-bottom: 1px solid var(--line); margin-bottom: 44px; margin-top: -48px; }
.store-page-head__inner { margin: 0 auto; max-width: var(--shell); padding: 40px 24px 34px; }
.store-page-head__title { font-size: clamp(30px, 3.6vw, 48px); margin: 12px 0 8px; }
.store-page-head__subtitle { color: var(--muted); font-size: 16px; margin: 0; max-width: 640px; }
.emargy-demo-store .woocommerce-breadcrumb {
	color: var(--muted-2);
	font-size: 12.5px;
	font-weight: 600;
	margin: 0;
}
.emargy-demo-store .woocommerce-breadcrumb a { color: var(--muted); }
.emargy-demo-store .woocommerce-breadcrumb a:hover { color: var(--olive-dark); }

.emargy-demo-store .woocommerce-result-count { color: var(--muted); font-size: 13.5px; margin: 0; padding-top: 8px; }
.emargy-demo-store .woocommerce-ordering select,
.emargy-demo-store .select2-container .select2-selection--single {
	border: 1px solid var(--line);
	border-radius: var(--radius-full);
	color: var(--navy);
	font-size: 13.5px;
	padding: 9px 14px;
}

/* Shop product grid (WooCommerce default loop) */
.emargy-demo-store ul.products {
	display: grid !important;
	gap: 24px !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	margin: 0 0 40px !important;
}
.emargy-demo-store ul.products::before,
.emargy-demo-store ul.products::after { display: none !important; }
.emargy-demo-store ul.products li.product {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	display: flex !important;
	flex-direction: column;
	float: none !important;
	margin: 0 !important;
	overflow: hidden;
	padding: 0 !important;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
	width: auto !important;
}
.emargy-demo-store ul.products li.product:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.emargy-demo-store ul.products li.product a img,
.emargy-demo-store ul.products li.product img {
	aspect-ratio: 1 / 1;
	background: var(--stone-50);
	border-radius: 0;
	margin: 0 0 14px !important;
	object-fit: cover;
	width: 100%;
}
.emargy-demo-store ul.products li.product .woocommerce-loop-product__title {
	color: var(--navy);
	font-size: 15.5px;
	font-weight: 700;
	line-height: 1.35;
	padding: 0 18px !important;
}
.emargy-demo-store ul.products li.product .price {
	color: var(--navy) !important;
	display: block;
	font-size: 14.5px !important;
	font-weight: 800 !important;
	margin-top: auto;
	padding: 8px 18px 0 !important;
}
.emargy-demo-store ul.products li.product .price del { color: var(--muted-2) !important; font-weight: 500 !important; opacity: .7; }
.emargy-demo-store ul.products li.product .price ins { text-decoration: none; }
.emargy-demo-store ul.products li.product .star-rating { font-size: 12px; margin: 8px 18px 0 !important; }
.emargy-demo-store ul.products li.product .button,
.emargy-demo-store ul.products li.product .added_to_cart {
	background: var(--stone-100) !important;
	border-radius: var(--radius-full) !important;
	color: var(--navy) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	margin: 14px 18px 18px !important;
	padding: 11px 14px !important;
	text-align: center;
	transition: background .15s var(--ease), color .15s var(--ease);
}
.emargy-demo-store ul.products li.product .button:hover,
.emargy-demo-store ul.products li.product .added_to_cart:hover { background: var(--accent) !important; color: var(--deep) !important; }
.emargy-demo-store ul.products li.product .onsale {
	background: var(--accent);
	border: 0;
	border-radius: var(--radius-full);
	color: var(--deep);
	font-size: 11px;
	font-weight: 800;
	left: 12px;
	margin: 0;
	min-height: 0;
	min-width: 0;
	padding: 5px 11px;
	right: auto;
	top: 12px;
}

/* =========================================================================
   WooCommerce — single product (Reebok-style clean PDP)
   ========================================================================= */
.emargy-demo-store.woocommerce div.product { padding: 8px 0 24px; }
.emargy-demo-store div.product .product_title { font-size: clamp(28px, 3.2vw, 40px); margin: 8px 0 12px; }
.emargy-demo-store div.product p.price,
.emargy-demo-store div.product span.price { color: var(--navy); font-size: 26px; font-weight: 800; }

/* Gallery: big square image + thumbnail rail */
.emargy-demo-store div.product .woocommerce-product-gallery {
	background: var(--stone-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-xl);
	overflow: hidden;
	padding: 20px;
}
.emargy-demo-store div.product .woocommerce-product-gallery .woocommerce-product-gallery__image { border-radius: var(--radius-lg); overflow: hidden; }
.emargy-demo-store div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img { aspect-ratio: 1 / 1; object-fit: cover; }
.emargy-demo-store div.product .flex-control-thumbs { display: flex !important; flex-wrap: wrap; gap: 10px; margin-top: 14px !important; }
.emargy-demo-store div.product .flex-control-thumbs li { width: calc(20% - 8px); }
.emargy-demo-store div.product .flex-control-thumbs img {
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	opacity: 1;
	transition: border-color .15s var(--ease);
}
.emargy-demo-store div.product .flex-control-thumbs img.flex-active { border-color: var(--navy); }

.emargy-demo-store .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--line); }
.emargy-demo-store .woocommerce-tabs ul.tabs li { background: transparent; border: 0; border-radius: 0; }
.emargy-demo-store .woocommerce-tabs ul.tabs li.active { border-bottom: 2px solid var(--accent); }
.emargy-demo-store .woocommerce-tabs ul.tabs li a { color: var(--navy); font-weight: 700; }

/* Shared WooCommerce buttons (add to cart, place order, etc.) */
.emargy-demo-store.woocommerce a.button.alt,
.emargy-demo-store.woocommerce button.button.alt,
.emargy-demo-store.woocommerce input.button.alt,
.emargy-demo-store.woocommerce #respond input#submit.alt,
.emargy-demo-store.woocommerce .single_add_to_cart_button {
	background: var(--deep) !important;
	border-radius: var(--radius-full) !important;
	color: #fff !important;
	font-weight: 700 !important;
	padding: 16px 28px !important;
	transition: background .15s var(--ease), transform .15s var(--ease);
}
.emargy-demo-store.woocommerce a.button.alt:hover,
.emargy-demo-store.woocommerce button.button.alt:hover,
.emargy-demo-store.woocommerce input.button.alt:hover,
.emargy-demo-store.woocommerce .single_add_to_cart_button:hover { background: var(--navy) !important; transform: translateY(-1px); }
.emargy-demo-store.woocommerce a.button,
.emargy-demo-store.woocommerce button.button,
.emargy-demo-store.woocommerce input.button {
	background: var(--stone-100);
	border-radius: var(--radius-full);
	color: var(--navy);
	font-weight: 700;
	padding: 13px 22px;
}
.emargy-demo-store.woocommerce a.button:hover,
.emargy-demo-store.woocommerce button.button:hover,
.emargy-demo-store.woocommerce input.button:hover { background: var(--olive-tint); color: var(--olive-dark); }

/* PDP delivery note under Add to Cart */
.demo-pdp-note {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 13px;
	gap: 10px;
	margin-top: 18px;
}
.demo-pdp-note svg { color: var(--olive-dark); flex: none; }

/* Quantity input */
.emargy-demo-store.woocommerce .quantity .qty {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 12px 8px;
	width: 72px;
}

/* Notices */
.emargy-demo-store .woocommerce-message,
.emargy-demo-store .woocommerce-info,
.emargy-demo-store .woocommerce-error {
	border-radius: var(--radius-md);
	border-top: 0;
	box-shadow: var(--shadow-sm);
	padding: 16px 18px 16px 46px;
}
.emargy-demo-store .woocommerce-message { border-left: 3px solid var(--accent); }
.emargy-demo-store .woocommerce-message::before,
.emargy-demo-store .woocommerce-info::before { color: var(--accent-600); }

/* =========================================================================
   PDP variation pills — size grid + color swatches
   (progressive enhancement over the native <select>, see pdp-variations.js)
   ========================================================================= */
.emargy-demo-store .variations { border: 0 !important; }
.emargy-demo-store .variations td,
.emargy-demo-store .variations th { border: 0 !important; display: block; padding: 0 !important; }
.emargy-demo-store table.variations { margin-bottom: 20px !important; }

.demo-variant-group { margin-bottom: 22px; }
.demo-variant-group__label {
	align-items: baseline;
	color: var(--navy);
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 6px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .04em;
}
.demo-variant-group__label span { color: var(--muted-2); font-weight: 500; text-transform: none; letter-spacing: 0; }
.demo-variant-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.demo-variant-pill {
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: var(--radius-full);
	color: var(--navy);
	cursor: pointer;
	font-size: 13.5px;
	font-weight: 600;
	padding: 10px 18px;
	transition: border-color .15s var(--ease), background .15s var(--ease), color .15s var(--ease);
}
.demo-variant-pill:hover { border-color: var(--navy); }
.demo-variant-pill.is-selected { background: var(--navy); border-color: var(--navy); color: #fff; }
.demo-variant-pill.is-disabled { color: var(--muted-2); cursor: not-allowed; opacity: .45; text-decoration: line-through; }

/* Color swatches render as circles when the attribute name looks like a color */
.demo-variant-pills--color .demo-variant-pill {
	align-items: center;
	border-radius: var(--radius-full);
	display: inline-flex;
	gap: 8px;
	padding: 7px 16px 7px 7px;
}
.demo-variant-swatch-dot {
	border: 1px solid rgba(35, 52, 70, .15);
	border-radius: 50%;
	display: inline-block;
	height: 22px;
	width: 22px;
}

/* =========================================================================
   WooCommerce — cart / checkout / account
   ========================================================================= */
.emargy-demo-store.woocommerce table.shop_table {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.emargy-demo-store.woocommerce table.shop_table th { color: var(--navy); font-weight: 700; }
.emargy-demo-store .cart_totals h2,
.emargy-demo-store .cart-collaterals h2,
.emargy-demo-store #order_review_heading { color: var(--navy); font-size: 20px; }
.emargy-demo-store .woocommerce-checkout #payment { background: var(--stone-50); border-radius: var(--radius-lg); }
.emargy-demo-store form .form-row input.input-text,
.emargy-demo-store form .form-row textarea,
.emargy-demo-store .woocommerce form .form-row .select2-container {
	border-radius: var(--radius-sm);
}
.emargy-demo-store.woocommerce-account .woocommerce-MyAccount-navigation ul {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 6px;
}
.emargy-demo-store.woocommerce-account .woocommerce-MyAccount-navigation li a { border-radius: var(--radius-sm); color: var(--navy); display: block; font-weight: 600; padding: 12px 14px; }
.emargy-demo-store.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.emargy-demo-store.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: var(--stone-100); color: var(--olive-dark); }

/* =========================================================================
   WooCommerce Blocks (block cart / checkout / product blocks)
   ========================================================================= */
.emargy-demo-store .wc-block-cart__submit-button,
.emargy-demo-store .wp-block-woocommerce-proceed-to-checkout-block a,
.emargy-demo-store .wc-block-components-checkout-place-order-button,
.emargy-demo-store .wc-block-components-button.contained {
	background: var(--deep) !important;
	border: 0 !important;
	border-radius: var(--radius-full) !important;
	box-shadow: none !important;
	color: #fff !important;
	font-weight: 700 !important;
}
.emargy-demo-store .wc-block-cart__submit-button:hover,
.emargy-demo-store .wp-block-woocommerce-proceed-to-checkout-block a:hover,
.emargy-demo-store .wc-block-components-checkout-place-order-button:hover,
.emargy-demo-store .wc-block-components-button.contained:hover {
	background: var(--navy) !important;
	color: #fff !important;
}
.emargy-demo-store .wc-block-components-button__text { color: inherit !important; }

.emargy-demo-store .wc-block-components-totals-coupon__button {
	background: var(--navy) !important;
	border-radius: var(--radius-full) !important;
	color: #fff !important;
}
.emargy-demo-store .wc-block-components-totals-coupon__button:hover { background: var(--deep) !important; color: #fff !important; }

.emargy-demo-store .wp-block-button__link.add_to_cart_button,
.emargy-demo-store .wc-block-grid__product-add-to-cart .wp-block-button__link,
.emargy-demo-store .wc-block-components-product-button .wp-block-button__link,
.emargy-demo-store .wc-block-components-product-button .wc-block-components-button {
	background: var(--navy) !important;
	border-radius: var(--radius-full) !important;
	color: #fff !important;
}
.emargy-demo-store .wp-block-button__link.add_to_cart_button:hover,
.emargy-demo-store .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.emargy-demo-store .wc-block-components-product-button .wp-block-button__link:hover,
.emargy-demo-store .wc-block-components-product-button .wc-block-components-button:hover {
	background: var(--deep) !important;
	color: #fff !important;
}

/* =========================================================================
   Emargy StoreKit — Variant Product Grid brand overrides
   ========================================================================= */
.emargy-demo-store .emargy-variant-grid { --evg-columns: 4; gap: 24px; }
.emargy-demo-store .emargy-variant-card {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: none;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.emargy-demo-store .emargy-variant-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.emargy-demo-store .emargy-variant-card__body { display: flex; flex: 1 1 auto; flex-direction: column; }
.emargy-demo-store .emargy-variant-card__category { color: var(--olive-dark); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.emargy-demo-store .emargy-variant-card__title { color: var(--navy); font-size: 15.5px; font-weight: 700; line-height: 1.35; }
.emargy-demo-store .emargy-variant-card__price { color: var(--navy); font-weight: 800; }
.emargy-demo-store .emargy-variant-card__actions { margin-top: auto; }
.emargy-demo-store .emargy-variant-card__button--cart,
.emargy-demo-store .emargy-variant-add { background: var(--accent); border-radius: var(--radius-full); color: var(--deep); font-weight: 700; }
.emargy-demo-store .emargy-variant-card__button--cart:hover,
.emargy-demo-store .emargy-variant-add:hover { background: var(--accent-600); color: var(--deep); }
.emargy-demo-store .emargy-variant-card__button--details,
.emargy-demo-store .emargy-variant-card__button--quick { border: 1px solid var(--line); border-radius: var(--radius-full); color: var(--navy); }
.emargy-demo-store .emargy-variant-card__button--details:hover,
.emargy-demo-store .emargy-variant-card__button--quick:hover { background: var(--stone-100); color: var(--navy); }
.emargy-demo-store .emargy-variant-card__badge { background: var(--accent); border-radius: var(--radius-full); color: var(--deep); font-weight: 800; }

/* Swatches */
.emargy-demo-store .emargy-variant-swatch.is-selected,
.emargy-demo-store .emargy-variant-swatch--text.is-selected { border-color: var(--navy); box-shadow: 0 0 0 2px var(--stone-200); }

/* Filter bar + price slider */
.emargy-demo-store .emargy-variant-filters {
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	gap: 18px;
	margin-bottom: 24px;
	padding: 16px 20px;
}
.emargy-demo-store .emargy-variant-filters__field label,
.emargy-demo-store .emargy-variant-filters__field { color: var(--navy); font-size: 13.5px; font-weight: 600; }
.emargy-demo-store .emargy-variant-filters select {
	border: 1px solid var(--line);
	border-radius: var(--radius-full);
	color: var(--navy);
	padding: 9px 14px;
}
.emargy-demo-store .emargy-variant-filters__reset,
.emargy-demo-store .emargy-variant-filter-reset { color: var(--olive-dark); font-weight: 700; }
.emargy-demo-store .emargy-variant-filters input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	background: var(--stone-200);
	border-radius: var(--radius-full);
	height: 4px;
	outline: none;
}
.emargy-demo-store .emargy-variant-filters input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	background: var(--accent);
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	height: 18px;
	width: 18px;
}
.emargy-demo-store .emargy-variant-filters input[type="range"]::-moz-range-thumb {
	background: var(--accent);
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	height: 18px;
	width: 18px;
}

/* Pagination / load more */
.emargy-demo-store .emargy-variant-pagination__number.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.emargy-demo-store .emargy-variant-pagination__load,
.emargy-demo-store .emargy-variant-load-more { background: var(--navy); border-radius: var(--radius-full); color: #fff; font-weight: 700; }
.emargy-demo-store .emargy-variant-pagination__load:hover,
.emargy-demo-store .emargy-variant-load-more:hover { background: var(--deep); color: #fff; }

/* =========================================================================
   PDP meta pills (product_meta override — see woocommerce/single-product/meta.php)
   ========================================================================= */
.demo-product-meta { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.demo-meta-pill {
	background: var(--stone-100);
	border-radius: var(--radius-full);
	color: var(--navy);
	display: inline-flex;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .02em;
	padding: 6px 14px;
	text-transform: uppercase;
}
.demo-meta-pill a { color: inherit; }
.demo-meta-pill.sku_wrapper { background: transparent; border: 1px solid var(--line); color: var(--muted); text-transform: none; }

/* =========================================================================
   Quantity stepper (shared look for PDP classic form + WC Cart block)
   ========================================================================= */
.demo-qty-stepper,
.wc-block-components-quantity-selector {
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-full);
	display: inline-flex;
	gap: 0;
	overflow: hidden;
}
.demo-qty-stepper__input,
.wc-block-components-quantity-selector__input {
	appearance: none;
	-moz-appearance: textfield;
	background: transparent;
	border: 0;
	color: var(--navy);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	width: 44px;
}
.demo-qty-stepper__input::-webkit-outer-spin-button,
.demo-qty-stepper__input::-webkit-inner-spin-button,
.wc-block-components-quantity-selector__input::-webkit-outer-spin-button,
.wc-block-components-quantity-selector__input::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}
.demo-qty-stepper__button,
.wc-block-components-quantity-selector__button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--navy);
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 42px;
	justify-content: center;
	width: 36px;
}
.demo-qty-stepper__button:hover,
.wc-block-components-quantity-selector__button:not(:disabled):hover { background: var(--stone-100); }
.wc-block-components-quantity-selector__button:disabled { color: var(--muted-2); cursor: not-allowed; }

/* =========================================================================
   PDP tabs — pill-style active state
   ========================================================================= */
.emargy-demo-store .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--line); display: flex; gap: 6px; padding-bottom: 4px; }
.emargy-demo-store .woocommerce-tabs ul.tabs li { margin: 0 !important; }
.emargy-demo-store .woocommerce-tabs ul.tabs li a {
	border-radius: var(--radius-full);
	display: inline-block;
	padding: 10px 18px !important;
}
.emargy-demo-store .woocommerce-tabs ul.tabs li.active a { background: var(--stone-100); }
.emargy-demo-store .woocommerce-tabs ul.tabs li.active { border-bottom: 0 !important; }
.emargy-demo-store .woocommerce-tabs .panel { padding-top: 26px; }

/* =========================================================================
   WooCommerce Cart block — card-style line items + totals panel
   ========================================================================= */
/* Never show the product's marketing description inside a cart line. */
.emargy-demo-store .wc-block-components-product-metadata__description { display: none !important; }

.emargy-demo-store .wc-block-cart-items__header {
	border-bottom: 1px solid var(--line);
	color: var(--muted-2);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .1em;
	padding-bottom: 14px;
	text-transform: uppercase;
}
.emargy-demo-store .wc-block-cart-items__row {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	margin-bottom: 16px;
	padding: 20px !important;
}
.emargy-demo-store .wc-block-cart-items__row img {
	background: var(--stone-50);
	border-radius: var(--radius-md);
	object-fit: cover;
}
.emargy-demo-store .wc-block-cart-item__prices,
.emargy-demo-store .wc-block-components-product-price { color: var(--navy); font-weight: 800; }
.emargy-demo-store .wc-block-components-product-metadata { color: var(--muted); font-size: 13px; }
.emargy-demo-store .wc-block-cart-item__remove-link { color: var(--muted-2) !important; }

.emargy-demo-store .wp-block-woocommerce-cart-order-summary-block {
	background: var(--stone-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px !important;
}
.emargy-demo-store .wc-block-components-totals-item__label,
.emargy-demo-store .wc-block-cart__totals-title { color: var(--navy); font-weight: 700; }
.emargy-demo-store .wc-block-components-totals-coupon {
	background: transparent;
	border-top: 1px solid var(--line);
	margin-top: 12px;
	padding-top: 12px;
}
.emargy-demo-store .wc-block-components-totals-coupon__button { border-radius: var(--radius-full) !important; }

/* Trust row under "Proceed to Checkout" */
.demo-cart-trust {
	align-items: center;
	color: var(--muted);
	display: flex;
	flex-direction: column;
	font-size: 12.5px;
	gap: 6px;
	margin-top: 16px;
	text-align: center;
}

/* Empty cart state */
.emargy-demo-store .wc-block-cart__empty-cart__title { color: var(--navy); }
.emargy-demo-store .wc-block-cart .wc-block-empty-cart__image svg,
.emargy-demo-store .wc-block-cart .wc-block-empty-cart__image { color: var(--olive-dark); }

/* =========================================================================
   WooCommerce Checkout block — section cards + inputs
   ========================================================================= */
.emargy-demo-store .wc-block-components-checkout-step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	margin-bottom: 20px !important;
	padding: 26px !important;
}
.emargy-demo-store .wc-block-components-checkout-step__title {
	color: var(--navy);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.emargy-demo-store .wc-block-components-checkout-step__heading { border-bottom: 0 !important; margin-bottom: 18px !important; }

.emargy-demo-store .wc-block-components-text-input input,
.emargy-demo-store .wc-blocks-components-select__select,
.emargy-demo-store .wc-block-components-text-input.is-active input {
	border: 1px solid var(--line) !important;
	border-radius: var(--radius-sm) !important;
}
.emargy-demo-store .wc-block-components-text-input input:focus,
.emargy-demo-store .wc-blocks-components-select__select:focus {
	border-color: var(--accent) !important;
	box-shadow: 0 0 0 3px var(--accent-tint) !important;
}
.emargy-demo-store .wc-block-components-text-input label { color: var(--muted); }

.emargy-demo-store .wc-block-components-order-summary {
	background: var(--stone-50);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px !important;
}
.emargy-demo-store .wc-block-checkout__sidebar .wc-block-components-product-metadata__description { display: none !important; }
/* Collapse empty fee/shipping/tax/discount row wrappers (rendered even with no data). */
.emargy-demo-store .wc-block-components-totals-wrapper:empty { display: none !important; margin: 0 !important; padding: 0 !important; }

.emargy-demo-store .wc-block-components-radio-control__input:checked + * { color: var(--navy); }
.emargy-demo-store .wc-block-components-radio-control-accordion-option { border-radius: var(--radius-sm); }

.demo-checkout-trust {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 12.5px;
	gap: 8px;
	justify-content: center;
	margin-top: 16px;
}
.demo-checkout-trust svg { color: var(--olive-dark); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1280px) {
	.demo-hero__inner { gap: 40px; padding: 60px 24px 68px; }
	.demo-edit { grid-template-columns: repeat(2, 1fr); }
	.demo-tech { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
	.emargy-demo-store .site-header .main-navigation { margin-left: 0; }
	.emargy-demo-store .menu-toggle {
		align-items: center;
		background: var(--stone-100);
		border-radius: var(--radius-full);
		color: var(--navy);
		display: inline-flex;
		height: 40px;
		justify-content: center;
		margin-left: auto;
		order: 5;
		padding: 0;
		width: 44px;
	}
	.emargy-demo-store .site-header .inside-navigation { display: block; }
	.emargy-demo-store .site-header .main-nav { display: none; }
	.emargy-demo-store .site-header .main-nav.toggled {
		background: #fff;
		border-top: 1px solid var(--line);
		box-shadow: var(--shadow-lg);
		display: block;
		left: 0;
		padding: 10px 16px 16px;
		position: absolute;
		right: 0;
		top: 100%;
	}
	.emargy-demo-store .site-header .main-nav.toggled > ul { flex-direction: column; gap: 2px; }
	.emargy-demo-store .site-header .main-nav.toggled a { display: block; font-size: 15px; padding: 12px 12px; }
	.emargy-demo-store .site-header .main-nav.toggled .sub-menu { border: 0; box-shadow: none; margin-left: 14px; padding: 0; }
	.demo-hero__inner { grid-template-columns: 1fr; }
	.demo-hero__visual { max-width: 480px; margin: 0 auto; }
	.demo-review__grid { grid-template-columns: 1fr; gap: 30px; }
	.demo-edit { grid-template-columns: 1fr 1fr; }
	.demo-tech { grid-template-columns: repeat(2, 1fr); }
	.demo-fallback-grid,
	.emargy-demo-store ul.products,
	.emargy-demo-store .emargy-variant-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (max-width: 768px) {
	.emargy-demo-store .inside-header { gap: 12px; min-height: 66px; }
	.emargy-demo-store .site-description { display: none; }
	.demo-header-icon:first-child { display: none; }
	.demo-admin-link { font-size: 11.5px; margin-left: 4px; padding: 10px 14px; }
	.demo-section { padding: 64px 0; }
	.demo-section__head { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 30px; }
	.demo-hero__inner { padding: 44px 22px 52px; }
	.demo-hero p.demo-hero__lead { font-size: 16.5px; }
	.demo-hero__floating { display: none; }
	.demo-catnav__inner { overflow-x: auto; flex-wrap: nowrap; }
	.demo-trust__inner { grid-template-columns: repeat(2, 1fr); }
	.demo-trust__item:nth-child(3) { border-left: 0; }
	.demo-trust__item:nth-child(n+3) { border-top: 1px solid var(--line); }
	.demo-footer__inner { grid-template-columns: 1fr 1fr; }
	.demo-footer__brand { grid-column: 1 / -1; }
	.demo-workflow,
	.demo-review__stats,
	.demo-tech { grid-template-columns: repeat(2, 1fr); }
	.demo-edit { grid-template-columns: 1fr; }
	.store-page-head__inner { padding: 30px 22px 26px; }
	.emargy-demo-store div.product .flex-control-thumbs li { width: calc(25% - 8px); }
	.demo-fallback-grid,
	.emargy-demo-store ul.products,
	.emargy-demo-store .emargy-variant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
	.admin-bar .emargy-demo-store .site-header { top: 46px; }
}

@media (max-width: 480px) {
	.emargy-demo-store { font-size: 15.5px; }
	.emargy-demo-store .main-title { font-size: 17px; }
	.demo-brandmark { height: 34px; width: 34px; }
	.demo-hero__inner { gap: 30px; padding: 34px 18px 44px; }
	.demo-actions { gap: 10px; }
	.demo-actions .demo-button { flex: 1 1 auto; }
	.demo-hero__rating { font-size: 12px; }
	.demo-trust__inner { grid-template-columns: 1fr; }
	.demo-trust__item { border-left: 0 !important; justify-content: flex-start; }
	.demo-trust__item + .demo-trust__item { border-top: 1px solid var(--line); }
	.demo-footer__inner { grid-template-columns: 1fr; }
	.demo-workflow,
	.demo-review__stats,
	.demo-tech,
	.demo-fallback-grid,
	.emargy-demo-store ul.products,
	.emargy-demo-store .emargy-variant-grid { grid-template-columns: 1fr !important; }
	.emargy-demo-store div.product .flex-control-thumbs li { width: calc(33.33% - 7px); }
	.demo-section { padding: 52px 0; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.emargy-demo-store *,
	.emargy-demo-store *::before,
	.emargy-demo-store *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
