/*
Theme Name: A-Model Kadence Child
Template: kadence
Theme URI: https://example.test/a-model-kadence-child
Author: A-Model
Description: Glass-smoke research commerce presentation layer for Kadence, FluentCart, and FluentAffiliate.
Version: 0.1.0
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 8.1
Text Domain: a-model-kadence-child
*/

:root {
  --am-black: #030504;
  --am-ink: #090d0b;
  --am-panel: rgba(8, 13, 11, 0.68);
  --am-panel-strong: rgba(10, 17, 15, 0.84);
  --am-line: rgba(219, 255, 241, 0.15);
  --am-line-soft: rgba(219, 255, 241, 0.08);
  --am-line-hot: rgba(24, 214, 139, 0.48);
  --am-green: #18d68b;
  --am-green-soft: #83f7c2;
  --am-text: #f4fff9;
  --am-muted: #a7b9b0;
  --am-dim: #65746d;
  --am-danger: #ff6978;
  --am-gold: #d4f7a9;
  --am-radius: 8px;
  --am-radius-sm: 6px;
  --am-max: 1180px;
  --am-font-display: "Rajdhani", "Barlow Condensed", "Arial Narrow", sans-serif;
  --am-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: var(--am-black);
}

body {
  min-height: 100vh;
  color: var(--am-text);
  background:
    radial-gradient(circle at 20% 12%, rgba(24, 214, 139, 0.18), transparent 23rem),
    radial-gradient(circle at 84% 18%, rgba(131, 247, 194, 0.1), transparent 19rem),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.07), transparent 18rem),
    linear-gradient(180deg, #07100c 0%, #010202 38%, #030504 100%);
  font-family: var(--am-font-body);
  letter-spacing: 0;
  text-rendering: geometricprecision;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.am-modal-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.58;
  background:
    radial-gradient(ellipse at 18% 16%, rgba(255, 255, 255, 0.1), transparent 0.5rem),
    radial-gradient(ellipse at 24% 18%, rgba(255, 255, 255, 0.06), transparent 0.75rem),
    linear-gradient(115deg, transparent 0 18%, rgba(205, 255, 236, 0.07) 22%, transparent 32% 100%),
    linear-gradient(74deg, transparent 0 48%, rgba(205, 255, 236, 0.055) 55%, transparent 68% 100%);
  filter: blur(26px);
  transform: scale(1.15);
  animation: am-smoke-drift 28s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

a {
  color: var(--am-green-soft);
}

a:hover,
a:focus {
  color: var(--am-green);
}

:focus-visible {
  outline: 2px solid var(--am-green);
  outline-offset: 3px;
}

.site-header,
.site-footer,
.content-bg,
.entry,
.wp-site-blocks {
  background: transparent;
}

.site-header,
#masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--am-line);
  background: rgba(2, 5, 4, 0.72) !important;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

#masthead .site-header-row-container-inner,
#masthead .site-main-header-wrap {
  background: transparent !important;
}

