/* Planet of Memes — main stylesheet */
:root {
  --pom-bg: #0a0a1a;
  --pom-bg-elevated: #12122a;
  --pom-surface: #161633;
  --pom-surface-2: #1c1c40;
  --pom-fg: #f4f4f8;
  --pom-fg-muted: #a8a8c0;
  --pom-fg-subtle: #6e6e8a;
  --pom-border: #2a2a4a;
  --pom-border-strong: #3d3d66;
  --pom-primary: #e8362e;
  --pom-primary-fg: #ffffff;
  --pom-accent: #22d3ee;
  --pom-accent-fg: #041016;
  --pom-gold: #fbbf24;
  --pom-magenta: #e879f9;
  --pom-orange: #f97316;
  --pom-radius: 0.875rem;
  --pom-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --pom-header-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --pom-font: "Inter", system-ui, -apple-system, sans-serif;
  --pom-display: "Bebas Neue", "Arial Black", Impact, sans-serif;
  --pom-max: 80rem;
}

html.pom-light {
  --pom-bg: #f6f6fb;
  --pom-bg-elevated: #ffffff;
  --pom-surface: #ffffff;
  --pom-surface-2: #ececf6;
  --pom-fg: #0f0f1c;
  --pom-fg-muted: #4a4a66;
  --pom-fg-subtle: #6e6e8a;
  --pom-border: #d8d8ea;
  --pom-border-strong: #b8b8d0;
  --pom-shadow: 0 10px 28px rgba(15, 15, 40, 0.08);
  --pom-header-shadow: 0 8px 24px rgba(15, 15, 40, 0.08);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body.pom-theme {
  margin: 0;
  min-height: 100vh;
  font-family: var(--pom-font);
  background: var(--pom-bg);
  color: var(--pom-fg);
  line-height: 1.5;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 54, 46, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(34, 211, 238, 0.08), transparent);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--pom-accent);
}

button,
[role="button"] {
  cursor: pointer;
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--pom-accent);
  outline-offset: 2px;
}

.pom-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.pom-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--pom-accent);
  color: var(--pom-accent-fg);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}
.pom-skip:focus {
  left: 1rem;
  top: 1rem;
}

.pom-container {
  width: 100%;
  max-width: var(--pom-max);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .pom-container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pom-container {
    padding-inline: 2rem;
  }
}

.pom-display {
  font-family: var(--pom-display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-weight: 400;
}

/* Sticky header */
.pom-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--pom-border) 80%, transparent);
  background: color-mix(in srgb, var(--pom-bg) 85%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--pom-header-shadow);
}

.pom-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: 4rem;
}
@media (min-width: 640px) {
  .pom-header-inner {
    height: 4.25rem;
  }
}

.pom-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-shrink: 0;
}
.pom-logo img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--pom-primary) 40%, transparent);
}
@media (min-width: 640px) {
  .pom-logo img {
    width: 3rem;
    height: 3rem;
  }
}
.pom-logo-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}
@media (min-width: 640px) {
  .pom-logo-text {
    display: flex;
  }
}
.pom-logo-title {
  font-family: var(--pom-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}
.pom-logo-tag {
  margin-top: 0.2rem;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pom-fg-muted);
}

.pom-nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .pom-nav-desktop {
    display: flex;
  }
}
.pom-nav-desktop a,
.pom-nav-desktop .menu-item a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pom-fg-muted);
  transition: color 0.15s, background 0.15s;
}
.pom-nav-desktop a:hover,
.pom-nav-desktop .menu-item a:hover,
.pom-nav-desktop .current-menu-item a {
  color: var(--pom-primary);
  background: color-mix(in srgb, var(--pom-primary) 15%, transparent);
}
.pom-nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.pom-header-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.pom-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 0.375rem;
  background: transparent;
  color: var(--pom-fg-muted);
  transition: background 0.15s, color 0.15s;
}
.pom-icon-btn:hover {
  background: var(--pom-surface-2);
  color: var(--pom-fg);
}

