.elementor-123 .elementor-element.elementor-element-a97fdb6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for container, class: .elementor-element-a97fdb6 *//**
 * Amazon Sellers Appeal - Site footer + floating CTA (standalone).
 * Pair with amazonsellersappeal-premium-footer.html
 */
:root {
  /* === Colors === */
  --sa-ink: #334155;
  /* Body / secondary: solid slate for WCAG AA contrast on white & soft backgrounds */
  --sa-text: #334155;
  --sa-muted: #5c6570;
  --sa-text-strong: #1e293b;
  /* Prose links: distinguish from surrounding text (1.4.1); ≥4.5:1 on white */
  --sa-link: #b45309;
  --sa-link-hover: #92400e;
  --sa-line: rgba(51, 65, 85, 0.06);
  --sa-line-strong: rgba(51, 65, 85, 0.1);
  --sa-soft: #f8f9fb;
  --sa-soft-2: #eef1f5;
  --sa-bg: #fff;
  --sa-bg-page: #f0f2f5;
  --sa-skip-bg: #1a365d;
  --sa-risk-bg: rgba(255, 243, 243, 0.5);

  /* Accent (orange brand) */
  --sa-accent: #e86b0c;
  --sa-accent-original: #f26c0f;
  --sa-accent-2: #ff9f4d;

  /* Gold (testimonial cards: stars, left frame) */
  --sa-gold: #d8bc6a;

  /* === Spacing (8px base) === */
  --sa-space-xs: 0.25rem;
  --sa-space-sm: 0.375rem;
  --sa-space-md: 1rem;
  --sa-space-lg: 1.5rem;
  --sa-space-xl: 2rem;
  --sa-space-2xl: 2.5rem;

  /* === Border radius === */
  --sa-r-sm: 12px;
  --sa-r-md: 16px;
  --sa-r-lg: 24px;

  /* === Shadows (layered, one light source 1:2 ratio, color-matched to ink) === */
  --sa-shadow-hsl: 218 20% 18%;
  --sa-shadow-sm:
    1px 2px 2px hsl(var(--sa-shadow-hsl) / 0.06),
    2px 4px 4px hsl(var(--sa-shadow-hsl) / 0.05),
    4px 8px 8px hsl(var(--sa-shadow-hsl) / 0.04);
  --sa-shadow-md:
    1px 2px 2px hsl(var(--sa-shadow-hsl) / 0.08),
    2px 4px 4px hsl(var(--sa-shadow-hsl) / 0.06),
    4px 8px 8px hsl(var(--sa-shadow-hsl) / 0.05),
    8px 16px 16px hsl(var(--sa-shadow-hsl) / 0.04);
  --sa-shadow-lg:
    1px 2px 2px hsl(var(--sa-shadow-hsl) / 0.06),
    2px 4px 4px hsl(var(--sa-shadow-hsl) / 0.05),
    4px 8px 8px hsl(var(--sa-shadow-hsl) / 0.05),
    8px 16px 16px hsl(var(--sa-shadow-hsl) / 0.04),
    16px 32px 32px hsl(var(--sa-shadow-hsl) / 0.04);
  --sa-shadow-accent:
    1px 2px 4px hsl(24 85% 45% / 0.15),
    4px 8px 16px hsl(24 85% 45% / 0.12);

  /* === Layout (aligned across header, main, footer) === */
  --sa-max: 1200px;
  --sa-max-wide: 1400px;
  --sa-max-read: 980px;
  --sa-hero-read: 680px;
  --sa-checklist-max-height: 420px;
  --sa-scroll-offset: 6.25rem; /* sticky header + padding for anchor targets */

  /* Tiled section backgrounds (subtle; layered over zebra / section fills) */
  --sa-bg-pat-tic: url('https://amazonsellersappeal.com/wp-content/uploads/2024/08/tic-tac-toe.webp');
  --sa-bg-pat-round: url('https://amazonsellersappeal.com/wp-content/uploads/2024/08/round.png');
  --sa-bg-pat-dot: url('https://amazonsellersappeal.com/wp-content/uploads/2024/08/dot-grid.webp');
  --sa-bg-pat-waves: url('https://amazonsellersappeal.com/wp-content/uploads/2024/08/white-waves.webp');
  --sa-bg-pat-opacity: 0.44;

  /* === Typography (optional heading font) === */
  --sa-font-heading: 'Playfair Display', Georgia, serif;

  /* === Motion (respect prefers-reduced-motion) === */
  --duration-fast: 140ms;
  --duration-normal: 260ms;
  --duration-slow: 420ms;
  --sa-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sa-ease-out: cubic-bezier(0.33, 1, 0.68, 1);

  /* Fluid body scale (CSS-Tricks: clamp for responsive type) */
  --sa-font-body: clamp(15px, 0.88rem + 0.35vw, 17px);
  /* Frosted header: solid fallback overridden when backdrop-filter applies */
  --sa-header-glass: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
  }
}

