/*
Theme Name: Assembly Zone
Theme URI: https://assembly-zone.test
Author: ecomit
Description: Custom dark-mode WooCommerce theme for Assembly Zone — LEGO & Gundam store. Hand-coded, no page builders, performance-first.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: assembly-zone
Tags: e-commerce, dark
*/

/* =========================================================
   1. Design tokens
   ========================================================= */
:root {
	--az-bg:        #121020;   /* near-black purple  */
	--az-bg-2:      #171428;
	--az-surface:   #1f1a33;
	--az-surface-2: #272040;
	--az-line:      #322a52;

	--az-yellow:    #f8a824;   /* logo amber          */
	--az-yellow-2:  #ffc14d;
	--az-orange:    #e8830c;

	--az-purple:    #6b4fa8;
	--az-purple-2:  #8d76c9;
	--az-teal:      #3eb8a5;   /* wrench/visor accent */

	--az-text:      #efecf7;
	--az-muted:     #a9a2c4;

	--az-font-display: 'Chakra Petch', system-ui, sans-serif;
	--az-font-body: 'Space Grotesk', system-ui, sans-serif;

	--az-radius: 14px;
	--az-clip: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
	--az-shadow: 0 20px 50px -20px rgba(0, 0, 0, .7);
	--az-glow-y: 0 0 30px rgba(248, 168, 36, .35);
}

/* =========================================================
   2. Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--az-bg);
	color: var(--az-text);
	font-family: var(--az-font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
	overflow-x: clip; /* not `hidden` — that would break position: sticky on the header */
}

:focus-visible { outline: 2px solid var(--az-yellow); outline-offset: 2px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--az-yellow); text-decoration: none; }
a:hover { color: var(--az-yellow-2); }

h1, h2, h3, h4 {
	font-family: var(--az-font-display);
	line-height: 1.15;
	margin: 0 0 .5em;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.az-container { width: min(1240px, 92vw); margin-inline: auto; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px; width: 1px; overflow: hidden;
}
.skip-link:focus {
	clip: auto; height: auto; width: auto;
	position: fixed; top: 8px; left: 8px; z-index: 999;
	background: var(--az-yellow); color: #14121f;
	padding: 8px 16px; border-radius: 8px;
}

::selection { background: var(--az-yellow); color: #14121f; }

/* Scrollbar (nerd cred) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--az-bg-2); }
::-webkit-scrollbar-thumb { background: var(--az-purple); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--az-yellow); }

/* =========================================================
   3. Buttons
   ========================================================= */
.az-btn {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--az-font-display);
	font-weight: 700; font-size: 15px;
	text-transform: uppercase; letter-spacing: .06em;
	padding: 14px 28px;
	clip-path: var(--az-clip);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	cursor: pointer; border: 0;
}
.az-btn:active { transform: translateY(1px) scale(.99); }

.az-btn-primary {
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow) 55%, var(--az-orange));
	color: #191423;
}
.az-btn-primary:hover { box-shadow: var(--az-glow-y); color: #191423; transform: translateY(-2px); }

.az-btn-ghost {
	background: transparent; color: var(--az-text);
	box-shadow: inset 0 0 0 2px var(--az-purple);
}
.az-btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--az-yellow); color: var(--az-yellow); transform: translateY(-2px); }

/* =========================================================
   4. Promo bar + header
   ========================================================= */
.az-promo-bar {
	background: linear-gradient(90deg, var(--az-orange), var(--az-yellow));
	color: #1d1728;
	font-size: 13px; font-weight: 700; letter-spacing: .04em;
	text-align: center; padding: 7px 0;
}

.az-header {
	position: relative;
	background: rgba(16, 14, 28, .78);
	border-bottom: 1px solid var(--az-line);
	z-index: 100;
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* backdrop-filter lives on a pseudo-element, not .az-header itself — putting it
   directly on .az-header makes it a CSS containing block for any position:fixed
   descendant (like the mobile #az-nav overlay), trapping that overlay inside the
   header's own ~90px box instead of covering the viewport. */
.az-header::before {
	content: "";
	position: absolute; inset: 0;
	backdrop-filter: blur(18px) saturate(1.4);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	z-index: -1;
	pointer-events: none;
}
.az-header.is-sticky { position: sticky; top: 0; }
.az-header.is-scrolled {
	background: rgba(13, 11, 23, .95);
	border-bottom-color: rgba(248, 168, 36, .28);
	box-shadow: 0 12px 40px -14px rgba(0, 0, 0, .85);
}

.az-header-inner {
	display: flex; align-items: center; gap: 24px;
	min-height: 92px;
	transition: min-height .25s ease;
}
.az-header.is-scrolled .az-header-inner { min-height: 68px; }

.az-brand { flex-shrink: 0; display: flex; align-items: center; }
.az-brand img, .custom-logo { max-height: 68px; width: auto; display: block; transition: max-height .25s ease; }
.az-header.is-scrolled .az-brand img { max-height: 52px; }
.az-brand-text {
	font-family: var(--az-font-display); font-size: 22px; font-weight: 700;
	color: var(--az-yellow); text-transform: uppercase;
}

.az-nav { margin-left: auto; }
.az-nav-list {
	display: flex; gap: 6px; list-style: none; margin: 0; padding: 0;
}
.az-nav-list a {
	position: relative;
	display: block; padding: 10px 16px;
	color: var(--az-text);
	font-family: var(--az-font-display); font-weight: 600; font-size: 15px;
	text-transform: uppercase; letter-spacing: .05em;
	transition: color .15s;
}
.az-nav-list a::after {
	content: "";
	position: absolute; left: 16px; right: 16px; bottom: 4px;
	height: 2px; border-radius: 2px;
	background: linear-gradient(90deg, var(--az-yellow-2), var(--az-orange));
	transform: scaleX(0); transform-origin: left;
	transition: transform .22s ease;
}
.az-nav-list a:hover { color: var(--az-yellow); }
.az-nav-list a:hover::after { transform: scaleX(1); }
.az-nav-list .current-menu-item a { color: var(--az-yellow); }
.az-nav-list .current-menu-item a::after { transform: scaleX(1); }
.az-nav-list .sub-menu { display: none; } /* flat nav for now */

.az-header-actions { display: flex; align-items: center; gap: 6px; }

.az-icon-btn {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	background: transparent; border: 0; border-radius: 10px;
	color: var(--az-text); cursor: pointer;
	transition: background .15s, color .15s;
}
.az-icon-btn:hover { background: rgba(107, 79, 168, .25); color: var(--az-yellow); }
.az-icon-btn svg { width: 21px; height: 21px; }

.az-cart-count {
	position: absolute; top: 2px; right: 0;
	min-width: 17px; height: 17px; padding: 0 4px;
	background: var(--az-yellow); color: #14121f;
	font-size: 11px; font-weight: 700; line-height: 17px;
	border-radius: 9px; text-align: center;
}

/* Burger — mobile only */
.az-burger { display: none; flex-direction: column; gap: 4px; }
.az-burger span {
	width: 20px; height: 2px; background: currentColor;
	transition: transform .2s, opacity .2s;
}
.az-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.az-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.az-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Search bar */
.az-search-bar { border-top: 1px solid var(--az-line); background: var(--az-bg-2); }
.az-search-bar form { display: flex; gap: 10px; padding: 14px 0; }
.az-search-bar input[type="search"] {
	flex: 1; padding: 12px 18px;
	background: var(--az-surface); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 10px;
	font-family: var(--az-font-body); font-size: 15px;
}
.az-search-bar input[type="search"]:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }

/* =========================================================
   5. Hero
   ========================================================= */
.az-hero {
	position: relative;
	min-height: clamp(560px, 92vh, 900px);
	min-height: clamp(560px, 92svh, 900px); /* small-viewport units: ignores mobile URL bar */
	display: flex; align-items: center;
	overflow: hidden;
	isolation: isolate;
}

.az-hero-media, .az-hero-media video, .az-hero-placeholder {
	position: absolute; inset: 0; width: 100%; height: 100%;
}
.az-hero-media video { object-fit: cover; }
.az-hero-media { z-index: -2; }

.az-hero-overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		radial-gradient(80% 90% at 20% 50%, rgba(18, 16, 32, .55) 0%, rgba(18, 16, 32, .92) 100%),
		linear-gradient(0deg, var(--az-bg) 0%, transparent 25%);
}

