/* ============================================================
   SWEATY THEME — MAIN STYLESHEET
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Colours */
  --black:      #0a0a0a;
  --off-black:  #111111;
  --charcoal:   #1c1c1e;
  --dark-grey:  #2c2c2e;
  --mid-grey:   #636366;
  --light-grey: #aeaeb2;
  --off-white:  #f5f5f7;
  --white:      #ffffff;
  --accent:     #e8001d;   /* overridden by customizer inline style */

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Container */
  --container-max: 1280px;
  --container-pad: 24px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --duration-sm: 150ms;
  --duration-md: 250ms;
  --duration-lg: 400ms;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Header height */
  --header-h:       64px;
  --announcement-h: 40px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Container ───────────────────────────────────────────── */
.sweaty-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Utility ─────────────────────────────────────────────── */
.sweaty-overline {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: var(--space-md);
}

/* ── Buttons ─────────────────────────────────────────────── */
.sweaty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--duration-sm) var(--ease),
              color var(--duration-sm) var(--ease),
              border-color var(--duration-sm) var(--ease),
              transform var(--duration-sm) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.sweaty-btn:hover { transform: translateY(-1px); }
.sweaty-btn:active { transform: translateY(0); }

.sweaty-btn--primary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.sweaty-btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.sweaty-btn--outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.sweaty-btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.sweaty-btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.sweaty-btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.sweaty-btn--white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.sweaty-btn--white:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.sweaty-btn--accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.sweaty-btn--accent:hover {
  background: var(--black);
  border-color: var(--black);
}

.sweaty-btn--sm { padding: 10px 20px; font-size: 12px; }
.sweaty-btn--lg { padding: 18px 40px; font-size: 14px; }

/* ── Announcement Bar ────────────────────────────────────── */
.sweaty-announcement {
  background: var(--black);
  color: var(--white);
  height: var(--announcement-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sweaty-announcement__inner {
  width: 100%;
  text-align: center;
}
.sweaty-announcement__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ── Header ──────────────────────────────────────────────── */
.sweaty-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: var(--header-h);
  transition: box-shadow var(--duration-md) var(--ease);
}
.sweaty-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.sweaty-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  height: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 1fr 1fr 44px;
  align-items: center;
  gap: var(--space-md);
}
@media (min-width: 1024px) {
  .sweaty-header__inner {
    grid-template-columns: 160px 1fr 160px;
  }
}

/* Logo */
.sweaty-header__logo { justify-self: center; }
@media (min-width: 1024px) {
  .sweaty-header__logo { justify-self: start; }
}
.sweaty-logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--black);
  line-height: 1;
}

/* Nav */
.sweaty-header__nav {
  display: none;
  justify-self: center;
}
@media (min-width: 1024px) {
  .sweaty-header__nav { display: flex; }
}
.sweaty-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.sweaty-nav-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  transition: color var(--duration-sm) var(--ease);
  white-space: nowrap;
}
.sweaty-nav-menu li a:hover,
.sweaty-nav-menu li.current-menu-item > a { color: var(--accent); }
.sweaty-nav-menu li a.nav-sale { color: var(--accent); }

/* Icons */
.sweaty-header__icons {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  grid-column: 5;
}
@media (min-width: 1024px) {
  .sweaty-header__icons { grid-column: auto; gap: 8px; }
}
.sweaty-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--black);
  transition: color var(--duration-sm) var(--ease);
  border-radius: var(--radius-sm);
  position: relative;
}
.sweaty-header__icon-btn:hover { color: var(--accent); }

.sweaty-cart-count {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sweaty-cart-count:empty { display: none; }

/* Hamburger */
.sweaty-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  grid-column: 1;
}
@media (min-width: 1024px) {
  .sweaty-header__hamburger { display: none; }
}
.sweaty-header__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: transform var(--duration-md) var(--ease), opacity var(--duration-md) var(--ease);
  transform-origin: center;
}
.sweaty-header__hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.sweaty-header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.sweaty-header__hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Search overlay */
.sweaty-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-md) var(--ease);
}
.sweaty-search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.sweaty-search-overlay__inner {
  position: relative;
  width: 100%;
}
.sweaty-search-overlay__close {
  position: absolute;
  top: -80px;
  right: 0;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sweaty-search-overlay .search-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--white);
  padding-bottom: var(--space-md);
}
.sweaty-search-overlay .search-field {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: clamp(24px, 4vw, 48px);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  caret-color: var(--accent);
}
.sweaty-search-overlay .search-field::placeholder { color: var(--mid-grey); }
.sweaty-search-overlay .search-submit {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: var(--space-sm);
  opacity: 0.7;
  transition: opacity var(--duration-sm) var(--ease);
}
.sweaty-search-overlay .search-submit:hover { opacity: 1; }

