/*
Theme Name: Sports Fuel Nutrition
Theme URI: https://sportsfuelnutrition.in
Author: Sports Fuel Nutrition
Description: 1:1 Recoil Supplements layout & architecture for Sports Fuel Nutrition. High-contrast Black & White aesthetic with 10% Neon Lime accents, full-width edge-to-edge layout, clinical formula tables, visual flavor selectors, and cart drawer.
Version: 5.3.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: sports-fuel
*/

/* ABSOLUTE TOTAL REMOVAL OF TOP ANNOUNCEMENT BAR & ANY BLACK STRIPS ON MOBILE & DESKTOP */
.rx-announcement,
.rx-announcement__track,
.rx-announcement-bar,
.announcement-bar,
.top-bar,
.site-announcement,
[class*="announcement"],
[id*="announcement"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  z-index: -999 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,800;1,900&display=swap');

:root {
  /* Recoil Exact Palette */
  --color-background: #ffffff;
  --color-background-rgb: 255 255 255;
  --color-foreground: #000000;
  --color-foreground-rgb: 0 0 0;
  --color-border: #000000;
  --color-border-subtle: #e5e5e5;
  --color-border-light: #f0f0f0;
  --color-surface-subtle: #f7f7f7;
  --color-surface-card: #ffffff;
  
  /* 10% Neon Green Accent (Exact Recoil #89d957 / Sports Fuel #C3E82B) */
  --rx-accent: #89d957;
  --rx-accent-lime: #c3e82b;
  --rx-accent-glow: rgba(137, 217, 87, 0.35);

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Full-width Layout Dimensions (Edge-to-Edge like Recoil) */
  --page-width-full: 100%;
  --page-gutter: clamp(14px, 2.5vw, 36px);
  --section-gutter: clamp(96px, 12vw, 160px);
  --radius-subtle: 8px;
  --radius-card: 13px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-recoil: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
}

body.locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Full-Width Edge-to-Edge Container (No boxed gaps on left/right) */
.rx-full-width {
  width: 100%;
  max-width: 100vw;
  padding-inline: var(--page-gutter);
}

.rx-bleed {
  width: 100%;
  max-width: 100vw;
  padding: 0;
  margin: 0;
}

/* ==========================================================================
   Recoil Top Announcement Bar
   ========================================================================== */
.rx-announcement {
  display: none !important;
}

/* ==========================================================================
   Recoil Edge-to-Edge Header
   ========================================================================== */
.rx-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rx-header.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.rx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding-inline: var(--page-gutter);
  width: 100%;
  position: relative;
}

.rx-header__left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 0%;
  min-width: 0;
}

.rx-header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.rx-header__nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #040404;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.rx-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rx-accent);
  transition: width 0.25s var(--ease-recoil);
}

.rx-header__nav a:hover::after {
  width: 100%;
}

/* Absolute dead-centering for the logo on desktop, tablet, and mobile with hover color flip */
.rx-header__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  z-index: 2;
  text-decoration: none;
}

.rx-header__logo img {
  height: 70px;
  width: auto;
  max-width: 330px;
  object-fit: contain;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.rx-header__logo .logo-black {
  opacity: 1;
  transform: scale(1);
}

.rx-header__logo .logo-neon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  pointer-events: none;
}

.rx-header__logo:hover .logo-black {
  opacity: 0;
  transform: scale(1.04);
}

.rx-header__logo:hover .logo-neon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.04);
}

.rx-header__tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0%;
  justify-content: flex-end;
  min-width: 0;
}

.rx-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #040404;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.rx-tool-btn:hover {
  background: var(--color-surface-subtle);
}

.rx-tool-label {
  display: none;
}

@media (min-width: 768px) {
  .rx-tool-label {
    display: inline;
  }
}

.rx-cart-badge {
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  margin-left: 2px;
}

.rx-cart-badge.has-items {
  background: var(--rx-accent);
  color: #000000;
}

.rx-burger {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .rx-header__nav { display: none; }
  .rx-burger { display: flex; align-items: center; justify-content: center; }
  .rx-header__inner { height: 80px; }
  .rx-header__logo { height: 66px; }
  .rx-header__logo img { height: 60px; max-width: 270px; }
  .rx-tool-btn { padding: 6px 8px; }
}

@media (max-width: 480px) {
  .rx-header__inner { height: 70px; padding-inline: 12px; }
  .rx-header__logo { height: 50px; }
  .rx-header__logo img { height: 44px; max-width: 175px; object-fit: contain; }
  .rx-header__tools { gap: 6px; }
  .rx-tool-btn { padding: 6px 6px; }
}

/* ==========================================================================
   Mobile Navigation Drawer & Search Modal (Off-Canvas & Hidden on Desktop)
   ========================================================================== */
.mnav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(340px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 1001;
  transform: translateX(-105%);
  transition: transform 0.35s var(--ease-recoil), visibility 0.35s;
  display: flex;
  flex-direction: column;
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15);
  visibility: hidden;
  pointer-events: none;
}

.mnav.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 901px) {
  .mnav {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.mnav nav {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 16px;
  flex: 1;
  overflow-y: auto;
}

.mnav nav a {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #040404;
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border-light);
  transition: color 0.2s;
}

.mnav nav a:hover {
  color: var(--rx-accent);
}

.mnav__foot {
  padding: 20px;
  border-top: 1px solid var(--color-border-subtle);
  background: #fbfbfb;
  font-size: 12px;
  color: #71717a;
  line-height: 1.6;
}

.mnav__foot p {
  margin: 0;
}

/* ==========================================================================
   1:1 Recoil Search Modal Overlay & Live Product Discovery
   ========================================================================== */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1002;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(20px, 6vh, 60px) 16px 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-modal.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rx-search-box {
  position: relative;
  width: min(760px, 100%);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  animation: rxSearchPop 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  margin-bottom: 24px;
}

@keyframes rxSearchPop {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.rx-search-bar {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 56px;
  border-bottom: 1px solid #ededed;
  background: #ffffff;
}

.rx-search-bar__form {
  display: flex;
  align-items: center;
  width: 100%;
}

.rx-search-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  margin-right: 12px;
  flex-shrink: 0;
}

.rx-search-bar__icon svg {
  width: 18px;
  height: 18px;
}

.rx-search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  padding: 0;
}

.rx-search-bar__input::placeholder {
  color: #71717a;
  font-size: 15px;
  font-weight: 400;
}

.rx-search-bar__close {
  background: transparent;
  border: none;
  color: #333333;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.rx-search-bar__close:hover {
  opacity: 0.6;
}

.rx-search-bar__close svg {
  width: 14px;
  height: 14px;
}

.rx-search-body {
  padding: 22px 24px 28px;
  max-height: min(580px, calc(85vh - 76px));
  overflow-y: auto;
}

.rx-search-section {
  margin-bottom: 24px;
}

.rx-search-section:last-child {
  margin-bottom: 0;
}

.rx-search-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rx-search-section__title {
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 13.5px;
  font-weight: 600;
  color: #222222;
  margin: 0;
  letter-spacing: -0.01em;
}