/* --- animated placeholder --- */
.az-hero-placeholder { background: linear-gradient(135deg, #191430 0%, #121020 60%, #1c1235 100%); }

.az-blueprint-grid {
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(141, 118, 201, .12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(141, 118, 201, .12) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: radial-gradient(75% 75% at 50% 40%, #000 30%, transparent 100%);
}

.az-hero-glow {
	position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
	animation: az-drift 14s ease-in-out infinite alternate;
}
.az-hero-glow-1 { width: 480px; height: 480px; background: #6b4fa8; top: -10%; right: 5%; }
.az-hero-glow-2 { width: 380px; height: 380px; background: #b06e12; bottom: -15%; left: 15%; animation-delay: -7s; }

@keyframes az-drift {
	from { transform: translate(0, 0) scale(1); }
	to   { transform: translate(-60px, 40px) scale(1.15); }
}

.az-scanlines {
	position: absolute; inset: 0;
	background: repeating-linear-gradient(0deg, rgba(0,0,0,.18) 0 2px, transparent 2px 5px);
	opacity: .35;
}

.az-video-note {
	position: absolute; right: 22px; bottom: 22px;
	font-family: var(--az-font-display); font-size: 11px; letter-spacing: .2em;
	color: var(--az-muted);
	border: 1px dashed var(--az-purple); padding: 7px 12px; border-radius: 6px;
	background: rgba(18, 16, 32, .6);
}

/* Hero content */
.az-hero-content { position: relative; z-index: 2; padding: 90px 0; }

.az-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 40px;
	align-items: center;
}

/* ---- 3D hero model (Three.js + COLLADA, drag to orbit) ----------
   Deliberately no box/border/background here — the model floats
   directly over the hero's own background, not inside a frame. ---- */
.az-hero-3d { display: flex; justify-content: center; }
.az-hero-3d-canvas {
	width: 100%;
	max-width: 620px;
	aspect-ratio: 1 / 1;
	cursor: grab;
	opacity: 0;
	transition: opacity .7s ease;
}
.az-hero-3d-canvas.is-loaded { opacity: 1; }
.az-hero-3d-canvas:active { cursor: grabbing; }
.az-hero-3d-canvas canvas { display: block; touch-action: none; }

.az-hero-title {
	font-size: clamp(38px, 6vw, 76px);
	font-weight: 700;
	margin: 0 0 18px;
	max-width: 15ch;
}
.az-hero-title em {
	font-style: normal;
	background: linear-gradient(100deg, var(--az-yellow-2), var(--az-yellow) 50%, var(--az-orange));
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
	text-shadow: 0 0 60px rgba(248, 168, 36, .25);
}

.az-hero-sub {
	font-size: clamp(16px, 1.6vw, 19px);
	color: var(--az-muted);
	max-width: 54ch; margin: 0 0 30px;
}

.az-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.az-hero-hud {
	display: flex; flex-wrap: wrap; gap: 18px;
	font-family: var(--az-font-display); font-size: 11px; letter-spacing: .18em;
	color: var(--az-purple-2);
}

/* =========================================================
   7. Sections & headings
   ========================================================= */
.az-section { padding: 90px 0; }
.az-section-alt { background: var(--az-bg-2); border-block: 1px solid var(--az-line); }

.az-section-head { max-width: 640px; margin-bottom: 48px; }

.az-kicker {
	display: inline-block;
	font-family: var(--az-font-display); font-size: 12px; font-weight: 600;
	letter-spacing: .28em; text-transform: uppercase;
	color: var(--az-teal);
	margin-bottom: 10px;
}
.az-kicker::before { content: '[ '; color: var(--az-purple-2); }
.az-kicker::after  { content: ' ]'; color: var(--az-purple-2); }

.az-h2 { font-size: clamp(28px, 3.6vw, 44px); }
.az-h2 em {
	font-style: normal;
	background: linear-gradient(100deg, var(--az-yellow-2), var(--az-orange));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

.az-lead { color: var(--az-muted); font-size: 17px; margin: 0; }

.az-center { text-align: center; margin-top: 44px; }

/* =========================================================
   8. Universe cards
   ========================================================= */
.az-universe-grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
}

.az-universe-card {
	position: relative; overflow: hidden;
	min-height: 320px;
	display: flex; align-items: flex-end;
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	clip-path: var(--az-clip);
	transition: transform .25s ease, border-color .25s ease;
}
.az-universe-card:hover { transform: translateY(-6px); border-color: var(--az-yellow); }

.az-universe-lego {
	background:
		radial-gradient(120% 130% at 85% 0%, rgba(232, 131, 12, .35) 0%, transparent 55%),
		var(--az-surface);
}
.az-universe-gundam {
	background:
		radial-gradient(120% 130% at 85% 0%, rgba(107, 79, 168, .5) 0%, transparent 55%),
		var(--az-surface);
}

/* Lego studs deco */
.az-universe-studs {
	position: absolute; top: 26px; right: 26px;
	display: grid; grid-template-columns: repeat(2, 34px); gap: 10px;
}
.az-universe-studs i {
	width: 34px; height: 34px; border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, var(--az-yellow-2), var(--az-orange));
	opacity: .9;
	box-shadow: 0 8px 18px -6px rgba(232, 131, 12, .6);
}

/* Gundam angular frame deco */
.az-universe-frame {
	position: absolute; top: 22px; right: 22px;
	width: 90px; height: 90px;
	border: 2px solid var(--az-purple-2);
	clip-path: polygon(0 0, 100% 0, 100% 35%, 82% 35%, 82% 82%, 35% 82%, 35% 100%, 0 100%);
	opacity: .7;
}

.az-universe-body { position: relative; padding: 34px; }
.az-universe-tag {
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .3em; color: var(--az-teal);
}
.az-universe-body h3 { font-size: clamp(30px, 3vw, 42px); margin: 10px 0 8px; color: var(--az-text); }
.az-universe-logo {
	height: clamp(48px, 4.4vw, 64px); width: auto;
	margin: 10px 0 12px;
	border-radius: 8px;
	box-shadow: 0 10px 24px -10px rgba(0, 0, 0, .5);
}
.az-universe-body p { color: var(--az-muted); margin: 0 0 18px; max-width: 46ch; }
.az-universe-cta {
	font-family: var(--az-font-display); font-weight: 700; font-size: 14px;
	letter-spacing: .08em; text-transform: uppercase; color: var(--az-yellow);
}
.az-universe-card:hover .az-universe-cta { text-decoration: underline; text-underline-offset: 5px; }

/* =========================================================
   10. Product cards
   ========================================================= */
.az-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.az-product-card {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	overflow: hidden;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.az-product-card:hover {
	transform: translateY(-6px);
	border-color: var(--az-purple-2);
	box-shadow: var(--az-shadow);
}

.az-product-thumb {
	position: relative;
	aspect-ratio: 1;
	display: flex; align-items: center; justify-content: center;
	background: #fff;
	overflow: hidden;
}
.az-product-thumb img {
	object-fit: contain; width: 100%; height: 100%;
	padding: 7%;
	transition: transform .25s ease;
}
.az-product-card:hover .az-product-thumb img { transform: scale(1.05); }

/* Placeholder cards keep the dark blueprint look */
.az-product-card-ph .az-product-thumb {
	background:
		linear-gradient(rgba(141, 118, 201, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(141, 118, 201, .06) 1px, transparent 1px),
		var(--az-bg-2);
	background-size: 24px 24px, 24px 24px, auto;
}

.az-ph-art { width: 42%; height: auto; }
.az-ph-tag {
	position: absolute; top: 12px; left: 12px;
	font-family: var(--az-font-display); font-size: 10px; letter-spacing: .2em;
	color: var(--az-muted);
	border: 1px dashed var(--az-line); border-radius: 5px;
	padding: 4px 8px;
}

.az-product-info { padding: 16px 18px 20px; }
.az-product-info h3 {
	font-size: 15px; margin: 0 0 6px; color: var(--az-text);
	text-transform: none; letter-spacing: 0;
	font-family: var(--az-font-body); font-weight: 500;
}
.az-price { font-family: var(--az-font-display); font-weight: 700; color: var(--az-yellow); }
.az-price-ph { color: var(--az-muted); }

/* =========================================================
   10b. Category showcase (homepage AJAX tabs + product grid)
   ========================================================= */
.az-showcase-tabs {
	display: flex; flex-wrap: wrap; gap: 10px;
	margin: -14px 0 34px;
}
.az-showcase-tab {
	font-family: var(--az-font-display); font-weight: 700; font-size: 13px;
	letter-spacing: .06em; text-transform: uppercase;
	color: var(--az-muted); background: var(--az-surface);
	border: 1px solid var(--az-line); border-radius: 999px;
	padding: 10px 22px; cursor: pointer;
	transition: color .2s, border-color .2s, background .2s;
}
.az-showcase-tab:hover { color: var(--az-text); border-color: var(--az-purple-2); }
.az-showcase-tab.is-active {
	color: #191423; background: linear-gradient(90deg, var(--az-yellow-2), var(--az-yellow));
	border-color: transparent;
}

.az-showcase-grid-wrap { position: relative; transition: opacity .2s; }
.az-showcase-grid-wrap.is-loading { opacity: .45; pointer-events: none; }
/* 5 columns x 2 rows on desktop, overriding the sitewide 4-column shop grid. */
.az-showcase-grid-wrap.woocommerce ul.products {
	grid-template-columns: repeat(5, 1fr) !important;
}
.az-showcase-empty { color: var(--az-muted); padding: 20px 0; }

/* =========================================================
   11. Stats
   ========================================================= */
.az-stats {
	position: relative;
	padding: 74px 0;
	background: linear-gradient(135deg, #1d1433 0%, var(--az-bg-2) 100%);
	border-block: 1px solid var(--az-line);
	overflow: hidden;
}
.az-stats .az-blueprint-grid { mask-image: none; opacity: .5; }

.az-stats-grid {
	position: relative;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	text-align: center;
}
.az-stat b {
	display: block;
	font-family: var(--az-font-display); font-size: clamp(34px, 4vw, 52px); font-weight: 700;
	color: var(--az-yellow);
	text-shadow: 0 0 40px rgba(248, 168, 36, .3);
}
.az-stat span {
	font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--az-muted);
}

/* =========================================================
   12. Community
   ========================================================= */
.az-community-inner {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
	background:
		radial-gradient(90% 120% at 100% 0%, rgba(107, 79, 168, .35) 0%, transparent 60%),
		var(--az-surface);
	border: 1px solid var(--az-line);
	clip-path: var(--az-clip);
	padding: 54px;
}
.az-community-copy .az-h2 { margin-bottom: 10px; }

.az-signup { display: flex; flex-wrap: wrap; gap: 12px; }
.az-signup input[type="email"] {
	flex: 1; min-width: 220px;
	padding: 14px 18px;
	background: var(--az-bg); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 10px;
	font-family: var(--az-font-body); font-size: 15px;
}
.az-signup input[type="email"]:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }
.az-signup small { flex-basis: 100%; color: var(--az-muted); }

/* =========================================================
   13. Footer
   ========================================================= */
.az-footer { background: #0d0b17; border-top: 1px solid var(--az-line); }

.az-footer-studs {
	height: 14px;
	background-image: radial-gradient(circle at 12px 7px, var(--az-line) 5px, transparent 6px);
	background-size: 36px 14px;
	opacity: .6;
}

.az-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 64px 0 44px;
}

.az-footer-col h4 {
	font-size: 14px; letter-spacing: .18em; color: var(--az-yellow);
	margin-bottom: 16px;
}
.az-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.az-footer-col ul a { color: var(--az-muted); }
.az-footer-col ul a:hover { color: var(--az-yellow); }
.az-footer-about p { color: var(--az-muted); margin: 16px 0 22px; max-width: 40ch; }
.az-footer-about .custom-logo { max-height: 64px; }

.az-whatsapp-btn {
	display: inline-flex; align-items: center; gap: 10px;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow));
	color: #191423; font-weight: 700; font-size: 15px;
	padding: 13px 24px; border-radius: 999px;
	transition: transform .18s, box-shadow .18s;
}
.az-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: var(--az-glow-y); color: #191423; }
.az-whatsapp-btn svg { width: 22px; height: 22px; }

.az-footer-bottom {
	border-top: 1px solid var(--az-line);
	padding: 18px 0;
	font-size: 13px; color: var(--az-muted);
}
.az-footer-bottom .az-footer-pay {
	padding-bottom: 18px; margin-bottom: 18px;
	border-bottom: 1px solid var(--az-line);
}
.az-footer-bottom .az-footer-legal {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ---- ecomit credit bar (below the footer, every page) ---- */
.ecomit-credit-bar {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	padding: 7px 20px;
	background: rgba(255, 255, 255, .06);
	backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
	border-top: .5px solid rgba(255, 255, 255, .12);
	font-size: 10px; letter-spacing: .07em; text-transform: uppercase;
	font-family: inherit;
	position: relative; overflow: hidden;
}
@keyframes ecomit-glare {
	0%   { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
	5%   { opacity: 1; }
	30%, 100% { transform: translateX(400%) skewX(-20deg); opacity: 0; }
}
.ecomit-credit-bar::before {
	content: ""; position: absolute; top: 0; left: 0; width: 30%; height: 100%;
	background: linear-gradient(90deg,
		transparent 0%, rgba(255, 255, 255, .08) 35%, rgba(255, 255, 255, .22) 50%,
		rgba(255, 255, 255, .08) 65%, transparent 100%);
	animation: ecomit-glare 5s ease-in-out infinite;
	pointer-events: none;
}
.ecomit-credit-label { color: rgba(255, 255, 255, .45); }
.ecomit-credit-sep { color: rgba(255, 255, 255, .2); font-size: 11px; }
.ecomit-credit-link { display: flex; align-items: center; gap: 5px; text-decoration: none; line-height: 1; }
/* !important: on any WooCommerce page (product/cart/checkout/my-account all
   carry a .woocommerce body class) ".woocommerce img { height:auto }" is a
   class+element selector that outscores this single-class one, so the SVG
   rendered at its huge intrinsic size instead of the intended 14px. */
.ecomit-credit-logo {
	height: 14px !important; width: auto !important;
	filter: brightness(0) invert(1); opacity: .7;
	transition: opacity .25s ease;
}
.ecomit-credit-link:hover .ecomit-credit-logo { opacity: 1; }
.ecomit-credit-wordmark { display: inline-flex; align-items: center; text-transform: none; }
.ecomit-wl { display: inline-block; color: rgba(255, 255, 255, .7); transition: color .25s ease; }
@keyframes ecomit-wave {
	0%, 100% { transform: translateY(0); }
	40%      { transform: translateY(-4px); }
}
.ecomit-credit-link:hover .ecomit-wl { color: rgba(255, 255, 255, 1); animation: ecomit-wave .6s ease both; }

/* =========================================================
   14. Reveal-on-scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
/* stagger siblings a touch */
.reveal:nth-child(2) { transition-delay: .07s; }
.reveal:nth-child(3) { transition-delay: .14s; }
.reveal:nth-child(4) { transition-delay: .21s; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
	.reveal { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}

/* =========================================================
   15. WooCommerce shell (inner pages, kept tidy for now)
   ========================================================= */
.az-woo-wrap { padding: 60px 0; }
.az-woo-wrap .woocommerce-breadcrumb { color: var(--az-muted); font-size: 13px; margin-bottom: 26px; }
.az-woo-wrap .woocommerce-breadcrumb a { color: var(--az-purple-2); }

/* ---- Category collection banner (image hero on product_cat archives) ---- */
.az-cat-banner {
	position: relative;
	height: clamp(280px, 34vw, 440px);
	display: flex; align-items: flex-end;
	overflow: hidden;
	margin-bottom: -1px; /* seam against the breadcrumb below */
}
.az-cat-banner-media,
.az-cat-banner-media .az-cat-banner-img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover;
}
.az-cat-banner-vignette {
	position: absolute; inset: 0; z-index: 1;
	background:
		radial-gradient(75% 90% at 50% 40%, transparent 35%, rgba(18, 16, 32, .55) 100%),
		linear-gradient(0deg, var(--az-bg) 0%, rgba(18, 16, 32, .35) 45%, transparent 75%);
}
.az-cat-banner-content { position: relative; z-index: 2; padding-bottom: 44px; }
.az-cat-banner-title {
	font-size: clamp(34px, 5.5vw, 64px);
	margin: 0 0 8px;
	text-shadow: 0 4px 24px rgba(0, 0, 0, .6);
}
.az-cat-banner-desc {
	color: var(--az-text); opacity: .85;
	max-width: 54ch; margin: 0;
	font-size: clamp(14px, 1.4vw, 16px);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px; list-style: none; margin: 0; padding: 0;
}
/* Woo's clearfix pseudo-elements would otherwise become phantom grid cells */
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product {
	width: auto !important; float: none !important; margin: 0 !important;
	background: var(--az-surface); border: 1px solid var(--az-line);
	border-radius: var(--az-radius); overflow: hidden; padding: 0 0 18px;
	transition: transform .2s, border-color .2s;
	/* Grid rows stretch every card to the tallest one; flex-column + the
	   button's margin-top:auto below then pins Add to cart/Pre-order to the
	   same baseline everywhere, regardless of how many lines the title or
	   price (pre-order shows 3 price lines vs. a plain product's 1) take. */
	display: flex; flex-direction: column;
}
/* No flex-grow here: the anchor must stay sized to its own content so the
   button's margin-top:auto below is what absorbs the card's leftover height
   (grow competes with that auto margin for the same space and always wins,
   which is what silently broke the alignment). */
.woocommerce ul.products li.product > a { display: flex; flex-direction: column; }
.woocommerce ul.products li.product:hover { transform: translateY(-5px); border-color: var(--az-purple-2); }

/* Square, white-background product imagery on every card */
.woocommerce ul.products li.product { position: relative; }
.woocommerce ul.products li.product img {
	margin: 0;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #fff;
	padding: 7%;
	transition: transform .25s ease;
}
.woocommerce ul.products li.product:hover img { transform: scale(1.04); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--az-font-body); font-size: 14.5px; font-weight: 500;
	line-height: 1.4;
	color: var(--az-text); padding: 0 18px; margin: 16px 0 8px;
	/* Clamp to 2 lines: keeps every card's text block a predictable height
	   instead of letting long product names dominate the card. */
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
	overflow: hidden;
}
.woocommerce ul.products li.product .star-rating {
	margin: 0 18px 6px; font-size: 13px;
}
.woocommerce ul.products li.product .price {
	display: block;
	color: var(--az-yellow); font-weight: 700; padding: 0 18px; margin: 0 0 14px;
	font-family: var(--az-font-display); font-size: 19px; letter-spacing: .01em;
}
.woocommerce ul.products li.product .price del { font-size: .68em; opacity: .6; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button {
	margin: auto 18px 0; /* auto top = pinned to the card's bottom edge, see note above */
	background: var(--az-surface-2); color: var(--az-yellow);
	border: 1px solid var(--az-line); border-radius: 8px;
	padding: 12px 16px;
	font-family: var(--az-font-display); text-transform: uppercase; font-size: 12px; letter-spacing: .06em;
}
.woocommerce ul.products li.product .button:hover { background: var(--az-yellow); color: #14121f; }

.woocommerce .button, .woocommerce button.button, .woocommerce a.button,
.woocommerce input.button, .woocommerce #respond input#submit {
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow));
	color: #191423; border-radius: 8px;
}
.woocommerce .button:hover { background: var(--az-yellow-2); color: #191423; }

.woocommerce-info, .woocommerce-message, .woocommerce-error {
	background: var(--az-surface); color: var(--az-text);
	border-top-color: var(--az-yellow);
}
.woocommerce-info::before, .woocommerce-message::before { color: var(--az-yellow); }

.woocommerce-no-products-found .woocommerce-info { border-top-color: var(--az-purple); }

/* ---- Shop filters ---- */
.az-filters { margin-bottom: 30px; position: relative; }
.az-filters-toggle {
	display: inline-flex; align-items: center; gap: 9px;
	background: var(--az-surface); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 10px;
	padding: 11px 18px;
	font-family: var(--az-font-display); font-weight: 600; font-size: 13.5px;
	text-transform: uppercase; letter-spacing: .05em;
	cursor: pointer;
}
.az-filters-toggle svg { width: 17px; height: 17px; }
.az-filters-toggle:hover { border-color: var(--az-purple-2); }
.az-filters-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--az-yellow);
	box-shadow: 0 0 8px rgba(248, 168, 36, .8);
}

.az-filters-panel {
	display: none;
	margin-top: 14px;
	padding: 22px;
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: 14px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 22px;
}
.az-filters-panel.is-open { display: grid; }

.az-filter-label {
	display: block;
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--az-teal); margin-bottom: 12px;
}
.az-filter-options { display: flex; flex-direction: column; gap: 9px; max-height: 160px; overflow-y: auto; }
.az-filter-check {
	display: flex; align-items: center; gap: 8px;
	font-size: 14px; color: var(--az-muted); cursor: pointer;
}
.az-filter-check:hover { color: var(--az-text); }
.az-filter-check input { accent-color: var(--az-yellow); width: 15px; height: 15px; }

.az-filter-price { display: flex; align-items: center; gap: 8px; }
.az-filter-price input {
	width: 0; flex: 1; min-width: 0;
	padding: 9px 10px;
	background: var(--az-bg); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
	font-family: var(--az-font-body); font-size: 13.5px;
}
.az-filter-price span { color: var(--az-muted); }

.az-filter-actions {
	grid-column: 1 / -1;
	display: flex; align-items: center; gap: 16px;
	padding-top: 6px; border-top: 1px solid var(--az-line);
}
.az-filter-actions .az-btn { padding: 11px 24px; font-size: 13px; }
.az-filters-clear { font-size: 13px; color: var(--az-muted); text-decoration: underline; text-underline-offset: 3px; }
.az-filters-clear:hover { color: var(--az-yellow); }

/* ---- Shop toolbar & pagination ---- */
.woocommerce .woocommerce-result-count { color: var(--az-muted); font-size: 14px; }
.woocommerce .woocommerce-ordering select {
	background: var(--az-surface); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
	padding: 9px 32px 9px 14px; font-family: var(--az-font-body); font-size: 14px;
}
.woocommerce nav.woocommerce-pagination { margin-top: 40px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; gap: 6px; justify-content: center; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	background: var(--az-surface); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
	min-width: 40px; padding: 10px 14px; line-height: 1;
	font-family: var(--az-font-display); font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--az-yellow); color: #14121f; border-color: var(--az-yellow);
}