/* Mobile Nav Drawer */
.sweaty-nav-mobile {
  position: fixed;
  top: 0; left: 0;
  width: min(380px, 100vw);
  height: 100dvh;
  background: var(--white);
  z-index: 300;
  transform: translateX(-100%);
  transition: transform var(--duration-lg) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.sweaty-nav-mobile.is-open {
  transform: translateX(0);
}
.sweaty-nav-mobile__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-lg) var(--ease);
}
.sweaty-nav-mobile__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}
.sweaty-nav-mobile__inner {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
}
.sweaty-nav-mobile__close {
  align-self: flex-end;
  margin-bottom: var(--space-xl);
  color: var(--black);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sweaty-nav-mobile__menu { flex: 1; }
.sweaty-nav-mobile__menu li { border-bottom: 1px solid rgba(0,0,0,0.06); }
.sweaty-nav-mobile__menu li a {
  display: block;
  padding: var(--space-lg) 0;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-nav-mobile__menu li a:hover { color: var(--accent); }
.sweaty-nav-mobile__menu li a.nav-sale { color: var(--accent); }
.sweaty-nav-mobile__footer {
  margin-top: auto;
  padding-top: var(--space-xl);
}
.sweaty-nav-mobile__account {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ── Hero Section ────────────────────────────────────────── */
.sweaty-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.sweaty-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.sweaty-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) var(--container-pad);
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
}
.sweaty-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: var(--space-xl);
  max-width: 800px;
}
.sweaty-hero__subheading {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}
.sweaty-hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.sweaty-hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: 0.6;
  animation: sweaty-bounce 2s ease infinite;
  transition: opacity var(--duration-sm) var(--ease);
}
.sweaty-hero__scroll:hover { opacity: 1; }
@keyframes sweaty-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Section Headers ─────────────────────────────────────── */
.sweaty-section-header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}
.sweaty-section-header--with-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.sweaty-section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sweaty-section-subtitle {
  margin-top: var(--space-sm);
  font-size: 16px;
  color: var(--mid-grey);
}
.sweaty-section-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-section-link:hover { color: var(--accent); }

/* ── Featured Categories ─────────────────────────────────── */
.sweaty-categories {
  padding: var(--space-3xl) 0;
  background: var(--white);
}
.sweaty-categories__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px)  { .sweaty-categories__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sweaty-categories__grid { grid-template-columns: repeat(var(--cat-count, 4), 1fr); } }

.sweaty-category-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
}
.sweaty-category-card__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sweaty-category-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease);
}
.sweaty-category-card:hover .sweaty-category-card__img {
  transform: scale(1.06);
}
.sweaty-category-card__placeholder {
  width: 100%; height: 100%;
  background: var(--dark-grey);
}
.sweaty-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  transition: background var(--duration-md) var(--ease);
}
.sweaty-category-card:hover .sweaty-category-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}
.sweaty-category-card__info {
  position: absolute;
  bottom: var(--space-xl);
  left: var(--space-xl);
  right: var(--space-xl);
  z-index: 2;
}
.sweaty-category-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.sweaty-category-card__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-category-card:hover .sweaty-category-card__cta { color: var(--white); }

/* ── Product Sections ────────────────────────────────────── */
.sweaty-products-section {
  padding: var(--space-3xl) 0;
}
.sweaty-new-arrivals { background: var(--white); }
.sweaty-best-sellers { background: var(--off-white); }