.rx-search-clear-btn {
  background: none;
  border: none;
  color: #71717a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.18s;
}

.rx-search-clear-btn:hover {
  color: #000000;
}

.rx-search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 680px) {
  .rx-search-body {
    padding: 16px 16px 22px;
  }
  .rx-search-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.rx-search-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.rx-search-card:hover {
  transform: translateY(-2px);
}

.rx-search-card__media {
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 6px;
  position: relative;
}

.rx-search-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.rx-search-card:hover .rx-search-card__media img {
  transform: scale(1.04);
}

.rx-search-card__title {
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  line-height: 1.35;
  margin: 0 0 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}

.rx-search-card__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rx-search-card__original-price {
  font-size: 11px;
  color: #71717a;
  text-decoration: line-through;
  line-height: 1.2;
}

.rx-search-card__price {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.rx-search-empty {
  text-align: center;
  padding: 32px 16px;
  color: #71717a;
  font-size: 14px;
  grid-column: 1 / -1;
}

.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

/* ==========================================================================
   Recoil Exact Hero Slider (100svh Edge-to-Edge)
   ========================================================================== */
.recoil-home-hero {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: calc(100svh - 88px);
  min-height: 640px;
  overflow: hidden;
  background: #0a0a0a;
  color: #ffffff;
}

.recoil-home-hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.recoil-home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.recoil-home-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%),
              linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.recoil-home-hero__content {
  position: absolute;
  bottom: clamp(50px, 9vw, 96px);
  left: var(--page-gutter);
  max-width: 800px;
  z-index: 5;
}

.recoil-home-hero__proofs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--rx-accent);
  padding: 8px 20px;
  border-radius: var(--radius-subtle);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.recoil-home-hero__proof-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rx-accent);
}

.recoil-home-hero__heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #ffffff;
}

.recoil-home-hero__heading span.accent-word {
  color: var(--rx-accent);
}

.recoil-home-hero__subheading {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 620px;
}

.recoil-home-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 42px;
  border-radius: var(--radius-subtle);
  border: 2px solid #ffffff;
  transition: all 0.25s var(--ease-recoil);
}

.recoil-home-hero__button:hover {
  background: var(--rx-accent);
  border-color: var(--rx-accent);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--rx-accent-glow);
}

/* ==========================================================================
   Responsive Hero Adjustments (Mobile Precision Framing & Sizing)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .recoil-home-hero {
    height: calc(100svh - 80px);
    min-height: 560px;
  }
  .recoil-home-hero__image {
    object-position: 65% 20%;
  }
}

@media (max-width: 768px) {
  .recoil-home-hero {
    height: auto !important;
    min-height: unset !important;
    max-height: 280px !important;
    aspect-ratio: 16 / 9 !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  .recoil-home-hero__slide {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
  }

  .recoil-home-hero__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transform: none !important;
  }

  .recoil-home-hero__shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.7) 100%) !important;
  }

  .recoil-home-hero__content {
    position: absolute !important;
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    max-width: 100% !important;
    padding: 0 !important;
    z-index: 5 !important;
  }

  .recoil-home-hero__proofs {
    display: none !important;
  }

  .recoil-home-hero__heading {
    font-size: clamp(16px, 4.8vw, 22px) !important;
    line-height: 1.12 !important;
    margin: 0 0 6px !important;
    letter-spacing: -0.01em !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  }

  .recoil-home-hero__subheading {
    display: none !important;
  }

  .recoil-home-hero__button {
    display: inline-flex !important;
    padding: 6px 14px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }
}

/* ==========================================================================
   Recoil Exact Neon Green Mini Strip (xceed-mini-strip) — Infinite Continuous Marquee
   ========================================================================== */
.xceed-mini-strip {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: 14px 0;
  background: var(--rx-accent);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  user-select: none;
  contain: paint;
}

.xceed-mini-track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-body);
  will-change: transform;
  animation: rxMarqueeContinuous 22s linear infinite;
}

.xceed-mini-strip:hover .xceed-mini-track {
  animation-play-state: paused;
}

@keyframes rxMarqueeContinuous {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.xceed-mini-track span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #000000;
}

.xceed-mini-track i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000000;
  display: inline-block;
}

/* ==========================================================================
   "Our Product Range" — Recoil Edge-to-Edge Product Grid
   ========================================================================== */
.rx-section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: var(--section-gutter) var(--page-gutter) 24px;
}

.rx-section-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: #040404;
  text-align: center;
}

.rx-product-grid,
.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-inline: var(--page-gutter);
  padding-bottom: var(--section-gutter);
  width: 100%;
}

@media (max-width: 1200px) {
  .rx-product-grid,
  .pgrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .rx-product-grid,
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .rx-product-grid,
  .pgrid { grid-template-columns: 1fr; }
}

/* Recoil Horizontal Product Slider / Carousel */
.rx-carousel-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 24px;
}

.rx-carousel-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: var(--page-gutter);
  margin-bottom: clamp(24px, 3.5vw, 40px);
  gap: 14px;
}


.rx-slider-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rx-slider-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #040404;
  background: #ffffff;
  color: #040404;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-recoil);
  padding: 0;
}

.rx-slider-arrow:hover {
  background: #040404;
  color: #ffffff;
}

.rx-slider-arrow svg {
  width: 18px;
  height: 18px;
}

.rx-product-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-inline: var(--page-gutter);
  padding-bottom: 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.rx-product-carousel::-webkit-scrollbar {
  display: none;
}

.rx-product-carousel .rx-product-card {
  flex: 0 0 calc(28% - 15px);
  min-width: 300px;
  scroll-snap-align: start;
}

@media (max-width: 1100px) {
  .rx-product-carousel .rx-product-card {
    flex: 0 0 calc(36% - 14px);
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .rx-product-carousel {
    gap: 12px !important;
    padding-inline: 14px !important;
    padding-bottom: 16px !important;
  }
  .rx-product-carousel .rx-product-card {
    flex: 0 0 165px !important;
    max-width: 175px !important;
    min-width: 155px !important;
  }
  .rx-product-card {
    border-radius: 10px !important;
  }
  .rx-card-mini-banner {
    top: 6px !important;
    min-height: 18px !important;
    padding: 0 6px !important;
    font-size: 8px !important;
  }
  .rx-final-title-block {
    padding: 8px 8px 2px !important;
  }
  .rx-final-title-main {
    font-size: 12px !important;
  }
  .rx-final-title-sub {
    font-size: 9px !important;
    margin-top: 2px !important;
  }
  .rx-card-rating {
    margin-top: 4px !important;
  }
  .rx-card-rating span {
    font-size: 9.5px !important;
  }
  .rx-card-footer {
    padding: 8px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  .rx-price-wrap {
    justify-content: center !important;
    gap: 6px !important;
  }
  .rx-price-now {
    font-size: 1.05rem !important;
  }
  .rx-price-was {
    font-size: 0.75rem !important;
  }
  .rx-add-btn {
    width: 100% !important;
    padding: 7px 10px !important;
    font-size: 10px !important;
    text-align: center !important;
    border-radius: 6px !important;
  }
}

/* Recoil Product Card */
.rx-product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease-recoil);
}