.site-header a,
.main-navigation .primary-menu-container > ul > li.menu-item > a {
  position: relative;
  color: var(--am-text);
  font-family: var(--am-font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a::after {
  content: "";
  position: absolute;
  left: 0.55em;
  right: 0.55em;
  bottom: 0.22em;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--am-green), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a,
.main-navigation .primary-menu-container > ul > li.menu-item > a:hover {
  color: var(--am-green);
  text-shadow: 0 0 18px rgba(24, 214, 139, 0.32);
}

.main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a::after,
.main-navigation .primary-menu-container > ul > li.menu-item > a:hover::after {
  transform: scaleX(1);
}

.site-branding .site-title {
  color: var(--am-text);
  font-family: var(--am-font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.site-main,
.content-container,
.entry-content-wrap,
.single-entry {
  background: transparent;
}

.entry-hero,
.entry-header,
.site-footer {
  display: none;
}

.content-area {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.entry.single-entry,
.entry-content-wrap {
  box-shadow: none !important;
  padding: 0 !important;
}

.content-area {
  margin-top: 0;
}

.entry-content {
  color: var(--am-text);
}

.am-page {
  overflow: hidden;
}

.am-shell {
  width: min(var(--am-max), calc(100vw - 32px));
  margin: 0 auto;
}

@keyframes am-smoke-drift {
  from {
    transform: scale(1.15) translate3d(-1%, -1%, 0);
  }
  to {
    transform: scale(1.2) translate3d(1.5%, 1%, 0);
  }
}

@keyframes am-ambient-float {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes am-orbit-drift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(18deg);
  }
}

@keyframes am-button-sheen {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }
  to {
    transform: translateX(190%) skewX(-18deg);
  }
}

@keyframes am-soft-pulse {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 0.9;
  }
}

.am-section {
  position: relative;
  padding: clamp(56px, 7vw, 112px) 0;
}

.am-section-tight {
  padding: clamp(36px, 5vw, 72px) 0;
}

.am-hero + .am-section-tight {
  margin-top: clamp(-34px, -2vw, -18px);
  padding-top: 0;
}

.am-kicker,
.am-pill,
.am-eyebrow,
.am-card__meta {
  color: var(--am-green);
  font-family: var(--am-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.am-heading,
.am-hero h1,
.am-section h2,
.am-card h3,
.am-category h3 {
  color: var(--am-text);
  font-family: var(--am-font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.am-hero h1 {
  max-width: 12.5ch;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
}

.am-section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
}

.am-copy,
.am-section p {
  color: var(--am-muted);
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  line-height: 1.72;
}

.am-glass {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--am-line);
  border-radius: var(--am-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025) 36%, rgba(24, 214, 139, 0.07)),
    var(--am-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}

.am-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--am-pointer-x, 92%) var(--am-pointer-y, 12%), rgba(24, 214, 139, 0.22), transparent 8rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 26%);
  opacity: 0.46;
  transition: opacity 180ms ease, background 180ms ease;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .am-glass,
  .site-header {
    background: rgba(7, 13, 11, 0.94);
  }
}

.am-glow-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--am-line-hot), transparent);
}

.am-button,
.entry-content .am-button,
.button,
button,
input[type="submit"],
.wp-block-button__link {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(24, 214, 139, 0.55);
  border-radius: var(--am-radius-sm);
  background: linear-gradient(180deg, rgba(24, 214, 139, 0.98), rgba(9, 151, 96, 0.98));
  box-shadow: 0 0 26px rgba(24, 214, 139, 0.24);
  color: #03100b;
  font-family: var(--am-font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.am-button::before,
.entry-content .am-button::before,
.button::before,
button::before,
.wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -65%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.am-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
  color: #03100b;
  transform: translateY(-1px);
  box-shadow: 0 0 38px rgba(24, 214, 139, 0.36);
}

.am-button:hover::before,
.entry-content .am-button:hover::before,
.button:hover::before,
button:hover::before,
.wp-block-button__link:hover::before {
  animation: am-button-sheen 760ms ease;
}

.am-button-secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--am-text);
}

.am-button-secondary:hover {
  color: var(--am-text);
}

.am-hero {
  min-height: clamp(560px, 78vh, 740px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 4.5vw, 64px) 0 clamp(32px, 4vw, 56px);
}

.am-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.am-hero__visual {
  --am-hero-image-inset: clamp(10px, 1.25vw, 18px);
  width: min(100%, 640px);
  aspect-ratio: 3 / 2;
  justify-self: end;
  overflow: hidden;
}

.am-hero__visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.78;
  background:
    radial-gradient(circle at 54% 35%, rgba(24, 214, 139, 0.24), transparent 17rem),
    radial-gradient(circle at 72% 65%, rgba(255, 255, 255, 0.16), transparent 12rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 28%);
  filter: blur(24px);
  animation: am-soft-pulse 4.8s ease-in-out infinite alternate;
}

.am-hero__visual::after {
  content: "";
  position: absolute;
  inset: var(--am-hero-image-inset);
  z-index: 2;
  border: 1px solid rgba(219, 255, 241, 0.08);
  border-radius: calc(var(--am-radius-sm) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 24%),
    radial-gradient(ellipse at 50% 96%, rgba(0, 0, 0, 0.42), transparent 46%);
  box-shadow: inset 0 0 52px rgba(0, 0, 0, 0.48);
  opacity: 0.86;
  pointer-events: none;
}

