/**
 * AgenWebsite Store — base stylesheet.
 *
 * Everything is driven by CSS custom properties written into :root by the active
 * preset + Customizer (see inc/class-aws-store-css.php). Structural variants
 * (header layout/theme, hero type, footer theme, card density) are switched via
 * body classes. One stylesheet renders every niche.
 */

:root {
	--aws-demobar-h: 0px;
	--aws-cols: 4;
	--aws-header-h: 72px;
	--aws-gap: 24px;
	--aws-section-y: 80px;
	--aws-header-fg: var(--aws-text);
	--aws-maxw: var(--aws-container, 1280px);
	--aws-on-primary: #fff;
	--aws-on-accent: #fff;
	--aws-shadow-sm: 0 1px 2px rgba(var(--aws-text-rgb,17,17,17), .06), 0 1px 3px rgba(var(--aws-text-rgb,17,17,17), .04);
	--aws-shadow-md: 0 12px 30px -12px rgba(var(--aws-text-rgb,17,17,17), .18);
	--aws-ease: cubic-bezier(.16,1,.3,1);
}

/* ====================== RESET / BASE ====================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--aws-font-body);
	font-size: var(--aws-base-size, 15px);
	line-height: 1.65;
	color: var(--aws-text);
	background: var(--aws-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .5em;
	font-family: var(--aws-font-heading);
	line-height: 1.2;
	color: var(--aws-primary);
	font-weight: 700;
	letter-spacing: var(--aws-heading-spacing, normal);
}
.aws-section__title, .aws-hero__title, .aws-banner__title, .aws-cta__title { text-transform: var(--aws-heading-transform, none); }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--aws-accent); outline-offset: 2px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.aws-skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 100000; width: auto; height: auto;
	clip: auto; padding: 10px 16px; background: var(--aws-primary); color: #fff; border-radius: 6px;
}

/* ====================== LAYOUT ====================== */
.aws-container { width: 100%; max-width: var(--aws-maxw); margin: 0 auto; padding-inline: 20px; }
.aws-content-wrap { padding-block: 40px; }
.aws-section { padding-block: var(--aws-section-y); }
.aws-section--alt { background: var(--aws-surface); }
.aws-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
.aws-section__head--center { flex-direction: column; align-items: center; text-align: center; }
.aws-section__title { position: relative; font-size: clamp(1.55rem, 3vw, 2.1rem); line-height: 1.12; margin: 0; }
.aws-section__head:not(.aws-section__head--center) .aws-section__title { padding-left: 16px; }
.aws-section__head:not(.aws-section__head--center) .aws-section__title::before { content: ""; position: absolute; left: 0; top: .12em; bottom: .12em; width: 4px; border-radius: 4px; background: var(--aws-accent); }
.aws-section__head--center .aws-section__title::after { content: ""; display: block; width: 48px; height: 3px; margin: 16px auto 0; background: var(--aws-accent); border-radius: 3px; }
.aws-section__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--aws-accent); font-size: .9rem; white-space: nowrap; }
.aws-section__more:hover { gap: 11px; }
.aws-section__more .aws-icon { transition: transform .2s var(--aws-ease); }
.aws-section__more:hover .aws-icon { transform: translateX(3px); }

