/**
 * Hera Swimwear — Global styles (quiet luxury)
 * Scope: .hera-swimwear … Paste once in Appearance → Customize → Additional CSS
 * No external fonts — uses system / Georgia stack for editorial feel
 */

.hera-swimwear {
  --hera-ink: #1a1714;
  --hera-ink-mid: #3d3830;
  --hera-ink-light: #6b6358;
  --hera-sand: #f5f0e8;
  --hera-cream: #fdfaf6;
  --hera-gold: #b89a6a;
  --hera-gold-pale: #f0e6d4;
  --hera-border: rgba(90, 70, 50, 0.12);
  --hera-max: 42rem;
  --hera-wide: 72rem;
  color: var(--hera-ink-mid);
  background: var(--hera-cream);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.hera-skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--hera-ink);
  color: var(--hera-sand);
  text-decoration: none;
}
.hera-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.hera-header {
  border-bottom: 1px solid var(--hera-border);
  background: var(--hera-cream);
}
.hera-header-inner {
  max-width: var(--hera-wide);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hera-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hera-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hera-brand:hover,
.hera-brand:focus {
  color: var(--hera-gold);
}
.hera-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}
.hera-nav a {
  color: var(--hera-ink-light);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.hera-nav a:hover,
.hera-nav a:focus {
  color: var(--hera-ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.hera-lang {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hera-gold);
}

/* Mobile drawer nav */
.hera-nav-toggle,
.hera-nav-close,
.hera-nav-overlay,
.hera-nav-drawer-head {
  display: none;
}

@media (max-width: 899px) {
  .hera-header-inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .hera-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--hera-border);
    background: #fff;
    color: var(--hera-ink);
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 2px;
  }
  .hera-nav-toggle:focus-visible {
    outline: 2px solid var(--hera-gold);
    outline-offset: 2px;
  }

  .hera-nav-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 18px;
    height: 14px;
  }
  .hera-nav-toggle-bar {
    display: block;
    height: 1.5px;
    width: 100%;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  body.hera-nav-open .hera-nav-toggle-bar:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  body.hera-nav-open .hera-nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  body.hera-nav-open .hera-nav-toggle-bar:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hera-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(26, 23, 20, 0.48);
    /* No backdrop-filter: on iOS it can leave the whole page looking blurred. */
  }
  body.hera-nav-open .hera-nav-overlay {
    display: block;
  }
  .hera-nav-overlay[hidden] {
    display: none !important;
  }

  .hera-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 190;
    width: min(88vw, 21.5rem);
    height: 100dvh;
    max-height: 100vh;
    margin: 0;
    padding: 0 0 1.5rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--hera-cream);
    border-left: 1px solid var(--hera-border);
    box-shadow: -12px 0 40px rgba(26, 23, 20, 0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
  }
  body.hera-nav-open .hera-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .hera-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--hera-border);
    position: sticky;
    top: 0;
    background: var(--hera-cream);
    z-index: 1;
  }
  .hera-nav-drawer-brand {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hera-ink);
  }
  .hera-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--hera-ink);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
  }
  .hera-nav-close:focus-visible {
    outline: 2px solid var(--hera-gold);
    outline-offset: 2px;
  }

  .hera-nav > a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hera-ink);
    border-bottom: 1px solid var(--hera-border);
    text-decoration: none;
  }
  .hera-nav > a:hover,
  .hera-nav > a:focus {
    background: var(--hera-sand);
    text-decoration: none;
    color: var(--hera-ink);
  }
  .hera-nav > a[aria-current="page"] {
    color: var(--hera-gold);
    background: rgba(184, 154, 106, 0.08);
  }
  .hera-nav > a.hera-nav-catalog {
    margin: 1rem 1.15rem 0;
    padding: 0.9rem 1rem;
    text-align: center;
    background: var(--hera-ink);
    color: var(--hera-cream);
    border: none;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
  .hera-nav > a.hera-nav-catalog:hover,
  .hera-nav > a.hera-nav-catalog:focus {
    background: #2d2822;
    color: #fff;
  }
  .hera-nav > a.hera-lang {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--hera-gold);
    border-bottom: none;
  }
}