.pom-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.pom-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  color: var(--pom-fg-muted);
}
.pom-social-link:hover {
  background: var(--pom-surface-2);
  color: var(--pom-accent);
}
.pom-header-social {
  display: none;
}
@media (min-width: 1024px) {
  .pom-header-social {
    display: block;
  }
}

.pom-menu-toggle {
  display: inline-flex;
}
@media (min-width: 768px) {
  .pom-menu-toggle {
    display: none;
  }
}

.pom-search-bar {
  border-top: 1px solid var(--pom-border);
  padding: 0.75rem 0;
}
.pom-search-bar form {
  display: flex;
  gap: 0.5rem;
}
.pom-search-bar input[type="search"],
.pom-input,
.pom-contact-form input,
.pom-contact-form textarea {
  flex: 1;
  width: 100%;
  height: 2.5rem;
  border: 1px solid var(--pom-border);
  border-radius: 0.375rem;
  background: var(--pom-bg-elevated);
  color: var(--pom-fg);
  padding: 0 0.75rem;
  font-size: 0.875rem;
}
.pom-contact-form textarea {
  height: auto;
  padding: 0.75rem;
  resize: vertical;
}

.pom-mobile-nav {
  display: none;
  position: fixed;
  inset: 4rem 0 0 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  padding: 1.5rem 0;
}
.pom-mobile-nav.is-open {
  display: block;
}
@media (min-width: 768px) {
  .pom-mobile-nav {
    display: none !important;
  }
}
.pom-mobile-nav a,
.pom-mobile-nav .menu-item a {
  display: block;
rgb(10 10 26 / 0.25);
	padding: 0.9rem 1rem;
  border-radius: 0.0rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pom-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Main */
.pom-main {
  flex: 1;
  padding-bottom: 3rem;
}

/* Buttons */
.pom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}
.pom-btn:active {
  transform: scale(0.98);
}
.pom-btn-primary {
  background: var(--pom-primary);
  color: var(--pom-primary-fg);
}
.pom-btn-primary:hover {
  background: color-mix(in srgb, var(--pom-primary) 90%, #000);
  color: var(--pom-primary-fg);
}
.pom-btn-accent {
  background: var(--pom-accent);
  color: var(--pom-accent-fg);
}
.pom-btn-accent:hover {
  color: var(--pom-accent-fg);
  filter: brightness(1.05);
}
.pom-btn-gold {
  background: var(--pom-gold);
  color: #0a0a1a;
}
.pom-btn-outline {
  background: transparent;
  border-color: var(--pom-border);
  color: var(--pom-fg);
}
.pom-btn-outline:hover {
  border-color: var(--pom-accent);
  color: var(--pom-accent);
}
.pom-btn-lg {
  min-height: 3rem;
  padding: 0.65rem 1.35rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}

/* Pills */
.pom-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.15rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--pom-surface-2);
  color: var(--pom-fg-muted);
}
.pom-pill-politics,
.pom-pill-health {
  background: color-mix(in srgb, var(--pom-primary) 20%, transparent);
  color: var(--pom-primary);
}
.pom-pill-crypto {
  background: color-mix(in srgb, var(--pom-gold) 20%, transparent);
  color: var(--pom-gold);
}
.pom-pill-ai,
.pom-pill-tech,
.pom-pill-society {
  background: color-mix(in srgb, var(--pom-accent) 20%, transparent);
  color: var(--pom-accent);
}
.pom-pill-culture {
  background: color-mix(in srgb, var(--pom-orange) 20%, transparent);
  color: var(--pom-orange);
}
.pom-pill-memes {
  background: color-mix(in srgb, var(--pom-magenta) 20%, transparent);
  color: var(--pom-magenta);
}
.pom-pill-featured {
  background: var(--pom-primary);
  color: var(--pom-primary-fg);
}