/* ====================== BUTTONS ====================== */
.aws-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 28px; background: var(--aws-primary); color: var(--aws-on-primary, #fff);
	border-radius: var(--aws-radius); font-weight: 600; font-size: .9rem; line-height: 1.1;
	letter-spacing: .01em; transition: transform .18s cubic-bezier(.16,1,.3,1), background .2s ease, box-shadow .25s ease;
	border: 1.5px solid var(--aws-primary); box-shadow: 0 1px 2px rgba(var(--aws-primary-rgb,0,0,0), .12);
}
.aws-btn:hover { background: var(--aws-primary-dark); border-color: var(--aws-primary-dark); transform: translateY(-2px); color: var(--aws-on-primary, #fff); box-shadow: 0 10px 24px rgba(var(--aws-primary-rgb,0,0,0), .26); }
.aws-btn:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(var(--aws-primary-rgb,0,0,0), .2); }
.aws-btn--lg { padding: 16px 36px; font-size: 1rem; }
.aws-btn--ghost { background: transparent; color: var(--aws-primary); box-shadow: none; }
.aws-btn--ghost:hover { background: var(--aws-primary); color: var(--aws-on-primary, #fff); }
.aws-hero--image .aws-btn--ghost { color: #fff; border-color: rgba(255,255,255,.65); }
.aws-hero--image .aws-btn--ghost:hover { background: #fff; color: #111; border-color: #fff; }

/* ====================== ICONS ====================== */
.aws-icon { display: block; }
.aws-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; color: var(--aws-header-fg); position: relative; transition: background .2s ease; }
.aws-icon-btn:hover { background: rgba(var(--aws-primary-rgb,0,0,0), .08); }

/* ====================== DEMO BAR ====================== */
.aws-demo-bar { position: fixed; inset: 0 0 auto 0; height: 40px; z-index: 9999; background: linear-gradient(135deg,#6366f1,#4f46e5); color: rgba(255,255,255,.9); box-shadow: 0 2px 10px rgba(99,102,241,.3); }
.aws-demo-bar__inner { max-width: var(--aws-maxw); margin: 0 auto; height: 100%; padding-inline: 20px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.aws-demo-bar__brand { display: flex; align-items: center; gap: 10px; }
.aws-demo-bar__brand a { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; font-size: 13px; }
.aws-demo-bar__sep { opacity: .4; }
.aws-demo-bar__links { display: flex; align-items: center; gap: 16px; }
.aws-demo-bar__links a { color: rgba(255,255,255,.65); }
.aws-demo-bar__links a:hover { color: #fff; }
.aws-demo-bar__all { background: rgba(255,255,255,.16); padding: 4px 12px; border-radius: 20px; color: #fff !important; display: inline-flex; align-items: center; gap: 4px; }
body.aws-has-demobar { padding-top: 40px; }
body.admin-bar.aws-has-demobar .aws-demo-bar { top: 32px; }
@media (max-width: 782px) { body.admin-bar.aws-has-demobar .aws-demo-bar { top: 46px; } }
@media (max-width: 640px) { .aws-demo-bar__links a:not(.aws-demo-bar__all) { display: none; } }

/* ====================== TOPBAR ====================== */
.aws-topbar { background: var(--aws-primary-dark); color: rgba(255,255,255,.85); font-size: .8rem; }
.aws-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 36px; }
.aws-topbar__list { display: flex; gap: 18px; list-style: none; }
.aws-topbar a:hover { color: #fff; }

/* ====================== HEADER ====================== */
.aws-header { background: var(--aws-bg); border-bottom: 1px solid var(--aws-border); position: relative; z-index: 100; transition: box-shadow .3s ease, border-color .3s ease, background .3s ease; }
body.aws-header-sticky .aws-header.is-scrolled { box-shadow: var(--aws-shadow-md); border-bottom-color: transparent; }
.aws-head-theme-dark .aws-header.is-scrolled { box-shadow: 0 10px 34px rgba(0,0,0,.4); }
body.aws-header-sticky .aws-header { position: sticky; top: var(--aws-demobar-h); }
body.admin-bar.aws-header-sticky .aws-header { top: calc(var(--aws-demobar-h) + 32px); }
.aws-header__inner { display: flex; align-items: center; gap: 28px; min-height: var(--aws-header-h); position: relative; }
.aws-header__start { display: flex; align-items: center; gap: 22px; min-width: 0; }
.aws-header__start .aws-nav--primary { min-width: 0; overflow: hidden; }
.aws-header__end { margin-left: auto; display: flex; align-items: center; gap: 4px; }

/* Center-logo layout: 3-column grid keeps the logo truly centered without the
   left nav ever colliding with it. */
.aws-head-center .aws-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; }
.aws-head-center .aws-header__start { justify-self: start; }
.aws-head-center .aws-header__center { justify-self: center; }
.aws-head-center .aws-header__end { justify-self: end; margin-left: 0; }
.aws-head-center .aws-menu { flex-wrap: wrap; }

.aws-branding { display: flex; align-items: center; }
.aws-logo-text { font-family: var(--aws-font-heading); font-size: 1.4rem; font-weight: 700; color: var(--aws-header-fg); letter-spacing: .04em; text-transform: var(--aws-heading-transform, none); white-space: nowrap; }
.aws-header .custom-logo, .aws-branding img { max-height: 46px; width: auto; }

.aws-nav--primary { display: flex; }
.aws-menu { display: flex; align-items: center; gap: 2px; list-style: none; flex-wrap: nowrap; }
.aws-menu li { list-style: none; position: relative; }
.aws-menu a { display: block; padding: 10px 14px; font-weight: 500; font-size: .92rem; color: var(--aws-header-fg); white-space: nowrap; }
.aws-menu a:hover, .aws-menu .current-menu-item > a { color: var(--aws-accent); }
.aws-menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--aws-bg); border: 1px solid var(--aws-border); border-radius: var(--aws-radius); box-shadow: 0 12px 30px rgba(0,0,0,.1); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s; z-index: 50; }
.aws-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.aws-menu .sub-menu a { padding: 8px 12px; }

.aws-cart-link { font-weight: 600; }
.aws-cart-count { position: absolute; top: 4px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--aws-accent); color: var(--aws-on-accent, #fff); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; line-height: 1; }
.aws-nav-toggle { display: none; }

/* Dark / transparent header themes */
.aws-head-theme-dark .aws-header { background: var(--aws-footer-bg); border-bottom-color: rgba(255,255,255,.08); --aws-header-fg: #fff; }
.aws-head-theme-dark .aws-icon-btn:hover { background: rgba(255,255,255,.12); }
.aws-head-theme-dark .aws-menu a:hover, .aws-head-theme-dark .aws-menu .current-menu-item > a { color: var(--aws-accent); }

/* Search panel */
.aws-search-panel { border-top: 1px solid var(--aws-border); background: var(--aws-bg); padding: 18px 0; }
.aws-search-panel .aws-container { display: flex; align-items: center; gap: 12px; }
.aws-search-panel form { flex: 1; display: flex; gap: 8px; }
.aws-search-panel input[type="search"], .aws-search-panel input[type="text"] { flex: 1; padding: 12px 16px; border: 1px solid var(--aws-border); border-radius: var(--aws-radius); background: var(--aws-surface); }

/* Mobile drawer */
.aws-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 84vw); background: var(--aws-bg); z-index: 10001; transform: translateX(-100%); transition: transform .28s ease; box-shadow: 0 0 40px rgba(0,0,0,.18); display: flex; flex-direction: column; padding: 18px; overflow-y: auto; }
.aws-drawer.is-open { transform: translateX(0); }
.aws-drawer[hidden] { display: flex; }
.aws-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--aws-border); }
.aws-drawer__nav .aws-menu { flex-direction: column; align-items: stretch; gap: 0; }
.aws-drawer__nav .aws-menu a { padding: 13px 6px; border-bottom: 1px solid var(--aws-border); color: var(--aws-text); }
.aws-drawer__nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 14px; }
.aws-drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 10000; opacity: 0; transition: opacity .28s ease; }
.aws-drawer-backdrop.is-open { opacity: 1; }
.aws-drawer-backdrop[hidden], .aws-drawer[hidden]:not(.is-open) { pointer-events: none; }
body.aws-drawer-open { overflow: hidden; }

/* ====================== HERO ====================== */
.aws-hero--image { position: relative; min-height: 74vh; display: flex; align-items: flex-end; background-size: cover; background-position: center; color: #fff; }
.aws-hero--image .aws-hero__content { padding-block: 60px; text-align: center; margin-inline: auto; max-width: 720px; }
.aws-hero--image .aws-hero__eyebrow { display: inline-block; margin-bottom: 18px; font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.aws-hero--image .aws-hero__title { color: #fff; font-size: clamp(2.4rem, 5.4vw, 3.8rem); line-height: 1.04; margin-bottom: .35em; }
.aws-hero--image .aws-hero__subtitle { color: rgba(255,255,255,.84); font-size: 1.075rem; margin: 0 auto 1.8em; max-width: 46ch; }
/* No custom image → an intentional centered brand splash, not a bottom void. */
.aws-hero--flat { min-height: 62vh; align-items: center; background: linear-gradient(145deg, var(--aws-primary), var(--aws-primary-dark)); overflow: hidden; }
.aws-hero--flat::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% -10%, rgba(255,255,255,.16), transparent 60%); pointer-events: none; }
.aws-hero--flat::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 80% 120%, rgba(0,0,0,.28), transparent 55%); pointer-events: none; }
.aws-hero--flat .aws-hero__content { position: relative; z-index: 1; padding-block: 48px; }
.aws-hero--flat .aws-hero__title::after { content: ""; display: block; width: 56px; height: 3px; margin: 22px auto 0; background: rgba(255,255,255,.55); border-radius: 3px; }
.aws-hero--flat .aws-hero__subtitle { margin-top: 24px; }

.aws-hero--split { padding-block: clamp(36px, 5vw, 72px); background: linear-gradient(135deg, var(--aws-surface), var(--aws-bg)); }
.aws-hero--split .aws-hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.aws-hero__badge { display: inline-block; padding: 6px 14px; border-radius: 100px; background: rgba(var(--aws-accent-rgb,0,0,0), .12); color: var(--aws-accent); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.aws-hero__title { font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.08; margin-bottom: .35em; }
.aws-hero__subtitle { font-size: 1.08rem; color: var(--aws-text-light); margin-bottom: 1.6em; max-width: 48ch; }
.aws-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.aws-hero__media { position: relative; }
.aws-hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: calc(var(--aws-radius) + 6px); box-shadow: 0 24px 60px rgba(0,0,0,.14); }

/* ====================== USP BAR ====================== */
.aws-usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.aws-usp__item { display: flex; align-items: center; gap: 14px; padding: 8px; }
.aws-usp__icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(var(--aws-primary-rgb,0,0,0), .09); color: var(--aws-primary); }
.aws-usp__text strong { display: block; font-size: .95rem; color: var(--aws-primary); }
.aws-usp__text span { font-size: .82rem; color: var(--aws-text-light); }