.am-hero__image {
  position: absolute;
  inset: var(--am-hero-image-inset);
  z-index: 1;
  width: calc(100% - (var(--am-hero-image-inset) * 2));
  height: calc(100% - (var(--am-hero-image-inset) * 2));
  border-radius: calc(var(--am-radius-sm) - 2px);
  object-fit: contain;
  filter: saturate(1.12) contrast(1.08) brightness(1.04);
  transform: translate3d(0, 0, 0);
  animation: am-ambient-float 7s ease-in-out infinite alternate;
}

.am-hero__readout {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(219, 255, 241, 0.14);
  border-radius: 999px;
  background: rgba(3, 5, 4, 0.58);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  color: var(--am-green-soft);
  font-family: var(--am-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  padding: 8px 10px;
  text-transform: uppercase;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.am-hero__readout::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--am-green);
  box-shadow: 0 0 16px rgba(24, 214, 139, 0.85);
  animation: am-soft-pulse 1.9s ease-in-out infinite alternate;
}

.am-hero__readout--top {
  left: calc(var(--am-hero-image-inset) + 14px);
  top: calc(var(--am-hero-image-inset) + 14px);
}

.am-hero__readout--bottom {
  left: calc(var(--am-hero-image-inset) + 14px);
  bottom: calc(var(--am-hero-image-inset) + 14px);
}

.am-orbit {
  position: absolute;
  inset: 9% 5% auto auto;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(24, 214, 139, 0.16);
  border-radius: 50%;
  opacity: 0.58;
  animation: am-orbit-drift 12s ease-in-out infinite alternate;
}

.am-orbit::before,
.am-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--am-green);
  box-shadow: 0 0 20px rgba(24, 214, 139, 0.9);
}

.am-orbit::before {
  left: 22px;
  top: 26px;
}

.am-orbit::after {
  right: 30px;
  bottom: 42px;
}

.am-category-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid var(--am-line);
  border-radius: var(--am-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(3, 5, 4, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 86px rgba(0, 0, 0, 0.34);
  padding: 8px;
}

.am-category-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.am-category-intro p,
.am-category-intro span {
  margin: 0;
}

.am-category-intro span {
  color: var(--am-muted);
  font-family: var(--am-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.am-category {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.08), rgba(2, 5, 4, 0.82) 74%),
    radial-gradient(circle at 72% 24%, rgba(24, 214, 139, 0.18), transparent 9rem),
    var(--am-category-image),
    rgba(3, 5, 4, 0.78);
  background-position: center center, center center, var(--am-category-x, 50%) var(--am-category-y, 50%), center center;
  background-size: cover, auto, cover, auto;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.am-category::before {
  content: "";
  position: absolute;
  inset: -15%;
  opacity: 0.38;
  background:
    radial-gradient(circle at var(--am-pointer-x, 66%) var(--am-pointer-y, 32%), rgba(24, 214, 139, 0.22), transparent 9rem),
    linear-gradient(145deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 52%, transparent 68%);
  filter: blur(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.am-category::after {
  content: "Open";
  position: absolute;
  right: 18px;
  bottom: 18px;
  border: 1px solid rgba(219, 255, 241, 0.14);
  border-radius: 999px;
  background: rgba(3, 5, 4, 0.48);
  color: var(--am-green-soft);
  font-family: var(--am-font-display);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.am-category:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.08), rgba(2, 5, 4, 0.82) 74%),
    radial-gradient(circle at 72% 24%, rgba(131, 247, 194, 0.13), transparent 9rem),
    var(--am-category-image),
    rgba(3, 5, 4, 0.78);
  background-position: center center, center center, var(--am-category-x, 50%) var(--am-category-y, 50%), center center;
  background-size: cover, auto, cover, auto;
}

.am-category:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.08), rgba(2, 5, 4, 0.82) 74%),
    radial-gradient(circle at 72% 24%, rgba(212, 247, 169, 0.12), transparent 9rem),
    var(--am-category-image),
    rgba(3, 5, 4, 0.78);
  background-position: center center, center center, var(--am-category-x, 50%) var(--am-category-y, 50%), center center;
  background-size: cover, auto, cover, auto;
}