.rx-product-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Recoil Floating Mini-Banner with 10% Neon Accent */
.rx-card-mini-banner {
  position: absolute !important;
  top: 12px !important;
  left: 0 !important;
  z-index: 10 !important;
  min-height: 26px !important;
  padding: 0 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 0 6px 6px 0 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #040404 !important;
  border: 1px solid rgba(4, 4, 4, 0.12) !important;
  border-left: 3.5px solid var(--rx-accent) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.rx-card-mini-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rx-accent);
  margin: 0 6px;
}

/* Media Box (Full Bleed Image Fill) */
.rx-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #fbfbfb;
  display: block;
  width: 100%;
  padding: 0 !important;
  overflow: hidden;
  border-top-left-radius: calc(var(--radius-card) - 1px);
  border-top-right-radius: calc(var(--radius-card) - 1px);
}

.rx-card__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s var(--ease-recoil);
}

.rx-product-card:hover .rx-card__media img {
  transform: scale(1.06);
}

/* Recoil Final Title Block */
.rx-final-title-block {
  width: 100% !important;
  margin: 0 !important;
  padding: 16px 14px 4px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

.rx-final-title-main {
  display: block !important;
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  color: #040404 !important;
}

.rx-final-title-sub {
  display: block !important;
  margin-top: 4px !important;
  font-family: var(--font-body) !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  color: #71717A !important;
}

/* Ratings */
.rx-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 8px;
}

.rx-stars {
  display: flex;
  gap: 2px;
  color: #000000;
}

.rx-stars svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.rx-card-rating span {
  font-size: 11px;
  font-weight: 600;
  color: #71717A;
}

/* Price & Quick Add */
.rx-card-footer {
  padding: 12px 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--color-border-light);
}

.rx-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.rx-price-now {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: #040404;
}

.rx-price-was {
  font-size: 0.85rem;
  color: #A1A1AA;
  text-decoration: line-through;
}

.rx-add-btn {
  background: #040404;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-subtle);
  border: 1.5px solid #040404;
  transition: all 0.25s var(--ease-recoil);
}

.rx-add-btn:hover {
  background: var(--rx-accent);
  border-color: var(--rx-accent);
  color: #000000;
}

/* ==========================================================================
   "Learn Before You Buy" — Recoil Editorial Cards
   ========================================================================== */
.rx-editorial-section {
  background: #fbfbfb;
  border-block: 1px solid var(--color-border-subtle);
  padding: var(--section-gutter) var(--page-gutter);
  width: 100%;
}

.rx-editorial-header {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 54px);
}

.rx-editorial-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 8px;
  text-align: center;
}

.rx-editorial-header h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #040404;
  margin: 0 0 12px;
  text-align: center;
}

.rx-editorial-header p {
  font-size: 1.05rem;
  color: #52525B;
  line-height: 1.6;
  margin: 0 auto;
  text-align: center;
}

.rx-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 880px) {
  .rx-editorial-grid { grid-template-columns: 1fr; gap: 20px; }
}

.rx-editorial-card {
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
  padding: clamp(34px, 4vw, 48px) clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-recoil);
  position: relative;
}

.rx-editorial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
}

.rx-editorial-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.rx-editorial-card:hover::before {
  background: var(--rx-accent);
}

.rx-editorial-tag {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rx-accent);
  background: #040404;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 18px;
}

.rx-editorial-card h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: #040404;
  margin: 0 0 14px;
}

.rx-editorial-card p {
  color: #52525B;
  font-size: 15px;
  line-height: 1.68;
  margin: 0;
}

/* ==========================================================================
   Recoil Product Detail Page (PDP) Store Architecture
   ========================================================================== */
.rx-pdp {
  width: 100%;
  max-width: 100vw;
  padding-inline: var(--page-gutter);
  padding-top: 24px;
  padding-bottom: var(--section-gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 54px);
}

@media (max-width: 960px) {
  .rx-pdp { grid-template-columns: 1fr; }
}

/* Left Gallery */
.rx-pdp__gallery {
  position: sticky;
  top: 90px;
  align-self: start;
}

.rx-pdp__main-view {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fbfbfb;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4%;
  overflow: hidden;
  position: relative;
}

.rx-pdp__main-view img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease-recoil), opacity 0.25s;
}

.rx-pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.rx-pdp__thumb {
  aspect-ratio: 1;
  background: #fbfbfb;
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-subtle);
  padding: 10%;
  cursor: pointer;
  transition: all 0.2s;
}

.rx-pdp__thumb.is-active, .rx-pdp__thumb:hover {
  border-color: #000000;
  box-shadow: 0 0 0 2px var(--rx-accent);
}

/* Right Purchase Box */
.rx-pdp__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rx-pdp__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #040404;
  margin: 0;
}

.rx-pdp__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #71717A;
  margin: 0;
}

.rx-pdp__pricing {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-block: 6px;
}

.rx-pdp__price-now {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: #040404;
}

.rx-pdp__price-was {
  font-size: 1.1rem;
  color: #A1A1AA;
  text-decoration: line-through;
}

.rx-pdp__save-tag {
  background: #040404;
  color: var(--rx-accent);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-subtle);
}

/* WooCommerce Native Form Styling inside PDP */
.rx-pdp__panel .cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 8px 0 0;
}

.rx-pdp__panel .quantity {
  display: inline-flex;
}

.rx-pdp__panel .quantity input.qty {
  width: 58px;
  height: 48px;
  text-align: center;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-subtle);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
}

.rx-pdp__panel .single_add_to_cart_button,
.rx-pdp__panel button[name="add-to-cart"] {
  flex: 1;
  min-width: 200px;
  height: 48px;
  background: #040404;
  color: #ffffff;
  border: 1.5px solid #040404;
  border-radius: var(--radius-subtle);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-recoil);
}

.rx-pdp__panel .single_add_to_cart_button:hover {
  background: #222222;
  border-color: #222222;
}

.rx-pdp__panel .variations {
  width: 100%;
  margin-bottom: 12px;
}

.rx-pdp__panel .variations td {
  padding: 6px 0;
}

.rx-pdp__panel .variations label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rx-pdp__panel .variations select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-subtle);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  background: #ffffff;
}

/* Recoil Visual Flavor Options */
.recoil-pre-flavor-section {
  margin-top: 10px;
}

.recoil-pre-flavor-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.recoil-pre-flavor-label span.chosen {
  color: #71717A;
  font-weight: 600;
}

.recoil-pre-flavor-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.recoil-pre-flavor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-subtle);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s var(--ease-recoil);
  text-decoration: none;
  color: inherit;
}

.recoil-pre-flavor-card:hover {
  border-color: #000000;
}

.recoil-pre-flavor-card.is-selected {
  border-color: #000000;
  box-shadow: 0 0 0 2px var(--rx-accent);
}

.recoil-pre-flavor-image {
  position: relative;
  width: 100%;
  aspect-ratio: 2.2 / 1;
  background: #f4f4f4;
  overflow: hidden;
}

.recoil-pre-flavor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recoil-pre-bestseller-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 2;
  background: #040404;
  color: var(--rx-accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 4px;
}