/* ====================== CATEGORY GRID ====================== */
.aws-grid--categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: var(--aws-gap); }
.aws-cat-card { display: block; border-radius: var(--aws-radius); overflow: hidden; background: var(--aws-bg); border: 1px solid var(--aws-border); box-shadow: var(--aws-shadow-sm); transition: transform .3s var(--aws-ease), box-shadow .3s var(--aws-ease), border-color .3s ease; }
.aws-cat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -16px rgba(var(--aws-primary-rgb,0,0,0), .3); border-color: rgba(var(--aws-primary-rgb,0,0,0), .16); }
.aws-cat-card__media { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; overflow: hidden;
	background: linear-gradient(145deg, rgba(var(--aws-primary-rgb,24,24,24), .10), rgba(var(--aws-accent-rgb,200,160,110), .06)); }
.aws-cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--aws-ease); }
.aws-cat-card:hover .aws-cat-card__media img { transform: scale(1.06); }
.aws-cat-card__ph { color: var(--aws-primary); opacity: .85; display: flex; transition: transform .3s var(--aws-ease); }
.aws-cat-card__ph svg { width: 38px; height: 38px; }
.aws-cat-card:hover .aws-cat-card__ph { transform: scale(1.1) rotate(-4deg); }
.aws-cat-card__body { padding: 16px; text-align: center; }
.aws-cat-card__name { display: block; font-weight: 700; color: var(--aws-primary); letter-spacing: -.01em; }
.aws-cat-card__count { font-size: .76rem; color: var(--aws-text-light); }