.am-category h3 {
  position: relative;
  width: 100%;
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2.5rem);
}

.am-category span,
.am-chip {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid var(--am-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--am-green-soft);
  font-family: var(--am-font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  padding: 7px 10px;
  text-transform: uppercase;
}

.am-category:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 214, 139, 0.42);
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0), rgba(2, 5, 4, 0.72) 74%),
    radial-gradient(circle at 72% 24%, rgba(24, 214, 139, 0.22), transparent 10rem),
    var(--am-category-image),
    rgba(3, 5, 4, 0.78);
  background-position: center center, center center, var(--am-category-x, 50%) var(--am-category-y, 50%), center center;
  background-size: cover, auto, cover, auto;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3), 0 0 28px rgba(24, 214, 139, 0.08);
}

.am-category:hover::before {
  opacity: 0.62;
  transform: translate3d(2%, -2%, 0);
}

.am-category:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.am-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.am-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.am-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.am-card::before,
.am-shop-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 34%),
    radial-gradient(circle at 16% 0%, rgba(24, 214, 139, 0.12), transparent 12rem);
  opacity: 0.72;
}

.am-card:hover {
  transform: translateY(-3px);
  border-color: var(--am-line-hot);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 28px 92px rgba(0, 0, 0, 0.52),
    0 0 44px rgba(24, 214, 139, 0.13);
}

.am-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease var(--am-reveal-delay, 0ms),
    transform 520ms ease var(--am-reveal-delay, 0ms);
}

.am-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.am-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 245px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(24, 214, 139, 0.19), transparent 11rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.am-card__image::after {
  content: "Research use";
  position: absolute;
  right: 12px;
  top: 12px;
  border: 1px solid rgba(219, 255, 241, 0.22);
  border-radius: 999px;
  background: rgba(3, 5, 4, 0.58);
  color: var(--am-green-soft);
  font-family: var(--am-font-display);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.am-card__image a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.am-card:hover .am-card__image::after {
  border-color: rgba(24, 214, 139, 0.55);
  color: var(--am-text);
  transform: translateY(-1px);
}

.am-card__image img {
  display: block;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.08) brightness(1.08);
  transform: scale(1);
  transition: transform 220ms ease, filter 220ms ease;
}

.am-card:hover .am-card__image img {
  filter: saturate(1.16) contrast(1.12) brightness(1.1);
  transform: scale(1.04);
}

.am-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 190px;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.am-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--am-line);
  background: var(--am-line);
}

.am-stat {
  min-height: 132px;
  padding: 24px;
  background: rgba(3, 5, 4, 0.72);
  transition: background 180ms ease, transform 180ms ease;
}

.am-stat:hover {
  background: rgba(6, 18, 14, 0.84);
  transform: translateY(-2px);
}