/* ---- Badges ---- */
.woocommerce span.onsale {
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-orange));
	color: #191423; font-family: var(--az-font-display); font-weight: 700;
	border-radius: 8px; min-height: 0; min-width: 0; line-height: 1;
	padding: 8px 12px; text-transform: uppercase; letter-spacing: .06em;
}
.az-badge-preorder {
	position: absolute; top: 12px; left: 12px; z-index: 3;
	background: var(--az-teal); color: #0c2622;
	font-family: var(--az-font-display); font-weight: 700; font-size: 11px;
	letter-spacing: .12em; text-transform: uppercase;
	padding: 6px 11px; border-radius: 7px;
	box-shadow: 0 6px 18px -6px rgba(62, 184, 165, .6);
}
.az-preorder-tag {
	display: inline-block; margin-left: 8px; vertical-align: middle;
	background: rgba(62, 184, 165, .15); color: var(--az-teal);
	border: 1px solid rgba(62, 184, 165, .4);
	font-family: var(--az-font-display); font-size: 10px; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase;
	padding: 3px 8px; border-radius: 5px;
}

.az-badge-new {
	position: absolute; top: 12px; left: 12px; z-index: 3;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-orange));
	color: #191423;
	font-family: var(--az-font-display); font-weight: 700; font-size: 11px;
	letter-spacing: .12em; text-transform: uppercase;
	padding: 6px 11px; border-radius: 7px;
	box-shadow: 0 6px 18px -6px rgba(248, 168, 36, .6);
}
.az-badge-new--inline {
	position: static;
	display: inline-flex; margin-bottom: 12px;
	box-shadow: none;
}

.az-badge-outofstock {
	position: absolute; top: 12px; left: 12px; z-index: 3;
	background: var(--az-surface-2); color: var(--az-muted);
	border: 1px solid var(--az-line);
	font-family: var(--az-font-display); font-weight: 700; font-size: 11px;
	letter-spacing: .12em; text-transform: uppercase;
	padding: 6px 11px; border-radius: 7px;
}
.woocommerce ul.products li.product.outofstock img { opacity: .55; }

/* =========================================================
   15b. Single product page
   ========================================================= */
.single-product div.product {
	position: relative;
	display: grid;
	grid-template-columns: 1.06fr .94fr;
	gap: 56px;
	align-items: start;
}
.single-product div.product > .onsale { position: absolute; top: 14px; left: 14px; z-index: 5; }
.single-product div.product .woocommerce-product-gallery,
.single-product div.product div.summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}
.single-product div.product .woocommerce-tabs,
.single-product div.product .related.products,
.single-product div.product .up-sells { grid-column: 1 / -1; }

/* Gallery: one large main image (flexslider) + clickable thumbnail strip.
   Click a thumb to swap the main image; click the main image to open the
   PhotoSwipe zoom lightbox (close button built into PhotoSwipe itself). */
.woocommerce-product-gallery { opacity: 1 !important; }
.woocommerce-product-gallery .flex-viewport {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--az-line);
	border-radius: 14px;
}
.woocommerce-product-gallery__wrapper { margin: 0; }
.woocommerce-product-gallery__image { aspect-ratio: 1 / 1; }
.woocommerce-product-gallery__image a { display: flex; width: 100%; height: 100%; }
.woocommerce-product-gallery__image img {
	width: 100%; height: 100%;
	object-fit: contain;
	padding: 6%;
}
.woocommerce-product-gallery__trigger { z-index: 5; }

.woocommerce-product-gallery .flex-control-thumbs {
	display: flex; flex-wrap: wrap; gap: 8px;
	list-style: none; margin: 16px 0 0; padding: 0;
}
/* Fixed px size (not a percentage of N columns) so this is a real ~50%
   size cut regardless of how many images a product has — a percentage
   width just redistributes the same total row space into more columns. */
/* !important: WooCommerce's own legacy CSS (.woocommerce div.product
   div.images .flex-control-thumbs li { width:25% }) outscores this on
   raw class-count and otherwise wins regardless of source order. */
.woocommerce-product-gallery .flex-control-thumbs li { width: 56px !important; }
.woocommerce-product-gallery .flex-control-thumbs img {
	display: block; width: 100%; aspect-ratio: 1 / 1;
	object-fit: contain; padding: 6%;
	background: #fff;
	border: 1px solid var(--az-line); border-radius: 8px;
	cursor: pointer; opacity: .6;
	transition: opacity .15s ease, border-color .15s ease;
}
.woocommerce-product-gallery .flex-control-thumbs img:hover { opacity: 1; }
.woocommerce-product-gallery .flex-control-thumbs img.flex-active { opacity: 1; border-color: var(--az-yellow); }

/* Summary column */
.single-product .summary .product_title {
	font-size: clamp(24px, 2.6vw, 36px);
	margin-bottom: 12px;
}
.woocommerce div.product p.price {
	color: var(--az-yellow);
	font-family: var(--az-font-display);
	font-size: clamp(22px, 2.2vw, 30px);
	font-weight: 700;
	margin-bottom: 16px;
}
.woocommerce div.product p.price del { color: var(--az-muted); opacity: .7; font-size: .7em; }
.single-product .summary .woocommerce-product-details__short-description {
	color: var(--az-muted); font-size: 15.5px; margin-bottom: 6px;
}

/* Hide Woo's default availability <p>; we render our own row below the buttons */
.single-product .summary p.stock { display: none; }

.single-product .summary form.cart {
	display: flex; flex-wrap: wrap; gap: 12px;
	align-items: stretch;
	margin: 22px 0 6px;
}
.single-product .summary form.cart .quantity { margin: 0; }
/* main.js wraps the qty input in the same .az-qty +/- stepper used on the
   cart page — the plain number input's native spinner arrows were nearly
   invisible, this makes increase/decrease explicit and clickable. */
.single-product .summary form.cart .az-qty { height: 100%; min-height: 50px; }
.single-product .summary form.cart .az-qty .az-qty-btn { width: 40px; height: 100%; font-size: 19px; }
.single-product .summary form.cart .az-qty input.qty {
	width: 48px; height: 100%;
	font-family: var(--az-font-body); font-size: 16px; font-weight: 600;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button {
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow) 55%, var(--az-orange));
	color: #191423;
	font-family: var(--az-font-display); font-weight: 700; font-size: 15px;
	text-transform: uppercase; letter-spacing: .06em;
	padding: 14px 30px; border-radius: 0;
	clip-path: var(--az-clip);
	transition: transform .18s ease, box-shadow .18s ease;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover {
	box-shadow: var(--az-glow-y); transform: translateY(-2px);
}
.az-buy-now {
	background: linear-gradient(135deg, var(--az-purple-2), var(--az-purple));
	color: #fff; border: 0; cursor: pointer;
	font-family: var(--az-font-display); font-weight: 700; font-size: 15px;
	text-transform: uppercase; letter-spacing: .06em;
	padding: 14px 30px;
	clip-path: var(--az-clip);
	transition: transform .18s ease, box-shadow .18s ease;
}
.az-buy-now:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(107, 79, 168, .5); }