/* Cards / grid */
.pom-card {
  background: var(--pom-bg-elevated);
  border: 1px solid var(--pom-border);
  border-radius: var(--pom-radius);
  box-shadow: var(--pom-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s;
}
.pom-card:hover {
  transform: translateY(-2px);
  border-color: var(--pom-border-strong);
}
.pom-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--pom-surface-2);
}
.pom-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.pom-card:hover .pom-card-media img {
  transform: scale(1.03);
}
.pom-card-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
}
.pom-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.15rem 1.15rem;
  flex: 1;
}
.pom-card-title {
  font-family: var(--pom-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0;
}
.pom-card-title a:hover {
  color: var(--pom-primary);
}
.pom-card-excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  color: var(--pom-fg-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pom-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid var(--pom-border);
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--pom-fg-subtle);
}
.pom-card-meta a {
  font-weight: 600;
  color: var(--pom-accent);
}

.pom-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .pom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pom-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Featured hero */
.pom-hero {
  padding: 1.5rem 0 1rem;
}
@media (min-width: 640px) {
  .pom-hero {
    padding: 2.5rem 0 1.25rem;
  }
}
.pom-hero-card {
  display: grid;
  overflow: hidden;
  background: var(--pom-bg-elevated);
  border: 1px solid var(--pom-border);
  border-radius: var(--pom-radius);
  box-shadow: var(--pom-shadow);
}
@media (min-width: 1024px) {
  .pom-hero-card {
    grid-template-columns: 1fr 1fr;
  }
}
.pom-hero-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--pom-surface-2);
}
@media (min-width: 1024px) {
  .pom-hero-media {
    aspect-ratio: auto;
    min-height: 22rem;
  }
}
.pom-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pom-hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .pom-hero-body {
    padding: 2rem 2.5rem;
  }
}
.pom-hero-title {
  font-family: var(--pom-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0;
}
.pom-hero-title a:hover {
  color: var(--pom-primary);
}
.pom-hero-excerpt {
  margin: 0;
  color: var(--pom-fg-muted);
  font-size: 1.05rem;
}
.pom-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

/* Sections */
.pom-section {
  padding: 1rem 0 2rem;
}
.pom-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.pom-section-title {
  font-family: var(--pom-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: 0.02em;
  margin: 0;
}
.pom-section-sub {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--pom-fg-muted);
}

.pom-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0 1rem;
}
.pom-filters a,
.pom-filters button {
  border: 0;
  background: var(--pom-surface-2);
  color: var(--pom-fg-muted);
}
.pom-filters a.is-active,
.pom-filters a:hover {
  background: var(--pom-primary);
  color: var(--pom-primary-fg);
}

/* Single */
.pom-single-header {
  border-bottom: 1px solid var(--pom-border);
  background: color-mix(in srgb, var(--pom-bg-elevated) 50%, transparent);
  padding: 2rem 0 2.5rem;
}
.pom-single-header .pom-container {
  max-width: 56rem;
}
.pom-single-title {
  font-family: var(--pom-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0.75rem 0 1rem;
}
.pom-single-excerpt {
  color: var(--pom-fg-muted);
  font-size: 1.125rem;
  margin: 0;
}
.pom-single-meta {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--pom-fg-subtle);
}
.pom-single-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.pom-single-content .pom-featured {
  border-radius: var(--pom-radius);
  overflow: hidden;
  border: 1px solid var(--pom-border);
  margin-bottom: 2rem;
}
.pom-single-content .pom-featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.pom-prose {
  max-width: 42rem;
  color: var(--pom-fg-muted);
}
.pom-prose p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
.pom-disclaimer {
  margin-top: 2rem;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid color-mix(in srgb, var(--pom-gold) 30%, transparent);
  background: color-mix(in srgb, var(--pom-gold) 5%, transparent);
  font-size: 0.875rem;
  color: var(--pom-fg-muted);
}
.pom-disclaimer strong {
  color: var(--pom-gold);
}