.recoil-pre-flavor-name {
  padding: 8px 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #040404;
  text-align: center;
}

/* Purchase Actions */
.rx-pdp__buy-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.rx-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #000000;
  border-radius: var(--radius-subtle);
  height: 52px;
}

.rx-qty-stepper button {
  width: 44px;
  height: 100%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
  transition: background 0.2s;
}

.rx-qty-stepper button:hover {
  background: var(--color-surface-subtle);
}

.rx-qty-stepper input {
  width: 44px;
  height: 100%;
  border: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: #000000;
  background: transparent;
}

.rx-pdp__add-btn {
  flex: 1;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: 52px;
  border-radius: var(--radius-subtle);
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease-recoil);
}

.rx-pdp__add-btn:hover {
  background: var(--rx-accent);
  border-color: var(--rx-accent);
  color: #000000;
  box-shadow: 0 6px 20px var(--rx-accent-glow);
}

/* Trust Badges Strip */
.rx-pdp__trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  border-block: 1px solid var(--color-border-subtle);
}

.rx-pdp__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.rx-pdp__trust-item svg {
  width: 22px;
  height: 22px;
  color: #040404;
}

.rx-pdp__trust-item span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #040404;
}

/* ==========================================================================
   Recoil Clinical Formula Table (rx-formula-compact)
   ========================================================================== */
.rx-formula-compact {
  width: 100%;
  max-width: 100vw;
  padding: var(--section-gutter) var(--page-gutter);
  background: #fbfbfb;
  border-block: 1px solid var(--color-border-subtle);
}

.rx-formula-compact__inner {
  max-width: 980px;
  margin: 0 auto;
}

.rx-formula-card {
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rx-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.rx-table th {
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}

.rx-table th:last-child {
  text-align: right;
}

.rx-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border-subtle);
}

.rx-table tr:hover td {
  background: #f9f9f9;
}

.rx-table td b {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.rx-table td small {
  color: #71717A;
  font-size: 11px;
}

.rx-table td.amount {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  color: #000000;
}

/* ==========================================================================
   Recoil Slide-Out Cart Drawer
   ========================================================================== */
.rx-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  background: #ffffff;
  border-left: 1px solid #000000;
  z-index: 150;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-recoil);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.rx-cart-drawer.is-open {
  transform: translateX(0);
}

.rx-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--page-gutter);
  border-bottom: 1px solid var(--color-border-subtle);
}

.rx-cart-drawer__header h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* Free Shipping Bar with Neon Green Fill */
.rx-shipping-bar {
  padding: 12px var(--page-gutter);
  background: #000000;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.rx-shipping-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.rx-shipping-fill {
  height: 100%;
  width: 100%;
  background: var(--rx-accent);
}

.rx-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rx-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-light);
  animation: rxItemSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.rx-cart-item.is-removing {
  opacity: 0;
  transform: translateX(30px);
}

@keyframes rxItemSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rx-cart-item__media,
.rx-cart-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: var(--radius-subtle);
  display: block;
}

.rx-cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rx-cart-item__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  color: #111111;
}

.rx-cart-item__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: #111111;
}

/* Modern Compact Stepper Control (+ / -) */
.rx-cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e4e4e7;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  height: 28px;
  width: fit-content;
  margin-top: 5px;
}

.rx-cart-qty-btn {
  background: transparent;
  border: none;
  width: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #18181b;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  user-select: none;
  padding: 0;
}

.rx-cart-qty-btn:hover {
  background: #f4f4f5;
  color: #000000;
}

.rx-cart-qty-btn:active {
  background: #e4e4e7;
}

.rx-cart-qty-val {
  min-width: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: #09090b;
  padding: 0 4px;
  transition: transform 0.15s ease, color 0.15s ease;
}

.rx-cart-qty-val.is-updating {
  transform: scale(1.35);
  color: var(--rx-accent, #00ff66);
}

.rx-cart-item__remove {
  background: transparent;
  border: none;
  color: #a1a1aa;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-cart-item__remove:hover {
  color: #ef4444;
}

/* Badge Bounce / Pop Animation */
@keyframes rxBadgePop {
  0% { transform: scale(1); }
  35% { transform: scale(1.45); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.rx-cart-badge.has-bounce {
  animation: rxBadgePop 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Add to Cart Button States (Loading & Success) */
.single_add_to_cart_button.is-loading,
.rx-pdp__add-btn.is-loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
}

.single_add_to_cart_button.is-loading::after,
.rx-pdp__add-btn.is-loading::after {
  content: '' !important;
  position: absolute !important;
  width: 18px !important;
  height: 18px !important;
  top: calc(50% - 9px) !important;
  left: calc(50% - 9px) !important;
  border: 2.5px solid rgba(255, 255, 255, 0.3) !important;
  border-top-color: var(--rx-accent, #00ff66) !important;
  border-radius: 50% !important;
  animation: rxSpin 0.6s linear infinite !important;
}

.single_add_to_cart_button.is-added,
.rx-pdp__add-btn.is-added {
  background: var(--rx-accent, #00ff66) !important;
  color: #000000 !important;
  border-color: var(--rx-accent, #00ff66) !important;
  box-shadow: 0 0 18px var(--rx-accent-glow, rgba(0, 255, 102, 0.45)) !important;
}

@keyframes rxSpin {
  to { transform: rotate(360deg); }
}

.rx-cart-drawer__footer {
  padding: 18px var(--page-gutter);
  border-top: 1px solid var(--color-border-subtle);
  background: #fcfcfc;
}

.rx-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
}

.rx-checkout-btn {
  width: 100%;
  height: 52px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-subtle);
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}

.rx-checkout-btn:hover {
  background: var(--rx-accent);
  border-color: var(--rx-accent);
  color: #000000;
}

/* ==========================================================================
   Recoil Exact Minimalist Footer
   ========================================================================== */
.rx-footer {
  background: #000000;
  color: #ffffff;
  padding-top: var(--section-gutter);
  padding-bottom: 30px;
  width: 100%;
}

.rx-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding-inline: var(--page-gutter);
  margin-bottom: 40px;
}

.rx-footer__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.rx-footer p {
  color: #A1A1AA;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 34ch;
}

.rx-footer h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.rx-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rx-footer a {
  color: #A1A1AA;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.rx-footer a:hover {
  color: var(--rx-accent);
}

.rx-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px var(--page-gutter) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: #71717A;
  font-size: 11px;
}

.rx-footer__payments {
  display: flex;
  gap: 8px;
}

.rx-footer__payments span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #ffffff;
}

@media (max-width: 900px) {
  .rx-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .rx-footer__grid { grid-template-columns: 1fr; }
}

/* Scrim */
.rx-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.rx-scrim.is-open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   Recoil Estimated Delivery Timeline & Third-Party Lab Reports
   ========================================================================== */
#rx-xceed-product-info {
  margin: 14px 0 0;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #ffffff;
  font-family: var(--font-body);
}

.rx-u-delivery {
  padding: 16px 18px;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-subtle);
}