/* Stock row */
.az-stock-row {
	display: flex; align-items: center; gap: 10px;
	font-size: 14.5px; font-weight: 500;
	margin: 14px 0 4px;
}
.az-stock-row i { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.az-stock--in  { color: #58d69a; } .az-stock--in i  { background: #58d69a; box-shadow: 0 0 10px rgba(88, 214, 154, .7); }
.az-stock--low { color: var(--az-yellow-2); } .az-stock--low i { background: var(--az-yellow); box-shadow: 0 0 10px rgba(248, 168, 36, .7); }
.az-stock--pre { color: var(--az-teal); } .az-stock--pre i { background: var(--az-teal); box-shadow: 0 0 10px rgba(62, 184, 165, .7); }
.az-stock--out { color: #e46a6a; } .az-stock--out i { background: #e46a6a; }

/* Back-in-stock notify form */
.az-notify-form {
	margin: 16px 0;
	padding: 16px 18px;
	background: var(--az-bg-2);
	border: 1px solid var(--az-line);
	border-radius: 12px;
}
.az-notify-copy { margin: 0 0 12px; font-size: 14px; color: var(--az-muted); }
.az-notify-row { display: flex; gap: 10px; flex-wrap: wrap; }
.az-notify-email {
	flex: 1; min-width: 200px;
	padding: 12px 14px;
	background: var(--az-bg); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 10px;
	font-family: var(--az-font-body); font-size: 14.5px;
}
.az-notify-email:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }
.az-notify-email:disabled { opacity: .6; }
.az-notify-submit { padding: 12px 22px; font-size: 13.5px; }
.az-notify-submit:disabled { opacity: .7; cursor: default; }
.az-notify-status { margin: 10px 0 0; font-size: 13px; min-height: 1em; }
.az-notify-status.is-success { color: #58d69a; }
.az-notify-status.is-error { color: #e46a6a; }

/* "Request a product" / "Request a return" forms (Contact Form 7) —
   checkout-style fields, .az-inquiry-form wraps the [contact-form-7]
   shortcode; the field/label markup itself lives in each form's own
   CF7 template (wp-admin → Contact → Contact Forms). */
.az-inquiry-form {
	max-width: 560px;
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	padding: 28px 30px;
}
.az-inquiry-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.az-inquiry-field { margin-top: 18px; }
.az-inquiry-row .az-inquiry-field { margin-top: 0; }
.az-inquiry-form .wpcf7-form > .az-inquiry-field:first-child { margin-top: 0; }
.az-inquiry-field label {
	display: block; color: var(--az-muted); font-size: 13.5px; margin-bottom: 6px;
}
.az-inquiry-required { color: var(--az-yellow); }
.az-inquiry-field input,
.az-inquiry-field select,
.az-inquiry-field textarea {
	width: 100%;
	background: var(--az-bg-2); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
	padding: 12px 14px;
	font-family: var(--az-font-body); font-size: 15px;
}
.az-inquiry-field textarea { resize: vertical; }
.az-inquiry-field input:focus,
.az-inquiry-field select:focus,
.az-inquiry-field textarea:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }
.az-inquiry-field .wpcf7-not-valid-tip { display: block; margin-top: 6px; font-size: 12.5px; color: #e46a6a; }
.az-inquiry-submit-wrap { margin-top: 22px; }
.az-inquiry-submit { width: 100%; justify-content: center; padding: 14px 30px; }
.az-inquiry-form .wpcf7-response-output {
	margin: 16px 0 0; padding: 12px 14px;
	border-radius: 8px; font-size: 13.5px;
	border: 1px solid var(--az-line);
}
.az-inquiry-form .wpcf7-response-output.wpcf7-mail-sent-ok { color: #58d69a; border-color: rgba(88, 214, 154, .4); }
.az-inquiry-form .wpcf7-response-output.wpcf7-validation-errors,
.az-inquiry-form .wpcf7-response-output.wpcf7-mail-sent-ng,
.az-inquiry-form .wpcf7-response-output.wpcf7-spam-blocked { color: #e46a6a; border-color: rgba(228, 106, 106, .4); }

/* Brand strip */
.az-brand-row {
	display: flex; align-items: center; gap: 14px;
	margin-top: 16px; padding-top: 16px;
	border-top: 1px solid var(--az-line);
}
.az-brand-label {
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--az-muted);
}
.az-brand-badge { display: inline-flex; align-items: center; }
.az-brand-logo-img {
	max-height: 42px; width: auto;
	background: #fff; border-radius: 8px; padding: 6px 10px;
	transition: transform .18s ease;
}
.az-brand-badge:hover .az-brand-logo-img { transform: translateY(-2px); }
.az-brand-logo-text {
	display: inline-flex; align-items: center;
	background: var(--az-surface-2); color: var(--az-text);
	border: 1px solid var(--az-line);
	font-family: var(--az-font-display); font-weight: 700; font-size: 13px;
	letter-spacing: .04em;
	padding: 7px 16px; border-radius: 7px;
	transition: border-color .18s ease, color .18s ease;
}
.az-brand-badge:hover .az-brand-logo-text { border-color: var(--az-yellow); color: var(--az-yellow); }

/* Payment options */
.az-pay-row {
	margin: 18px 0 8px;
	padding: 16px 18px;
	background: var(--az-bg-2);
	border: 1px solid var(--az-line);
	border-radius: 12px;
}
.az-pay-label {
	display: block;
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .22em; text-transform: uppercase;
	color: var(--az-muted); margin-bottom: 10px;
}
.az-pay-chips { display: flex; flex-wrap: wrap; gap: 8px; }
/* Fixed, identical box per chip — each logo's own source file has different
   internal padding/aspect ratio, so sizing by height alone (with a width
   cap) let some of them get squashed out of their natural aspect ratio.
   A fixed box + shrink-to-fit keeps every logo undistorted and every pill
   the same size regardless of the source image's proportions. */
.az-pay-chip {
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff;
	width: 58px; height: 30px; padding: 5px 10px; border-radius: 7px;
}
.az-pay-chip img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; }
.az-pay-note { margin: 12px 0 0; font-size: 13px; color: var(--az-teal); }
.az-pay-note strong { color: var(--az-yellow); }

/* Footer payment logos row */
.az-footer-pay {
	display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
}
.az-footer-pay-label {
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--az-muted); margin-right: 4px;
}
.az-footer-pay .az-pay-chip { width: 50px; height: 26px; padding: 4px 8px; }

/* Product meta (SKU / categories) */
.single-product .summary .product_meta {
	margin-top: 14px; padding-top: 14px;
	border-top: 1px solid var(--az-line);
	font-size: 13px; color: var(--az-muted);
}
.single-product .summary .product_meta > span { display: block; margin-bottom: 4px; }
.single-product .summary .product_meta a { color: var(--az-purple-2); }
.single-product .summary .product_meta a:hover { color: var(--az-yellow); }

/* Tabs */
.woocommerce div.product .woocommerce-tabs { margin-top: 60px; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0; margin: 0 0 28px;
	border-bottom: 1px solid var(--az-line);
	display: flex; gap: 4px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent; border: 0; border-radius: 0; margin: 0; padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: var(--az-orange);
	font-family: var(--az-font-display); font-weight: 600; font-size: 14px;
	text-transform: uppercase; letter-spacing: .08em;
	padding: 14px 20px; display: block;
	border-bottom: 2px solid transparent;
	transition: color .15s ease, border-color .15s ease;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--az-orange);
	border-bottom-color: var(--az-orange);
}
.woocommerce div.product .woocommerce-tabs .panel { color: var(--az-muted); max-width: 900px; }
.woocommerce div.product .woocommerce-tabs .panel h2:first-of-type { display: none; }
.woocommerce div.product .woocommerce-tabs .panel li { margin-bottom: 6px; }

/* Related products */
.single-product .related.products { margin-top: 70px; }
.single-product .related.products > h2 {
	font-size: clamp(22px, 2.6vw, 32px);
	margin-bottom: 28px;
}

/* ---- Reviews (styled to match the checkout form fields) ---- */
.woocommerce-Reviews #comments { max-width: 720px; }
.woocommerce-Reviews .woocommerce-Reviews-title { font-size: 20px; margin-bottom: 20px; }
.woocommerce-Reviews ol.commentlist { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 16px; }
.woocommerce-Reviews .comment_container {
	display: flex; gap: 14px;
	background: var(--az-surface); border: 1px solid var(--az-line);
	border-radius: var(--az-radius); padding: 18px 20px;
}
.woocommerce-Reviews .comment_container img { border-radius: 50%; flex-shrink: 0; }
.woocommerce-Reviews .comment-text { flex: 1; }
.woocommerce-Reviews .comment-text .star-rating { margin: 0 0 6px; float: none; }
.woocommerce-Reviews .comment-text p.meta { color: var(--az-text); font-weight: 600; margin: 0 0 4px; }
.woocommerce-Reviews .comment-text p.meta strong { color: var(--az-text); }
.woocommerce-Reviews .comment-text .woocommerce-review__dash,
.woocommerce-Reviews .comment-text .woocommerce-review__published-date { color: var(--az-muted); font-size: 13px; }
.woocommerce-Reviews .comment-text .description p { color: var(--az-muted); margin: 6px 0 0; }

#review_form_wrapper { max-width: 560px; }
#review_form #reply-title {
	font-family: var(--az-font-display); font-size: 20px; text-transform: uppercase;
	letter-spacing: .04em; margin-bottom: 18px; display: block;
}
#review_form #reply-title small a { color: var(--az-purple-2); font-size: 13px; text-transform: none; letter-spacing: 0; }
.comment-form p.comment-notes,
.comment-form p.comment-form-cookies-consent { color: var(--az-muted); font-size: 13px; }
.comment-form p.comment-form-cookies-consent label { color: var(--az-muted); }
.comment-form > * + * { margin-top: 18px; }
.comment-form label {
	display: block; color: var(--az-muted); font-size: 13.5px; margin-bottom: 6px;
}
.comment-form .required { color: var(--az-yellow); text-decoration: none; }
.comment-form-rating select,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	background: var(--az-bg-2); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
	padding: 12px 14px; width: 100%;
	font-family: var(--az-font-body); font-size: 15px;
}
.comment-form-rating select { max-width: 220px; }
.comment-form textarea { resize: vertical; }
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus,
.comment-form-rating select:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }
/* WooCommerce's JS-enhanced star-click widget, when active, replaces the select */
.comment-form-rating p.stars { margin: 0; }
.comment-form-rating p.stars a {
	color: var(--az-line); text-decoration: none;
}
.comment-form-rating p.stars a::before { font-family: star; content: "\e021"; }
.comment-form-rating p.stars a:hover ~ a::before,
.comment-form-rating p.stars a.active ~ a::before { content: "\e021"; }
.comment-form-rating p.stars.selected a.active::before,
.comment-form-rating p.stars a:hover::before { content: "\e020"; color: var(--az-yellow); }
.comment-form-rating p.stars.selected a:not(.active)::before { content: "\e021"; }
.comment-form-rating p.stars.selected a.active ~ a::before { content: "\e021"; }
.comment-form p.form-submit { margin-top: 22px; }
.comment-form p.form-submit input[type="submit"] {
	display: inline-flex; justify-content: center;
	padding: 14px 30px;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow) 55%, var(--az-orange));
	color: #191423;
	font-family: var(--az-font-display); font-size: 14px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .06em;
	border: 0; border-radius: 0; clip-path: var(--az-clip);
	cursor: pointer; transition: transform .18s ease, box-shadow .18s ease;
}
.comment-form p.form-submit input[type="submit"]:hover { transform: translateY(-2px); box-shadow: var(--az-glow-y); }
.comment-form input[type="checkbox"] { accent-color: var(--az-yellow); width: 15px; height: 15px; vertical-align: middle; margin-right: 6px; }

/* =========================================================
   15d. Cart & checkout
   ========================================================= */

/* Shared table / form base (also used by my-account, order-received) */
.woocommerce table.shop_table {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: 12px;
	color: var(--az-text);
}
.woocommerce table.shop_table th { color: var(--az-text); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--az-line) !important; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	background: var(--az-bg-2); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
	padding: 12px 14px;
	width: 100%;
	font-family: var(--az-font-body); font-size: 15px;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }
.woocommerce form .form-row input::placeholder,
.woocommerce form .form-row textarea::placeholder { color: var(--az-muted); opacity: .7; }
.woocommerce form .form-row label { color: var(--az-muted); font-size: 13.5px; margin-bottom: 2px; }
.woocommerce form .form-row .required { color: var(--az-yellow); text-decoration: none; }

.woocommerce input[type="radio"],
.woocommerce input[type="checkbox"] { accent-color: var(--az-yellow); width: 16px; height: 16px; }

/* Woo's AJAX loading overlay: dim in theme colours, not white */
.woocommerce .blockUI.blockOverlay,
.blockUI.blockOverlay { background-color: rgba(18, 16, 32, .65) !important; }

/* select2 / country dropdown on dark */
.select2-container--default .select2-selection--single {
	background: var(--az-bg-2);
	border: 1px solid var(--az-line); border-radius: 8px;
	height: auto; padding: 10px 14px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered { color: var(--az-text); line-height: 1.45; padding: 0 20px 0 0; }
.select2-container--default .select2-selection--single .select2-selection__arrow { height: 100%; right: 8px; }
.select2-dropdown { background: var(--az-surface); border: 1px solid var(--az-line); }
.select2-container--default .select2-results__option { color: var(--az-text); }
.select2-container--default .select2-search--dropdown .select2-search__field {
	background: var(--az-bg-2); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 6px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] { background: var(--az-purple); color: #fff; }
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] { background: var(--az-surface-2); }

/* ---- Cart page: items left, sticky totals right ---------------- */
.woocommerce-cart .az-page-content,
.woocommerce-checkout .az-page-content { max-width: none; }

.woocommerce-cart .az-page .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 26px 36px;
	align-items: start;
}
/* The reset below is a lower-specificity default (2 classes) than it looks —
   .woocommerce-cart form.woocommerce-cart-form is 2 classes + 1 element,
   which loses to this 3-class selector on class-count alone. Without
   !important here, the cart form was spanning both columns and the sticky
   totals sidebar sat on top of (not beside) its price/qty/subtotal cells. */
