/* ===================================================================
   Sizing Guide Page - page-specific sticky CTA
   Shared parent/child page shell lives in styles-guide-template.css.
   =================================================================== */

.sizing-guide-page .sticky-cta-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(224, 227, 231, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.24s ease;
}

.sizing-guide-page .sticky-cta-bar.visible {
  transform: translateY(0);
}

.sizing-guide-page .sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.sizing-guide-page .sticky-cta-text {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.sizing-guide-page .sticky-cta-text strong {
  color: var(--text);
}

.sizing-guide-page .sticky-cta-actions {
  flex-shrink: 0;
}

.sizing-guide-page .sticky-cta-actions .button {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.84rem;
}

@media (max-width: 640px) {
  .sizing-guide-page .sticky-cta-text {
    display: none;
  }

  .sizing-guide-page .sticky-cta-actions,
  .sizing-guide-page .sticky-cta-actions .button {
    width: 100%;
  }
}