.rx-u-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  width: 100%;
  margin: 0;
  padding: 0;
}

.rx-u-track {
  position: absolute;
  top: 14px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: #e4e4e7;
  z-index: 1;
}

.rx-u-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.rx-u-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18181b;
}

.rx-u-step.is-done .rx-u-step-icon {
  background: #18181b;
  color: var(--rx-accent);
  border-color: #18181b;
}

.rx-u-step-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.rx-u-step strong {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #040404;
}

.rx-u-step span[data-rx-u-date] {
  font-size: 9.5px;
  color: #71717A;
  font-weight: 600;
}

.rx-u-delivery-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f4f4f5;
  color: #71717A;
  font-size: 11px;
  font-weight: 600;
}

.rx-u-delivery-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rx-u-delivery-meta svg {
  width: 14px;
  height: 14px;
  color: var(--rx-accent);
  stroke: currentColor;
  fill: none;
}

.rx-u-report {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  background: #fafafa;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.rx-u-report:hover {
  background: #f4f4f5;
}

.rx-u-report-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(137, 217, 87, 0.18);
  color: #040404;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-u-report-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.rx-u-report-copy strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: #040404;
}

.rx-u-report-copy small {
  display: block;
  font-size: 10px;
  color: #71717A;
}

.rx-u-report-action {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #040404;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1.5px solid var(--rx-accent);
  padding-bottom: 1px;
}

/* ==========================================================================
   Recoil Recommended Timing Marquee Ribbon
   ========================================================================== */
.xceed-timing-marquee {
  width: 100%;
  background: #040404;
  color: #ffffff;
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.xceed-timing-marquee__track {
  display: inline-flex;
  gap: 32px;
  animation: rxMarqueeScroll 28s linear infinite;
}

.xceed-timing-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.xceed-timing-marquee__group i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rx-accent);
}

/* ==========================================================================
   Recoil "Why XCEED is different" Section
   ========================================================================== */
.rx-xceed-difference {
  width: 100%;
  padding: 56px var(--page-gutter) 64px;
  background: #ffffff;
  color: #040404;
  border-top: 1px solid var(--color-border-subtle);
}

.rx-xceed-difference__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.rx-xceed-difference__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 36px;
}

.rx-xceed-difference__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(4, 4, 4, 0.12);
  border: 1px solid rgba(4, 4, 4, 0.12);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.rx-xceed-difference__item {
  background: #ffffff;
  padding: 28px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.rx-xceed-difference__check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--rx-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-xceed-difference__check svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rx-xceed-difference__text {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #040404;
  margin: 0;
}

@media (max-width: 860px) {
  .rx-xceed-difference__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .rx-xceed-difference__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Recoil Taste Profile Section
   ========================================================================== */
.rx-xceed-taste {
  width: 100%;
  padding: 60px var(--page-gutter) 70px;
  background: #fafafa;
  border-top: 1px solid var(--color-border-subtle);
}

.rx-xceed-taste__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rx-xceed-taste__header {
  text-align: center;
  margin-bottom: 36px;
}

.rx-xceed-taste__heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
}

.rx-xceed-taste__subhead {
  font-size: 14px;
  color: #71717A;
  margin: 10px 0 0;
}

.rx-xceed-taste__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rx-xceed-taste__card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000000;
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.rx-xceed-taste__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--rx-accent);
  color: #040404;
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}

.rx-xceed-taste__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-recoil);
  opacity: 0.78;
}

.rx-xceed-taste__card:hover .rx-xceed-taste__image {
  transform: scale(1.05);
  opacity: 0.88;
}

.rx-xceed-taste__content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: #ffffff;
}

.rx-xceed-taste__name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.rx-xceed-taste__profile {
  font-size: 13px;
  color: #d4d4d8;
  margin: 6px 0 14px;
  line-height: 1.4;
}

.rx-xceed-taste__cta {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rx-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .rx-xceed-taste__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Recoil Batch Testing Section
   ========================================================================== */
.rx-batch-testing {
  width: 100%;
  padding: 64px var(--page-gutter);
  background: #ffffff;
  border-top: 1px solid var(--color-border-subtle);
}

.rx-batch-testing__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

.rx-batch-testing__intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.rx-batch-testing__intro p {
  color: #52525B;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.rx-batch-testing__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #040404;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-subtle);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #040404;
  cursor: pointer;
  transition: all 0.25s;
}

.rx-batch-testing__button:hover {
  background: var(--rx-accent);
  color: #040404;
  border-color: var(--rx-accent);
}

.rx-batch-testing__button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.rx-batch-testing__points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rx-batch-testing__point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fafafa;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
}

.rx-batch-testing__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rx-accent);
  flex: 0 0 38px;
}

.rx-batch-testing__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.rx-batch-testing__cert-icons {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #040404;
  color: var(--rx-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 900;
  line-height: 1.1;
  flex: 0 0 38px;
}

.rx-batch-testing__copy h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}

.rx-batch-testing__copy p {
  font-size: 13px;
  color: #71717A;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .rx-batch-testing__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Recoil Customer Reviews & Photo Marquee
   ========================================================================== */
.recoil-trust-reviews-lemon {
  width: 100%;
  background: #ffffff;
  padding: 60px 0 70px;
  overflow: hidden;
  border-top: 1px solid var(--color-border-subtle);
}

.rtr-inner {
  width: 100%;
}

.rtr-header {
  text-align: center;
  padding-inline: var(--page-gutter);
  margin-bottom: 28px;
}

.rtr-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

.rtr-marquee {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 24px;
}

.rtr-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: rxMarqueeScroll 35s linear infinite;
}

.rtr-card {
  width: 180px;
  height: 220px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #f4f4f5;
  border: 1px solid var(--color-border-subtle);
  flex-shrink: 0;
}

.rtr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rtr-review-box {
  max-width: 720px;
  margin: 16px auto 0;
  padding-inline: var(--page-gutter);
  text-align: center;
}

.rtr-stars {
  color: var(--rx-accent);
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.rtr-review {
  display: none;
}

.rtr-review.active {
  display: block;
}

.rtr-review p {
  font-size: 16px;
  line-height: 1.6;
  color: #18181b;
  font-weight: 500;
  margin: 0 0 14px;
}

.rtr-review h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 2px;
  color: #040404;
}

.rtr-review span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--rx-accent);
  text-transform: uppercase;
}

/* ==========================================================================
   Recoil Pre-Workout FAQ Accordion Section
   ========================================================================== */
.recoil-pre-faq-section {
  width: 100%;
  padding: 64px var(--page-gutter) 80px;
  background: #fafafa;
  border-top: 1px solid var(--color-border-subtle);
}

.recoil-pre-faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.recoil-pre-faq-head {
  text-align: center;
  margin-bottom: 40px;
}

.recoil-pre-faq-eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rx-accent);
  margin: 0 0 8px;
}

.recoil-pre-faq-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.15;
}

.recoil-pre-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recoil-pre-faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s;
}

.recoil-pre-faq-item[open] {
  border-color: #040404;
}

.recoil-pre-faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.recoil-pre-faq-question::-webkit-details-marker {
  display: none;
}