.woocommerce-cart .az-page .woocommerce > * { grid-column: 1 / -1; min-width: 0; }
.woocommerce-cart form.woocommerce-cart-form { grid-column: 1 !important; grid-row: 2; }
.woocommerce-cart .cart-collaterals { display: contents; }
.woocommerce-cart .cart-collaterals .cart_totals {
	float: none !important; width: auto !important;
	grid-column: 2 !important; grid-row: 2;
	position: sticky; top: 104px;
}
.woocommerce-cart .cart-collaterals .cross-sells {
	float: none !important; width: auto !important;
	grid-column: 1 / -1 !important; grid-row: 3;
}

/* Items table as a card */
.woocommerce-cart table.cart {
	border-radius: var(--az-radius);
	overflow: hidden;
}
.woocommerce-cart table.cart thead th {
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--az-muted);
	background: var(--az-bg-2);
	padding: 14px 12px;
}
.woocommerce-cart table.cart td { padding: 18px 12px; vertical-align: middle; }

.woocommerce-cart table.cart img {
	width: 84px; aspect-ratio: 1; object-fit: contain;
	background: #fff; border-radius: 10px; padding: 6px;
}
.woocommerce-cart table.cart td.product-name a {
	color: var(--az-text); font-weight: 500;
}
.woocommerce-cart table.cart td.product-name a:hover { color: var(--az-yellow); }
.woocommerce-cart table.cart td.product-price { color: var(--az-muted); }
.woocommerce-cart table.cart td.product-subtotal {
	font-family: var(--az-font-display); font-weight: 700; color: var(--az-yellow);
	white-space: nowrap;
}

.woocommerce-cart table.cart a.remove {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 50%;
	color: var(--az-muted) !important;
	background: var(--az-surface-2);
	border: 1px solid var(--az-line);
	font-size: 18px; font-weight: 400; line-height: 1;
	transition: color .15s, border-color .15s, background .15s;
}
.woocommerce-cart table.cart a.remove:hover {
	color: #e46a6a !important;
	border-color: rgba(228, 106, 106, .5);
	background: rgba(228, 106, 106, .12);
}

/* Quantity stepper (buttons injected by main.js) */
.az-qty {
	display: inline-flex; align-items: center;
	background: var(--az-bg-2);
	border: 1px solid var(--az-line); border-radius: 10px;
	overflow: hidden;
}
.az-qty .az-qty-btn {
	width: 34px; height: 44px;
	background: transparent; border: 0; cursor: pointer;
	color: var(--az-muted); font-size: 17px; line-height: 1;
	transition: background .15s, color .15s;
}
.az-qty .az-qty-btn:hover { background: var(--az-surface-2); color: var(--az-yellow); }
.woocommerce .az-qty input.qty {
	width: 44px; height: 44px; padding: 0;
	background: transparent; color: var(--az-text);
	border: 0; text-align: center;
	font-family: var(--az-font-body); font-size: 15px; font-weight: 600;
	-moz-appearance: textfield; appearance: textfield;
}
.az-qty input.qty::-webkit-outer-spin-button,
.az-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.az-qty input.qty:focus { outline: none; }
.az-qty:focus-within { border-color: var(--az-yellow); }

/* Actions row: coupon left; update button hidden once JS auto-update is on */
.woocommerce-cart table.cart td.actions { padding: 18px 12px; background: var(--az-bg-2); }
.woocommerce-cart table.cart td.actions .coupon { display: inline-flex; gap: 10px; float: none; }
.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: 220px; padding: 11px 16px;
	background: var(--az-surface); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 9px;
	font-family: var(--az-font-body); font-size: 14px; float: none; margin: 0;
}
.woocommerce-cart table.cart td.actions .coupon .input-text:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }
.woocommerce-cart table.cart td.actions .coupon .button,
.woocommerce-cart table.cart td.actions > .button {
	padding: 11px 20px;
	font-family: var(--az-font-display); font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em;
}
.az-autoupdate td.actions > .button[name="update_cart"] {
	position: absolute !important;
	width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

/* Totals card */
.cart_totals h2 {
	font-size: 18px; letter-spacing: .1em;
	margin: 0 0 6px;
}
/* The cart shortcode renders inside the same .az-page-content wrapper used
   by long-form policy pages, so the "prose section divider" rule
   (.az-page-content h2 / h2:first-of-type, ~40px margin-top + border-top)
   was leaking onto this heading — that leaked spacing, not this box's own
   24px padding, was the large empty gap above "Cart totals". Needs one more
   class than the leaking selector's specificity to reliably win. */
.woocommerce-cart .az-page-content .cart_totals h2 {
	margin: 0 0 6px !important;
	padding-top: 0 !important;
	border-top: 0 !important;
}
.woocommerce-cart .cart_totals {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	padding: 24px 24px 26px;
}
.cart_totals table.shop_table { background: transparent; border: 0; border-radius: 0; margin: 0 0 8px; }
.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
	padding: 13px 0; background: transparent;
	border: 0 !important; border-bottom: 1px solid var(--az-line) !important;
}
.cart_totals table.shop_table th { font-weight: 500; color: var(--az-muted); text-align: left; width: 40%; }
.cart_totals tr.order-total th,
.cart_totals tr.order-total td {
	border-bottom: 0 !important;
	font-family: var(--az-font-display); font-size: 17px; color: var(--az-text);
}
.cart_totals tr.order-total .woocommerce-Price-amount { color: var(--az-yellow); font-size: 20px; font-weight: 700; }
.woocommerce-shipping-methods { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.woocommerce-shipping-methods li { display: flex; align-items: center; gap: 8px; }
.woocommerce-shipping-methods label { color: var(--az-text); font-size: 14px; }
.woocommerce-shipping-destination { font-size: 13px; color: var(--az-muted); }
.shipping-calculator-button { color: var(--az-teal); font-size: 13.5px; text-decoration: underline; text-underline-offset: 3px; }
.shipping-calculator-button:hover { color: var(--az-yellow); }
.woocommerce-cart .wc-proceed-to-checkout { padding: 6px 0 0; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: flex; justify-content: center;
	width: 100%; padding: 16px 28px; margin: 0;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow) 55%, var(--az-orange));
	color: #191423;
	font-family: var(--az-font-display); font-size: 15px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .06em;
	border-radius: 0; clip-path: var(--az-clip);
	transition: transform .18s ease, box-shadow .18s ease;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover { transform: translateY(-2px); box-shadow: var(--az-glow-y); color: #191423; }

/* Cross-sells */
.woocommerce-cart .cross-sells > h2 {
	font-size: clamp(20px, 2.4vw, 28px);
	margin: 26px 0 22px;
}

/* Empty cart */
.woocommerce-cart .cart-empty.woocommerce-info {
	background: transparent; border: 0; padding: 60px 0 8px;
	text-align: center;
	font-family: var(--az-font-display); font-size: clamp(20px, 2.6vw, 28px);
	text-transform: uppercase; letter-spacing: .04em;
}
.woocommerce-cart .cart-empty.woocommerce-info::before { display: none; }
.woocommerce-cart .return-to-shop { text-align: center; padding-bottom: 40px; }
.woocommerce-cart .return-to-shop a.button {
	display: inline-flex; padding: 14px 28px;
	font-family: var(--az-font-display); font-weight: 700; font-size: 15px;
	text-transform: uppercase; letter-spacing: .06em;
	border-radius: 0; clip-path: var(--az-clip);
}

/* ---- Checkout page: form left, sticky order summary right ------- */
.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	/* #customer_details spans both rows (below); without capping row 1's
	   height to its own content, the grid engine was free to satisfy that
	   span by inflating row 1 (the small "Your order" heading's row)
	   instead of row 2 whenever the left column grew — e.g. ticking "ship
	   to a different address" — leaving a growing gap between the heading
	   and the order box. min-content forces all the extra height onto
	   row 2 instead, where order_review actually lives. */
	grid-template-rows: min-content 1fr;
	gap: 18px 44px;
	align-items: start;
}
.woocommerce-checkout form.checkout #customer_details {
	grid-column: 1; grid-row: 1 / span 2;
	width: 100%;
}
.woocommerce-checkout form.checkout #order_review_heading { grid-column: 2; grid-row: 1; margin: 0; font-size: 18px; letter-spacing: .1em; }
.woocommerce-checkout form.checkout #order_review {
	grid-column: 2; grid-row: 2;
	position: sticky; top: 104px;
}

/* Stack billing/shipping full-width inside the left column */
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { float: none; width: 100%; }
.woocommerce-checkout .col2-set .col-2 { margin-top: 26px; }
.woocommerce-checkout #customer_details h3,
#ship-to-different-address {
	font-size: 16px; letter-spacing: .08em;
	color: var(--az-text);
	padding-bottom: 10px; margin-bottom: 18px;
	border-bottom: 1px solid var(--az-line);
}
#ship-to-different-address { display: flex; align-items: center; gap: 10px; }
#ship-to-different-address label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.woocommerce-additional-fields h3 { margin-top: 26px; }

/* Coupon + login toggles above the form */
.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-form-login-toggle .woocommerce-info { margin-bottom: 18px; }
.woocommerce form.checkout_coupon,
.woocommerce form.woocommerce-form-login {
	background: var(--az-surface);
	border: 1px solid var(--az-line); border-radius: var(--az-radius);
	padding: 22px; margin-bottom: 26px;
}
.woocommerce form.checkout_coupon .form-row { margin-bottom: 0; }
.woocommerce form.checkout_coupon .button {
	padding: 12px 22px;
	font-family: var(--az-font-display); font-weight: 700; font-size: 13.5px;
	text-transform: uppercase; letter-spacing: .05em;
}

/* Order summary card */
.woocommerce-checkout #order_review {
	background: var(--az-surface);
	border: 1px solid var(--az-line);
	border-radius: var(--az-radius);
	padding: 24px;
}
.woocommerce-checkout #order_review table.shop_table { background: transparent; border: 0; border-radius: 0; margin: 0 0 14px; }
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td {
	padding: 12px 0; background: transparent;
	border: 0 !important; border-bottom: 1px solid var(--az-line) !important;
}
.woocommerce-checkout #order_review thead th {
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase; color: var(--az-muted);
}
.woocommerce-checkout #order_review td.product-name { color: var(--az-muted); font-size: 14.5px; padding-right: 12px; }
.woocommerce-checkout #order_review td.product-name .product-quantity { color: var(--az-text); font-weight: 600; }
.woocommerce-checkout #order_review td.product-total { text-align: right; white-space: nowrap; }
.woocommerce-checkout #order_review tr.cart-subtotal th,
.woocommerce-checkout #order_review tr.woocommerce-shipping-totals th { font-weight: 500; color: var(--az-muted); text-align: left; }
.woocommerce-checkout #order_review tr.order-total th,
.woocommerce-checkout #order_review tr.order-total td {
	border-bottom: 0 !important;
	font-family: var(--az-font-display); font-size: 17px; color: var(--az-text);
}
.woocommerce-checkout #order_review tr.order-total td { text-align: right; }
.woocommerce-checkout #order_review tr.order-total .woocommerce-Price-amount { color: var(--az-yellow); font-size: 20px; font-weight: 700; }

/* Payment methods */
.woocommerce-checkout #payment { background: transparent; border-radius: 0; }
.woocommerce-checkout #payment ul.payment_methods {
	list-style: none; margin: 0 0 16px; padding: 0 0 16px;
	border-bottom: 1px solid var(--az-line);
	display: grid; gap: 10px;
}
.woocommerce-checkout #payment ul.payment_methods li {
	background: var(--az-bg-2);
	border: 1px solid var(--az-line); border-radius: 10px;
	padding: 13px 14px;
	transition: border-color .15s;
}
.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) { border-color: var(--az-yellow); }
.woocommerce-checkout #payment ul.payment_methods li label {
	display: inline; margin: 0 0 0 4px; cursor: pointer;
	color: var(--az-text); font-weight: 500; font-size: 14.5px;
}
.woocommerce-checkout #payment div.payment_box {
	background: var(--az-surface-2);
	color: var(--az-muted);
	border-radius: 8px;
	font-size: 13.5px;
	margin: 12px 0 0;
}
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--az-surface-2);
}
.woocommerce-checkout .woocommerce-privacy-policy-text p { font-size: 12.5px; color: var(--az-muted); }
.woocommerce-terms-and-conditions-wrapper { margin-bottom: 14px; }

.woocommerce-checkout #payment #place_order {
	display: flex; justify-content: center;
	width: 100%; padding: 17px 28px;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow) 55%, var(--az-orange));
	color: #191423;
	font-family: var(--az-font-display); font-size: 15px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .06em;
	border: 0; border-radius: 0; clip-path: var(--az-clip);
	transition: transform .18s ease, box-shadow .18s ease;
	cursor: pointer;
}
.woocommerce-checkout #payment #place_order:hover { transform: translateY(-2px); box-shadow: var(--az-glow-y); }

/* Advanced Coupons "Store Credits" accordion at checkout — the plugin's own
   CSS gives it a near-white card (h3 #f5f5f5, body #fcfcfc) with no text
   color set, so it inherits our light --az-text and becomes unreadable.
   Re-theme it to match the rest of the checkout instead of just patching
   the contrast. */