@media (min-width: 900px) {
  .hera-nav-drawer-head {
    display: none !important;
  }
}

/* Main */
.hera-main {
  max-width: var(--hera-wide);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.hera-hero {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--hera-border);
}
.hera-eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hera-gold);
  margin: 0 0 1rem;
}
.hera-h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--hera-ink);
  margin: 0 0 1rem;
}
.hera-lead {
  font-size: 1.0625rem;
  color: var(--hera-ink-light);
  max-width: var(--hera-max);
  margin: 0;
}

.hera-section {
  margin-bottom: 2.5rem;
}
.hera-h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--hera-ink);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.hera-h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hera-gold);
  margin: 1.75rem 0 0.5rem;
}
.hera-section p {
  margin: 0 0 1rem;
  max-width: var(--hera-max);
}
.hera-section ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  max-width: var(--hera-max);
}
.hera-section li {
  margin-bottom: 0.35rem;
}

/* Editorial highlight (optional aside block) */
.hera-highlight,
.hera-entity {
  background: var(--hera-sand);
  border: 1px solid var(--hera-border);
  padding: 1.25rem 1.35rem;
  margin: 2rem 0;
  max-width: var(--hera-max);
}
.hera-entity h2.hera-h2 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.hera-entity dl {
  margin: 0;
  display: grid;
  gap: 0.5rem 1rem;
}
.hera-entity dt {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hera-ink-light);
}
.hera-entity dd {
  margin: 0;
  color: var(--hera-ink-mid);
}

.hera-h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 1.25rem 0 0.5rem;
  color: var(--hera-ink);
}

.hera-facts-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  max-width: var(--hera-max);
}
.hera-facts-list li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  color: var(--hera-ink-mid);
}

/* FAQ */
.hera-faq details {
  border-bottom: 1px solid var(--hera-border);
  padding: 0.85rem 0;
}
.hera-faq summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--hera-ink);
  list-style: none;
}
.hera-faq summary::-webkit-details-marker {
  display: none;
}
.hera-faq details[open] summary {
  margin-bottom: 0.5rem;
}
.hera-faq p {
  margin: 0;
  font-size: 0.9375rem;
}