.recoil-pre-faq-question::after {
  content: '+';
  font-size: 18px;
  font-weight: 900;
  color: var(--rx-accent);
  transition: transform 0.2s;
}

.recoil-pre-faq-item[open] .recoil-pre-faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.recoil-pre-faq-answer {
  padding: 0 24px 22px;
  color: #52525B;
  font-size: 13.5px;
  line-height: 1.65;
}

.recoil-pre-faq-answer p {
  margin: 0 0 10px;
}

.recoil-pre-faq-answer p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Complete WhatsApp & External Chat Dock Suppression
   ========================================================================== */
.wa-fab,
.udock-root,
.udock-bottom-nav,
.udock-container,
.joinchat,
.ht-ctc-chat,
.qlwapp,
.floating-wpp,
[class*="whatsapp"],
[id*="whatsapp"],
[class*="udock"],
[id*="udock"],
a[href*="wa.me"],
a[href*="whatsapp.com"],
a[href*="api.whatsapp.com"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ==========================================================================
   Generous Section Spacing & Grand Scale
   ========================================================================== */
.site-main > section,
.site-main > div.rx-pdp,
.site-main > div.wrap {
  position: relative;
  width: 100%;
}

.rx-carousel-wrap {
  padding-block: clamp(60px, 8vw, 110px) !important;
}

.rx-editorial-section {
  padding-block: clamp(80px, 9vw, 130px) !important;
}

.rx-editorial-header {
  margin-bottom: clamp(40px, 5vw, 64px) !important;
}

.rx-editorial-grid {
  gap: clamp(20px, 2.5vw, 32px) !important;
}

.rx-footer {
  padding-top: clamp(64px, 8vw, 110px) !important;
}

/* Mobile & Tablet Viewport Integrity */
html, body {
  max-width: 100%;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   Native Mobile App Experience (Phones < 768px & Tablets 768px-1024px)
   ========================================================================== */

/* 1. Mobile Bottom App Bar (Persistent Floating Nav) */
.rx-mobile-appbar {
  display: none;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  body.single-product {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  .rx-mobile-appbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 56px;
    padding-top: 6px;
    padding-bottom: max(8px, env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
    align-items: center;
    justify-items: center;
    transition: transform 0.3s ease;
  }

  .single-product .rx-mobile-appbar {
    display: none; /* Hide default app bar on single product to prioritize sticky buy bar */
  }

  .rx-mobile-appbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 6px;
    color: #71717A;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .rx-mobile-appbar__item:active {
    transform: scale(0.90);
  }

  .rx-mobile-appbar__item.is-active,
  .rx-mobile-appbar__item:hover {
    color: #000000;
  }

  .rx-mobile-appbar__item.is-active::after {
    content: '';
    position: absolute;
    top: 0px;
    width: 4px;
    height: 4px;
    background: var(--rx-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--rx-accent);
  }

  .rx-mobile-appbar__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
  }

  .rx-mobile-appbar__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: stroke 0.2s ease;
  }

  .rx-mobile-appbar__item.is-active .rx-mobile-appbar__icon svg {
    stroke: #000000;
    stroke-width: 2.3;
  }

  .rx-mobile-appbar__icon--badge .rx-cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 9px;
    font-weight: 800;
    background: var(--rx-accent);
    color: #000000;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* 2. Sticky Mobile PDP Action Bar */
  .rx-mobile-pdp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    gap: 12px;
  }

  .rx-mobile-pdp-bar__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
  }

  .rx-mobile-pdp-bar__title {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }

  .rx-mobile-pdp-bar__price {
    font-size: 15px;
    font-weight: 800;
    color: #000000;
    font-family: var(--font-heading);
    margin-top: 2px;
  }

  .rx-mobile-pdp-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .rx-mobile-pdp-bar__actions .btn {
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full);
    background: var(--rx-accent);
    color: #000000;
    box-shadow: 0 4px 14px rgba(137, 217, 87, 0.45);
    white-space: nowrap;
  }

  .rx-mobile-pdp-bar__actions .btn:active {
    transform: scale(0.96);
  }

  /* 3. App-like Horizontal Touch Carousel for Products */
  .rx-carousel-track {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    padding: 10px 16px 20px !important;
    scrollbar-width: none;
  }

  .rx-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .rx-carousel-track > article,
  .rx-carousel-track .rx-card--product {
    flex: 0 0 260px !important;
    min-width: 260px !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* App-like Card Feedback */
  .rx-card--product {
    border-radius: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .rx-card--product:active {
    transform: scale(0.98);
  }

  /* Drawer App Sheet Feeling */
  .mnav {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .rx-cart-drawer {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}

/* 4. Tablet Specific Refinements (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .rx-mobile-pdp-bar {
    display: none;
  }

  .rx-header__inner {
    height: 80px;
    padding-inline: 24px;
  }

  .rx-header__logo {
    height: 66px;
  }

  .rx-header__logo img {
    height: 60px;
    max-width: 270px;
  }

  /* Tablet 2 to 3 column layout */
  .rx-carousel-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .rx-card--product {
    min-width: unset !important;
  }

  .rx-hero__title {
    font-size: clamp(34px, 5.5vw, 48px) !important;
  }

  .rx-editorial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .rx-footer__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 36px 24px !important;
  }

  .rx-pdp {
    gap: 32px !important;
  }
}

/* ==========================================================================
   Clean Label Formula Highlights (No Added Colour, No Added Sugar, Zero Creatine)
   ========================================================================== */
.rx-clean-highlights {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 14px 0 18px !important;
}

.rx-clean-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #09090b !important;
  color: #ffffff !important;
  border: 1px solid #27272a !important;
  padding: 6px 12px !important;
  border-radius: 9999px !important;
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
}

.rx-clean-pill svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--rx-accent) !important;
  flex-shrink: 0 !important;
}

.rx-clean-pill--accent {
  background: var(--rx-accent) !important;
  color: #000000 !important;
  border-color: var(--rx-accent) !important;
}

.rx-clean-pill--accent svg {
  color: #000000 !important;
}

/* ==========================================================================
   Added to Cart Floating Popup & Fly-to-Cart Animation
   ========================================================================== */

/* Fly-to-cart particle / ghost image */
.rx-fly-item {
  position: fixed;
  z-index: 99999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--rx-accent, #00ff66);
  box-shadow: 0 10px 28px rgba(0, 255, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity, top, left;
}

/* Floating Cart Popup */
.rx-cart-popup {
  position: fixed;
  top: 90px;
  right: 24px;
  width: min(380px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 16px 18px;
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px) scale(0.96);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.rx-cart-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .rx-cart-popup {
    top: auto;
    bottom: 84px;
    right: 16px;
    left: 16px;
    width: auto;
    transform: translateY(20px) scale(0.96);
  }
  .rx-cart-popup.is-visible {
    transform: translateY(0) scale(1);
  }
}

.rx-cart-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #f4f4f5;
  margin-bottom: 12px;
}

.rx-cart-popup__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  color: #09090b;
  letter-spacing: 0.04em;
}