/* ── Product Grid ────────────────────────────────────────── */
.sweaty-product-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px)  { .sweaty-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .sweaty-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .sweaty-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ── Product Card ────────────────────────────────────────── */
.sweaty-product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.sweaty-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.sweaty-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}
.sweaty-product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease);
}
.sweaty-product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-md) var(--ease);
}
.sweaty-product-card:hover .sweaty-product-card__img--primary { transform: scale(1.04); }
.sweaty-product-card:hover .sweaty-product-card__img--hover { opacity: 1; }
.sweaty-product-card__no-image {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-grey);
}
.sweaty-product-card__hover-actions {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  display: none;
}
.sweaty-product-card:hover .sweaty-product-card__hover-actions {
  display: block;
}
.sweaty-product-card__info {
  padding: var(--space-md) 0 0;
  flex: 1;
}
.sweaty-product-card__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: var(--space-xs);
}
.sweaty-product-card__price {
  font-size: 14px;
  color: var(--charcoal);
}
.sweaty-product-card__price del { color: var(--light-grey); }
.sweaty-product-card__price ins {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.sweaty-product-card__rating {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--mid-grey);
}

/* Badges */
.sweaty-product-badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sweaty-badge {
  display: inline-flex;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.sweaty-badge--sale    { background: var(--accent); color: var(--white); }
.sweaty-badge--new     { background: var(--black); color: var(--white); }
.sweaty-badge--sold-out { background: var(--mid-grey); color: var(--white); }

/* ── Editorial Split ─────────────────────────────────────── */
.sweaty-editorial {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 600px;
}
@media (min-width: 768px) {
  .sweaty-editorial { grid-template-columns: 1fr 1fr; }
}
.sweaty-editorial__image-col { overflow: hidden; }
.sweaty-editorial__image-wrap { height: 100%; min-height: 480px; }
.sweaty-editorial__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease);
}
.sweaty-editorial:hover .sweaty-editorial__img { transform: scale(1.03); }
.sweaty-editorial__img-placeholder {
  width: 100%; height: 100%;
  min-height: 480px;
  background: linear-gradient(160deg, #1a1a1a 0%, #2e2e2e 50%, #111 100%);
}
.sweaty-editorial__content-col {
  background: var(--off-black);
  display: flex;
  align-items: center;
  padding: var(--space-3xl) var(--space-2xl);
}
@media (min-width: 1024px) {
  .sweaty-editorial__content-col { padding: var(--space-3xl) 80px; }
}
.sweaty-editorial__content .sweaty-overline { color: rgba(255,255,255,0.5); }
.sweaty-editorial__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: var(--space-xl);
}
.sweaty-editorial__body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin-bottom: var(--space-2xl);
}

/* ── Training Style ──────────────────────────────────────── */
.sweaty-training {
  padding: var(--space-3xl) 0;
  background: var(--white);
}
.sweaty-training__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .sweaty-training__grid { grid-template-columns: repeat(4, 1fr); }
}
.sweaty-training-card {
  display: block;
  aspect-ratio: 1/1.2;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform var(--duration-md) var(--ease);
}
.sweaty-training-card:hover { transform: scale(1.02); }
.sweaty-training-strength { background: linear-gradient(135deg, #1c1c1e 0%, #2c2c2e 100%); }
.sweaty-training-running  { background: linear-gradient(135deg, #111 0%, #333 100%); }
.sweaty-training-studio   { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); }
.sweaty-training-recovery { background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%); }
.sweaty-training-card__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--space-xl);
}
.sweaty-training-card__label {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.sweaty-training-card__arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  transition: color var(--duration-sm) var(--ease), transform var(--duration-sm) var(--ease);
}
.sweaty-training-card:hover .sweaty-training-card__arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ── Brand Statement ─────────────────────────────────────── */
.sweaty-statement {
  padding: var(--space-3xl) 0;
  background: var(--black);
  text-align: center;
}
.sweaty-statement__quote { margin-bottom: var(--space-2xl); }
.sweaty-statement__quote p {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 900px;
  margin-inline: auto;
}

/* ── Newsletter ──────────────────────────────────────────── */
.sweaty-newsletter {
  padding: var(--space-3xl) 0;
  background: var(--off-white);
}
.sweaty-newsletter__inner {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 768px) {
  .sweaty-newsletter__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}