/* CTA band */
.hera-cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--hera-ink);
  color: var(--hera-sand);
  text-align: center;
}
.hera-cta p,
.hera-cta-lead {
  margin: 0 0 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--hera-sand);
}
.hera-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.hera-cta a,
.hera-cta-btn {
  display: inline-block;
  color: var(--hera-cream);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.hera-cta a:hover,
.hera-cta a:focus,
.hera-cta-btn:hover,
.hera-cta-btn:focus {
  background: rgba(255, 255, 255, 0.08);
}
.hera-cta a.hera-cta-btn--primary,
.hera-cta-btn--primary {
  background: #fdfaf6;
  color: #1a1714;
  border-color: #fdfaf6;
}
.hera-cta a.hera-cta-btn--primary:hover,
.hera-cta a.hera-cta-btn--primary:focus,
.hera-cta-btn--primary:hover,
.hera-cta-btn--primary:focus {
  background: #ffffff;
  color: #1a1714;
}

/* Contact channels */
.hera-channels {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.hera-channels li {
  margin: 0 0 0.85rem;
  padding-left: 0;
}
.hera-channels a {
  color: var(--hera-ink);
  font-weight: 500;
}
.hera-channels span {
  display: block;
  font-size: 0.875rem;
  color: var(--hera-ink-light);
  margin-top: 0.15rem;
}

/* Brand mark in header */
.hera-brand-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* Hero visual (legacy pages) */
.hera-hero-media {
  margin: 1.5rem 0 0;
  max-width: var(--hera-max);
}
.hera-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

/* —— Homepage landing (editorial / sport-luxury) —— */
.hera-main--home {
  padding-top: 0;
}

.hera-landing {
  display: grid;
  gap: 2rem;
  margin: 0 -1.25rem 3rem;
  padding: 2.5rem 1.25rem 3rem;
  background: linear-gradient(165deg, var(--hera-cream) 0%, var(--hera-sand) 55%, var(--hera-gold-pale) 100%);
  border-bottom: 1px solid var(--hera-border);
}
@media (min-width: 900px) {
  .hera-landing {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 3rem;
    padding: 3.5rem 2rem 4rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(2rem, calc(50vw - 36rem));
    padding-right: max(2rem, calc(50vw - 36rem));
  }
}

.hera-landing-copy {
  max-width: 34rem;
}
.hera-landing .hera-h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1.15rem;
}
.hera-landing .hera-lead {
  max-width: none;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.hera-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hera-cta-btn--hero {
  display: inline-block;
  padding: 0.85rem 1.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hera-cta-btn--hero.hera-cta-btn--primary {
  background: var(--hera-ink);
  color: var(--hera-cream);
  border-color: var(--hera-ink);
}
.hera-cta-btn--hero.hera-cta-btn--primary:hover,
.hera-cta-btn--hero.hera-cta-btn--primary:focus {
  background: #2d2822;
  color: #fff;
}
.hera-cta-btn--ghost {
  background: transparent;
  color: var(--hera-ink);
  border-color: var(--hera-ink);
}
.hera-cta-btn--ghost:hover,
.hera-cta-btn--ghost:focus {
  background: rgba(26, 23, 20, 0.06);
}

.hera-landing-chips {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hera-landing-chips li {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--hera-border);
  background: rgba(253, 250, 246, 0.7);
  color: var(--hera-ink-light);
}

.hera-landing-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0.65rem;
  min-height: 320px;
}
@media (min-width: 900px) {
  .hera-landing-mosaic {
    min-height: 440px;
  }
}
.hera-mosaic-cell {
  overflow: hidden;
  border-radius: 2px;
  background: var(--hera-sand);
  position: relative;
}
.hera-mosaic-cell--a {
  grid-row: span 2;
}
.hera-mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100%;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s ease;
}
.hera-mosaic-cell img.hera-mosaic-fade {
  opacity: 0.15;
}
.hera-landing-visual:hover .hera-mosaic-cell img {
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .hera-landing-visual:hover .hera-mosaic-cell img {
    transform: scale(1.03);
  }
}

/* Live catalog showcase */
.hera-showcase {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--hera-border);
}
.hera-showcase-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.75rem;
}
.hera-showcase-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--hera-ink);
  margin: 0.35rem 0 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hera-showcase-all {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hera-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--hera-gold);
  padding-bottom: 0.15rem;
}
.hera-showcase-all:hover,
.hera-showcase-all:focus {
  color: var(--hera-gold);
}

.hera-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.65rem;
}
@media (min-width: 640px) {
  .hera-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
}
@media (min-width: 1024px) {
  .hera-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 1.15rem;
  }
  .hera-product-card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .hera-product-card--feature .hera-product-card-media {
    aspect-ratio: 4 / 5;
  }
}