/* ====================== PRODUCT GRID + CARD ====================== */
.aws-grid--products { display: grid; grid-template-columns: repeat(var(--aws-cols, 4), 1fr); gap: var(--aws-gap); }
.aws-card { position: relative; background: var(--aws-bg); border: 1px solid var(--aws-border); border-radius: var(--aws-radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--aws-shadow-sm); transition: transform .3s var(--aws-ease), box-shadow .3s var(--aws-ease), border-color .3s ease; }
.aws-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -16px rgba(var(--aws-primary-rgb,0,0,0), .32); border-color: rgba(var(--aws-primary-rgb,0,0,0), .16); }
.aws-card__media { position: relative; aspect-ratio: var(--aws-card-aspect, 1/1); background: var(--aws-surface); overflow: hidden; }
.aws-card__img { display: block; width: 100%; height: 100%; }
.aws-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.aws-card:hover .aws-card__img img { transform: scale(1.05); }
.aws-card__add { position: absolute; left: 12px; right: 12px; bottom: 12px; text-align: center; padding: 11px; background: var(--aws-primary); color: var(--aws-on-primary, #fff); border-radius: var(--aws-radius); font-weight: 600; font-size: .85rem; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s cubic-bezier(.16,1,.3,1), background .2s ease; box-shadow: 0 6px 16px rgba(var(--aws-primary-rgb,0,0,0), .28); }
.aws-card:hover .aws-card__add { opacity: 1; transform: translateY(0); }
.aws-card__add:hover { background: var(--aws-primary-dark); color: var(--aws-on-primary, #fff); }
.aws-card__add.added { opacity: 1; transform: none; }
.aws-card__body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.aws-card__cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--aws-text-light); }
.aws-card__title { font-size: 1rem; font-weight: 600; margin: 0; line-height: 1.35; }
.aws-card__title a { color: var(--aws-primary); }
.aws-card__title a:hover { color: var(--aws-accent); }
.aws-card__rating { font-size: .8rem; }
.aws-card__price { margin-top: auto; font-weight: 700; color: var(--aws-text); }
.aws-card__price del { color: var(--aws-text-light); font-weight: 400; margin-right: 6px; }
.aws-card__price ins { text-decoration: none; color: var(--aws-sale); }

.aws-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 10px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; border-radius: calc(var(--aws-radius) / 2); }
.aws-badge--sale { background: var(--aws-sale); color: #fff; }

/* ====================== PROMO BANNER ====================== */
.aws-banner { border-radius: calc(var(--aws-radius) + 4px); padding: clamp(36px, 6vw, 72px); background: linear-gradient(120deg, var(--aws-primary), var(--aws-primary-dark)); color: #fff; background-size: cover; background-position: center; }
.aws-banner__content { max-width: 560px; }
.aws-banner__eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.aws-banner__title { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: .4em; }
.aws-banner__text { color: rgba(255,255,255,.9); margin-bottom: 1.5em; }
.aws-banner .aws-btn { background: #fff; color: var(--aws-primary); border-color: #fff; }
.aws-banner .aws-btn:hover { background: rgba(255,255,255,.9); }

/* ====================== TESTIMONIALS ====================== */
.aws-grid--testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--aws-gap); }
.aws-testimonial { background: var(--aws-bg); border: 1px solid var(--aws-border); border-radius: var(--aws-radius); padding: 28px; margin: 0; }
.aws-testimonial__stars { display: flex; gap: 2px; color: #f5a623; margin-bottom: 14px; }
.aws-testimonial blockquote { margin: 0 0 18px; font-size: .98rem; line-height: 1.7; color: var(--aws-text); }
.aws-testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.aws-testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--aws-primary); color: var(--aws-on-primary, #fff); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.aws-testimonial__meta strong { display: block; color: var(--aws-primary); }
.aws-testimonial__meta span { font-size: .82rem; color: var(--aws-text-light); }

/* ====================== NEWSLETTER ====================== */
.aws-newsletter { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; background: var(--aws-primary); color: #fff; border-radius: calc(var(--aws-radius) + 4px); padding: clamp(30px, 5vw, 56px); }
.aws-newsletter h2 { color: #fff; }
.aws-newsletter p { color: rgba(255,255,255,.85); margin: 0; }
.aws-newsletter__form { display: flex; gap: 10px; }
.aws-newsletter__form input { flex: 1; padding: 14px 18px; border-radius: var(--aws-radius); border: none; background: rgba(255,255,255,.95); color: #222; }
.aws-newsletter__form .aws-btn { background: var(--aws-accent); border-color: var(--aws-accent); color: var(--aws-on-accent, #fff); white-space: nowrap; }
.aws-newsletter__form .aws-btn:hover { color: var(--aws-on-accent, #fff); filter: brightness(.94); }

/* ====================== BRANDS / CTA ====================== */
.aws-brands { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.aws-brand-pill { padding: 10px 22px; border: 1px solid var(--aws-border); border-radius: 100px; font-weight: 600; color: var(--aws-text); transition: .2s; }
.aws-brand-pill:hover { border-color: var(--aws-primary); color: var(--aws-primary); }
.aws-cta { text-align: center; }
.aws-cta__title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 1em; }

/* ====================== BLOG ====================== */
.aws-layout--sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.aws-page-head { margin-bottom: 32px; }
.aws-page-head__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.aws-grid--posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.aws-post-card { background: var(--aws-bg); border: 1px solid var(--aws-border); border-radius: var(--aws-radius); overflow: hidden; display: flex; flex-direction: column; }
.aws-post-card__media { aspect-ratio: 16/9; background: var(--aws-surface); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.aws-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.aws-post-card__ph { color: var(--aws-text-light); opacity: .4; }
.aws-post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.aws-post-card__cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--aws-accent); font-weight: 600; }
.aws-post-card__title { font-size: 1.2rem; margin: 0; }
.aws-post-card__title a { color: var(--aws-primary); }
.aws-post-card__excerpt { color: var(--aws-text-light); font-size: .92rem; }
.aws-post-card__meta { font-size: .8rem; color: var(--aws-text-light); }

.aws-single__head { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.aws-single__cat { color: var(--aws-accent); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; }
.aws-single__title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: .2em 0; }
.aws-single__meta { color: var(--aws-text-light); font-size: .88rem; display: flex; gap: 8px; justify-content: center; }
.aws-single__media { margin: 0 0 28px; border-radius: var(--aws-radius); overflow: hidden; }
.aws-entry { line-height: 1.8; }
.aws-entry img { border-radius: var(--aws-radius); margin: 1em 0; }
.aws-entry h2, .aws-entry h3 { margin-top: 1.4em; }
.aws-entry a { color: var(--aws-accent); text-decoration: underline; }

.aws-sidebar .widget { margin-bottom: 32px; }
.aws-sidebar .widget-title { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--aws-border); }
.aws-sidebar ul { list-style: none; }
.aws-sidebar li { padding: 6px 0; }

.aws-page-builder, .aws-fullwidth { width: 100%; }

/* 404 / empty */
.aws-404 { text-align: center; padding-block: 60px; max-width: 560px; margin: 0 auto; }
.aws-404__code { font-size: clamp(5rem, 16vw, 10rem); font-weight: 800; line-height: 1; color: var(--aws-primary); font-family: var(--aws-font-heading); }
.aws-404 form, .aws-empty form { margin: 22px auto; max-width: 420px; }
.aws-empty { text-align: center; padding-block: 50px; }

/* ====================== FOOTER ====================== */
.aws-footer { background: var(--aws-footer-bg); color: var(--aws-footer-text); padding-block: 56px 0; margin-top: 40px; }
.aws-footer-theme-light .aws-footer { background: var(--aws-surface); color: var(--aws-text); border-top: 1px solid var(--aws-border); }
.aws-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.aws-footer__col .widget-title, .aws-footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.aws-footer-theme-light .aws-footer__col .widget-title { color: var(--aws-primary); }
.aws-footer__col p { color: var(--aws-footer-text); font-size: .9rem; }
.aws-footer__col ul { list-style: none; }
.aws-footer__col li { margin-bottom: 9px; }
.aws-footer__col a, .aws-footer__menu a { color: var(--aws-footer-text); font-size: .9rem; }
.aws-footer__col a:hover, .aws-footer__menu a:hover { color: #fff; }
.aws-footer-theme-light .aws-footer__col a:hover { color: var(--aws-primary); }
.aws-footer__menu { list-style: none; }
.aws-footer__menu li { margin-bottom: 9px; }
.aws-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; text-align: center; font-size: .85rem; color: var(--aws-footer-text); }
.aws-footer-theme-light .aws-footer__bottom { border-top-color: var(--aws-border); }
.aws-footer__bottom a { color: inherit; text-decoration: underline; }

/* ====================== PAGINATION ====================== */
.pagination, .woocommerce-pagination { margin-top: 40px; display: flex; justify-content: center; }
.pagination .nav-links, .woocommerce-pagination ul { display: flex; gap: 6px; list-style: none; }
.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--aws-border); border-radius: var(--aws-radius); color: var(--aws-text); }
.page-numbers.current, .page-numbers:hover { background: var(--aws-primary); color: var(--aws-on-primary, #fff); border-color: var(--aws-primary); }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
	.aws-grid--products { --aws-cols: 3; }
	.aws-hero--split .aws-hero__inner { grid-template-columns: 1fr; }
	.aws-hero__media { order: -1; max-width: 460px; }
	.aws-newsletter { grid-template-columns: 1fr; }
	.aws-layout--sidebar { grid-template-columns: 1fr; }
	.aws-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 820px) {
	:root { --aws-section-y: 48px; }
	.aws-nav--primary { display: none; }
	.aws-nav-toggle { display: inline-flex; }
	.aws-head-center .aws-header__center { position: static; transform: none; margin: 0 auto; }
	.aws-header__start { gap: 12px; }
	.aws-usp { grid-template-columns: repeat(2, 1fr); }
	.aws-grid--testimonials { grid-template-columns: 1fr; }
	.aws-grid--posts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.aws-grid--products { --aws-cols: 2; gap: 14px; }
	.aws-grid--categories { grid-template-columns: repeat(2, 1fr); }
	.aws-usp { grid-template-columns: 1fr; }
	.aws-hero--image { min-height: 60vh; }
	.aws-newsletter__form { flex-direction: column; }
	.aws-card__body { padding: 12px; }
	.aws-card__add { position: static; opacity: 1; transform: none; margin-top: 10px; }
}