.sweaty-newsletter__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
}
.sweaty-newsletter__subtext {
  font-size: 16px;
  color: var(--mid-grey);
  line-height: 1.6;
}
.sweaty-newsletter__input-wrap {
  display: flex;
  gap: 0;
}
.sweaty-newsletter__input {
  flex: 1;
  padding: 14px 20px;
  font-size: 14px;
  border: 2px solid var(--black);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--duration-sm) var(--ease);
}
.sweaty-newsletter__input:focus { border-color: var(--accent); }
.sweaty-newsletter__input-wrap .sweaty-btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.sweaty-newsletter__disclaimer {
  margin-top: var(--space-sm);
  font-size: 11px;
  color: var(--light-grey);
}
.sweaty-newsletter__message {
  margin-top: var(--space-md);
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}
.sweaty-newsletter__message.success { color: #1a7f37; }
.sweaty-newsletter__message.error   { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────── */
.sweaty-footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-3xl) 0 0;
}
.sweaty-footer__top {
  display: grid;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .sweaty-footer__top {
    grid-template-columns: 240px 1fr;
    gap: var(--space-3xl);
  }
}
.sweaty-footer__logo .sweaty-logo-text { color: var(--white); }
.sweaty-footer__tagline {
  margin-top: var(--space-sm);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.sweaty-footer__social {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
}
.sweaty-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  transition: border-color var(--duration-sm) var(--ease), color var(--duration-sm) var(--ease);
}
.sweaty-footer__social-link:hover {
  border-color: var(--white);
  color: var(--white);
}
.sweaty-footer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}
@media (min-width: 768px) {
  .sweaty-footer__columns { grid-template-columns: repeat(4, 1fr); }
}
.sweaty-footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-lg);
}
.sweaty-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.sweaty-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-footer__links a:hover { color: var(--white); }
.sweaty-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sweaty-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.sweaty-footer__payment-icons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.sweaty-payment-icon {
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

/* ── Blog ────────────────────────────────────────────────── */
.sweaty-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 640px)  { .sweaty-post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sweaty-post-grid { grid-template-columns: repeat(3, 1fr); } }

.sweaty-post-card { display: flex; flex-direction: column; }
.sweaty-post-card__link { display: flex; flex-direction: column; height: 100%; }
.sweaty-post-card__image-wrap {
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/2;
  background: var(--off-white);
}
.sweaty-post-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease);
}
.sweaty-post-card:hover .sweaty-post-card__img { transform: scale(1.04); }
.sweaty-post-card__body { padding: var(--space-lg) 0 0; flex: 1; display: flex; flex-direction: column; }
.sweaty-post-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}
.sweaty-post-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: var(--space-sm);
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-post-card:hover .sweaty-post-card__title { color: var(--accent); }
.sweaty-post-card__excerpt { font-size: 14px; color: var(--mid-grey); line-height: 1.6; flex: 1; }
.sweaty-post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-lg);
  font-size: 12px;
  color: var(--light-grey);
}
.sweaty-post-card__read {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--black);
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-post-card:hover .sweaty-post-card__read { color: var(--accent); }

/* ── Blog Layout ─────────────────────────────────────────── */
.sweaty-blog-wrap,
.sweaty-single-wrap { padding-block: var(--space-3xl); }
.sweaty-blog-layout,
.sweaty-single-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 1024px) {
  .sweaty-blog-layout,
  .sweaty-single-layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}
.sweaty-blog-sidebar,
.sweaty-single-sidebar { display: none; }
@media (min-width: 1024px) {
  .sweaty-blog-sidebar,
  .sweaty-single-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + var(--space-xl));
  }
}

.widget { margin-bottom: var(--space-2xl); }
.widget-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--black);
}