@keyframes saShimmer {
  0% { transform: skewX(-20deg) translateX(-90%); }
  45% { transform: skewX(-20deg) translateX(150%); }
  100% { transform: skewX(-20deg) translateX(-90%); }
}

/* Shimmer on footer primary CTA + FAB */
.sa-site-footer .sa-btn-primary,
.sa-fab {
  position: relative;
  overflow: hidden;
}
.sa-site-footer .sa-btn-primary::before,
.sa-fab::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 55%; height: 100%;
  background: rgba(255,255,255,0.22);
  transform: skewX(-20deg) translateX(-90%);
  animation: saShimmer 7.5s cubic-bezier(0.4,0,0.2,1) infinite;
  pointer-events: none;
  z-index: -1;
}
.sa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  /* Above theme scroll-to-top / cookie banners; below JS toast (99999) */
  z-index: 99991;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 44px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--sa-accent-original) 94%, #1c1006) 0%,
    var(--sa-accent-2) 48%,
    var(--sa-accent-original) 100%
  );
  border-radius: 14px 50px 14px 50px;
  box-shadow:
    var(--sa-shadow-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border: none;
  transition: transform var(--duration-fast) var(--sa-ease), box-shadow var(--duration-fast) var(--sa-ease);
  overflow: hidden;
}
.sa-fab:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow:
    var(--sa-shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.sa-fab:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow:
    0 0 0 4px rgba(242, 108, 15, 0.45),
    var(--sa-shadow-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.sa-fab-label {
  position: relative;
  display: inline-block;
  min-height: 1.3em;
  z-index: 1;
}
.sa-fab-text {
  display: inline-block;
  color: #fff !important;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: transform var(--duration-normal) var(--sa-ease), opacity var(--duration-normal) var(--sa-ease);
}
.sa-fab-text-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 4px);
  opacity: 0;
  color: #fff !important;
  z-index: 1;
  transition: transform var(--duration-normal) var(--sa-ease), opacity var(--duration-normal) var(--sa-ease);
}
.sa-fab:hover .sa-fab-text:not(.sa-fab-text-hover) {
  opacity: 0;
  transform: translateY(-4px);
}
.sa-fab:hover .sa-fab-text-hover {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.sa-fab .sa-fab-emoji {
  display: inline-block;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}
@media (max-width: 480px) {
  .sa-fab { min-width: 160px; padding: 0.85rem 1.25rem; font-size: 0.95rem; bottom: 1.5rem; right: 1.5rem; }
}
/* Optional belt: other themes/plugins may still inject a scroll-to-top over .sa-fab; Astra can be off in Customizer. */
#ast-scroll-top,
.ast-scroll-to-top,
.ast-scroll-to-top-right,
#go-top,
.go-top,
.oceanwp-go-top,
#scroll-top,
.scroll-top:not(.sa-fab),
.scrollToTop,
.scroll-to-top-button,
#wpfront-scroll-top,
.wpfront-scroll-top-container,
.generate-back-to-top,
.kadence-scroll-to-top,
.neve-scroll-to-top,
.bricks-scroll-top,
.hfe-scroll-to-top,
#kt-scroll-up,
.elementor-widget-scroll-top {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/* Quick actions nav (landmark only; children are fixed) */
.sa-quick-actions {
  position: static;
}
/* FAB: default label row (paired with .sa-fab-text-hover) */
.sa-fab .sa-fab-text-default {
  position: relative;
  z-index: 1;
}
/* =========================================================
 Site footer (included for single-file home page)
========================================================= */
.sa-site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0d1320 100%);
  color: rgba(255, 255, 255, 0.92);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position: relative;
  margin-top: 0;
  padding-bottom: 0;
}
.sa-site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sa-accent-original) 0%, var(--sa-accent-2) 50%, var(--sa-accent-original) 100%);
  opacity: 0.9;
  pointer-events: none;
}
.sa-site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(242,108,15,0.12), transparent 50%);
  pointer-events: none;
}
.sa-footer-wrap {
  width: min(var(--sa-max), 92%);
  margin: 0 auto;
  padding: 36px 0 28px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 28px 36px;
  row-gap: 22px;
  position: relative;
  z-index: 1;
  align-items: start;
}
.sa-footer-brand {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}
.sa-site-footer .sa-footer-wrap > .sa-footer-grid {
  grid-column: 2;
  grid-row: 1;
}
.sa-footer-wrap > .sa-footer-cta {
  grid-column: 1 / -1;
  grid-row: 2;
}
.sa-footer-brand .sa-logo {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}
.sa-footer-brand .sa-logo-img,
.sa-footer-brand .sa-logo-img-footer {
  display: block;
  height: 58px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.sa-footer-brand .sa-logo:hover .sa-logo-img,
.sa-footer-brand .sa-logo:hover .sa-logo-img-footer {
  opacity: 1;
}
.sa-footer-summary {
  margin: 0 0 16px 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  font-size: 0.9rem;
  max-width: 320px;
}
.sa-footer-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 18px;
  margin: 0;
}
.sa-footer-metrics > div { min-width: 0; }
.sa-footer-metrics dt {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
.sa-footer-metrics dt a {
  color: #fff !important;
  text-decoration: none;
  transition: color var(--duration-fast) var(--sa-ease), opacity var(--duration-fast) var(--sa-ease);
}
.sa-footer-metrics dt a:hover,
.sa-footer-metrics dt a:focus-visible {
  color: var(--sa-accent-2) !important;
}
.sa-footer-metrics dd {
  margin: 6px 0 0 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
}
.sa-site-footer .sa-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 28px;
  align-items: start;
  width: 100%;
  min-width: 0;
}
.sa-footer-col h3 {
  margin: 0 0 9px 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
}
.sa-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sa-footer-col li a {
  color: rgba(255,255,255,0.88) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color var(--duration-fast) var(--sa-ease), background var(--duration-fast) var(--sa-ease);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  line-height: 1.4;
  padding: 7px 4px;
  border-radius: 4px;
}
.sa-footer-col li a:hover,
.sa-footer-col li a:focus-visible {
  color: var(--sa-accent-2) !important;
}
.sa-footer-col li a:focus-visible {
  outline: 2px solid var(--sa-accent-2);
  outline-offset: 2px;
}
.sa-footer-hours {
  margin: 8px 0 14px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 280px;
}
.sa-site-footer .sa-footer-hours a {
  color: var(--sa-accent-2) !important;
  font-weight: 600;
  text-decoration: none;
}
.sa-site-footer .sa-footer-hours a:hover,
.sa-site-footer .sa-footer-hours a:focus-visible {
  color: #fff !important;
  text-decoration: underline;
}
.sa-footer-24-7 {
  display: inline-block;
  padding: 2px 8px;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  background: rgba(242,108,15,0.95);
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.sa-footer-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 12px;
  flex-wrap: nowrap;
  min-width: 0;
  /* One row on all widths; tiny viewports can scroll horizontally if needed */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.sa-footer-cta .sa-btn {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.2rem;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  border-radius: 12px 50px 12px 50px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--sa-ease), box-shadow var(--duration-fast) var(--sa-ease), color var(--duration-fast) var(--sa-ease);
}
.sa-site-footer .sa-btn-primary,
.sa-site-footer .sa-btn-primary:hover,
.sa-site-footer .sa-btn-primary:focus-visible {
  color: #fff !important;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--sa-accent-original) 94%, #1c1006) 0%,
    var(--sa-accent-2) 48%,
    var(--sa-accent-original) 100%
  );
  border: none;
  box-shadow:
    var(--sa-shadow-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.sa-site-footer .sa-btn-primary:hover {
  box-shadow:
    var(--sa-shadow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.sa-site-footer .sa-btn-primary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow:
    0 0 0 4px rgba(242, 108, 15, 0.45),
    var(--sa-shadow-accent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.sa-site-footer .sa-btn-primary .sa-free-cta,
.sa-site-footer .sa-btn-primary .sa-free-cta strong,
.sa-site-footer .sa-btn-primary:hover .sa-free-cta,
.sa-site-footer .sa-btn-primary:hover .sa-free-cta strong {
  color: #fff !important;
}
.sa-site-footer .sa-btn-secondary,
.sa-site-footer .sa-btn-secondary:hover,
.sa-site-footer .sa-btn-secondary:focus-visible {
  color: rgba(255,255,255,0.95) !important;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
}
.sa-site-footer .sa-btn-secondary .sa-free-cta,
.sa-site-footer .sa-btn-secondary .sa-free-cta strong {
  color: rgba(255,255,255,0.95) !important;
}
.sa-site-footer .sa-btn-secondary:hover {
  background: rgba(255,255,255,0.18);
}
.sa-footer-bottom {
  position: relative;
  z-index: 1;
}
.sa-footer-bottom-wrap {
  width: min(var(--sa-max), 92%);
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sa-footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 520px;
}
.sa-footer-copyright {
  margin: 0;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.sa-footer-legal .sa-footer-disclaimer {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 400;
  white-space: nowrap;
}
.sa-footer-disclaimer {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .sa-footer-disclaimer,
  .sa-footer-legal .sa-footer-disclaimer { white-space: normal; }
}
.sa-footer-meta {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  padding: 0;
  margin-left: auto;
}
.sa-footer-meta a {
  color: rgba(255,255,255,0.95) !important;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--duration-fast) var(--sa-ease), background var(--duration-fast) var(--sa-ease);
}
.sa-footer-meta a:hover,
.sa-footer-meta a:focus-visible {
  color: var(--sa-accent-2) !important;
  background: rgba(255,255,255,0.08);
}
.sa-footer-meta a:focus-visible {
  outline: 2px solid var(--sa-accent-2);
  outline-offset: 2px;
}
@media (max-width: 1024px) {
  .sa-footer-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .sa-footer-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .sa-site-footer .sa-footer-wrap > .sa-footer-grid {
    grid-column: 1;
    grid-row: 2;
  }
  .sa-footer-wrap > .sa-footer-cta {
    grid-column: 1;
    grid-row: 3;
  }
  .sa-site-footer .sa-footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .sa-site-footer .sa-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sa-footer-col-social {
    grid-column: 1 / -1;
  }
  .sa-footer-col-social ul {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 0;
  }
}
@media (max-width: 680px) {
  .sa-site-footer .sa-footer-grid { grid-template-columns: 1fr; }
  .sa-footer-col-social {
    grid-column: auto;
  }
  .sa-footer-col-social ul {
    flex-direction: column;
    column-gap: 0;
    row-gap: 0;
  }
  .sa-footer-metrics { grid-template-columns: 1fr; }
  /* Three CTAs: row + nowrap + overflow-x clipped the third; stack full-width on narrow screens */
  .sa-footer-cta {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 10px;
  }
  .sa-footer-cta .sa-btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sa-site-footer .sa-btn-primary::before,
  .sa-fab::before { display: none !important; }
  .sa-fab, .sa-fab .sa-fab-text, .sa-fab .sa-fab-text-hover { transition: none !important; }
}/* End custom CSS */