.hera-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--hera-border);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hera-product-card:hover,
.hera-product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 23, 20, 0.08);
  outline: none;
}
.hera-product-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--hera-sand);
}
.hera-product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hera-product-card:hover .hera-product-card-media img,
.hera-product-card:focus-visible .hera-product-card-media img {
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .hera-product-card:hover .hera-product-card-media img,
  .hera-product-card:focus-visible .hera-product-card-media img {
    transform: scale(1.05);
  }
}
.hera-product-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--hera-sand), var(--hera-gold-pale));
}
.hera-product-card-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  background: rgba(26, 23, 20, 0.88);
  color: var(--hera-cream);
}
.hera-product-card-body {
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.hera-product-card-cat {
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hera-gold);
}
.hera-product-card-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--hera-ink);
}
.hera-product-card--feature .hera-product-card-name {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
.hera-product-card-price {
  margin: 0.15rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hera-ink);
}
.hera-product-card-from {
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hera-ink-light);
  margin-right: 0.25rem;
}
.hera-product-card-cta {
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hera-ink-light);
}
.hera-product-card:hover .hera-product-card-cta,
.hera-product-card:focus-visible .hera-product-card-cta {
  color: var(--hera-ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hera-product-card--skeleton .hera-product-card-media {
  background: linear-gradient(90deg, var(--hera-sand) 25%, #ebe4d8 50%, var(--hera-sand) 75%);
  background-size: 200% 100%;
  animation: hera-shimmer 1.4s ease infinite;
}
.hera-product-card--skeleton .hera-product-card-body span {
  display: block;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--hera-sand);
  margin-bottom: 0.45rem;
}
.hera-product-card--skeleton .hera-product-card-body span:last-child {
  width: 55%;
}
@keyframes hera-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hera-showcase-fallback {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--hera-ink-light);
}
.hera-showcase-fallback a {
  color: var(--hera-ink);
  font-weight: 600;
}

/* Full-bleed editorial CTA band */
.hera-editorial-banner {
  margin: 0 -1.25rem 3rem;
  padding: 3rem 1.25rem;
  background: var(--hera-ink);
  color: var(--hera-sand);
  text-align: center;
}
@media (min-width: 900px) {
  .hera-editorial-banner {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4rem 2rem;
  }
}
.hera-editorial-banner-inner {
  max-width: 40rem;
  margin: 0 auto;
}
.hera-editorial-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hera-gold);
}
.hera-editorial-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.15;
  color: var(--hera-cream);
}
.hera-editorial-banner p {
  margin: 0 0 1.5rem;
  color: rgba(245, 240, 232, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}
.hera-editorial-banner .hera-cta-btn--primary {
  background: var(--hera-cream);
  color: var(--hera-ink);
  border-color: var(--hera-cream);
}

/* Category quick links */
.hera-category-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .hera-category-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}
.hera-category-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 7.5rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--hera-ink);
  background: var(--hera-sand);
  border: 1px solid var(--hera-border);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hera-category-tile:hover,
.hera-category-tile:focus-visible {
  background: #fff;
  border-color: var(--hera-gold);
  outline: none;
}
.hera-category-tile span {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hera-gold);
  margin-bottom: 0.35rem;
}
.hera-category-tile strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.25;
}

/* Contact form (minimal, no JS) */
.hera-form {
  max-width: var(--hera-max);
  margin-top: 1.5rem;
}
.hera-form label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hera-ink-light);
  margin-bottom: 0.35rem;
}
.hera-form input,
.hera-form select,
.hera-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--hera-border);
  background: #fff;
  font: inherit;
  margin-bottom: 1rem;
}
.hera-form textarea {
  min-height: 8rem;
  resize: vertical;
}
.hera-form button {
  font: inherit;
  cursor: pointer;
  background: var(--hera-ink);
  color: var(--hera-cream);
  border: none;
  padding: 0.65rem 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.hera-form button:hover,
.hera-form button:focus {
  background: var(--hera-ink-mid);
}

/* Footer */
.hera-footer {
  border-top: 1px solid var(--hera-border);
  background: var(--hera-sand);
  padding: 2rem 1.25rem;
  margin-top: auto;
}
.hera-footer-inner {
  max-width: var(--hera-wide);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .hera-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.hera-footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--hera-ink-light);
  max-width: 28rem;
}
.hera-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.hera-footer-nav a {
  font-size: 0.8125rem;
  color: var(--hera-ink-light);
  text-decoration: none;
}
.hera-footer-nav a:hover {
  text-decoration: underline;
}
.hera-copy {
  font-size: 0.75rem;
  color: var(--hera-ink-light);
  grid-column: 1 / -1;
}

.hera-ecosystem-note {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--hera-ink-light);
  line-height: 1.55;
}
.hera-ecosystem-note a {
  color: var(--hera-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .hera-nav {
    transition: none !important;
  }
  .hera-product-card--skeleton .hera-product-card-media,
  .hera-mosaic-cell img,
  .hera-product-card-media img {
    animation: none !important;
    transition: none !important;
  }
  .hera-product-card:hover,
  .hera-product-card:focus-visible {
    transform: none;
  }
}

/* Static site contact CTAs (GitHub Pages) */
.hera-contact-list {
  margin: 1rem 0 1rem 1.25rem;
  padding: 0;
}
.hera-contact-list li {
  margin-bottom: 0.5rem;
}
.hera-cta-link {
  font-weight: 600;
  color: var(--hera-ink);
}
.hera-cta-link:hover {
  text-decoration: underline;
}