/* ── Single Post ─────────────────────────────────────────── */
.sweaty-single-post__header { margin-bottom: var(--space-2xl); }
.sweaty-single-post__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
}
.sweaty-single-post__meta {
  display: flex;
  gap: var(--space-lg);
  font-size: 13px;
  color: var(--mid-grey);
  flex-wrap: wrap;
}
.sweaty-single-post__hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  aspect-ratio: 16/9;
}
.sweaty-single-post__hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sweaty-entry-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
}
.sweaty-entry-content h2,
.sweaty-entry-content h3 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin: var(--space-2xl) 0 var(--space-lg);
  color: var(--black);
}
.sweaty-entry-content h2 { font-size: clamp(28px, 3vw, 40px); }
.sweaty-entry-content h3 { font-size: clamp(22px, 2.5vw, 30px); }
.sweaty-entry-content p  { margin-bottom: var(--space-xl); }
.sweaty-entry-content a  { color: var(--accent); border-bottom: 1px solid currentColor; }
.sweaty-entry-content img { border-radius: var(--radius-sm); margin-block: var(--space-xl); }
.sweaty-entry-content blockquote {
  border-left: 4px solid var(--accent);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-2xl) 0;
  background: var(--off-white);
  font-style: italic;
  font-size: 20px;
  color: var(--charcoal);
}
.sweaty-single-post__footer {
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}
.sweaty-single-post__share {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 13px;
  font-weight: 600;
}
.sweaty-share-link {
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--duration-sm) var(--ease);
}
.sweaty-share-link:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.sweaty-author-box {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  background: var(--off-white);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
  align-items: flex-start;
}
.sweaty-author-box__avatar { border-radius: 50%; flex-shrink: 0; }
.sweaty-author-box__name { font-size: 16px; font-weight: 700; margin-bottom: var(--space-sm); }
.sweaty-author-box__bio { font-size: 14px; color: var(--mid-grey); line-height: 1.6; }

.sweaty-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.sweaty-post-nav__link { display: flex; flex-direction: column; gap: 4px; }
.sweaty-post-nav__link--next { text-align: right; }
.sweaty-post-nav__direction {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.sweaty-post-nav__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-post-nav__link:hover .sweaty-post-nav__title { color: var(--accent); }

/* ── Archive ─────────────────────────────────────────────── */
.sweaty-archive-page-header {
  background: var(--off-black);
  color: var(--white);
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.sweaty-archive-page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sweaty-archive-desc { margin-top: var(--space-sm); font-size: 16px; color: rgba(255,255,255,0.6); }

/* ── Search ──────────────────────────────────────────────── */
.sweaty-search-section { margin-bottom: var(--space-3xl); }
.sweaty-search-section-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

/* ── 404 ─────────────────────────────────────────────────── */
.sweaty-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
}
.sweaty-404__inner { max-width: 600px; }
.sweaty-404__eyebrow {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--off-white);
  letter-spacing: -0.02em;
  margin-bottom: calc(-1 * var(--space-xl));
}
.sweaty-404__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xl);
}
.sweaty-404__body {
  font-size: 17px;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}
.sweaty-404__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}
.sweaty-404__search .search-form {
  display: flex;
  gap: 0;
}
.sweaty-404__search .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.15);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 14px;
  outline: none;
}
.sweaty-404__search .search-field:focus { border-color: var(--black); }
.sweaty-404__search .search-submit {
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Page ────────────────────────────────────────────────── */
.sweaty-page-wrap { padding-block: var(--space-3xl); }
.sweaty-page-header { margin-bottom: var(--space-2xl); }
.sweaty-page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ── About Page ──────────────────────────────────────────── */
.sweaty-about-hero {
  background: var(--off-black);
  color: var(--white);
  padding: var(--space-2xl) 0;
}
.sweaty-about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sweaty-about-wrap { padding-block: var(--space-3xl); }
.sweaty-about-content { max-width: 800px; margin-bottom: var(--space-3xl); }
.sweaty-values { margin-top: var(--space-3xl); }
.sweaty-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .sweaty-values__grid { grid-template-columns: repeat(3, 1fr); }
}
.sweaty-value-card {
  padding: var(--space-2xl);
  background: var(--off-white);
  border-radius: var(--radius-md);
}
.sweaty-value-card__icon { margin-bottom: var(--space-lg); color: var(--accent); }
.sweaty-value-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}
.sweaty-value-card__body { font-size: 15px; color: var(--mid-grey); line-height: 1.7; }

/* ── Contact Page ────────────────────────────────────────── */
.sweaty-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  padding-block: var(--space-3xl);
}
@media (min-width: 768px) {
  .sweaty-contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}