.acfw-checkout-ui-block { margin: 0 0 22px; }
.acfw-checkout-ui-block .acfw-accordion {
	border: 1px solid var(--az-line);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
}
.acfw-checkout-ui-block .acfw-accordion:last-child { margin-bottom: 0; }
.acfw-checkout-ui-block .acfw-accordion h3 {
	display: flex; align-items: center; justify-content: space-between;
	background: var(--az-bg-2); color: var(--az-text);
	font-family: var(--az-font-body); font-size: 14.5px; font-weight: 600;
	text-transform: none; letter-spacing: normal;
	margin: 0; padding: 14px 16px;
}
.acfw-checkout-ui-block .acfw-accordion .caret img { filter: invert(1) brightness(1.6); }
.acfw-checkout-ui-block .acfw-accordion-inner { background: var(--az-surface); }
.acfw-checkout-ui-block .acfw-accordion-content { padding: 16px; color: var(--az-muted); font-size: 14px; }
.acfw-checkout-ui-block .acfw-accordion-content p { color: var(--az-muted); margin: 0 0 10px; }
.acfw-checkout-ui-block input.wc_input_price,
.acfw-checkout-ui-block input.input-text {
	background: var(--az-bg); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
	padding: 10px 12px; font-family: var(--az-font-body); font-size: 14.5px;
}
.acfw-checkout-ui-block input.wc_input_price:focus,
.acfw-checkout-ui-block input.input-text:focus { outline: 2px solid var(--az-yellow); border-color: transparent; }
.acfw-checkout-ui-block .button,
.acfw-checkout-ui-block button.button {
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow));
	color: #191423; border: 0; border-radius: 8px;
	font-family: var(--az-font-display); font-weight: 700; font-size: 12.5px;
	text-transform: uppercase; letter-spacing: .05em;
	padding: 11px 18px; cursor: pointer;
}
.acfw-checkout-ui-block .balance-value strong { color: var(--az-yellow); }
.acfw-checkout-ui-block .acfw-remove-store-credits { color: var(--az-teal); font-size: 12.5px; margin-left: 8px; }
.acfw-checkout-ui-block .acfw-remove-store-credits:hover { color: var(--az-yellow); }

/* ---- Cart & checkout: tablet / mobile --------------------------- */
@media (max-width: 1100px) {
	.woocommerce-checkout form.checkout { grid-template-columns: 1fr; gap: 8px; }
	.woocommerce-checkout form.checkout #customer_details { grid-column: 1; grid-row: auto; }
	.woocommerce-checkout form.checkout #order_review_heading { grid-column: 1; grid-row: auto; margin-top: 26px; }
	.woocommerce-checkout form.checkout #order_review { grid-column: 1; grid-row: auto; position: static; }
}

@media (max-width: 1024px) {
	.woocommerce-cart .az-page .woocommerce { grid-template-columns: 1fr; }
	.woocommerce-cart form.woocommerce-cart-form { grid-column: 1 !important; grid-row: auto; }
	.woocommerce-cart .cart-collaterals .cart_totals { grid-column: 1 !important; grid-row: auto; position: static; }
	.woocommerce-cart .cart-collaterals .cross-sells { grid-column: 1 !important; grid-row: auto; }
}