.rx-cart-popup__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rx-accent, #00ff66);
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rx-cart-popup__check svg {
  width: 12px;
  height: 12px;
}

.rx-cart-popup__close {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #71717a;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.15s;
}

.rx-cart-popup__close:hover {
  color: #000000;
}

.rx-cart-popup__body {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.rx-cart-popup__img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #f4f4f5;
}

.rx-cart-popup__info {
  flex: 1;
  min-width: 0;
}

.rx-cart-popup__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  color: #09090b;
  line-height: 1.3;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rx-cart-popup__meta {
  font-size: 11px;
  color: #71717a;
  margin-bottom: 2px;
}

.rx-cart-popup__price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  color: #09090b;
}

.rx-cart-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rx-cart-popup__btn-view {
  width: 100%;
  height: 42px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-subtle, 6px);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rx-cart-popup__btn-view:hover {
  background: var(--rx-accent, #00ff66);
  color: #000000;
}

.rx-cart-popup__btn-continue {
  background: transparent;
  border: none;
  font-size: 11px;
  font-weight: 600;
  color: #71717a;
  cursor: pointer;
  padding: 4px;
  text-align: center;
  transition: color 0.15s;
}

.rx-cart-popup__btn-continue:hover {
  color: #000000;
  text-decoration: underline;
}

/* ==========================================================================
   Tiered Free-Gift Rewards Progress Bar (Gamified Cart Milestone)
   ========================================================================== */
.rx-tiered-bar {
  padding: 14px 18px 18px;
  background: #09090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.rx-tiered-bar__text {
  font-size: 11px;
  text-align: center;
  margin-bottom: 12px;
  color: #a1a1aa;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}

.rx-tiered-bar__text strong {
  color: var(--rx-accent, #00ff66);
  font-weight: 800;
}

.rx-tiered-progress {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  margin: 10px 10px 24px;
}

.rx-tiered-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff66, #39ff14);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.5);
}

.rx-tiered-nodes {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.rx-tiered-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rx-node-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #27272a;
  border: 2px solid #52525b;
  transition: all 0.3s ease;
}

.rx-tiered-node.is-active .rx-node-dot {
  background: var(--rx-accent, #00ff66);
  border-color: #000000;
  box-shadow: 0 0 8px rgba(0, 255, 102, 0.9);
}

.rx-node-label {
  position: absolute;
  top: 15px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  color: #71717a;
  letter-spacing: 0.04em;
  font-family: var(--font-heading);
}

.rx-tiered-node.is-active .rx-node-label {
  color: #ffffff;
}

/* ==========================================================================
   Flavor Taste Profile & Energy Kick Meters (PDP)
   ========================================================================== */
.rx-flavor-meters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 18px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-subtle, 6px);
}

.rx-meter-item {
  display: grid;
  grid-template-columns: 85px 1fr 50px;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-family: var(--font-heading);
}

.rx-meter-label {
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
  letter-spacing: 0.04em;
  font-size: 10px;
}

.rx-meter-track {
  height: 7px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.rx-meter-fill {
  height: 100%;
  background: #0f172a;
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.rx-meter-fill--accent {
  background: linear-gradient(90deg, #10b981, #00ff66);
}

.rx-meter-score {
  font-weight: 900;
  color: #0f172a;
  text-align: right;
  font-size: 11px;
}

/* ==========================================================================
   Pincode Delivery & COD Checker Widget (PDP)
   ========================================================================== */
.rx-pincode-checker {
  margin: 16px 0;
  padding: 14px 16px;
  background: #fafafa;
  border: 1px solid #e4e4e7;
  border-radius: var(--radius-subtle, 6px);
}

.rx-pincode-checker__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: #18181b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.rx-pincode-checker__label svg {
  width: 16px;
  height: 16px;
  color: var(--rx-accent-dark, #00b347);
  flex-shrink: 0;
}

.rx-pincode-checker__input-group {
  display: flex;
  gap: 8px;
}

.rx-pincode-checker__input-group input {
  flex: 1;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d4d4d8;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s;
  background: #ffffff;
}

.rx-pincode-checker__input-group input:focus {
  border-color: #000000;
}

.rx-pincode-checker__input-group button {
  height: 40px;
  padding: 0 18px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}

.rx-pincode-checker__input-group button:hover {
  background: var(--rx-accent, #00ff66);
  color: #000000;
}

.rx-pincode-result {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
  display: none;
}

.rx-pincode-result.is-valid {
  display: block;
  color: #15803d;
  background: #f0fdf4;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #bbf7d0;
}

.rx-pincode-result.is-invalid {
  display: block;
  color: #b91c1c;
  background: #fef2f2;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   Frequently Bought Together / 1-Click Bundle Card
   ========================================================================== */
.rx-bundle-card {
  margin: 22px 0;
  padding: 18px;
  background: #ffffff;
  border: 1.5px solid #000000;
  border-radius: var(--radius-subtle, 8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.rx-bundle-card__badge {
  display: inline-block;
  background: #000000;
  color: var(--rx-accent, #00ff66);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.rx-bundle-card__title {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000000;
}

.rx-bundle-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px dashed #e4e4e7;
  border-bottom: 1px dashed #e4e4e7;
}

.rx-bundle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90px;
}

.rx-bundle-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f4f4f5;
  border-radius: 6px;
  padding: 4px;
}

.rx-bundle-item__info strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #09090b;
  line-height: 1.2;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
}

.rx-bundle-item__info span {
  font-size: 10px;
  font-weight: 800;
  color: #27272a;
}

.rx-bundle-plus {
  font-size: 16px;
  font-weight: 900;
  color: #71717a;
}

.rx-bundle-action {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rx-bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.rx-bundle-total {
  font-weight: 900;
  color: #000000;
  font-size: 14px;
  font-family: var(--font-heading);
}

.rx-bundle-original {
  text-decoration: line-through;
  color: #71717a;
  font-size: 12px;
}

.rx-bundle-save-tag {
  background: #dcfce7;
  color: #166534;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
}

.rx-bundle-buy-btn {
  width: 100%;
  height: 44px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rx-bundle-buy-btn:hover {
  background: var(--rx-accent, #00ff66);
  color: #000000;
}

/* ==========================================================================
   Authenticity / Batch Lab Verification Modal
   ========================================================================== */
.rx-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.rx-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rx-modal-card {
  background: #ffffff;
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.rx-modal-overlay.is-open .rx-modal-card {
  transform: scale(1);
}

.rx-modal-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e4e4e7;
}

.rx-modal-card__close {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #71717a;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s;
}

.rx-modal-card__close:hover {
  background: #f4f4f5;
  color: #000000;
}

.rx-modal-card__body {
  padding: 20px;
}

.rx-batch-search {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.rx-batch-search input {
  flex: 1;
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid #d4d4d8;
  border-radius: 6px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  outline: none;
}

.rx-batch-search input:focus {
  border-color: #000000;
}

.rx-batch-search button {
  height: 42px;
  padding: 0 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}

.rx-batch-search button:hover {
  background: var(--rx-accent, #00ff66);
  color: #000000;
}

.rx-batch-result {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
}

.rx-batch-result__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 11px;
}

.rx-status-badge {
  background: #dcfce7;
  color: #166534;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  font-size: 10px;
}

.rx-batch-date {
  color: #64748b;
  font-weight: 600;
}

.rx-batch-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.rx-batch-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.rx-batch-table td {
  padding: 9px 4px;
  color: #334155;
}

.rx-check-pill {
  background: #000000;
  color: var(--rx-accent, #00ff66);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 3px;
  letter-spacing: 0.06em;
}

.rx-verify-trigger {
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: opacity 0.15s;
}

.rx-verify-trigger:hover {
  opacity: 0.75;
}

/* ==========================================================================
   Sticky Mobile PDP Action Dock (#rxMobileBuyBar)
   ========================================================================== */
.rx-mobile-buy-bar {
  display: none;
}

/* ==========================================================================
   App-like Mobile Bottom Sheets & Native Experience (< 768px)
   ========================================================================== */
@media (max-width: 767px) {
  /* Cart Drawer transformed into Native iOS / Android Bottom Sheet */
  .rx-cart-drawer {
    top: auto !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    max-height: 88vh !important;
    height: auto !important;
    border-radius: 22px 22px 0 0 !important;
    transform: translateY(105%) !important;
    border-left: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.6) !important;
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom, 16px);
  }

  .rx-cart-drawer.is-open {
    transform: translateY(0) !important;
  }

  /* Bottom sheet swipe pill indicator */
  .rx-cart-drawer::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 99px;
    margin: 10px auto -2px;
    flex-shrink: 0;
  }

  .rx-cart-items {
    max-height: 48vh;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* Sticky Mobile PDP Buy Bar */
  .rx-mobile-buy-bar {
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 54px);
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(140%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }

  .rx-mobile-buy-bar.is-visible {
    transform: translateY(0);
  }

  .rx-mobile-buy-bar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .rx-mobile-buy-bar__thumb {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 4px;
    background: #f4f4f5;
    flex-shrink: 0;
  }

  .rx-mobile-buy-bar__title {
    font-size: 11px;
    font-weight: 800;
    color: #09090b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
    text-transform: uppercase;
    font-family: var(--font-heading);
  }

  .rx-mobile-buy-bar__price {
    font-size: 12px;
    font-weight: 900;
    color: #18181b;
  }

  .rx-mobile-buy-bar__btn {
    height: 38px;
    padding: 0 16px;
    background: var(--rx-accent, #00ff66);
    color: #000000;
    border: none;
    border-radius: var(--radius-subtle, 6px);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 255, 102, 0.35);
  }
}

/* ==========================================================================
   MuscleBlaze Mobile Enhancements (Search Bar & Quick Category Circles)
   ========================================================================== */
.mb-search-wrap {
  display: none;
  background: #ffffff;
  padding: 8px 14px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 64px;
  z-index: 990;
}

@media (max-width: 768px) {
  .mb-search-wrap {
    display: block;
  }
}

.mb-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 9999px;
  padding: 8px 16px;
  color: #71717a;
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mb-search-bar:active {
  background: #ececee;
  border-color: #000000;
}

.mb-search-bar svg {
  width: 16px;
  height: 16px;
  color: #18181b;
  flex-shrink: 0;
}

.mb-search-bar span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* MuscleBlaze Quick Category Circles Strip */
.mb-category-strip {
  background: #ffffff;
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mb-category-rail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 var(--page-gutter, 16px);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mb-category-rail::-webkit-scrollbar {
  display: none;
}

.mb-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex: 0 0 auto;
  width: 68px;
}

.mb-category-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f4f4f5;
  border: 1.5px solid #e4e4e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18181b;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mb-category-circle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.mb-category-item:hover .mb-category-circle,
.mb-category-item:active .mb-category-circle {
  border-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.mb-circle--neon {
  background: rgba(195, 232, 43, 0.15);
  border-color: var(--rx-accent, #c3e82b);
  color: #000000;
}

.mb-circle--all {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.mb-category-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #27272a;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
  word-break: break-word;
}

/* ==========================================================================
   Interactive Animated Category Filter Pills (Shop / Catalog Page)
   ========================================================================== */
.rx-filter-section {
  width: 100%;
}

.rx-filter-track {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .rx-filter-section {
    padding: 10px 14px !important;
    top: 64px !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .rx-filter-section::-webkit-scrollbar {
    display: none;
  }
  .rx-filter-track {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: max-content;
    padding-inline: 4px;
  }
}

.rx-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: #ffffff;
  color: #18181b;
  border: 1.5px solid var(--color-border-subtle, #e4e4e7);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.rx-filter-pill:hover {
  border-color: #000000;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rx-filter-pill:active {
  transform: scale(0.96);
}

.rx-filter-pill.is-active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  transform: scale(1.05);
}

/* 2-Column Responsive Products Grid for Phones */
@media (max-width: 768px) {
  .rx-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding-inline: 14px !important;
    padding-bottom: 40px !important;
  }
  .rx-product-grid .rx-product-card {
    border-radius: 8px !important;
    margin: 0 !important;
  }
  .rx-product-grid .rx-card-mini-banner {
    top: 6px !important;
    left: 6px !important;
    padding: 2px 6px !important;
    font-size: 8px !important;
    border-radius: 3px !important;
  }
  .rx-product-grid .rx-card__media {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
  }
  .rx-product-grid .rx-final-title-block {
    padding: 8px 8px 2px !important;
  }
  .rx-product-grid .rx-final-title-main {
    font-size: 11.5px !important;
    line-height: 1.25 !important;
  }
  .rx-product-grid .rx-final-title-sub {
    display: none !important;
  }
  .rx-product-grid .rx-card-rating {
    padding: 2px 8px 4px !important;
    font-size: 10px !important;
    gap: 3px !important;
  }
  .rx-product-grid .rx-card-rating svg {
    width: 10px !important;
    height: 10px !important;
  }
  .rx-product-grid .rx-card-footer {
    padding: 4px 8px 8px !important;
  }
  .rx-product-grid .rx-price-now {
    font-size: 12px !important;
  }
  .rx-product-grid .rx-add-btn {
    height: 30px !important;
    padding: 0 10px !important;
    font-size: 10.5px !important;
    border-radius: 4px !important;
  }
}

/* Card Animation during Live Filtering */
.rx-shop-card {
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.rx-shop-card.is-hidden {
  display: none !important;
}

/* ==========================================================================
   Recoil-Style Contact Form & Direct Support Page
   ========================================================================== */
.rx-contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
}

@media (max-width: 900px) {
  .rx-contact-layout {
    grid-template-columns: 1fr !important;
  }
}

.rx-contact-card {
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: clamp(20px, 3.5vw, 40px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.rx-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .rx-form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

.rx-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rx-form-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #18181b;
}

.rx-form-input,
.rx-form-select,
.rx-form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #040404;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.rx-form-input:focus,
.rx-form-select:focus,
.rx-form-textarea:focus {
  background: #ffffff;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.rx-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.rx-contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.rx-contact-submit-btn:hover {
  background: #18181b;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.rx-contact-submit-btn:active {
  transform: translateY(0);
}