/* Shop */
.pom-page-hero {
  border-bottom: 1px solid var(--pom-border);
  background: color-mix(in srgb, var(--pom-bg-elevated) 40%, transparent);
  padding: 2.5rem 0;
}
.pom-page-hero h1 {
  font-family: var(--pom-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.02em;
  margin: 0.35rem 0;
}
.pom-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--pom-accent);
  margin: 0;
}
.pom-product-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
@media (min-width: 640px) {
  .pom-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pom-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pom-product-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--pom-surface-2);
}
.pom-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pom-product-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.pom-product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pom-gold);
}
.pom-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid var(--pom-border);
  padding-top: 0.75rem;
  margin-top: auto;
}

/* POMCOIN */
.pom-pomcoin-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--pom-border);
  padding: 3.5rem 0;
}
.pom-pomcoin-hero-bg {
  position: absolute;
  inset: 0;
}
.pom-pomcoin-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.pom-pomcoin-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--pom-bg) 40%, transparent), var(--pom-bg));
}
.pom-pomcoin-hero .pom-container {
  position: relative;
}
.pom-pomcoin-hero h1 {
  font-family: var(--pom-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  letter-spacing: 0.02em;
  margin: 0.25rem 0;
}
.pom-ca-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .pom-ca-box {
    flex-direction: row;
    align-items: center;
  }
}
.pom-ca-box code {
  flex: 1;
  word-break: break-all;
  font-size: 0.8rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--pom-border);
  background: var(--pom-bg);
  color: var(--pom-accent);
}
.pom-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pom-border);
  border-radius: var(--pom-radius);
}
.pom-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.875rem;
  text-align: left;
}
.pom-table th {
  background: var(--pom-surface-2);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pom-fg-subtle);
}
.pom-table td {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--pom-border);
  color: var(--pom-fg-muted);
}
.pom-table td:first-child {
  font-weight: 700;
  color: var(--pom-gold);
}
.pom-two-col {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .pom-two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.pom-panel {
  background: var(--pom-bg-elevated);
  border: 1px solid var(--pom-border);
  border-radius: var(--pom-radius);
  padding: 1.5rem;
  box-shadow: var(--pom-shadow);
}
@media (min-width: 640px) {
  .pom-panel {
    padding: 2rem;
  }
}
.pom-panel h2 {
  font-family: var(--pom-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
}
.pom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.pom-prize-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pom-prize-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pom-prize-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer */
.pom-footer {
  margin-top: auto;
  border-top: 1px solid var(--pom-border);
  background: var(--pom-bg-elevated);
  padding: 3rem 0 2rem;
}
.pom-footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .pom-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pom-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
.pom-footer h2,
.pom-footer h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}
.pom-footer p {
  color: var(--pom-fg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.pom-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pom-footer-links li {
  margin-bottom: 0.55rem;
}
.pom-footer-links a {
  color: var(--pom-fg-muted);
  font-size: 0.875rem;
}
.pom-footer-links a:hover {
  color: var(--pom-accent);
}
.pom-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--pom-border);
}
.pom-footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--pom-fg-subtle);
  margin: 1rem 0 0;
}
.pom-newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .pom-newsletter {
    flex-direction: row;
  }
}

/* Pagination */
.pom-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0 0;
}
.pom-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pom-pagination a,
.pom-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--pom-border);
  font-size: 0.875rem;
  font-weight: 600;
}
.pom-pagination .current {
  background: var(--pom-primary);
  border-color: var(--pom-primary);
  color: var(--pom-primary-fg);
}

/* Contact */
.pom-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin-top: 1.5rem;
}
.pom-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.pom-form-note {
  font-size: 0.8rem;
  color: var(--pom-fg-subtle);
  margin: 0;
}

/* Banner */
.pom-support-banner {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--pom-primary) 30%, transparent);
  background: color-mix(in srgb, var(--pom-primary) 10%, transparent);
  font-size: 0.875rem;
}

/* WooCommerce light polish */
.woocommerce ul.products {
  display: grid !important;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.woocommerce ul.products li.product {
  border: 1px solid var(--pom-border);
  border-radius: var(--pom-radius);
  background: var(--pom-bg-elevated);
  padding: 1rem !important;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