.sweaty-contact-info__body {
  font-size: 17px;
  color: var(--mid-grey);
  line-height: 1.7;
  margin: var(--space-xl) 0 var(--space-2xl);
  max-width: 440px;
}
.sweaty-contact-details { display: flex; flex-direction: column; gap: var(--space-2xl); }
.sweaty-contact-detail h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: var(--space-sm);
}
.sweaty-contact-detail p { font-size: 14px; color: var(--mid-grey); margin-bottom: 4px; }
.sweaty-contact-detail a { font-size: 15px; font-weight: 500; color: var(--black); transition: color var(--duration-sm) var(--ease); }
.sweaty-contact-detail a:hover { color: var(--accent); }

/* Contact form */
.sweaty-contact-form { display: flex; flex-direction: column; gap: var(--space-lg); }
.sweaty-form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.sweaty-form-group { display: flex; flex-direction: column; gap: var(--space-sm); }
.sweaty-form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.sweaty-form-group input,
.sweaty-form-group textarea,
.sweaty-form-group select {
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--duration-sm) var(--ease);
}
.sweaty-form-group input:focus,
.sweaty-form-group textarea:focus {
  outline: none;
  border-color: var(--black);
}
.sweaty-form-group textarea { resize: vertical; min-height: 140px; }

/* ── Comments ────────────────────────────────────────────── */
.sweaty-comments-wrap { margin-top: var(--space-3xl); padding-top: var(--space-2xl); border-top: 1px solid rgba(0,0,0,0.08); }
.sweaty-comments-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2xl);
}
.sweaty-comment-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-xl); margin-bottom: var(--space-2xl); }
.sweaty-comment__body {
  padding: var(--space-xl);
  background: var(--off-white);
  border-radius: var(--radius-md);
}
.sweaty-comment__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.sweaty-comment__avatar { border-radius: 50%; flex-shrink: 0; }
.sweaty-comment__author { font-size: 15px; font-weight: 700; display: block; }
.sweaty-comment__date { font-size: 12px; color: var(--mid-grey); display: block; }
.sweaty-comment__content { font-size: 15px; line-height: 1.7; color: var(--charcoal); }
.sweaty-comment__reply { margin-top: var(--space-md); }
.sweaty-comment__reply a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color var(--duration-sm) var(--ease);
}
.sweaty-comment__reply a:hover { color: var(--accent); }
.sweaty-comment-reply-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-xl);
}
.comment-form .form-submit { margin-top: var(--space-xl); }
.comment-form p { margin-bottom: var(--space-lg); }
.comment-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: var(--space-sm);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--duration-sm) var(--ease);
}
.comment-form input:focus,
.comment-form textarea:focus { outline: none; border-color: var(--black); }
.comment-form textarea { min-height: 140px; resize: vertical; }

/* ── Pagination ──────────────────────────────────────────── */
.sweaty-pagination {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
}
.sweaty-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
}
.sweaty-pagination .page-numbers a,
.sweaty-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  transition: background var(--duration-sm) var(--ease), color var(--duration-sm) var(--ease);
}
.sweaty-pagination .page-numbers a:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.sweaty-pagination .page-numbers .current { background: var(--black); color: var(--white); border-color: var(--black); }
.sweaty-pagination .page-numbers .dots { border: none; }

/* ── Empty State ─────────────────────────────────────────── */
.sweaty-empty-state {
  text-align: center;
  padding: var(--space-3xl) 0;
}
.sweaty-empty-state h2 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}
.sweaty-empty-state p {
  font-size: 16px;
  color: var(--mid-grey);
  margin-bottom: var(--space-xl);
}

/* ── Accessibility ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  transition: top var(--duration-sm) var(--ease);
}
.skip-link:focus { top: 0; }

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --container-pad: 16px;
    --space-3xl: 64px;
    --space-2xl: 48px;
  }
  .sweaty-hero { min-height: 85vh; }
  .sweaty-hero__actions { flex-direction: column; }
  .sweaty-hero__actions .sweaty-btn { width: 100%; justify-content: center; }
  .sweaty-newsletter__input-wrap { flex-direction: column; }
  .sweaty-newsletter__input {
    border-right: 2px solid var(--black);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border-bottom: none;
  }
  .sweaty-newsletter__input-wrap .sweaty-btn {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  }
  .sweaty-form-row--half { grid-template-columns: 1fr; }
}