@media (max-width: 768px) {
	/* Cart items become cards (replaces Woo's small-screen table stacking) */
	.woocommerce-cart table.cart { border: 0; background: transparent; overflow: visible; }
	.woocommerce-cart table.cart thead { display: none; }
	.woocommerce-cart table.cart tbody { display: block; }
	.woocommerce-cart table.cart tr.cart_item {
		display: grid;
		grid-template-columns: 88px minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		gap: 4px 16px;
		position: relative;
		background: var(--az-surface);
		border: 1px solid var(--az-line); border-radius: var(--az-radius);
		padding: 16px; padding-right: 52px;
		margin-bottom: 12px;
	}
	.woocommerce-cart table.cart tr.cart_item td {
		display: block; padding: 0;
		background: transparent; border: 0 !important;
		text-align: left !important;
	}
	.woocommerce-cart table.cart tr.cart_item td::before { content: none; }
	.woocommerce-cart table.cart td.product-thumbnail { display: block; grid-column: 1; grid-row: 1 / span 3; }
	.woocommerce-cart table.cart td.product-thumbnail img { width: 88px; }
	.woocommerce-cart table.cart td.product-name { grid-column: 2; grid-row: 1; font-size: 14.5px; line-height: 1.4; }
	.woocommerce-cart table.cart td.product-price { grid-column: 2; grid-row: 2; font-size: 13.5px; }
	.woocommerce-cart table.cart td.product-quantity { grid-column: 2; grid-row: 3; margin-top: 8px; }
	.woocommerce-cart table.cart td.product-subtotal {
		position: absolute; right: 16px; bottom: 22px;
		font-size: 15px;
	}
	.woocommerce-cart table.cart td.product-remove {
		position: absolute; top: 12px; right: 12px;
		width: auto;
	}
	.az-qty .az-qty-btn { width: 38px; height: 42px; }
	.woocommerce .az-qty input.qty { width: 40px; height: 42px; font-size: 16px; }

	/* Actions row becomes its own card */
	.woocommerce-cart table.cart td.actions {
		display: block;
		background: var(--az-surface);
		border: 1px solid var(--az-line); border-radius: var(--az-radius);
		padding: 16px;
	}
	.woocommerce-cart table.cart td.actions::before { content: none; }
	.woocommerce-cart table.cart td.actions .coupon { display: flex; width: 100%; }
	.woocommerce-cart table.cart td.actions .coupon .input-text { flex: 1; width: auto; min-width: 0; font-size: 16px; }

	/* Totals table rows as label/value lines */
	.cart_totals table.shop_table tr { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
	.cart_totals table.shop_table tr th { width: auto; }
	.cart_totals table.shop_table tr td { text-align: right !important; }
	.cart_totals table.shop_table tr td::before { content: none; }

	/* Checkout: keep name fields stacked, full-width everything */
	.woocommerce-checkout form .form-row-first,
	.woocommerce-checkout form .form-row-last { float: none; width: 100%; }
	.woocommerce form.checkout_coupon .form-row-first,
	.woocommerce form.checkout_coupon .form-row-last { float: none; width: 100%; margin-bottom: 10px; }
	.woocommerce-checkout #order_review,
	.woocommerce form.checkout_coupon { padding: 18px; }
	.woocommerce form .form-row input.input-text,
	.woocommerce form .form-row textarea { font-size: 16px; } /* no iOS zoom */
	.woocommerce-cart table.cart td.actions .coupon .button { white-space: nowrap; }
}

/* =========================================================
   15c. Mini-cart drawer
   ========================================================= */
.az-drawer-overlay {
	position: fixed; inset: 0; z-index: 200;
	background: rgba(9, 7, 16, .62);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	opacity: 0; pointer-events: none;
	transition: opacity .25s ease;
}
body.az-drawer-open .az-drawer-overlay { opacity: 1; pointer-events: auto; }

.az-side-drawer {
	position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
	width: min(430px, 94vw);
	display: flex; flex-direction: column;
	background: var(--az-bg-2);
	border-left: 1px solid var(--az-line);
	box-shadow: -40px 0 80px -40px rgba(0, 0, 0, .9);
	transform: translateX(105%);
	transition: transform .32s cubic-bezier(.2, .8, .25, 1);
}
body.az-drawer-open-cart .az-cart-drawer { transform: none; }
body.az-drawer-open-wishlist .az-wishlist-drawer { transform: none; }
body.az-drawer-open { overflow: hidden; }

.az-drawer-head {
	display: flex; align-items: center; gap: 14px;
	padding: 18px 22px;
	border-bottom: 1px solid var(--az-line);
	flex-shrink: 0;
}
.az-drawer-title {
	font-family: var(--az-font-display); font-weight: 700; font-size: 16px;
	text-transform: uppercase; letter-spacing: .08em;
	display: flex; align-items: center; gap: 10px;
}
.az-drawer-title .az-cart-count {
	position: static;
	min-width: 22px; height: 22px; line-height: 22px; border-radius: 11px;
	font-size: 12px;
}
.az-drawer-added {
	margin-left: auto;
	color: var(--az-teal);
	font-size: 13px; font-weight: 600;
	opacity: 0; transform: translateY(4px);
	transition: opacity .25s, transform .25s;
}
.az-cart-drawer.has-added .az-drawer-added { opacity: 1; transform: none; }
.az-drawer-close {
	margin-left: 2px;
	background: transparent; border: 0; cursor: pointer;
	color: var(--az-muted); font-size: 17px; line-height: 1;
	width: 38px; height: 38px; border-radius: 9px;
	transition: background .15s, color .15s;
	flex-shrink: 0;
}
.az-drawer-close:hover { background: rgba(107, 79, 168, .25); color: var(--az-text); }

.az-drawer-body { flex: 1; display: flex; min-height: 0; }
.az-mini-cart { display: flex; flex-direction: column; width: 100%; min-height: 0; }

.az-mini-list {
	flex: 1; overflow-y: auto;
	list-style: none; margin: 0; padding: 6px 22px;
}
.az-mini-item {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 14px; align-items: center;
	padding: 16px 0;
	border-bottom: 1px solid var(--az-line);
}
.az-mini-thumb img {
	width: 64px; height: 64px; object-fit: contain;
	background: #fff; border-radius: 10px; padding: 5px;
}
.az-mini-info { min-width: 0; }
.az-mini-name {
	display: block;
	color: var(--az-text); font-size: 14px; font-weight: 500; line-height: 1.35;
	margin-bottom: 6px;
	overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.az-mini-name:hover { color: var(--az-yellow); }

.az-mini-row {
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 8px 12px;
	margin-top: 4px;
}
.az-mini-qty-static { font-size: 13px; color: var(--az-muted); white-space: nowrap; }
.az-mini-price {
	font-size: 13.5px; font-weight: 600; color: var(--az-yellow);
	white-space: nowrap; margin-left: auto;
}
.az-mini-price .woocommerce-Price-amount { color: var(--az-yellow); }

.az-mini-qty-stepper {
	display: inline-flex; align-items: center; flex-shrink: 0;
	background: var(--az-bg); border: 1px solid var(--az-line); border-radius: 8px;
	overflow: hidden;
}
.az-mini-qty-btn {
	width: 26px; height: 26px;
	background: transparent; border: 0; cursor: pointer;
	color: var(--az-muted); font-size: 14px; line-height: 1;
	transition: background .15s, color .15s;
}
.az-mini-qty-btn:hover { background: var(--az-surface-2); color: var(--az-yellow); }
.az-mini-qty-val {
	display: inline-block; min-width: 22px;
	text-align: center; font-size: 13px; font-weight: 600; color: var(--az-text);
}
.az-mini-item.is-updating { opacity: .6; pointer-events: none; }

.az-mini-remove {
	background: transparent; border: 0; cursor: pointer;
	color: var(--az-muted); font-size: 13px;
	width: 30px; height: 30px; border-radius: 7px;
	transition: background .15s, color .15s;
}
.az-mini-remove:hover { background: rgba(228, 106, 106, .15); color: #e46a6a; }

.az-mini-foot {
	flex-shrink: 0;
	padding: 16px 22px 22px;
	border-top: 1px solid var(--az-line);
	background: var(--az-bg);
}
.az-mini-subtotal {
	display: flex; justify-content: space-between; align-items: center;
	font-family: var(--az-font-display); font-weight: 700; font-size: 16px;
	text-transform: uppercase; letter-spacing: .05em;
}
.az-mini-subtotal .woocommerce-Price-amount { color: var(--az-yellow); font-size: 19px; }
.az-mini-note { margin: 6px 0 14px; font-size: 12.5px; color: var(--az-muted); }
.az-mini-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.az-mini-actions .az-btn { justify-content: center; text-align: center; padding: 13px 10px; font-size: 13.5px; }

.az-mini-empty {
	margin: auto; text-align: center; padding: 30px;
}
.az-mini-empty p { color: var(--az-muted); margin-bottom: 18px; font-size: 15px; }

/* Add-to-cart button loading state */
.single_add_to_cart_button.loading { opacity: .6; pointer-events: none; }

/* ---- Wishlist heart button ---- */
.az-wishlist-heart {
	background: rgba(13, 11, 23, .55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, .14);
	color: #fff;
	width: 34px; height: 34px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.az-wishlist-heart svg { width: 17px; height: 17px; }
.az-wishlist-heart:hover { transform: scale(1.08); border-color: var(--az-yellow); }
.az-wishlist-heart.is-active { color: #ef5f7a; border-color: rgba(239, 95, 122, .5); background: rgba(239, 95, 122, .12); }

/* Positioned on product cards (top-right of the thumb, left of the New badge if present) */
.woocommerce ul.products li.product .az-wishlist-heart,
.az-product-thumb .az-wishlist-heart {
	position: absolute; top: 12px; right: 12px; z-index: 4;
}
.az-product-thumb { position: relative; }

/* Single product page row */
.az-wishlist-single {
	display: flex; align-items: center; gap: 10px;
	margin: 4px 0 10px;
}
.az-wishlist-single .az-wishlist-heart {
	position: static;
	background: var(--az-surface-2); color: var(--az-muted); border-color: var(--az-line);
}
.az-wishlist-single .az-wishlist-heart.is-active { color: #ef5f7a; border-color: rgba(239, 95, 122, .5); background: rgba(239, 95, 122, .12); }
.az-wishlist-single-label { font-size: 13.5px; color: var(--az-muted); }

/* Wishlist drawer item extras */
.az-wishlist-drawer-body .az-mini-remove.az-wishlist-heart {
	position: static; width: 30px; height: 30px;
	background: transparent; border: 0; color: var(--az-muted);
}
.az-wishlist-drawer-body .az-mini-remove.az-wishlist-heart:hover { color: #ef5f7a; transform: none; }
.az-wishlist-add-cart {
	margin-top: 6px;
	background: var(--az-surface-2); color: var(--az-yellow);
	border: 1px solid var(--az-line); border-radius: 7px;
	font-family: var(--az-font-display); font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .06em;
	padding: 6px 12px; cursor: pointer;
}
.az-wishlist-add-cart:hover { background: var(--az-yellow); color: #14121f; }
.az-wishlist-add-cart:disabled { opacity: .6; cursor: default; }

/* Generic page content (page.php / index.php) */
.az-page { padding: 70px 0; }
.az-page h1.az-page-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 30px; }
.az-page-content { color: var(--az-text); max-width: 820px; }
.az-page-content a { text-decoration: underline; text-underline-offset: 3px; }
.az-page-content > p:first-child em { color: var(--az-muted); font-size: 14px; }
.az-page-content p { margin: 0 0 18px; color: var(--az-muted); }
.az-page-content h2 {
	font-size: clamp(19px, 2.2vw, 24px);
	color: var(--az-text);
	margin: 40px 0 14px;
	padding-top: 20px;
	border-top: 1px solid var(--az-line);
}
.az-page-content h2:first-of-type { margin-top: 30px; }
.az-page-content ul { margin: 0 0 18px; padding-left: 22px; display: grid; gap: 8px; }
.az-page-content ul li { color: var(--az-muted); }
.az-page-content ul li::marker { color: var(--az-yellow); }
.az-page-content strong { color: var(--az-text); }
.az-policy-contact {
	background: var(--az-surface);
	border: 1px solid var(--az-line); border-radius: var(--az-radius);
	padding: 20px 24px;
	line-height: 1.9;
}

/* =========================================================
   15e. My Account
   ========================================================= */
.woocommerce-account .az-page { padding-top: 50px; }
.woocommerce-account .az-page-title { margin-bottom: 34px; }
.woocommerce-account .az-page-content { max-width: none; }

.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

/* ---- Sidebar navigation ---- */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
	/* WooCommerce core (woocommerce-layout.css) floats + width%s these, which
	   also confuses grid auto-placement (items were landing in the wrong
	   track and wrapping to their own row) — force it off and place both
	   explicitly instead of relying on auto-placement. */
	float: none !important;
	width: auto !important;
}
.woocommerce-MyAccount-navigation { grid-column: 1; grid-row: 1; }
.woocommerce-MyAccount-content { grid-column: 2; grid-row: 1; }
.woocommerce-MyAccount-navigation {
	position: sticky; top: 104px;
	background: var(--az-surface);
	border: 1px solid var(--az-line); border-radius: var(--az-radius);
	padding: 10px;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.woocommerce-MyAccount-navigation li { border-bottom: 0 !important; }
.woocommerce-MyAccount-navigation-link--customer-logout { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--az-line); }

.woocommerce-MyAccount-navigation a {
	position: relative;
	display: flex; align-items: center; gap: 12px;
	padding: 11px 14px; border-radius: 9px;
	color: var(--az-muted);
	font-family: var(--az-font-display); font-weight: 600; font-size: 13.5px;
	letter-spacing: .02em; text-transform: none;
	text-decoration: none; /* .az-page-content a sets a blanket underline — this list shouldn't have one */
	transition: background .15s, color .15s;
}
.woocommerce-MyAccount-navigation a::before {
	content: ''; flex-shrink: 0;
	width: 18px; height: 18px;
	background-color: currentColor;
	-webkit-mask: var(--az-nav-icon) center / contain no-repeat;
	mask: var(--az-nav-icon) center / contain no-repeat;
}
.woocommerce-MyAccount-navigation a:hover { color: var(--az-text); background: var(--az-surface-2); }
.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation a[aria-current="page"] {
	color: #191423;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow));
}
.woocommerce-MyAccount-navigation-link--customer-logout a:hover { color: #e46a6a; background: rgba(228, 106, 106, .12); }

/* All icons share the header's stroke-line style (fill:none, stroke, 2px) —
   without it CSS mask alpha-fills the closed/open paths solid and every
   icon renders as a muddy blob instead of a crisp outline. */
.woocommerce-MyAccount-navigation-link--dashboard a      { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11.5 12 4l9 7.5V20a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1Z'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--orders a          { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7.5 12 3l9 4.5v9L12 21l-9-4.5Zm0 0 9 4.5m0 0 9-4.5M12 12v9'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--pre-orders a      { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='8'/%3E%3Cpath d='M12 9v4l3 2M9 2h6'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--store-credit a    { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2.5' y='6' width='19' height='13' rx='2.5'/%3E%3Cpath d='M2.5 10h19M6 15h4'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--downloads a       { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v12m0 0-4-4m4 4 4-4M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--edit-address a    { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-6.6 7-11.5A7 7 0 0 0 5 9.5C5 14.4 12 21 12 21Z'/%3E%3Ccircle cx='12' cy='9.5' r='2.5'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--edit-account a    { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 21c1.5-4 4.5-6 8-6s6.5 2 8 6'/%3E%3C/svg%3E"); }
.woocommerce-MyAccount-navigation-link--customer-logout a { --az-nav-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h4M16 17l5-5-5-5M21 12H9'/%3E%3C/svg%3E"); }

/* ---- Content card ---- */
.woocommerce-MyAccount-content {
	background: var(--az-surface);
	border: 1px solid var(--az-line); border-radius: var(--az-radius);
	padding: 30px 32px;
	min-width: 0;
}
/* .az-page-content a sets a blanket underline for policy-page prose — reset it
   here so tiles/nav/table links aren't underlined by default, then re-enable
   it only where we actually want an inline-prose-style link (below). */
.woocommerce-MyAccount-content a { text-decoration: none; }
.woocommerce-MyAccount-content > p:first-child { margin-top: 0; }
.woocommerce-MyAccount-content h2 { font-size: clamp(19px, 2.2vw, 24px); margin: 0 0 18px; }
.woocommerce-MyAccount-content h2:not(:first-child) { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--az-line); }
.woocommerce-MyAccount-content > p { color: var(--az-muted); }
.woocommerce-MyAccount-content > p a,
.az-acct-welcome p a { color: var(--az-purple-2); text-decoration: underline; text-underline-offset: 3px; }
.woocommerce-MyAccount-content > p a:hover,
.az-acct-welcome p a:hover { color: var(--az-yellow); }
.woocommerce-MyAccount-content .woocommerce-notice,
.woocommerce-MyAccount-content .woocommerce-message { margin-bottom: 22px; }

/* ---- Dashboard: welcome + stat tiles ---- */
.az-acct-welcome { margin: 0 0 28px; }
.az-acct-welcome h2 { margin: 0 0 6px; border: 0 !important; padding: 0 !important; }
.az-acct-welcome p { margin: 0; color: var(--az-muted); }
.az-acct-welcome a { color: var(--az-purple-2); }
.az-acct-welcome a:hover { color: var(--az-yellow); }

.az-acct-tiles {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
	margin-bottom: 30px;
}
.az-acct-tile {
	display: flex; flex-direction: column; gap: 8px;
	padding: 20px 18px;
	background: var(--az-bg-2);
	border: 1px solid var(--az-line); border-left: 3px solid var(--az-purple);
	border-radius: 12px;
	transition: transform .18s ease, border-color .18s ease;
}
.az-acct-tile:hover { transform: translateY(-3px); border-left-color: var(--az-yellow); }
.az-acct-tile-label {
	font-family: var(--az-font-display); font-size: 10.5px; font-weight: 600;
	letter-spacing: .16em; text-transform: uppercase; color: var(--az-teal);
}
.az-acct-tile-value { font-family: var(--az-font-display); font-size: 30px; font-weight: 700; color: var(--az-text); }
.az-acct-tile-sub { font-size: 12.5px; color: var(--az-muted); }

.az-acct-recent { margin-top: 8px; }
.az-acct-recent-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.az-acct-recent-head h3 { margin: 0; font-size: 15px; letter-spacing: .04em; }
.az-acct-recent-head a { font-size: 13px; color: var(--az-purple-2); }
.az-acct-recent-head a:hover { color: var(--az-yellow); }
.az-acct-empty {
	padding: 34px 20px; text-align: center;
	background: var(--az-bg-2); border: 1px dashed var(--az-line); border-radius: 12px;
	color: var(--az-muted); font-size: 14.5px;
}
.az-acct-empty a { color: var(--az-yellow); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Orders table ---- */
.woocommerce-MyAccount-orders.shop_table { background: transparent; border: 0; border-radius: 0; margin: 0; }
.woocommerce-orders-table__header {
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .14em; text-transform: uppercase; color: var(--az-muted);
	padding: 0 12px 12px !important; background: transparent !important; border: 0 !important;
	border-bottom: 1px solid var(--az-line) !important;
}
.woocommerce-orders-table__row { background: transparent; }
.woocommerce-orders-table__cell {
	padding: 16px 12px !important; background: transparent !important;
	border: 0 !important; border-bottom: 1px solid var(--az-line) !important;
	color: var(--az-text);
}
.woocommerce-orders-table__row:last-child .woocommerce-orders-table__cell { border-bottom: 0 !important; }
.woocommerce-orders-table__cell-order-number a { color: var(--az-text); font-weight: 600; }
.woocommerce-orders-table__cell-order-number a:hover { color: var(--az-yellow); }
.woocommerce-orders-table__cell-order-total { color: var(--az-muted); font-size: 13.5px; }
.woocommerce-orders-table__cell-order-total .woocommerce-Price-amount { color: var(--az-yellow); font-weight: 600; }
.woocommerce-orders-table__cell-order-actions { text-align: right; white-space: nowrap; }
/* .woocommerce a.button (base woo button styles) sets a dark #191423 text
   color assuming a yellow background — beats these rules on specificity, so
   the "view"/pagination-style buttons need !important to stay legible. */
.woocommerce-orders-table__cell-order-actions .button {
	display: inline-flex; margin-left: 6px;
	padding: 8px 14px; font-size: 12px;
	font-family: var(--az-font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
	background: var(--az-surface-2); color: var(--az-text) !important;
	border: 1px solid var(--az-line); border-radius: 7px;
}
.woocommerce-orders-table__cell-order-actions .button:hover { border-color: var(--az-yellow); color: var(--az-yellow) !important; }
.woocommerce-orders-table__cell-order-actions .button.pay { background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow)); color: #191423 !important; border: 0; }
.woocommerce-orders-table__cell-order-actions .button.view { background: var(--az-surface-2); }

/* Status pill — reuses the same badge language as the Pre-Orders tab */
.woocommerce-orders-table__cell-order-status {
	font-family: var(--az-font-display); font-size: 11px; font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase;
}
.woocommerce-orders-table__cell-order-status::before {
	content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
	margin-right: 7px; background: var(--az-muted);
}
.woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-shipped .woocommerce-orders-table__cell-order-status { color: #58d69a; }
.woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-shipped .woocommerce-orders-table__cell-order-status::before { background: #58d69a; }
.woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-preorder-pending .woocommerce-orders-table__cell-order-status { color: var(--az-yellow); }
.woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-preorder-pending .woocommerce-orders-table__cell-order-status::before { background: var(--az-yellow); }
.woocommerce-orders-table__row--status-balance-due .woocommerce-orders-table__cell-order-status { color: #ffb35c; }
.woocommerce-orders-table__row--status-balance-due .woocommerce-orders-table__cell-order-status::before { background: #ffb35c; }
.woocommerce-orders-table__row--status-preparing-ship .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-preorder-approved .woocommerce-orders-table__cell-order-status { color: var(--az-purple-2); }
.woocommerce-orders-table__row--status-preparing-ship .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-preorder-approved .woocommerce-orders-table__cell-order-status::before { background: var(--az-purple-2); }
.woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-preorder-rejected .woocommerce-orders-table__cell-order-status { color: #e46a6a; }
.woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status::before,
.woocommerce-orders-table__row--status-preorder-rejected .woocommerce-orders-table__cell-order-status::before { background: #e46a6a; }

.woocommerce-MyAccount-content .woocommerce-pagination { margin-top: 26px; }
.woocommerce-MyAccount-content .woocommerce-pagination a.button {
	padding: 10px 18px; font-size: 12.5px;
	background: var(--az-surface-2); color: var(--az-text);
	border: 1px solid var(--az-line); border-radius: 8px;
}
.woocommerce-MyAccount-content .woocommerce-pagination a.button:hover { border-color: var(--az-yellow); color: var(--az-yellow); }

/* Single order view (view-order.php reuses the checkout order-review table styling) */
.woocommerce-order-details, .woocommerce-customer-details { margin-top: 30px; }
.woocommerce-order-details h2, .woocommerce-customer-details h2 { font-size: 16px; }
.order_details.woocommerce-table--order-details { background: transparent; }
.order_details.woocommerce-table--order-details th,
.order_details.woocommerce-table--order-details td { border-color: var(--az-line) !important; }
.woocommerce-customer-details address {
	background: var(--az-bg-2); border: 1px solid var(--az-line); border-radius: 10px;
	padding: 16px 18px; font-style: normal; color: var(--az-muted); line-height: 1.7;
}

/* ---- Addresses ---- */
.woocommerce-Addresses.col2-set { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.woocommerce-Addresses.col2-set::before, .woocommerce-Addresses.col2-set::after { content: none !important; }
.woocommerce-Address {
	/* Same core float:left/right + width:48% (woocommerce-layout.css .col2-set
	   .col-1/.col-2) as the login/register columns — force it off here too. */
	float: none !important;
	width: auto !important;
	background: var(--az-bg-2); border: 1px solid var(--az-line); border-radius: 12px;
	padding: 22px;
}
.woocommerce-Address-title {
	display: flex; align-items: center; justify-content: space-between;
	margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--az-line);
}
.woocommerce-Address-title h2 { margin: 0; font-size: 14px; letter-spacing: .06em; border: 0 !important; padding: 0 !important; }
.woocommerce-Address-title .edit {
	font-family: var(--az-font-display); font-size: 11.5px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; color: var(--az-teal);
}
.woocommerce-Address-title .edit:hover { color: var(--az-yellow); }
.woocommerce-Address address { font-style: normal; color: var(--az-muted); line-height: 1.8; font-size: 14.5px; }

/* ---- Account details / edit-address forms ---- */
.woocommerce-EditAccountForm, .woocommerce-address-fields, .woocommerce-form-address {
	display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px;
	max-width: 640px;
}
.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last,
.woocommerce-address-fields .form-row-first,
.woocommerce-address-fields .form-row-last { grid-column: span 1; }
.woocommerce-EditAccountForm .form-row-wide,
.woocommerce-address-fields .form-row-wide,
.woocommerce-EditAccountForm fieldset,
.woocommerce-EditAccountForm > p.form-row:last-of-type { grid-column: 1 / -1; }
.woocommerce-EditAccountForm fieldset {
	margin: 14px 0 6px; padding-top: 22px; border: 0; border-top: 1px solid var(--az-line);
}
.woocommerce-EditAccountForm legend {
	font-family: var(--az-font-display); font-size: 12px; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase; color: var(--az-teal);
	padding: 0; margin-bottom: 4px;
}
.woocommerce-EditAccountForm .button, .woocommerce-address-fields .button, .woocommerce-form-address .button {
	padding: 13px 26px;
	font-family: var(--az-font-display); font-weight: 700; font-size: 13.5px;
	text-transform: uppercase; letter-spacing: .05em;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow));
	color: #191423; border-radius: 0; clip-path: var(--az-clip);
}

/* ---- Login / Register (logged-out /my-account/) ---- */
.woocommerce-account:not(.logged-in) .az-page .woocommerce { display: block; }
#customer_login.u-columns.col2-set {
	display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
	max-width: 780px; margin: 0 auto;
}
#customer_login .u-column1, #customer_login .u-column2 {
	/* WooCommerce core (woocommerce-layout.css) floats + width:48% these — our
	   grid parent alone doesn't reliably neutralize that, so force it here. */
	float: none !important;
	width: auto !important;
	background: var(--az-surface); border: 1px solid var(--az-line); border-radius: var(--az-radius);
	padding: 28px 26px;
}
#customer_login::before, #customer_login::after { content: none !important; }
#customer_login h2 { font-size: 17px; margin: 0 0 18px; }
.woocommerce-form-login .form-row, .woocommerce-form-register .form-row { margin-bottom: 14px; }
.woocommerce-form-login__rememberme { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--az-muted); margin-bottom: 14px; }
.woocommerce-LostPassword { margin-top: 12px; font-size: 13px; }
.woocommerce-LostPassword a { color: var(--az-purple-2); }
.woocommerce-LostPassword a:hover { color: var(--az-yellow); }
.woocommerce-form-login__submit, .woocommerce-form-register__submit {
	width: 100%; justify-content: center;
	padding: 13px 24px;
	font-family: var(--az-font-display); font-weight: 700; font-size: 14px;
	text-transform: uppercase; letter-spacing: .05em;
	background: linear-gradient(135deg, var(--az-yellow-2), var(--az-yellow));
	color: #191423; border-radius: 0; clip-path: var(--az-clip);
}

/* ---- Store Credits (Advanced Coupons React app, Ant Design table) ---- */
#acfwf_store_credits_app {
	background: var(--az-bg-2); border: 1px solid var(--az-line); border-radius: 12px;
	padding: 4px; min-height: 80px;
	overflow: hidden;
}
#acfwf_store_credits_app .ant-table,
#acfwf_store_credits_app .ant-table-container,
#acfwf_store_credits_app .ant-spin-container,
#acfwf_store_credits_app .ant-table-placeholder,
#acfwf_store_credits_app .ant-table-cell,
#acfwf_store_credits_app .ant-empty { background: transparent; color: var(--az-text); border-color: var(--az-line) !important; }
#acfwf_store_credits_app .ant-table-thead > tr > th {
	background: var(--az-surface-2) !important; color: var(--az-muted);
	font-family: var(--az-font-display); font-size: 11px; font-weight: 600;
	letter-spacing: .1em; text-transform: uppercase;
	border-color: var(--az-line) !important;
}
#acfwf_store_credits_app .ant-table-thead > tr > th::before { background: var(--az-line) !important; }
#acfwf_store_credits_app .ant-table-tbody > tr > td { border-color: var(--az-line) !important; }
#acfwf_store_credits_app .ant-table-tbody > tr:hover > td { background: var(--az-surface-2) !important; }
#acfwf_store_credits_app .ant-empty-description { color: var(--az-muted); }
#acfwf_store_credits_app .ant-empty-img-simple-path,
#acfwf_store_credits_app .ant-empty-img-simple-ellipse { fill: var(--az-surface-2); }
#acfwf_store_credits_app .ant-empty-img-simple-g { stroke: var(--az-line); }

/* =========================================================
   16. Responsive
   ========================================================= */
@media (max-width: 1024px) {
	.az-hero-grid { grid-template-columns: 1fr; gap: 56px; }
	.az-hero-3d { order: 2; }
	.az-product-grid { grid-template-columns: repeat(3, 1fr); }
	.woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
	.az-showcase-grid-wrap.woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
	.single-product div.product { grid-template-columns: 1fr; gap: 36px; }
	.az-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
	.az-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.az-universe-grid { grid-template-columns: 1fr; }
	.az-community-inner { grid-template-columns: 1fr; padding: 36px 26px; }

	.az-header-inner { gap: 14px; }
	/* .az-nav goes fixed below, leaving the flow — push the action icons back to the right */
	.az-header-actions { margin-left: auto; }

	/* Mobile nav */
	.az-burger { display: inline-flex; }
	.az-nav {
		position: fixed; inset: 0; top: 0; z-index: 90;
		background: rgba(13, 11, 23, .97);
		display: none;
		padding: 110px max(8vw, env(safe-area-inset-left)) max(40px, env(safe-area-inset-bottom));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.az-nav.is-open { display: block; }
	.az-nav-list { flex-direction: column; gap: 4px; }
	.az-nav-list a { font-size: 22px; padding: 14px 10px; }

	.az-universe-card { min-height: 260px; }
	.az-universe-body { padding: 26px; }

	/* My Account: sidebar becomes a horizontal scroll strip above the content card */
	.woocommerce-account .woocommerce { grid-template-columns: 1fr; gap: 16px; }
	.woocommerce-MyAccount-navigation { grid-column: 1; grid-row: 1; }
	.woocommerce-MyAccount-content { grid-column: 1; grid-row: 2; }
	.woocommerce-MyAccount-navigation {
		position: static;
		padding: 8px;
		overflow-x: auto; -webkit-overflow-scrolling: touch;
	}
	.woocommerce-MyAccount-navigation ul { grid-auto-flow: column; gap: 6px; width: max-content; }
	.woocommerce-MyAccount-navigation a { white-space: nowrap; padding: 10px 14px; }
	.woocommerce-MyAccount-navigation-link--customer-logout { margin-top: 0; padding-top: 0; border-top: 0; border-left: 1px solid var(--az-line); padding-left: 8px !important; }
	.woocommerce-MyAccount-content { padding: 22px 20px; }
	.az-acct-tiles { grid-template-columns: repeat(2, 1fr); }
	.woocommerce-Addresses.col2-set { grid-template-columns: 1fr; }
	#customer_login.u-columns.col2-set { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.az-product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.az-showcase-grid-wrap.woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
	.az-hero-content { padding: 70px 0; }
	.single-product .summary form.cart .button.single_add_to_cart_button,
	.az-buy-now { flex: 1 1 100%; text-align: center; justify-content: center; }
	.woocommerce div.product .woocommerce-tabs ul.tabs { overflow-x: auto; }
	.az-mini-actions { grid-template-columns: 1fr; }
	.az-section { padding: 64px 0; }
	.az-footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.az-footer-bottom .az-footer-legal { flex-direction: column; }
	.az-footer-pay { flex-wrap: wrap; }
	.az-stat b { font-size: 34px; }

	/* 16px inputs stop iOS Safari from zooming the page on focus */
	.az-search-bar input[type="search"],
	.az-signup input[type="email"],
	.az-notify-email,
	.az-filter-price input,
	.az-inquiry-field input,
	.az-inquiry-field select,
	.az-inquiry-field textarea { font-size: 16px; }

	.az-inquiry-form { padding: 22px 20px; }
	.az-inquiry-row { grid-template-columns: 1fr; gap: 0; }
	.az-inquiry-row .az-inquiry-field { margin-top: 18px; }
	.az-inquiry-row .az-inquiry-field:first-child { margin-top: 0; }

	.az-search-bar form { flex-wrap: wrap; }
	.az-search-bar input[type="search"] { min-width: 0; flex: 1 1 180px; }

	.az-community-inner { padding: 30px 20px; }
	.az-signup .az-btn { width: 100%; justify-content: center; }

	.az-filter-actions { flex-wrap: wrap; }
	.az-filters-panel { padding: 18px; gap: 18px; }

	.az-hero-hud { gap: 10px 14px; }
	.az-video-note { right: 12px; bottom: 12px; }
	.az-promo-bar { font-size: 12px; padding: 6px 0; }

	/* Product gallery: fewer, larger thumbnails per row on narrow screens */
	.woocommerce-product-gallery .flex-control-thumbs { gap: 8px; }
	.woocommerce-product-gallery .flex-control-thumbs li { width: 52px !important; }

	.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 12px 14px; font-size: 13px; }
}

/* Small phones (≤420px) — tighten the header and cards */
@media (max-width: 420px) {
	.az-container { width: min(1240px, 94vw); }
	.az-header-inner { gap: 8px; min-height: 70px; }
	.az-brand img, .custom-logo { max-height: 48px; }
	.az-brand-text { font-size: 18px; }
	.az-icon-btn { width: 38px; height: 38px; }
	.az-icon-btn svg { width: 19px; height: 19px; }
	.az-header-actions { gap: 2px; }

	.az-hero-title { font-size: clamp(32px, 10vw, 38px); }
	.az-hero-ctas .az-btn { padding: 13px 22px; font-size: 14px; }

	.az-section { padding: 52px 0; }
	.az-section-head { margin-bottom: 34px; }
	.az-product-grid { gap: 10px; }
	.woocommerce ul.products { gap: 10px; }
	.az-product-info { padding: 12px 14px 16px; }
	.az-universe-body { padding: 22px 18px; }
	.az-stats-grid { gap: 24px 14px; }

	.single-product .summary form.cart .az-qty input.qty { width: 40px; }
	.az-mini-list { padding: 6px 16px; }
	.az-drawer-head { padding: 16px; }
	.az-mini-foot { padding: 14px 16px 18px; }

	.woocommerce-MyAccount-content { padding: 18px 16px; }
	.az-acct-tiles { grid-template-columns: 1fr 1fr; gap: 10px; }
	.az-acct-tile { padding: 16px 14px; }
	.az-acct-tile-value { font-size: 24px; }
	.woocommerce-EditAccountForm, .woocommerce-address-fields, .woocommerce-form-address { grid-template-columns: 1fr; }
	.woocommerce-EditAccountForm .form-row-first, .woocommerce-EditAccountForm .form-row-last { grid-column: 1 / -1; }
}