.am-stat strong {
  display: block;
  color: var(--am-green-soft);
  font-family: var(--am-font-display);
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

.am-stat span {
  color: var(--am-muted);
}

.am-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.am-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.am-card h3 a:hover,
.am-card h3 a:focus-visible {
  color: var(--am-green-soft);
  text-shadow: 0 0 18px rgba(24, 214, 139, 0.2);
}

.am-price {
  margin-top: auto;
  color: var(--am-green-soft);
  font-family: var(--am-font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.am-shop-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
}

.am-narrow-panel {
  max-width: 820px;
}

.am-copy h2,
.am-shop-panel h2 {
  margin: 28px 0 10px;
  color: var(--am-text);
  font-family: var(--am-font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.am-copy p,
.am-shop-panel > p:not(.am-kicker) {
  max-width: 72ch;
}

.am-page-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}

.am-page-head h1,
.am-page-head p {
  margin-bottom: 0;
}

.am-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.am-note {
  min-height: 110px;
  border: 1px solid var(--am-line-soft);
  border-radius: var(--am-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.am-note:hover {
  border-color: var(--am-line-hot);
  background: rgba(24, 214, 139, 0.06);
  transform: translateY(-2px);
}

.am-note strong {
  display: block;
  color: var(--am-text);
  font-family: var(--am-font-display);
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.am-newsletter {
  background:
    radial-gradient(circle at 78% 50%, rgba(255, 255, 255, 0.18), transparent 13rem),
    linear-gradient(120deg, rgba(24, 214, 139, 0.95), rgba(5, 121, 77, 0.92));
  color: #03100b;
}

.am-newsletter .am-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
}

.am-newsletter h2,
.am-newsletter p {
  color: #03100b;
}

.am-newsletter form,
.am-form-row {
  display: flex;
  gap: 10px;
}

input,
textarea,
select {
  min-height: 42px;
  border: 1px solid var(--am-line);
  border-radius: var(--am-radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: var(--am-text);
  padding: 11px 12px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

label {
  color: var(--am-text);
  font-weight: 600;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--am-line-hot);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 0 0 3px rgba(24, 214, 139, 0.14);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(244, 255, 249, 0.5);
}

.am-newsletter input {
  flex: 1;
  border-color: rgba(3, 16, 11, 0.34);
  background: rgba(3, 16, 11, 0.22);
  color: #03100b;
}

.am-newsletter input::placeholder {
  color: rgba(3, 16, 11, 0.58);
}

.am-newsletter input:focus {
  border-color: rgba(3, 16, 11, 0.58);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(3, 16, 11, 0.16);
}

.am-footer {
  border-top: 1px solid var(--am-line);
  padding: 52px 0;
  background: rgba(0, 0, 0, 0.68);
}

.am-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(120px, 0.5fr));
  gap: 28px;
}

.am-footer a {
  display: block;
  margin: 8px 0;
  color: var(--am-muted);
  text-decoration: none;
}

.am-footer a:hover {
  color: var(--am-green);
}

.am-logo {
  color: var(--am-text);
  font-family: var(--am-font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.am-age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 35%, rgba(24, 214, 139, 0.22), transparent 18rem),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.am-age-gate.is-active {
  display: grid;
}

.am-age-gate__panel {
  max-width: 480px;
  padding: 32px;
  text-align: center;
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.am-age-gate.is-active .am-age-gate__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.am-age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.fluent_cart,
.fluentaffiliate,
.fluent-affiliate,
.fc-wrapper,
.fc-checkout,
.fc-cart,
.woocommerce,
.wp-block-search,
.wp-block-loginout {
  color: var(--am-text);
}

.fluent_cart input,
.fluent_cart select,
.fluent_cart textarea,
.fluentaffiliate input,
.fluentaffiliate select,
.fluentaffiliate textarea,
.fc-wrapper input,
.fc-wrapper select,
.fc-wrapper textarea {
  background: rgba(255, 255, 255, 0.07) !important;
  color: var(--am-text) !important;
}

.fluent_cart,
.fluentaffiliate,
.fluent-affiliate,
.fc-wrapper,
.fc-cart,
.fc-checkout {
  border: 1px solid var(--am-line);
  border-radius: var(--am-radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 11, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  padding: clamp(18px, 3vw, 28px);
}

.fluent_cart table,
.fc-wrapper table,
.fc-cart table {
  border-color: var(--am-line) !important;
  color: var(--am-text) !important;
}

.fluent_cart th,
.fluent_cart td,
.fc-wrapper th,
.fc-wrapper td,
.fc-cart th,
.fc-cart td {
  border-color: var(--am-line-soft) !important;
}

.fluent_cart button,
.fc-wrapper button,
.fc-cart button,
.fc-checkout button,
.fluentaffiliate button {
  min-height: 42px !important;
}

.am-cart-launcher {
  position: fixed;
  right: clamp(16px, 2.2vw, 32px);
  bottom: clamp(16px, 2.2vw, 32px);
  z-index: 9997;
}

.am-cart-launcher .fct-mini-cart-button,
.am-fct-card-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px !important;
  border: 1px solid rgba(41, 255, 160, 0.42) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(30, 255, 154, 0.92), rgba(3, 152, 90, 0.95)) !important;
  color: #04100b !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.36),
    0 0 26px rgba(0, 214, 126, 0.18) !important;
  font-family: var(--am-display) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  padding: 0 18px !important;
  text-transform: uppercase !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.am-cart-launcher .fct-mini-cart-button {
  min-width: 138px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(6, 15, 12, 0.82) !important;
  color: var(--am-text) !important;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.am-cart-launcher .fct-mini-cart-button:hover,
.am-fct-card-button:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 255, 210, 0.74) !important;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.44),
    0 0 36px rgba(0, 214, 126, 0.28) !important;
}

.am-cart-launcher .fct-mini-cart-wrap {
  position: relative;
  display: inline-flex;
}

.am-cart-launcher .fct-mini-cart-wrap svg {
  width: 21px;
  height: 21px;
}

.am-cart-launcher .fct-mini-cart-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--am-green);
  color: #02100a;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.am-cart-launcher .fct-mini-cart-amount {
  color: inherit !important;
  font-family: var(--am-display);
  font-weight: 700;
}

.am-card .fct-admin-notice {
  color: var(--am-muted);
}

.fct-cart-drawer-overlay {
  background: rgba(0, 0, 0, 0.68) !important;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.fct-cart-drawer {
  border-left: 1px solid rgba(85, 255, 179, 0.32) !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(22, 239, 142, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(20, 31, 27, 0.94), rgba(3, 7, 6, 0.98)) !important;
  color: var(--am-text) !important;
  box-shadow: -34px 0 90px rgba(0, 0, 0, 0.56) !important;
}

.fct-cart-drawer-header,
.fct-cart-drawer-footer {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.fct-cart-drawer-header .title,
.fct-cart-drawer h5,
.fct-cart-drawer h3 {
  color: var(--am-text) !important;
  font-family: var(--am-display) !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.fct-cart-drawer a,
.fct-cart-drawer button {
  border-radius: 8px !important;
}

.fct-cart-drawer-footer-actions a,
.fct-cart-drawer-footer-actions button {
  background: var(--am-green) !important;
  color: #03120b !important;
  font-family: var(--am-display) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
}

.am-empty-cart-drawer__body {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 62vh;
  padding: 34px;
}

.am-empty-cart-drawer__body h3 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 0.94;
}

.am-empty-cart-drawer__body p:not(.am-kicker) {
  max-width: 34ch;
  margin: 0;
  color: var(--am-muted);
}

.kadence-svg-iconset svg {
  color: currentColor;
}

@media (max-width: 960px) {
  .am-hero__grid,
  .am-newsletter .am-shell,
  .am-footer__grid {
    grid-template-columns: 1fr;
  }

  .am-category-grid,
  .am-products,
  .am-stat-strip,
  .am-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .am-page-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .am-shell {
    width: min(100% - 24px, var(--am-max));
  }

  .am-hero {
    min-height: auto;
    padding: 32px 0 40px;
  }

  .am-hero__grid {
    gap: 22px;
  }

  .am-hero h1 {
    font-size: clamp(2.35rem, 12.4vw, 3.35rem);
  }

  .am-hero__visual {
    --am-hero-image-inset: 10px;
    width: 100%;
    order: -1;
    justify-self: stretch;
  }

  .am-hero__readout {
    font-size: 0.64rem;
    padding: 7px 8px;
  }

  .am-hero__readout--top {
    left: 18px;
    top: 18px;
  }

  .am-hero__readout--bottom {
    left: 18px;
    bottom: 18px;
  }

  .am-category-grid,
  .am-products,
  .am-stat-strip,
  .am-note-grid {
    grid-template-columns: 1fr;
  }

  .am-category {
    min-height: 178px;
  }

  .am-card {
    min-height: auto;
  }

  .am-newsletter form,
  .am-form-row,
  .am-age-gate__actions {
    flex-direction: column;
  }

  .am-button,
  .entry-content .am-button,
  .button,
  button,
  input[type="submit"],
  .wp-block-button__link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .am-reveal {
    opacity: 1;
    transform: none;
  }

  .am-hero__image {
    transform: scale(0.96);
  }
}
