/* Solution: brands & marketplace sellers — motion + layout (scroll reveal from feature-motion.js) */

@keyframes cd-sol-float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Hero stack: X-offset + float (one transform chain so float keyframes do not wipe stagger) */
@keyframes cd-sol-float-stack {
  0%,
  100% {
    transform: translate3d(var(--cd-sol-stack-nudge, 0), 0, 0);
  }
  50% {
    transform: translate3d(var(--cd-sol-stack-nudge, 0), -6px, 0);
  }
}

@keyframes cd-sol-hub-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

@keyframes cd-sol-chip-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(3px, -4px) rotate(0.8deg);
  }
  66% {
    transform: translate(-2px, 3px) rotate(-0.6deg);
  }
}

@keyframes cd-sol-track-grow {
  from {
    transform: scaleX(0.15);
    opacity: 0.35;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes cd-sol-step-pop {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cd-sol-shine-pass {
  0% {
    transform: translateX(-120%) skewX(-10deg);
    opacity: 0;
  }
  35% {
    opacity: 0.2;
  }
  100% {
    transform: translateX(180%) skewX(-10deg);
    opacity: 0;
  }
}

@keyframes cd-sol-kpi-fill {
  from {
    width: 0;
  }
  to {
    width: var(--cd-sol-kpi-width, 50%);
  }
}

@keyframes cd-sol-kpi-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-15%);
  }
  50% {
    opacity: 1;
    transform: translateX(15%);
  }
}

.solution-sellers-lp .cd-sol-hero-stack {
  min-height: 380px;
  padding: 0.5rem 0 2rem;
}

@media (min-width: 992px) {
  .solution-sellers-lp .cd-sol-hero-stack {
    min-height: 440px;
  }
}

.solution-sellers-lp .cd-sol-hub {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  z-index: 2;
  pointer-events: none;
}

.solution-sellers-lp .cd-sol-hub__ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(0, 113, 227, 0.22);
  animation: cd-sol-hub-pulse 3.2s ease-in-out infinite;
}

.solution-sellers-lp .cd-sol-hub__core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #0071e3, #0077ed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow:
    0 8px 28px rgba(0, 113, 227, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.solution-sellers-lp .cd-sol-stack-card {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.solution-sellers-lp .cd-sol-stack-card--1 {
  --cd-sol-stack-nudge: -8%;
  animation: cd-sol-float-stack 5.5s ease-in-out 0s infinite both;
  margin-bottom: -0.85rem;
  z-index: 3;
}

.solution-sellers-lp .cd-sol-stack-card--2 {
  --cd-sol-stack-nudge: 11%;
  animation: cd-sol-float-stack 6s ease-in-out 0.4s infinite both;
  margin-bottom: -0.85rem;
  z-index: 2;
}

.solution-sellers-lp .cd-sol-stack-card--3 {
  --cd-sol-stack-nudge: -4%;
  animation: cd-sol-float-stack 5s ease-in-out 0.8s infinite both;
  z-index: 4;
}

@media (min-width: 992px) {
  .solution-sellers-lp .cd-sol-stack-card--1 {
    --cd-sol-stack-nudge: -12%;
  }

  .solution-sellers-lp .cd-sol-stack-card--2 {
    --cd-sol-stack-nudge: 14%;
  }

  .solution-sellers-lp .cd-sol-stack-card--3 {
    --cd-sol-stack-nudge: -6%;
  }
}

.solution-sellers-lp .cd-sol-mini-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.12);
  overflow: hidden;
}

.solution-sellers-lp .cd-sol-mini-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #0071e3, #2563eb);
  animation: cd-sol-track-grow 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.solution-sellers-lp .cd-sol-mini-bar--accent::after {
  background: linear-gradient(90deg, #2563eb, #0071e3);
}

.solution-sellers-lp .cd-sol-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 113, 227, 0.1);
  color: var(--cd-apple-text-secondary, #6e6e73);
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: 0 0.35rem 1.1rem rgba(0, 40, 100, 0.045);
}

.solution-sellers-lp .cd-sol-trust-row i {
  color: #2563eb;
}

.solution-sellers-lp .cd-sol-kpi-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 113, 227, 0.075), transparent 25rem),
    radial-gradient(circle at 86% 78%, rgba(52, 199, 89, 0.055), transparent 25rem),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

.solution-sellers-lp .cd-sol-kpi-mini {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.065);
  box-shadow: 0 0.45rem 1.25rem rgba(15, 23, 42, 0.055);
}

.solution-sellers-lp .cd-sol-kpi-mini__value {
  display: block;
  color: #0f172a;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.solution-sellers-lp .cd-sol-kpi-mini__label {
  display: block;
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.35;
}

.solution-sellers-lp .cd-sol-kpi-dashboard {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.88)),
    radial-gradient(circle at 18% 0%, rgba(0, 113, 227, 0.12), transparent 17rem);
  border: 1px solid rgba(15, 23, 42, 0.075);
  box-shadow:
    0 1rem 2.7rem rgba(0, 40, 100, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.solution-sellers-lp .cd-sol-kpi-dashboard::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -20%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.12), transparent);
  transform: rotate(14deg);
  animation: cd-sol-kpi-glow 5.5s ease-in-out infinite;
  pointer-events: none;
}

.solution-sellers-lp .cd-sol-kpi-dashboard > * {
  position: relative;
  z-index: 1;
}

.solution-sellers-lp .cd-sol-kpi-chart {
  display: grid;
  gap: 1rem;
}

.solution-sellers-lp .cd-sol-kpi-chart__row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.72fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
}

.solution-sellers-lp .cd-sol-kpi-chart__label {
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
}

.solution-sellers-lp .cd-sol-kpi-chart__row strong {
  color: #0f172a;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  min-width: 3.2rem;
  text-align: right;
}

.solution-sellers-lp .cd-sol-kpi-bars {
  display: grid;
  gap: 0.38rem;
}

.solution-sellers-lp .cd-sol-kpi-bar {
  display: block;
  height: 0.56rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.solution-sellers-lp .cd-sol-kpi-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
}

.solution-sellers-lp .cd-sol-kpi-bar--before span {
  --cd-sol-kpi-width: var(--before);
  background: linear-gradient(90deg, #cbd5e1, #94a3b8);
}

.solution-sellers-lp .cd-sol-kpi-bar--after span {
  --cd-sol-kpi-width: var(--after);
  background: linear-gradient(90deg, #0071e3, #2563eb);
  box-shadow: 0 0.35rem 1rem rgba(0, 113, 227, 0.22);
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-kpi-bar span {
  animation: cd-sol-kpi-fill 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-kpi-bar--after span {
  animation-delay: 0.16s;
}

.solution-sellers-lp .cd-sol-kpi-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.solution-sellers-lp .cd-sol-kpi-legend__dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  display: inline-block;
}

.solution-sellers-lp .cd-sol-kpi-legend__dot--before {
  background: #94a3b8;
}

.solution-sellers-lp .cd-sol-kpi-legend__dot--after {
  background: linear-gradient(135deg, #0071e3, #2563eb);
}

/* Per-pillar accent variants for repeated KPI snapshot blocks */
.solution-sellers-lp .cd-sol-kpi-section--stock .section-kicker,
.solution-sellers-lp .cd-sol-kpi-section--stock .cd-sol-kpi-dashboard__head .small {
  color: #0071e3;
}

.solution-sellers-lp .cd-sol-kpi-section--orders .section-kicker,
.solution-sellers-lp .cd-sol-kpi-section--orders .cd-sol-kpi-dashboard__head .small {
  color: #d97706;
}

.solution-sellers-lp .cd-sol-kpi-section--pim .section-kicker,
.solution-sellers-lp .cd-sol-kpi-section--pim .cd-sol-kpi-dashboard__head .small {
  color: #7c3aed;
}

.solution-sellers-lp .cd-sol-kpi-section--stock .cd-sol-kpi-bar--after span {
  background: linear-gradient(90deg, #0071e3, #2563eb);
  box-shadow: 0 0.35rem 1rem rgba(0, 113, 227, 0.22);
}

.solution-sellers-lp .cd-sol-kpi-section--orders .cd-sol-kpi-bar--after span {
  background: linear-gradient(90deg, #d97706, #f59e0b);
  box-shadow: 0 0.35rem 1rem rgba(217, 119, 6, 0.22);
}

.solution-sellers-lp .cd-sol-kpi-section--pim .cd-sol-kpi-bar--after span {
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  box-shadow: 0 0.35rem 1rem rgba(124, 58, 237, 0.22);
}

.solution-sellers-lp .cd-sol-kpi-section--stock .cd-sol-kpi-legend__dot--after {
  background: linear-gradient(135deg, #0071e3, #2563eb);
}

.solution-sellers-lp .cd-sol-kpi-section--orders .cd-sol-kpi-legend__dot--after {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.solution-sellers-lp .cd-sol-kpi-section--pim .cd-sol-kpi-legend__dot--after {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.solution-sellers-lp .cd-sol-kpi-section--stock .cd-sol-kpi-dashboard__head .badge,
.solution-sellers-lp .cd-sol-kpi-section--orders .cd-sol-kpi-dashboard__head .badge,
.solution-sellers-lp .cd-sol-kpi-section--pim .cd-sol-kpi-dashboard__head .badge {
  border: 1px solid transparent;
}

.solution-sellers-lp .cd-sol-kpi-section--stock .cd-sol-kpi-dashboard__head .badge {
  background: rgba(0, 113, 227, 0.1) !important;
  color: #0071e3 !important;
  border-color: rgba(0, 113, 227, 0.22) !important;
}

.solution-sellers-lp .cd-sol-kpi-section--orders .cd-sol-kpi-dashboard__head .badge {
  background: rgba(217, 119, 6, 0.12) !important;
  color: #d97706 !important;
  border-color: rgba(217, 119, 6, 0.24) !important;
}

.solution-sellers-lp .cd-sol-kpi-section--pim .cd-sol-kpi-dashboard__head .badge {
  background: rgba(124, 58, 237, 0.1) !important;
  color: #7c3aed !important;
  border-color: rgba(124, 58, 237, 0.24) !important;
}

@media (max-width: 575.98px) {
  .solution-sellers-lp .cd-sol-kpi-chart__row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .solution-sellers-lp .cd-sol-kpi-chart__row strong {
    text-align: left;
  }
}

.solution-sellers-lp .cd-sol-orbit-chips {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.solution-sellers-lp .cd-sol-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(0, 40, 100, 0.08);
  color: var(--cd-apple-text-secondary, #6e6e73);
  animation: cd-sol-chip-drift 7s ease-in-out infinite;
}

.solution-sellers-lp .cd-sol-chip__logo {
  display: block;
  width: auto;
  height: 1.05rem;
  max-width: 2.5rem;
  object-fit: contain;
  object-position: center;
}

.solution-sellers-lp .cd-sol-chip__logo--bol {
  height: 0.72rem;
  max-width: 2.75rem;
}

.solution-sellers-lp .cd-sol-chip__logo--woo {
  max-width: 3.1rem;
  height: 0.9rem;
}

.solution-sellers-lp .cd-sol-chip--1 {
  left: 4%;
  top: 10%;
  animation-delay: 0s;
}
.solution-sellers-lp .cd-sol-chip--2 {
  right: 2%;
  top: 18%;
  animation-delay: 0.5s;
}
.solution-sellers-lp .cd-sol-chip--3 {
  left: 8%;
  bottom: 12%;
  animation-delay: 1s;
}
.solution-sellers-lp .cd-sol-chip--4 {
  right: 10%;
  bottom: 20%;
  animation-delay: 1.4s;
}

.solution-sellers-lp .cd-sol-conversion-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 113, 227, 0.055), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

.solution-sellers-lp .cd-sol-choice-card {
  position: relative;
  padding: 1.45rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 0.45rem 1.6rem rgba(15, 23, 42, 0.055);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.solution-sellers-lp .cd-sol-choice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: 0 0.9rem 2.4rem rgba(15, 23, 42, 0.09);
}

.solution-sellers-lp .cd-sol-choice-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  color: #fff;
  background: linear-gradient(145deg, #0ea5e9, #0071e3);
  box-shadow: 0 0.45rem 1rem rgba(0, 113, 227, 0.22);
  font-size: 1.25rem;
}

.solution-sellers-lp .cd-sol-choice-card__icon--green {
  background: linear-gradient(145deg, #34d399, #059669);
  box-shadow: 0 0.45rem 1rem rgba(5, 150, 105, 0.2);
}

.solution-sellers-lp .cd-sol-choice-card__icon--amber {
  background: linear-gradient(145deg, #fbbf24, #d97706);
  box-shadow: 0 0.45rem 1rem rgba(217, 119, 6, 0.18);
}

.solution-sellers-lp .cd-sol-choice-card a {
  color: #0071e3;
  font-weight: 600;
  text-decoration: none;
}

.solution-sellers-lp .cd-sol-choice-card a:hover {
  text-decoration: underline;
}

.solution-sellers-lp .cd-sol-journey__track {
  display: none;
}

@media (min-width: 992px) {
  .solution-sellers-lp .cd-sol-journey__track {
    display: block;
    position: absolute;
    left: 8%;
    right: 8%;
    top: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 113, 227, 0.15), rgba(52, 199, 89, 0.25), rgba(0, 113, 227, 0.15));
    transform-origin: left center;
    animation: cd-sol-track-grow 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

.solution-sellers-lp .cd-sol-step__num {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #0071e3, #0077ed);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 2.75rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.25);
  position: relative;
  z-index: 1;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-step__num {
  animation: cd-sol-step-pop 0.55s cubic-bezier(0.34, 1.02, 0.68, 1) both;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-journey .col-6:nth-child(1) .cd-sol-step__num {
  animation-delay: 0.05s;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-journey .col-6:nth-child(2) .cd-sol-step__num {
  animation-delay: 0.12s;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-journey .col-6:nth-child(3) .cd-sol-step__num {
  animation-delay: 0.19s;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-journey .col-6:nth-child(4) .cd-sol-step__num {
  animation-delay: 0.26s;
}

.solution-sellers-lp .cd-sol-compare {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.solution-sellers-lp .cd-sol-compare:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 40, 100, 0.08);
}

.solution-sellers-lp .cd-sol-compare--pain {
  background: linear-gradient(165deg, rgba(255, 245, 245, 0.9) 0%, #fff 50%);
  border-color: rgba(220, 53, 69, 0.12) !important;
}

.solution-sellers-lp .cd-sol-compare--gain {
  background: linear-gradient(165deg, rgba(240, 253, 244, 0.85) 0%, #fff 55%);
  border-color: rgba(52, 199, 89, 0.18) !important;
}

.solution-sellers-lp .cd-sol-bento-cell {
  border-radius: var(--cd-apple-radius-lg, 18px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.85);
  padding: 1.35rem 1.25rem;
  height: 100%;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.solution-sellers-lp .cd-sol-bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 40, 100, 0.08);
  border-color: rgba(0, 113, 227, 0.2);
}

.solution-sellers-lp .cd-sol-channel-label {
  letter-spacing: 0.1em;
}

.solution-sellers-lp .cd-sol-channel-logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 58rem;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 15% 10%, rgba(0, 113, 227, 0.08), transparent 18rem);
  border: 1px solid rgba(0, 113, 227, 0.08);
  box-shadow:
    0 1rem 2.6rem rgba(0, 40, 100, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  backdrop-filter: blur(14px);
}

@media (min-width: 576px) {
  .solution-sellers-lp .cd-sol-channel-logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .solution-sellers-lp .cd-sol-channel-logo-row {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.solution-sellers-lp .cd-sol-channel-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.55rem;
  padding: 0.65rem 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 113, 227, 0.08);
  box-shadow:
    0 0.45rem 1.15rem rgba(0, 40, 100, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.2s ease;
}

.solution-sellers-lp .cd-sol-channel-logo-card img {
  display: block;
  width: auto;
  max-width: 7.4rem;
  max-height: 2.05rem;
  object-fit: contain;
}

.solution-sellers-lp .cd-sol-channel-logo-card--bol img {
  max-height: 1.55rem;
}

.solution-sellers-lp .cd-sol-channel-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 113, 227, 0.16);
  box-shadow:
    0 0.75rem 1.7rem rgba(0, 40, 100, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.solution-sellers-lp .cd-sol-channel-logo-card--more {
  gap: 0.35rem;
  color: #0071e3;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(0, 113, 227, 0.08), rgba(26, 86, 219, 0.08));
}

.solution-sellers-lp .cd-sol-channel-logo-card--more strong {
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
}

.solution-sellers-lp .home-chip {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.08);
  border: 1px solid rgba(0, 113, 227, 0.12);
  color: var(--cd-apple-text, #1d1d1f);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.solution-sellers-lp a.home-chip {
  text-decoration: none;
  color: inherit;
}

.solution-sellers-lp a.home-chip:hover {
  color: inherit;
}

.solution-sellers-lp .home-chip:hover {
  transform: translateY(-2px);
  background: rgba(0, 113, 227, 0.14);
}

.solution-sellers-lp .cd-sol-chip-more {
  border-style: dashed;
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
}

.solution-sellers-lp .cd-sol-channel-row .home-chip:nth-child(odd) {
  animation: cd-sol-float-y 4.5s ease-in-out infinite;
}
.solution-sellers-lp .cd-sol-channel-row .home-chip:nth-child(even) {
  animation: cd-sol-float-y 5s ease-in-out infinite 0.3s;
}

.solution-sellers-lp .cd-sol-glass-panel {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.solution-sellers-lp .cd-sol-glass-panel__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  animation: cd-sol-shine-pass 6s ease-in-out infinite;
  pointer-events: none;
}

.solution-sellers-lp .cd-sol-cta {
  position: relative;
  overflow: hidden;
}

.solution-sellers-lp .cd-sol-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 45%);
  animation: cd-sol-hub-pulse 10s ease-in-out infinite;
  pointer-events: none;
}

/* Stagger grid children when section is revealed */
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > .col,
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > [class*="col-"] {
  animation: cd-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > .col:nth-child(1),
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > [class*="col-"]:nth-child(1) {
  animation-delay: 0.04s;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > .col:nth-child(2),
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > [class*="col-"]:nth-child(2) {
  animation-delay: 0.1s;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > .col:nth-child(3),
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > [class*="col-"]:nth-child(3) {
  animation-delay: 0.16s;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > .col:nth-child(4),
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > [class*="col-"]:nth-child(4) {
  animation-delay: 0.22s;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-rise-card {
  animation: cd-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-bento .col-md-6:nth-child(1) .cd-sol-bento-cell {
  animation: cd-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.02s backwards;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-bento .col-md-6:nth-child(2) .cd-sol-bento-cell {
  animation: cd-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s backwards;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-bento .col-md-6:nth-child(3) .cd-sol-bento-cell {
  animation: cd-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.14s backwards;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-bento .col-md-6:nth-child(4) .cd-sol-bento-cell {
  animation: cd-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-bento .col-md-6:nth-child(5) .cd-sol-bento-cell {
  animation: cd-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.26s backwards;
}
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-bento .col-md-6:nth-child(6) .cd-sol-bento-cell {
  animation: cd-fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.32s backwards;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-hero-copy {
  animation: cd-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s backwards;
}

@media (prefers-reduced-motion: reduce) {
  .solution-sellers-lp .cd-sol-stack-card,
  .solution-sellers-lp .cd-sol-chip,
  .solution-sellers-lp .cd-sol-hub__ring,
  .solution-sellers-lp .cd-sol-channel-row .home-chip,
  .solution-sellers-lp .cd-sol-glass-panel__shine,
  .solution-sellers-lp .cd-sol-cta::before,
  .solution-sellers-lp .cd-sol-kpi-dashboard::before {
    animation: none !important;
  }

  .solution-sellers-lp .cd-sol-kpi-bar span {
    animation: none !important;
    width: var(--cd-sol-kpi-width, 50%);
  }

  .solution-sellers-lp .cd-sol-stack-card--1,
  .solution-sellers-lp .cd-sol-stack-card--2,
  .solution-sellers-lp .cd-sol-stack-card--3 {
    transform: translate3d(var(--cd-sol-stack-nudge, 0), 0, 0);
  }

  .solution-sellers-lp .cd-sol-mini-bar::after,
  .solution-sellers-lp .cd-sol-journey__track {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .solution-sellers-lp .cd-sol-outcome-card:hover {
    transform: none;
  }

  main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > .col,
  main.solution-sellers-lp section.cd-reveal--visible .cd-sol-stagger > [class*="col-"],
  main.solution-sellers-lp section.cd-reveal--visible .cd-sol-rise-card,
  main.solution-sellers-lp section.cd-reveal--visible .cd-sol-bento .cd-sol-bento-cell,
  main.solution-sellers-lp section.cd-reveal--visible .cd-sol-hero-copy,
  main.solution-sellers-lp section.cd-reveal--visible .cd-sol-step__num {
    animation: none !important;
  }
}

/* ——— Outcomes: three-pillar cards (PIM / inventory / orders) ——— */
.solution-sellers-lp .cd-sol-outcomes {
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 45%, #f8fafc 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.solution-sellers-lp .cd-sol-outcomes__deco {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 113, 227, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000, transparent 78%);
  pointer-events: none;
}
.solution-sellers-lp .cd-sol-outcomes__lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: #64748b !important;
  line-height: 1.55;
}
.solution-sellers-lp .cd-sol-outcome-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 0.2rem 1rem rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.solution-sellers-lp .cd-sol-outcome-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.9;
  pointer-events: none;
  border-radius: 1rem 1rem 0 0;
}
.solution-sellers-lp .cd-sol-outcome-card--blue::after {
  background: linear-gradient(90deg, #0071e3, #38bdf8);
}
.solution-sellers-lp .cd-sol-outcome-card--emerald::after {
  background: linear-gradient(90deg, #059669, #34d399);
}
.solution-sellers-lp .cd-sol-outcome-card--amber::after {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}
.solution-sellers-lp .cd-sol-outcome-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 2.5rem rgba(15, 23, 42, 0.1);
  border-color: rgba(0, 113, 227, 0.12);
}
.solution-sellers-lp .cd-sol-outcome-card--emerald:hover {
  border-color: rgba(5, 150, 105, 0.18);
}
.solution-sellers-lp .cd-sol-outcome-card--amber:hover {
  border-color: rgba(217, 119, 6, 0.2);
}
.solution-sellers-lp .cd-sol-outcome-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem 0.95rem 1.15rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}
.solution-sellers-lp .cd-sol-outcome-card--blue .cd-sol-outcome-card__top {
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}
.solution-sellers-lp .cd-sol-outcome-card--emerald .cd-sol-outcome-card__top {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}
.solution-sellers-lp .cd-sol-outcome-card--amber .cd-sol-outcome-card__top {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}
.solution-sellers-lp .cd-sol-outcome-card__icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0.2rem 0.55rem rgba(0, 0, 0, 0.12);
}
.solution-sellers-lp .cd-sol-outcome-card--blue .cd-sol-outcome-card__icon {
  background: linear-gradient(145deg, #0ea5e9, #0071e3);
}
.solution-sellers-lp .cd-sol-outcome-card--emerald .cd-sol-outcome-card__icon {
  background: linear-gradient(145deg, #34d399, #059669);
}
.solution-sellers-lp .cd-sol-outcome-card--amber .cd-sol-outcome-card__icon {
  background: linear-gradient(145deg, #fbbf24, #d97706);
}
.solution-sellers-lp .cd-sol-outcome-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #0f172a;
  margin: 0;
  text-align: left;
  flex: 1;
  min-width: 0;
}
.solution-sellers-lp .cd-sol-outcome-card__content {
  padding: 1.05rem 1.2rem 1.25rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.solution-sellers-lp .cd-sol-outcome-card__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
}
.solution-sellers-lp .cd-sol-outcome-card__text .link-primary {
  font-weight: 500;
}
@media (min-width: 768px) {
  .solution-sellers-lp .cd-sol-outcome-card__title {
    font-size: 1.05rem;
  }
}

/* Section rhythm: subtle light bands to improve page overview */
main.solution-sellers-lp > section {
  position: relative;
}

main.solution-sellers-lp > section:nth-of-type(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
}

main.solution-sellers-lp > section:nth-of-type(4) {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.04), transparent 28rem),
    linear-gradient(180deg, #f6f7f9 0%, #ffffff 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

main.solution-sellers-lp > section:nth-of-type(5) {
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 23, 42, 0.035), transparent 24rem),
    radial-gradient(circle at 88% 72%, rgba(15, 23, 42, 0.04), transparent 24rem),
    #ffffff !important;
}

main.solution-sellers-lp > section:nth-of-type(6) {
  background:
    radial-gradient(circle at 18% 22%, rgba(15, 23, 42, 0.04), transparent 24rem),
    linear-gradient(180deg, #f5f6f8 0%, #fbfbfd 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

main.solution-sellers-lp > section:nth-of-type(7) {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.035), transparent 22rem),
    #fafafa !important;
}

main.solution-sellers-lp > section:nth-of-type(8) {
  background:
    radial-gradient(circle at 88% 24%, rgba(15, 23, 42, 0.04), transparent 25rem),
    linear-gradient(180deg, #f6f7f9 0%, #ffffff 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

main.solution-sellers-lp > section:nth-of-type(9) {
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f8fc 100%) !important;
}

main.solution-sellers-lp > section:nth-of-type(10) {
  background: #ffffff !important;
}

.solution-sellers-lp .cd-sol-channel-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.035), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

.solution-sellers-lp .cd-sol-collab-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(15, 23, 42, 0.04), transparent 24rem),
    radial-gradient(circle at 88% 70%, rgba(15, 23, 42, 0.035), transparent 25rem),
    linear-gradient(180deg, #f6f7f9 0%, #ffffff 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

.solution-sellers-lp .cd-sol-faq-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.04), transparent 26rem),
    linear-gradient(180deg, #f4f5f7 0%, #fbfbfd 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.045);
}

/* Final section rhythm — neutral Apple-style whites and grays only. */
main.solution-sellers-lp > section {
  border-color: rgba(15, 23, 42, 0.055) !important;
}

main.solution-sellers-lp > section:nth-of-type(1) {
  background-color: #fbfbfd !important;
}

main.solution-sellers-lp > section:nth-of-type(2),
main.solution-sellers-lp > section:nth-of-type(4),
main.solution-sellers-lp > section:nth-of-type(6),
main.solution-sellers-lp > section:nth-of-type(8),
main.solution-sellers-lp > section:nth-of-type(10) {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.025), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%) !important;
}

main.solution-sellers-lp > section:nth-of-type(3),
main.solution-sellers-lp > section:nth-of-type(5),
main.solution-sellers-lp > section:nth-of-type(7),
main.solution-sellers-lp > section:nth-of-type(9),
main.solution-sellers-lp > section:nth-of-type(11) {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.035), transparent 26rem),
    linear-gradient(180deg, #f7f9fc 0%, #fbfdff 100%) !important;
  border-top: 1px solid rgba(15, 23, 42, 0.055);
  border-bottom: 1px solid rgba(15, 23, 42, 0.045);
}

.solution-sellers-lp .cd-sol-outcomes {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.035), transparent 26rem),
    linear-gradient(180deg, #f7f9fc 0%, #fbfdff 100%) !important;
}

.solution-sellers-lp .cd-sol-compare--pain,
.solution-sellers-lp .cd-sol-compare--gain {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 250, 0.84)) !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
}

.solution-sellers-lp .cd-sol-conversion-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 113, 227, 0.055), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%) !important;
}

.solution-sellers-lp .cd-sol-channel-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.035), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%) !important;
}

.solution-sellers-lp .cd-sol-kpi-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 113, 227, 0.075), transparent 25rem),
    radial-gradient(circle at 86% 78%, rgba(52, 199, 89, 0.055), transparent 25rem),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%) !important;
}

.solution-sellers-lp .cd-sol-kpi-section--stock {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 113, 227, 0.085), transparent 25rem),
    radial-gradient(circle at 86% 78%, rgba(56, 189, 248, 0.045), transparent 25rem),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%) !important;
}

.solution-sellers-lp .cd-sol-kpi-section--orders {
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 119, 6, 0.075), transparent 25rem),
    radial-gradient(circle at 86% 78%, rgba(251, 191, 36, 0.05), transparent 25rem),
    linear-gradient(180deg, #fffcf5 0%, #ffffff 100%) !important;
}

.solution-sellers-lp .cd-sol-kpi-section--pim {
  background:
    radial-gradient(circle at 12% 18%, rgba(124, 58, 237, 0.075), transparent 25rem),
    radial-gradient(circle at 86% 78%, rgba(168, 85, 247, 0.05), transparent 25rem),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 100%) !important;
}

/* ——— Complexity section: pain/gain comparison lists ——— */
.solution-sellers-lp .cd-sol-pain-gain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.solution-sellers-lp .cd-sol-pain-gain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.5;
}

.solution-sellers-lp .cd-sol-pain-gain-list__icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.solution-sellers-lp .cd-sol-pain-gain-list__icon--pain {
  color: #dc3545;
}

.solution-sellers-lp .cd-sol-pain-gain-list__icon--gain {
  color: #10b981;
}

/* ——— Three Pillars section ——— */
.solution-sellers-lp .cd-sol-pillars-section {
  position: relative;
}

.solution-sellers-lp .cd-sol-pillar {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.88));
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 0.75rem 2rem rgba(15, 23, 42, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.solution-sellers-lp .cd-sol-pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  pointer-events: none;
  border-radius: 1.5rem 1.5rem 0 0;
  opacity: 0.9;
}

.solution-sellers-lp .cd-sol-pillar--stock::before {
  background: linear-gradient(90deg, #059669, #34d399);
}

.solution-sellers-lp .cd-sol-pillar--orders::before {
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.solution-sellers-lp .cd-sol-pillar--pim::before {
  background: linear-gradient(90deg, #0071e3, #38bdf8);
}

.solution-sellers-lp .cd-sol-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.1rem 2.6rem rgba(15, 23, 42, 0.08);
}

.solution-sellers-lp .cd-sol-pillar__head {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.solution-sellers-lp .cd-sol-pillar__icon {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 0.55rem 1.3rem rgba(15, 23, 42, 0.18);
}

.solution-sellers-lp .cd-sol-pillar--stock .cd-sol-pillar__icon {
  background: linear-gradient(145deg, #34d399, #059669);
  box-shadow: 0 0.55rem 1.3rem rgba(5, 150, 105, 0.28);
}

.solution-sellers-lp .cd-sol-pillar--orders .cd-sol-pillar__icon {
  background: linear-gradient(145deg, #fbbf24, #d97706);
  box-shadow: 0 0.55rem 1.3rem rgba(217, 119, 6, 0.28);
}

.solution-sellers-lp .cd-sol-pillar--pim .cd-sol-pillar__icon {
  background: linear-gradient(145deg, #0ea5e9, #0071e3);
  box-shadow: 0 0.55rem 1.3rem rgba(0, 113, 227, 0.28);
}

.solution-sellers-lp .cd-sol-pillar__heading {
  flex: 1;
  min-width: 0;
}

.solution-sellers-lp .cd-sol-pillar__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

.solution-sellers-lp .cd-sol-pillar--stock .cd-sol-pillar__kicker {
  color: #059669;
}

.solution-sellers-lp .cd-sol-pillar--orders .cd-sol-pillar__kicker {
  color: #d97706;
}

.solution-sellers-lp .cd-sol-pillar--pim .cd-sol-pillar__kicker {
  color: #0071e3;
}

.solution-sellers-lp .cd-sol-pillar__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: #0f172a;
}

.solution-sellers-lp .cd-sol-pillar__intro {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #475569;
}

.solution-sellers-lp .cd-sol-pillar__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-sellers-lp .cd-sol-pillar__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.solution-sellers-lp .cd-sol-pillar__feat-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  background: rgba(15, 23, 42, 0.05);
  color: #475569;
}

.solution-sellers-lp .cd-sol-pillar--stock .cd-sol-pillar__feat-icon {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.solution-sellers-lp .cd-sol-pillar--orders .cd-sol-pillar__feat-icon {
  background: rgba(217, 119, 6, 0.12);
  color: #d97706;
}

.solution-sellers-lp .cd-sol-pillar--pim .cd-sol-pillar__feat-icon {
  background: rgba(0, 113, 227, 0.1);
  color: #0071e3;
}

.solution-sellers-lp .cd-sol-pillar__features li > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.solution-sellers-lp .cd-sol-pillar__features strong {
  display: block;
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.3;
}

.solution-sellers-lp .cd-sol-pillar__features span {
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.5;
}

.solution-sellers-lp .cd-sol-pillar__features a {
  font-weight: 500;
  text-decoration: none;
}

.solution-sellers-lp .cd-sol-pillar__features a:hover {
  text-decoration: underline;
}

.solution-sellers-lp .cd-sol-pillar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0071e3;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.solution-sellers-lp .cd-sol-pillar--stock .cd-sol-pillar__cta {
  color: #059669;
}

.solution-sellers-lp .cd-sol-pillar--orders .cd-sol-pillar__cta {
  color: #d97706;
}

.solution-sellers-lp .cd-sol-pillar__cta:hover {
  gap: 0.55rem;
  text-decoration: underline;
}

/* ——— Pillar visuals (stock, orders, pim) ——— */
.solution-sellers-lp .cd-sol-pillar__visual {
  position: relative;
  padding: 1.1rem;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.075);
  box-shadow: 0 0.85rem 2.1rem rgba(15, 23, 42, 0.08);
}

/* Stock visual */
.solution-sellers-lp .cd-sol-stock-visual__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 0.85rem;
}

.solution-sellers-lp .cd-sol-stock-visual__sku {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}

.solution-sellers-lp .cd-sol-stock-visual__sku i {
  color: #059669;
}

.solution-sellers-lp .cd-sol-stock-visual__badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.solution-sellers-lp .cd-sol-stock-visual__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.solution-sellers-lp .cd-sol-stock-visual__rows li {
  display: grid;
  grid-template-columns: 1.5rem 1fr auto auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.65rem;
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.045);
  font-size: 0.82rem;
}

.solution-sellers-lp .cd-sol-stock-visual__rows img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.solution-sellers-lp .cd-sol-stock-visual__rows span {
  color: #334155;
  font-weight: 500;
}

.solution-sellers-lp .cd-sol-stock-visual__rows strong {
  color: #0f172a;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.solution-sellers-lp .cd-sol-stock-visual__rows i {
  color: #10b981;
  font-size: 0.95rem;
}

.solution-sellers-lp .cd-sol-stock-visual__footer {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.solution-sellers-lp .cd-sol-stock-visual__footer i {
  color: #059669;
}

/* Orders visual */
.solution-sellers-lp .cd-sol-orders-visual__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 0.85rem;
}

.solution-sellers-lp .cd-sol-orders-visual__title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
}

.solution-sellers-lp .cd-sol-orders-visual__title i {
  color: #d97706;
}

.solution-sellers-lp .cd-sol-orders-visual__count {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

.solution-sellers-lp .cd-sol-orders-visual__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.solution-sellers-lp .cd-sol-orders-visual__rows li {
  display: grid;
  grid-template-columns: 1.5rem 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.65rem;
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.045);
  font-size: 0.82rem;
}

.solution-sellers-lp .cd-sol-orders-visual__rows img {
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
}

.solution-sellers-lp .cd-sol-orders-visual__ref {
  color: #334155;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.solution-sellers-lp .cd-sol-orders-visual__status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.solution-sellers-lp .cd-sol-orders-visual__status--ready {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  border-color: rgba(5, 150, 105, 0.18);
}

.solution-sellers-lp .cd-sol-orders-visual__status--picking {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
  border-color: rgba(217, 119, 6, 0.18);
}

.solution-sellers-lp .cd-sol-orders-visual__status--packed {
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
  border-color: rgba(0, 113, 227, 0.16);
}

.solution-sellers-lp .cd-sol-orders-visual__status--labeled {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
  border-color: rgba(139, 92, 246, 0.18);
}

.solution-sellers-lp .cd-sol-orders-visual__footer {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.solution-sellers-lp .cd-sol-orders-visual__footer i {
  color: #d97706;
}

/* PIM visual */
.solution-sellers-lp .cd-sol-pim-visual {
  padding: 1.4rem 1.1rem 1.1rem;
}

.solution-sellers-lp .cd-sol-pim-visual__product {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.06), rgba(56, 189, 248, 0.04));
  border: 1px solid rgba(0, 113, 227, 0.12);
  margin-bottom: 1.05rem;
}

.solution-sellers-lp .cd-sol-pim-visual__product-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, #0ea5e9, #0071e3);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0.35rem 0.85rem rgba(0, 113, 227, 0.28);
}

.solution-sellers-lp .cd-sol-pim-visual__product strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.solution-sellers-lp .cd-sol-pim-visual__product span {
  font-size: 0.75rem;
  color: #64748b;
}

.solution-sellers-lp .cd-sol-pim-visual__lines {
  position: relative;
  height: 1.8rem;
  margin: 0 1rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-sellers-lp .cd-sol-pim-visual__lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.4), rgba(0, 113, 227, 0.08));
  transform: translateX(-50%);
}

.solution-sellers-lp .cd-sol-pim-visual__lines::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.08), rgba(0, 113, 227, 0.35) 50%, rgba(0, 113, 227, 0.08));
}

.solution-sellers-lp .cd-sol-pim-visual__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .solution-sellers-lp .cd-sol-pim-visual__channels {
    grid-template-columns: repeat(6, 1fr);
  }
}

.solution-sellers-lp .cd-sol-pim-visual__channels li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.2rem;
  border-radius: 0.65rem;
  background: rgba(248, 250, 252, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.045);
}

.solution-sellers-lp .cd-sol-pim-visual__channels img {
  max-width: 2.4rem;
  max-height: 1.2rem;
  object-fit: contain;
}

.solution-sellers-lp .cd-sol-pim-visual__channels i {
  position: absolute;
  bottom: -0.35rem;
  right: -0.35rem;
  color: #10b981;
  background: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
}

.solution-sellers-lp .cd-sol-pim-visual__footer {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.solution-sellers-lp .cd-sol-pim-visual__footer i {
  color: #0071e3;
}

@media (max-width: 991.98px) {
  .solution-sellers-lp .cd-sol-pillar__head {
    flex-direction: column;
    gap: 0.85rem;
  }
}

/* ——— Pricing teaser ——— */
.solution-sellers-lp .cd-sol-pricing-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.88)),
    radial-gradient(circle at 90% 0%, rgba(0, 113, 227, 0.12), transparent 20rem);
  border: 1px solid rgba(15, 23, 42, 0.075);
  box-shadow:
    0 1rem 2.7rem rgba(0, 40, 100, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
}

.solution-sellers-lp .cd-sol-pricing-card__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
}

.solution-sellers-lp .cd-sol-pricing-card__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #475569;
  line-height: 1.5;
}

.solution-sellers-lp .cd-sol-pricing-card__points i {
  flex-shrink: 0;
  color: #10b981;
  font-size: 1.05rem;
  margin-top: 0.05rem;
}

.solution-sellers-lp .cd-sol-pricing-card__cta {
  padding: 1.4rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 0.5rem 1.4rem rgba(15, 23, 42, 0.06);
  text-align: left;
}

.solution-sellers-lp .cd-sol-pricing-card__from {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0071e3;
}

.solution-sellers-lp .cd-sol-pricing-card__amount {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #0f172a;
}

.solution-sellers-lp .cd-sol-pricing-card__period {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0;
}

/* Section rhythm override: ensure pricing teaser sits nicely */
.solution-sellers-lp .cd-sol-pricing-teaser {
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 113, 227, 0.05), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%) !important;
}

.solution-sellers-lp .cd-sol-pillars-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.035), transparent 26rem),
    linear-gradient(180deg, #f7f9fc 0%, #fbfdff 100%) !important;
}

.solution-sellers-lp .cd-sol-complexity-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.025), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%) !important;
}

/* Reveal animations for pillar blocks */
main.solution-sellers-lp section.cd-reveal--visible .cd-sol-pillar {
  animation: cd-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-pillar--stock {
  animation-delay: 0.04s;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-pillar--orders {
  animation-delay: 0.12s;
}

main.solution-sellers-lp section.cd-reveal--visible .cd-sol-pillar--pim {
  animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  main.solution-sellers-lp section.cd-reveal--visible .cd-sol-pillar,
  .solution-sellers-lp .cd-sol-pillar:hover {
    animation: none !important;
    transform: none !important;
  }
}

/* ── Secondary feature grid (pillar detail cards) ─────────────────────── */
.cd-sol-pillar__feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

@media (max-width: 767px) {
  .cd-sol-pillar__feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cd-sol-pillar__feat-card {
  background: var(--bs-tertiary-bg, #f8f9fa);
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: 0.5rem;
  padding: 0.75rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cd-sol-pillar__feat-card > i {
  font-size: 1rem;
  color: var(--bs-primary, #0077ff);
  margin-bottom: 0.1rem;
}

.cd-sol-pillar__feat-card > strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bs-emphasis-color, #212529);
  line-height: 1.35;
}

.cd-sol-pillar__feat-card > p {
  font-size: 0.72rem;
  color: var(--bs-secondary-color, #6c757d);
  line-height: 1.45;
  margin: 0;
}

body[data-theme=dark] .cd-sol-pillar__feat-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ── Feature showcase blocks (mid-page) ──────────────────────────────── */
.cd-sol-feat-section--alt {
  background: var(--bs-tertiary-bg, #f8f9fa);
}

body[data-theme=dark] .cd-sol-feat-section--alt {
  background: rgba(255, 255, 255, 0.03);
}

.cd-sol-feat-visual {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body[data-theme=dark] .cd-sol-feat-visual {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.cd-sol-feat-chips {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bs-emphasis-color, #212529);
}

.cd-sol-feat-chips span {
  display: inline-flex;
  align-items: center;
}

.cd-sol-feat-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0071e3;
  text-decoration: none;
}

.cd-sol-feat-cta:hover {
  color: #0061c2;
  text-decoration: underline;
}

body[data-theme=dark] .cd-sol-feat-cta {
  color: #4da3ff;
}

body[data-theme=dark] .cd-sol-feat-cta:hover {
  color: #6db6ff;
}

/* ─────────────────────────────────────────────────────────────────────────
   Stock-level-sync product-preview mockup — scoped to .solution-sellers-lp
   (mirrors rules from stock-level-sync.css)
   ───────────────────────────────────────────────────────────────────────── */

@keyframes cd-sync-pulse-fill {
  0%, 100% { transform: scaleX(0.35); opacity: 0.65; }
  50%       { transform: scaleX(1);    opacity: 1;    }
}

@keyframes cd-stock-chart-bar-rise {
  from { transform: scaleY(0.08); opacity: 0.45; }
  to   { transform: scaleY(1);    opacity: 1;    }
}

@keyframes cd-stock-chart-line-draw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes cd-stock-level-before {
  0%, 34%, 100% { opacity: 1; transform: translateY(0);   }
  48%, 82%      { opacity: 0; transform: translateY(-8px); }
}

@keyframes cd-stock-level-after {
  0%, 34%, 100% { opacity: 0; transform: translateY(8px); }
  48%, 82%      { opacity: 1; transform: translateY(0);   }
}

@keyframes cd-stock-sync-toggle {
  0%, 34%, 100% { box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.45); }
  48%, 82%      { box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.45), 0 0 0 4px rgba(26, 86, 219, 0.14); }
}

.solution-sellers-lp .cd-stock-product-preview {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  background: #f5f6f8;
  box-shadow:
    0 1.5rem 3.2rem rgba(0, 40, 100, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.solution-sellers-lp .cd-stock-product-preview__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
}

.solution-sellers-lp .cd-stock-product-preview__thumb {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  background: rgba(0, 113, 227, 0.09);
  color: #0071e3;
  flex: 0 0 auto;
}

.solution-sellers-lp .cd-stock-product-preview__thumb i {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.solution-sellers-lp .cd-stock-product-preview__head strong,
.solution-sellers-lp .cd-stock-product-preview__head span {
  display: block;
}

.solution-sellers-lp .cd-stock-product-preview__head strong {
  color: #111827;
  font-size: 0.9rem;
}

.solution-sellers-lp .cd-stock-product-preview__head span {
  color: #64748b;
  font-size: 0.68rem;
}

.solution-sellers-lp .cd-stock-product-preview__kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.9rem 1rem;
}

.solution-sellers-lp .cd-stock-product-preview__kpis div,
.solution-sellers-lp .cd-stock-product-preview__channels,
.solution-sellers-lp .cd-stock-product-preview__details {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 0.65rem 1.35rem rgba(0, 40, 100, 0.055);
}

.solution-sellers-lp .cd-stock-product-preview__kpis div {
  padding: 0.75rem;
}

.solution-sellers-lp .cd-stock-product-preview__kpis span {
  display: block;
  color: #64748b;
  font-size: 0.64rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.solution-sellers-lp .cd-stock-product-preview__kpis strong {
  color: #111827;
  font-size: 1.05rem;
}

.solution-sellers-lp .cd-stock-product-preview__chart {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 7.5rem;
  margin: 0 1rem 0.9rem;
  padding: 1rem 0.8rem 0.7rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 0.9rem;
  background:
    linear-gradient(rgba(0, 113, 227, 0.08) 1px, transparent 1px) 0 0 / 100% 33.333%,
    linear-gradient(180deg, rgba(0, 113, 227, 0.05), rgba(26, 86, 219, 0.06));
  overflow: hidden;
}

.solution-sellers-lp .cd-stock-product-preview__chart span {
  flex: 1 1 0;
  height: var(--h);
  border-radius: 0.28rem 0.28rem 0 0;
  background: rgba(26, 86, 219, 0.35);
  transform-origin: 50% 100%;
  animation: cd-stock-chart-bar-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solution-sellers-lp .cd-stock-product-preview__chart span:nth-of-type(2) { animation-delay: 0.06s; }
.solution-sellers-lp .cd-stock-product-preview__chart span:nth-of-type(3) { animation-delay: 0.12s; }
.solution-sellers-lp .cd-stock-product-preview__chart span:nth-of-type(4) { animation-delay: 0.18s; }
.solution-sellers-lp .cd-stock-product-preview__chart span:nth-of-type(5) { animation-delay: 0.24s; }
.solution-sellers-lp .cd-stock-product-preview__chart span:nth-of-type(6) { animation-delay: 0.3s;  }
.solution-sellers-lp .cd-stock-product-preview__chart span:nth-of-type(7) { animation-delay: 0.36s; }
.solution-sellers-lp .cd-stock-product-preview__chart span:nth-of-type(8) { animation-delay: 0.42s; }

.solution-sellers-lp .cd-stock-product-preview__chart-line {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  top: 44%;
  height: 2px;
  background: #0071e3;
  box-shadow: 0 0.3rem 1rem rgba(0, 113, 227, 0.2);
  transform-origin: 0 50%;
  animation: cd-stock-chart-line-draw 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.solution-sellers-lp .cd-stock-product-preview__body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(10rem, 0.7fr);
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}

.solution-sellers-lp .cd-stock-product-preview__channels {
  overflow: hidden;
}

.solution-sellers-lp .cd-stock-product-preview__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.solution-sellers-lp .cd-stock-product-preview__tabs span {
  padding: 0.62rem 0.45rem;
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 900;
  text-align: center;
  background: #f6f7f9;
}

.solution-sellers-lp .cd-stock-product-preview__tabs .is-active {
  color: #178542;
  background: #fff;
}

.solution-sellers-lp .cd-stock-product-preview__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.055);
}

.solution-sellers-lp .cd-stock-product-preview__row b {
  width: 1.85rem;
  height: 1rem;
  border-radius: 999px;
  background: #1a56db;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.45);
  animation: cd-stock-sync-toggle 4.8s ease-in-out infinite;
}

.solution-sellers-lp .cd-stock-product-preview__row strong {
  color: #111827;
  font-size: 0.74rem;
}

.solution-sellers-lp .cd-stock-product-preview__row em {
  padding: 0.24rem 0.45rem;
  border-radius: 999px;
  background: #1a56db;
  color: #fff;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  min-width: 4.2rem;
  text-align: center;
  overflow: hidden;
}

.solution-sellers-lp .cd-stock-product-preview__stock {
  display: block;
  line-height: 1.1;
}

.solution-sellers-lp .cd-stock-product-preview__stock--before {
  animation: cd-stock-level-before 4.8s ease-in-out infinite;
}

.solution-sellers-lp .cd-stock-product-preview__stock--after {
  margin-top: -1.1em;
  animation: cd-stock-level-after 4.8s ease-in-out infinite;
}

.solution-sellers-lp .cd-stock-product-preview__details {
  padding: 0.85rem;
}

.solution-sellers-lp .cd-stock-product-preview__details span,
.solution-sellers-lp .cd-stock-product-preview__details strong {
  display: block;
}

.solution-sellers-lp .cd-stock-product-preview__details span {
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 800;
  margin-top: 0.65rem;
}

.solution-sellers-lp .cd-stock-product-preview__details span:first-child {
  margin-top: 0;
}

.solution-sellers-lp .cd-stock-product-preview__details strong {
  color: #111827;
  font-size: 0.72rem;
  margin-top: 0.18rem;
}

.solution-sellers-lp .cd-stock-product-preview__details button {
  width: 100%;
  margin-top: 0.8rem;
  border: 0;
  border-radius: 0.55rem;
  background: #e5e7eb;
  color: #111827;
  min-height: 2rem;
  font-size: 0.7rem;
  font-weight: 900;
}

.solution-sellers-lp .cd-stock-product-preview__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  padding: 0 1rem 1rem;
}

.solution-sellers-lp .cd-stock-product-preview__actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.3rem;
  border-radius: 0.65rem;
  background: #1a56db;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.solution-sellers-lp .cd-stock-product-preview__actions span:last-child {
  min-width: 9rem;
  background: #e5e7eb;
  color: #111827;
}

@media (max-width: 575.98px) {
  .solution-sellers-lp .cd-stock-product-preview__kpis,
  .solution-sellers-lp .cd-stock-product-preview__body,
  .solution-sellers-lp .cd-stock-product-preview__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-sellers-lp .cd-stock-product-preview__chart span,
  .solution-sellers-lp .cd-stock-product-preview__chart-line,
  .solution-sellers-lp .cd-stock-product-preview__stock,
  .solution-sellers-lp .cd-stock-product-preview__row b {
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Stock-advice system-preview mockup — scoped to .solution-sellers-lp
   (mirrors rules from stock-advice.css)
   ───────────────────────────────────────────────────────────────────────── */

@keyframes cd-stock-advice-sync-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes cd-stock-advice-card-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes cd-stock-advice-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(26, 86, 219, 0);    }
  45%      { box-shadow: 0 0 0 6px rgba(26, 86, 219, 0.12); }
}

@keyframes cd-stock-advice-action {
  0%, 100% { transform: translateY(0);   }
  50%      { transform: translateY(-2px); }
}

.solution-sellers-lp .cd-stock-advice-preview {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.25rem;
  background: #f7f8fa;
  box-shadow:
    0 1.5rem 3.2rem rgba(0, 40, 100, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.solution-sellers-lp .cd-stock-advice-preview__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
}

.solution-sellers-lp .cd-stock-advice-preview__head strong,
.solution-sellers-lp .cd-stock-advice-preview__head span {
  display: block;
}

.solution-sellers-lp .cd-stock-advice-preview__head strong {
  color: #111827;
  font-size: 1rem;
}

.solution-sellers-lp .cd-stock-advice-preview__head span {
  color: #64748b;
  font-size: 0.66rem;
  margin-top: 0.15rem;
}

.solution-sellers-lp .cd-stock-advice-preview__head button {
  align-self: flex-start;
  border: 0;
  border-radius: 0.65rem;
  background: #1a56db;
  color: #fff;
  padding: 0.52rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 0.65rem 1.25rem rgba(26, 86, 219, 0.2);
}

.solution-sellers-lp .cd-stock-advice-preview__head button i {
  display: inline-block;
  animation: cd-stock-advice-sync-spin 3.4s linear infinite;
}

.solution-sellers-lp .cd-stock-advice-preview__kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.9rem 1rem;
}

.solution-sellers-lp .cd-stock-advice-preview__kpis div {
  padding: 0.7rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 0.55rem 1.15rem rgba(0, 40, 100, 0.05);
  animation: cd-stock-advice-card-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solution-sellers-lp .cd-stock-advice-preview__kpis div:nth-child(2) { animation-delay: 0.08s; }
.solution-sellers-lp .cd-stock-advice-preview__kpis div:nth-child(3) { animation-delay: 0.16s; }
.solution-sellers-lp .cd-stock-advice-preview__kpis div:nth-child(4) { animation-delay: 0.24s; }

.solution-sellers-lp .cd-stock-advice-preview__kpis .is-total {
  background: #1a56db;
  color: #fff;
  animation-name: cd-stock-advice-card-in, cd-stock-advice-pulse;
  animation-duration: 0.68s, 3.8s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
  animation-iteration-count: 1, infinite;
}

.solution-sellers-lp .cd-stock-advice-preview__kpis span {
  display: block;
  color: #64748b;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solution-sellers-lp .cd-stock-advice-preview__kpis .is-total span {
  color: rgba(255, 255, 255, 0.78);
}

.solution-sellers-lp .cd-stock-advice-preview__kpis strong {
  display: block;
  color: #111827;
  font-size: 1.05rem;
  margin-top: 0.2rem;
}

.solution-sellers-lp .cd-stock-advice-preview__kpis .is-total strong {
  color: #fff;
}

.solution-sellers-lp .cd-stock-advice-preview__filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.65rem;
  padding: 0 1rem 0.9rem;
}

.solution-sellers-lp .cd-stock-advice-preview__filters span,
.solution-sellers-lp .cd-stock-advice-preview__toolbar span,
.solution-sellers-lp .cd-stock-advice-preview__toolbar b {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 0.55rem;
  background: #fff;
  color: #64748b;
  font-size: 0.63rem;
  font-weight: 800;
}

.solution-sellers-lp .cd-stock-advice-preview__filters span {
  padding: 0.52rem 0.65rem;
}

.solution-sellers-lp .cd-stock-advice-preview__table {
  margin: 0 1rem 1rem;
  padding: 0.85rem;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 0.85rem 1.8rem rgba(0, 40, 100, 0.07);
}

.solution-sellers-lp .cd-stock-advice-preview__toolbar {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.solution-sellers-lp .cd-stock-advice-preview__toolbar span,
.solution-sellers-lp .cd-stock-advice-preview__toolbar b {
  padding: 0.42rem 0.55rem;
}

.solution-sellers-lp .cd-stock-advice-preview__toolbar b {
  margin-left: auto;
  min-width: 5rem;
  text-align: center;
}

.solution-sellers-lp .cd-stock-advice-preview__row {
  display: grid;
  grid-template-columns: auto minmax(8rem, 1.2fr) minmax(8rem, 1fr) auto auto auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  color: #111827;
  font-size: 0.66rem;
  animation: cd-stock-advice-card-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.solution-sellers-lp .cd-stock-advice-preview__row:nth-child(3) { animation-delay: 0.1s; }
.solution-sellers-lp .cd-stock-advice-preview__row:nth-child(4) { animation-delay: 0.2s; }

.solution-sellers-lp .cd-stock-advice-preview__row > i {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
}

.solution-sellers-lp .cd-stock-advice-preview__row strong,
.solution-sellers-lp .cd-stock-advice-preview__row span {
  min-width: 0;
}

.solution-sellers-lp .cd-stock-advice-preview__row strong {
  color: #1e40af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.solution-sellers-lp .cd-stock-advice-preview__row span {
  color: #111827;
  font-weight: 800;
  justify-self: start;
  text-align: left;
}

.solution-sellers-lp .cd-stock-advice-preview__row em {
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.1);
  color: #be123c;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.solution-sellers-lp .cd-stock-advice-preview__row em.is-ok {
  background: rgba(26, 86, 219, 0.14);
  color: #178542;
}

.solution-sellers-lp .cd-stock-advice-preview__row b {
  color: #111827;
  font-size: 0.7rem;
}

.solution-sellers-lp .cd-stock-advice-preview__row button {
  border: 0;
  border-radius: 0.55rem;
  background: #1a56db;
  color: #fff;
  padding: 0.42rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 900;
  white-space: nowrap;
  animation: cd-stock-advice-action 3.6s ease-in-out infinite;
}

@media (max-width: 991.98px) {
  .solution-sellers-lp .cd-stock-advice-preview__row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .solution-sellers-lp .cd-stock-advice-preview__row span,
  .solution-sellers-lp .cd-stock-advice-preview__row em,
  .solution-sellers-lp .cd-stock-advice-preview__row b,
  .solution-sellers-lp .cd-stock-advice-preview__row button {
    grid-column: 2;
  }
}

@media (max-width: 575.98px) {
  .solution-sellers-lp .cd-stock-advice-preview__head,
  .solution-sellers-lp .cd-stock-advice-preview__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .solution-sellers-lp .cd-stock-advice-preview__kpis,
  .solution-sellers-lp .cd-stock-advice-preview__filters {
    grid-template-columns: 1fr;
  }

  .solution-sellers-lp .cd-stock-advice-preview__toolbar b {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-sellers-lp .cd-stock-advice-preview__head button i,
  .solution-sellers-lp .cd-stock-advice-preview__kpis div,
  .solution-sellers-lp .cd-stock-advice-preview__kpis .is-total,
  .solution-sellers-lp .cd-stock-advice-preview__row,
  .solution-sellers-lp .cd-stock-advice-preview__row button {
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Pick-pack system-preview mockup — scoped to .solution-sellers-lp
   (mirrors rules from pick-pack.css)
   ───────────────────────────────────────────────────────────────────────── */

@keyframes cd-pick-scan-pulse {
  0%, 18%, 100% { box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06) inset; color: #7a8492; }
  28%, 42% { box-shadow: 0 0 0 2px rgba(26, 86, 219, 0.42) inset, 0 0.85rem 1.6rem rgba(26, 86, 219, 0.12); color: #1e40af; }
}
@keyframes cd-pick-item-current {
  0%, 36% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  44%, 88% { opacity: 0; transform: translate3d(-20px, 0, 0) scale(0.96); }
  94%, 100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes cd-pick-item-next {
  0%, 36% { opacity: 0; transform: translate3d(28px, 0, 0) scale(0.96); }
  44%, 88% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  94%, 100% { opacity: 0; transform: translate3d(28px, 0, 0) scale(0.96); }
}
@keyframes cd-pick-qty-before {
  0%, 18%, 100% { opacity: 1; transform: translateY(0); }
  26%, 88% { opacity: 0; transform: translateY(-8px); }
}
@keyframes cd-pick-qty-after {
  0%, 18%, 100% { opacity: 0; transform: translateY(8px); }
  26%, 36% { opacity: 1; transform: translateY(0); }
  44%, 88% { opacity: 0; transform: translateY(-8px); }
}
@keyframes cd-pick-qty-next-before {
  0%, 44%, 100% { opacity: 1; transform: translateY(0); }
  55%, 88% { opacity: 0; transform: translateY(-8px); }
}
@keyframes cd-pick-qty-next-mid {
  0%, 48%, 70%, 100% { opacity: 0; transform: translateY(8px); }
  55%, 64% { opacity: 1; transform: translateY(0); }
}
@keyframes cd-pick-qty-next-after {
  0%, 66%, 100% { opacity: 0; transform: translateY(8px); }
  74%, 88% { opacity: 1; transform: translateY(0); }
}
@keyframes cd-pick-chip-scanned {
  0%, 16%, 100% { background: rgba(244, 63, 94, 0.1); color: #be123c; }
  26%, 88% { background: rgba(26, 86, 219, 0.18); color: #1d4ed8; box-shadow: 0 0 0 1px rgba(26, 86, 219, 0.18) inset; }
}
@keyframes cd-pick-chip-all-green {
  0%, 70%, 100% { background: rgba(244, 63, 94, 0.1); color: #be123c; }
  78%, 88% { background: rgba(26, 86, 219, 0.18); color: #1d4ed8; box-shadow: 0 0 0 1px rgba(26, 86, 219, 0.18) inset; }
}
@keyframes cd-pick-order-highlight {
  0%, 20%, 100% { background: transparent; }
  30%, 88% { background: rgba(26, 86, 219, 0.06); }
}
@keyframes cd-pick-complete-pop {
  0%, 70%, 100% { opacity: 0; transform: translate3d(-50%, 18px, 0) scale(0.9); }
  76%, 94% { opacity: 1; transform: translate3d(-50%, 0, 0) scale(1); }
}

.solution-sellers-lp .cd-pick-system-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.35rem;
  background: #f5f6f8;
  box-shadow:
    0 1.6rem 3.6rem rgba(0, 40, 100, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.94) inset;
}
.solution-sellers-lp .cd-pick-system-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 36%, rgba(26, 86, 219, 0.12), transparent 12rem),
    radial-gradient(circle at 20% 12%, rgba(0, 113, 227, 0.08), transparent 12rem);
  pointer-events: none;
}
.solution-sellers-lp .cd-pick-system-preview__topbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}
.solution-sellers-lp .cd-pick-system-preview__brand img {
  display: block;
  width: auto;
  height: 1.35rem;
}
.solution-sellers-lp .cd-pick-system-preview__search {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.38rem 0.65rem;
  border-radius: 0.55rem;
  background: #f1f3f5;
  color: #8a93a2;
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solution-sellers-lp .cd-pick-system-preview__user {
  color: #111827;
  font-size: 0.7rem;
  font-weight: 700;
}
.solution-sellers-lp .cd-pick-system-preview__body {
  position: relative;
  z-index: 1;
  min-height: 27rem;
}
.solution-sellers-lp .cd-pick-system-preview__main {
  min-width: 0;
  padding: 1.25rem;
}
.solution-sellers-lp .cd-pick-system-preview__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1.4rem;
  margin-bottom: 1.25rem;
  min-height: 17.75rem;
}
.solution-sellers-lp .cd-pick-system-preview__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 1.35rem;
}
.solution-sellers-lp .cd-pick-system-preview__arrow:first-child { left: 0.75rem; }
.solution-sellers-lp .cd-pick-system-preview__arrow:last-child { right: 0.75rem; }
.solution-sellers-lp .cd-pick-system-preview__item {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 1.55rem 1.5rem 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 1.35rem;
  background: radial-gradient(circle at 78% 8%, rgba(26, 86, 219, 0.08), transparent 7rem), #fff;
  text-align: center;
  box-shadow: 0 1.1rem 2.25rem rgba(0, 40, 100, 0.1), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}
.solution-sellers-lp .cd-pick-system-preview__item-deck {
  position: relative;
  min-height: 17.75rem;
  width: min(100%, 22rem);
  min-width: min(100%, 18rem);
  margin: 0 auto;
}
.solution-sellers-lp .cd-pick-system-preview__item-deck .cd-pick-system-preview__item {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  min-height: 16.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-sellers-lp .cd-pick-system-preview__item--current {
  animation: cd-pick-item-current 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__item--next {
  animation: cd-pick-item-next 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__product--next {
  color: #1e40af;
  background: rgba(26, 86, 219, 0.08);
}
.solution-sellers-lp .cd-pick-system-preview__product {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -2.35rem auto 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.8rem;
  background: #fff;
  color: #111827;
  font-size: 1.45rem;
  box-shadow: 0 0.75rem 1.4rem rgba(0, 40, 100, 0.08), 0 0 0 0.45rem rgba(255, 255, 255, 0.68);
}
.solution-sellers-lp .cd-pick-system-preview__item > strong {
  display: block;
  color: #111827;
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}
.solution-sellers-lp .cd-pick-system-preview__qty {
  display: block;
  line-height: 1.1;
}
.solution-sellers-lp .cd-pick-system-preview__qty--before {
  animation: cd-pick-qty-before 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__qty--after {
  margin-top: -1.6rem;
  color: #1e40af;
  animation: cd-pick-qty-after 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__qty-stack { min-height: 1.65rem; }
.solution-sellers-lp .cd-pick-system-preview__qty--next-before {
  animation: cd-pick-qty-next-before 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__qty--next-mid,
.solution-sellers-lp .cd-pick-system-preview__qty--next-after {
  margin-top: -1.6rem;
  color: #1e40af;
}
.solution-sellers-lp .cd-pick-system-preview__qty--next-mid {
  animation: cd-pick-qty-next-mid 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__qty--next-after {
  animation: cd-pick-qty-next-after 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__item em {
  display: inline-flex;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(26, 86, 219, 0.16);
  color: #1e40af;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.solution-sellers-lp .cd-pick-system-preview__item h3 {
  color: #111827;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 auto 0.25rem;
  max-width: 14rem;
}
.solution-sellers-lp .cd-pick-system-preview__item p {
  color: #6b7280;
  font-size: 0.74rem;
  margin: 0 auto 0.85rem;
  max-width: 14rem;
}
.solution-sellers-lp .cd-pick-system-preview__item button {
  width: 100%;
  min-height: 2.15rem;
  border: 0;
  border-radius: 0.55rem;
  background: #e5e7eb;
  color: #111827;
  font-size: 0.72rem;
  font-weight: 800;
}
.solution-sellers-lp .cd-pick-system-preview__orders {
  overflow: hidden;
  max-width: 34rem;
  margin: 0 auto;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.8rem 1.7rem rgba(0, 40, 100, 0.06);
}
.solution-sellers-lp .cd-pick-system-preview__orders-head,
.solution-sellers-lp .cd-pick-system-preview__order-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.9rem;
}
.solution-sellers-lp .cd-pick-system-preview__orders-head {
  justify-content: space-between;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.solution-sellers-lp .cd-pick-system-preview__orders-head span {
  color: #1e40af;
  font-size: 0.68rem;
}
.solution-sellers-lp .cd-pick-system-preview__order-row {
  border-bottom: 1px solid rgba(15, 23, 42, 0.055);
  color: #4b5563;
  font-size: 0.68rem;
}
.solution-sellers-lp .cd-pick-system-preview__order-row:has(.is-scanned) {
  animation: cd-pick-order-highlight 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__order-row span {
  min-width: 3.8rem;
  color: #111827;
  font-weight: 800;
}
.solution-sellers-lp .cd-pick-system-preview__order-row em {
  padding: 0.24rem 0.42rem;
  border-radius: 999px;
  background: rgba(244, 63, 94, 0.1);
  color: #be123c;
  font-style: normal;
  font-weight: 700;
}
.solution-sellers-lp .cd-pick-system-preview__order-row em.is-scanned {
  animation: cd-pick-chip-scanned 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__order-row em:not(.is-scanned) {
  animation: cd-pick-chip-all-green 11s ease-in-out infinite;
}
.solution-sellers-lp .cd-pick-system-preview__complete-pop {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.92rem 1.2rem;
  border: 1px solid rgba(26, 86, 219, 0.26);
  border-radius: 1rem;
  background: radial-gradient(circle at 18% 22%, rgba(26, 86, 219, 0.18), transparent 8rem), rgba(255, 255, 255, 0.96);
  color: #1d4ed8;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 1.35rem 2.65rem rgba(0, 40, 100, 0.16), 0 0 0 0.38rem rgba(26, 86, 219, 0.08);
  animation: cd-pick-complete-pop 11s ease-in-out infinite;
  backdrop-filter: blur(12px);
}
.solution-sellers-lp .cd-pick-system-preview__complete-pop i {
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 0.55rem 1.1rem rgba(22, 163, 74, 0.22);
}

@media (max-width: 575.98px) {
  .solution-sellers-lp .cd-pick-system-preview__topbar { grid-template-columns: 1fr; }
  .solution-sellers-lp .cd-pick-system-preview__user { display: none; }
  .solution-sellers-lp .cd-pick-system-preview__arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .solution-sellers-lp .cd-pick-system-preview__item--current,
  .solution-sellers-lp .cd-pick-system-preview__item--next,
  .solution-sellers-lp .cd-pick-system-preview__qty--before,
  .solution-sellers-lp .cd-pick-system-preview__qty--after,
  .solution-sellers-lp .cd-pick-system-preview__qty--next-before,
  .solution-sellers-lp .cd-pick-system-preview__qty--next-mid,
  .solution-sellers-lp .cd-pick-system-preview__qty--next-after,
  .solution-sellers-lp .cd-pick-system-preview__order-row em,
  .solution-sellers-lp .cd-pick-system-preview__complete-pop {
    animation: none !important;
  }
  .solution-sellers-lp .cd-pick-system-preview__item--next { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────
   Shipping-rule modal-preview mockup — scoped to .solution-sellers-lp
   (mirrors rules from shipping-rules.css)
   ───────────────────────────────────────────────────────────────────────── */

@keyframes cd-ship-rule-row-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cd-ship-rule-highlight {
  0%, 100% { box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08) inset; background: #f8fafc; }
  45%, 68% { box-shadow: 0 0 0 1px rgba(26, 86, 219, 0.28) inset, 0 0.55rem 1.2rem rgba(26, 86, 219, 0.12); background: rgba(26, 86, 219, 0.1); }
}
@keyframes cd-ship-rule-save {
  0%, 100% { transform: translateY(0); }
  55%       { transform: translateY(-2px); }
}
@keyframes cd-ship-rule-action-glow {
  0%, 100% { border-color: rgba(15, 23, 42, 0.07); }
  50%       { border-color: rgba(0, 113, 227, 0.18); }
}

.solution-sellers-lp .cd-ship-rule-modal-preview {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.2rem;
  background: #f7f8fa;
  box-shadow: 0 1.5rem 3.2rem rgba(0, 40, 100, 0.13), 0 1px 0 rgba(255, 255, 255, 0.92) inset;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  color: #111827;
  font-weight: 900;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__grid {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__grid label {
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__grid span,
.solution-sellers-lp .cd-ship-rule-modal-preview__condition span,
.solution-sellers-lp .cd-ship-rule-modal-preview__condition strong,
.solution-sellers-lp .cd-ship-rule-modal-preview__action span,
.solution-sellers-lp .cd-ship-rule-modal-preview__action strong {
  display: block;
  margin-top: 0.25rem;
  padding: 0.48rem 0.58rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.55rem;
  background: #fff;
  color: #111827;
  font-size: 0.72rem;
  font-weight: 800;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__panel {
  margin: 0 1rem 0.8rem;
  padding: 0.9rem;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 0.7rem 1.5rem rgba(0, 40, 100, 0.055);
  animation: cd-ship-rule-action-glow 4.8s ease-in-out infinite;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__panel-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__panel-head span {
  color: #111827;
  font-size: 0.78rem;
  font-weight: 900;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__panel-head em { font-style: normal; }
.solution-sellers-lp .cd-ship-rule-modal-preview__panel-head button {
  margin-left: auto;
  border: 1px solid rgba(26, 86, 219, 0.28);
  border-radius: 0.55rem;
  background: rgba(26, 86, 219, 0.08);
  color: #178542;
  padding: 0.42rem 0.58rem;
  font-size: 0.66rem;
  font-weight: 900;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__condition,
.solution-sellers-lp .cd-ship-rule-modal-preview__action {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 0.62fr) minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.45rem;
  animation: cd-ship-rule-row-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__condition:nth-of-type(3) { animation-delay: 0.12s; }
.solution-sellers-lp .cd-ship-rule-modal-preview__condition b,
.solution-sellers-lp .cd-ship-rule-modal-preview__action b {
  color: #111827;
  font-size: 0.78rem;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__condition strong,
.solution-sellers-lp .cd-ship-rule-modal-preview__action strong {
  background: #f8fafc;
  animation: cd-ship-rule-highlight 4.8s ease-in-out infinite;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__condition:nth-of-type(3) strong { animation-delay: 0.5s; }
.solution-sellers-lp .cd-ship-rule-modal-preview__action strong { animation-delay: 1s; }
.solution-sellers-lp .cd-ship-rule-modal-preview__panel--action { margin-bottom: 1rem; }
.solution-sellers-lp .cd-ship-rule-modal-preview__action {
  grid-template-columns: auto minmax(0, 0.8fr) minmax(0, 1.8fr);
}
.solution-sellers-lp .cd-ship-rule-modal-preview__foot {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__foot button {
  border: 0;
  border-radius: 0.55rem;
  background: #e5e7eb;
  color: #111827;
  padding: 0.52rem 0.72rem;
  font-size: 0.7rem;
  font-weight: 900;
}
.solution-sellers-lp .cd-ship-rule-modal-preview__foot .is-save {
  background: #1a56db;
  color: #fff;
  box-shadow: 0 0.55rem 1.1rem rgba(26, 86, 219, 0.22);
  animation: cd-ship-rule-save 4.8s ease-in-out infinite;
}

@media (max-width: 575.98px) {
  .solution-sellers-lp .cd-ship-rule-modal-preview__grid,
  .solution-sellers-lp .cd-ship-rule-modal-preview__condition,
  .solution-sellers-lp .cd-ship-rule-modal-preview__action {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-sellers-lp .cd-ship-rule-modal-preview__panel,
  .solution-sellers-lp .cd-ship-rule-modal-preview__condition,
  .solution-sellers-lp .cd-ship-rule-modal-preview__action,
  .solution-sellers-lp .cd-ship-rule-modal-preview__condition strong,
  .solution-sellers-lp .cd-ship-rule-modal-preview__action strong,
  .solution-sellers-lp .cd-ship-rule-modal-preview__foot .is-save {
    animation: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   PIM listings modal-preview mockup — scoped to .solution-sellers-lp
   (mirrors rules from pim-listings.css)
   ───────────────────────────────────────────────────────────────────────── */

.solution-sellers-lp .cd-pim-modal-preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 1.55rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
  box-shadow:
    0 2rem 4.5rem rgba(15, 23, 42, 0.13),
    0 0.65rem 1.65rem rgba(0, 113, 227, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
  animation: cd-pim-preview-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.solution-sellers-lp .cd-pim-modal-preview__glow {
  position: absolute;
  inset: auto -18% -22% 38%;
  height: 16rem;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 113, 227, 0.16), transparent 48%),
    radial-gradient(circle at 70% 40%, rgba(26, 86, 219, 0.13), transparent 42%);
  filter: blur(18px);
  pointer-events: none;
  animation: cd-pim-preview-glow 7s ease-in-out infinite alternate;
}
.solution-sellers-lp .cd-pim-modal-preview__chrome {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}
.solution-sellers-lp .cd-pim-modal-preview__chrome > i { color: #334155; font-size: 0.95rem; }
.solution-sellers-lp .cd-pim-modal-preview__product { display: flex; align-items: center; gap: 0.8rem; min-width: 0; }
.solution-sellers-lp .cd-pim-modal-preview__thumb {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.25)),
    linear-gradient(145deg, rgba(0, 113, 227, 0.16), rgba(124, 58, 237, 0.13));
  color: #475569;
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  animation: cd-pim-preview-thumb 4.8s ease-in-out infinite;
}
.solution-sellers-lp .cd-pim-modal-preview__thumb i {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.solution-sellers-lp .cd-pim-modal-preview__product strong,
.solution-sellers-lp .cd-pim-modal-preview__product span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.solution-sellers-lp .cd-pim-modal-preview__product strong { color: #111827; font-size: 0.94rem; letter-spacing: -0.025em; }
.solution-sellers-lp .cd-pim-modal-preview__product span  { color: #64748b; font-size: 0.72rem; }
.solution-sellers-lp .cd-pim-modal-preview__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(12.75rem, 0.82fr) minmax(0, 1.18fr);
  min-height: 28rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.2) 43%, rgba(238, 244, 255, 0.76) 100%),
    #f6f8fb;
}
.solution-sellers-lp .cd-pim-modal-preview__channels {
  display: flex;
  flex-direction: column;
  padding: 1rem 0.9rem;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.66);
}
.solution-sellers-lp .cd-pim-modal-preview__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 0.7rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}
.solution-sellers-lp .cd-pim-modal-preview__tabs span {
  padding: 0.48rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.solution-sellers-lp .cd-pim-modal-preview__tabs .is-active { color: #148344; border-bottom-color: rgba(26, 86, 219, 0.5); }
.solution-sellers-lp .cd-pim-modal-preview__channel-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 0.55rem;
  row-gap: 0.1rem;
  align-items: center;
  padding: 0.78rem 0.68rem;
  border-radius: 0.9rem;
  color: #111827;
  font-size: 0.72rem;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.solution-sellers-lp .cd-pim-modal-preview__channel-row + .cd-pim-modal-preview__channel-row { margin-top: 0.25rem; }
.solution-sellers-lp .cd-pim-modal-preview__channel-row.is-selected {
  transform: translateX(0.15rem);
  background: linear-gradient(90deg, rgba(26, 86, 219, 0.2), rgba(26, 86, 219, 0.09));
  box-shadow: inset 3px 0 0 #1a56db, 0 0.65rem 1.15rem rgba(34, 197, 94, 0.1);
  animation: cd-pim-preview-selected 3.4s ease-in-out infinite;
}
.solution-sellers-lp .cd-pim-modal-preview__checkbox {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.78);
}
.solution-sellers-lp .cd-pim-modal-preview__checkbox.is-checked {
  background: #1a56db;
  border-color: #1a56db;
  animation: cd-pim-preview-check 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.solution-sellers-lp .cd-pim-modal-preview__channel-row strong,
.solution-sellers-lp .cd-pim-modal-preview__channel-row em { display: block; }
.solution-sellers-lp .cd-pim-modal-preview__channel-row em { color: #64748b; font-size: 0.62rem; font-style: normal; line-height: 1.25; }
.solution-sellers-lp .cd-pim-modal-preview__channel-row b { grid-column: 3; grid-row: 1; font-size: 0.7rem; letter-spacing: -0.02em; }
.solution-sellers-lp .cd-pim-modal-preview__channel-row small {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  background: #eef2f7;
  color: #64748b;
  font-size: 0.58rem;
  font-weight: 800;
}
.solution-sellers-lp .cd-pim-modal-preview__channel-row small.is-pending { background: rgba(245, 158, 11, 0.12); color: #9a5b00; }
.solution-sellers-lp .cd-pim-modal-preview__channel-row small.is-changed { background: rgba(0, 113, 227, 0.1); color: #075da8; }
.solution-sellers-lp .cd-pim-modal-preview__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}
.solution-sellers-lp .cd-pim-modal-preview__actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2rem;
  border-radius: 0.65rem;
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
  font-size: 0.62rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.18s ease, background 0.18s ease;
}
.solution-sellers-lp .cd-pim-modal-preview__actions span:hover { transform: translateY(-1px); background: rgba(15, 23, 42, 0.09); }
.solution-sellers-lp .cd-pim-modal-preview__content { padding: 1.15rem 1.05rem; }
.solution-sellers-lp .cd-pim-modal-preview__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 0.9rem; }
.solution-sellers-lp .cd-pim-modal-preview__cards section,
.solution-sellers-lp .cd-pim-modal-preview__description,
.solution-sellers-lp .cd-pim-modal-preview__accordions span {
  border: 1px solid rgba(15, 23, 42, 0.065);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.65rem 1.35rem rgba(15, 23, 42, 0.055), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  animation: cd-pim-preview-card-in 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solution-sellers-lp .cd-pim-modal-preview__cards section:hover,
.solution-sellers-lp .cd-pim-modal-preview__description:hover,
.solution-sellers-lp .cd-pim-modal-preview__accordions span:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.9rem 1.6rem rgba(15, 23, 42, 0.075), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}
.solution-sellers-lp .cd-pim-modal-preview__cards section:nth-child(1) { animation-delay: 0.12s; }
.solution-sellers-lp .cd-pim-modal-preview__cards section:nth-child(2) { animation-delay: 0.2s; }
.solution-sellers-lp .cd-pim-modal-preview__description { animation-delay: 0.28s; overflow: hidden; margin-bottom: 0.8rem; }
.solution-sellers-lp .cd-pim-modal-preview__accordions span:nth-child(1) { animation-delay: 0.36s; }
.solution-sellers-lp .cd-pim-modal-preview__accordions span:nth-child(2) { animation-delay: 0.44s; }
.solution-sellers-lp .cd-pim-modal-preview__accordions span:nth-child(3) { animation-delay: 0.52s; }
.solution-sellers-lp .cd-pim-modal-preview__cards span {
  display: flex;
  justify-content: space-between;
  color: #111827;
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
}
.solution-sellers-lp .cd-pim-modal-preview__cards i { color: #1a56db; animation: cd-pim-preview-icon 2.8s ease-in-out infinite; }
.solution-sellers-lp .cd-pim-modal-preview__cards strong { display: block; color: #475569; font-size: 0.76rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.solution-sellers-lp .cd-pim-modal-preview__section-head {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  color: #111827;
  font-size: 0.84rem;
  font-weight: 900;
}
.solution-sellers-lp .cd-pim-modal-preview__section-head span { color: #178542; font-size: 0.72rem; }
.solution-sellers-lp .cd-pim-modal-preview__description h3 { padding: 0.85rem 0.95rem 0; margin: 0 0 0.35rem; color: #111827; font-size: 1.02rem; letter-spacing: -0.025em; }
.solution-sellers-lp .cd-pim-modal-preview__description p { padding: 0 0.95rem 1rem; margin: 0; color: #475569; font-size: 0.72rem; line-height: 1.55; }
.solution-sellers-lp .cd-pim-modal-preview__accordions { display: grid; gap: 0.55rem; }
.solution-sellers-lp .cd-pim-modal-preview__accordions span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.76rem 0.9rem;
  color: #111827;
  font-size: 0.78rem;
  font-weight: 900;
}
.solution-sellers-lp .cd-pim-modal-preview__accordions b { color: #178542; font-size: 0.72rem; margin-left: auto; margin-right: 0.55rem; }
.solution-sellers-lp .cd-pim-modal-preview__cards section { min-width: 0; padding: 0.85rem; }

@media (max-width: 991.98px) {
  .solution-sellers-lp .cd-pim-modal-preview__body { grid-template-columns: 1fr; }
  .solution-sellers-lp .cd-pim-modal-preview__channels { border-right: 0; border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
  .solution-sellers-lp .cd-pim-modal-preview__actions { margin-top: 0.8rem; }
}
@media (max-width: 575.98px) {
  .solution-sellers-lp .cd-pim-modal-preview__cards,
  .solution-sellers-lp .cd-pim-modal-preview__actions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .solution-sellers-lp .cd-pim-modal-preview,
  .solution-sellers-lp .cd-pim-modal-preview *,
  .solution-sellers-lp .cd-pim-modal-preview *::before,
  .solution-sellers-lp .cd-pim-modal-preview *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   PIM AI-images generator-preview mockup — scoped to .solution-sellers-lp
   (mirrors rules from pim-ai-images.css)
   ───────────────────────────────────────────────────────────────────────── */

@keyframes cd-pim-ai-output-pop {
  0%, 28%  { opacity: 0.35; transform: translate3d(0, 10px, 0) scale(0.94); filter: saturate(0.65); }
  45%, 82% { opacity: 1;    transform: translate3d(0, 0, 0)   scale(1);    filter: saturate(1.08); }
  100%     { opacity: 0.55; transform: translate3d(0, 4px, 0)  scale(0.98); }
}
@keyframes cd-pim-ai-source-glow {
  0%, 100% { box-shadow: 0 0.85rem 1.8rem rgba(79, 70, 229, 0.1); }
  55%      { box-shadow: 0 1.1rem 2.2rem rgba(109, 40, 217, 0.2); }
}
@keyframes cd-pim-ai-generate-beam {
  0%   { transform: scaleX(0.1); opacity: 0.35; }
  45%  { transform: scaleX(1);   opacity: 1; }
  100% { transform: scaleX(0.1); opacity: 0.35; }
}

.solution-sellers-lp .cd-pim-ai-generator-preview {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 113, 227, 0.12), transparent 13rem),
    radial-gradient(circle at 12% 84%, rgba(124, 58, 237, 0.12), transparent 13rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 0.9rem 2.8rem rgba(79, 70, 229, 0.11);
}
.solution-sellers-lp .cd-pim-ai-generator-preview__head,
.solution-sellers-lp .cd-pim-ai-generator-preview__prompt {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__head {
  padding: 0.45rem 0.5rem 0.85rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}
.solution-sellers-lp .cd-pim-ai-generator-preview__head span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #5b21b6;
  font-size: 0.78rem;
  font-weight: 900;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__head em { color: #64748b; font-size: 0.68rem; font-style: normal; font-weight: 800; }
.solution-sellers-lp .cd-pim-ai-generator-preview__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(8rem, 0.75fr) 3.5rem minmax(0, 1.25fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1.25rem 0.25rem;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__source,
.solution-sellers-lp .cd-pim-ai-generator-preview__output {
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0.75rem 1.6rem rgba(79, 70, 229, 0.08);
}
.solution-sellers-lp .cd-pim-ai-generator-preview__source {
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  animation: cd-pim-ai-source-glow 5.8s ease-in-out infinite;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__label,
.solution-sellers-lp .cd-pim-ai-generator-preview__output span {
  display: block;
  color: #64748b;
  font-size: 0.66rem;
  font-weight: 850;
  margin-bottom: 0.55rem;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__product {
  width: 6rem;
  height: 6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(245, 243, 255, 0.9)),
    radial-gradient(circle at 70% 22%, rgba(124, 58, 237, 0.22), transparent 4rem);
  color: #5b21b6;
  font-size: 2rem;
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.1);
}
.solution-sellers-lp .cd-pim-ai-generator-preview__source strong { display: block; color: #111827; font-size: 0.84rem; }
.solution-sellers-lp .cd-pim-ai-generator-preview__beam {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__beam span {
  position: absolute;
  left: -0.6rem;
  right: -0.6rem;
  height: 0.32rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.08), rgba(124, 58, 237, 0.7), rgba(0, 113, 227, 0.56));
  transform-origin: 0 50%;
  animation: cd-pim-ai-generate-beam 5.8s ease-in-out infinite;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__beam i {
  position: relative;
  z-index: 1;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #7c3aed, #0071e3);
  color: #fff;
  box-shadow: 0 0.55rem 1.2rem rgba(79, 70, 229, 0.28);
}
.solution-sellers-lp .cd-pim-ai-generator-preview__outputs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; }
.solution-sellers-lp .cd-pim-ai-generator-preview__output {
  min-height: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 0.95rem;
  animation: cd-pim-ai-output-pop 5.8s ease-in-out infinite;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__output i {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  border-radius: 0.8rem;
  color: #fff;
  font-size: 1.2rem;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__output--studio i    { background: linear-gradient(145deg, #7c3aed, #5b21b6); }
.solution-sellers-lp .cd-pim-ai-generator-preview__output--lifestyle   { animation-delay: 0.25s; }
.solution-sellers-lp .cd-pim-ai-generator-preview__output--lifestyle i  { background: linear-gradient(145deg, #f59e0b, #ef4444); }
.solution-sellers-lp .cd-pim-ai-generator-preview__output--marketplace  { animation-delay: 0.5s; }
.solution-sellers-lp .cd-pim-ai-generator-preview__output--marketplace i { background: linear-gradient(145deg, #0ea5e9, #0071e3); }
.solution-sellers-lp .cd-pim-ai-generator-preview__output--seasonal     { animation-delay: 0.75s; }
.solution-sellers-lp .cd-pim-ai-generator-preview__output--seasonal i   { background: linear-gradient(145deg, #34d399, #059669); }
.solution-sellers-lp .cd-pim-ai-generator-preview__prompt {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.78);
  color: #475569;
  font-size: 0.72rem;
  font-weight: 800;
}
.solution-sellers-lp .cd-pim-ai-generator-preview__prompt i { color: #7c3aed; }

@media (max-width: 575.98px) {
  .solution-sellers-lp .cd-pim-ai-generator-preview__stage { grid-template-columns: 1fr; }
  .solution-sellers-lp .cd-pim-ai-generator-preview__beam { min-height: 3rem; }
  .solution-sellers-lp .cd-pim-ai-generator-preview__beam span { transform: rotate(90deg); }
}
@media (prefers-reduced-motion: reduce) {
  .solution-sellers-lp .cd-pim-ai-generator-preview__source,
  .solution-sellers-lp .cd-pim-ai-generator-preview__beam span,
  .solution-sellers-lp .cd-pim-ai-generator-preview__output { animation: none !important; }
}

/* ── Pillar anchor bar — strong zone chapter header ────────────────────────── */
.solution-sellers-lp .cd-sol-pillar-anchor {
  padding: 1.5rem 0;
  border-top: 4px solid transparent;
  margin-top: 4rem;
}
.solution-sellers-lp .cd-sol-pillar-anchor .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

/* Stronger background tints for the anchor bar */
.solution-sellers-lp .cd-sol-pillar-anchor--stock  { border-color: #0071e3; background: rgba(0, 113, 227, 0.08); }
.solution-sellers-lp .cd-sol-pillar-anchor--orders { border-color: #d97706; background: rgba(217, 119, 6, 0.08); }
.solution-sellers-lp .cd-sol-pillar-anchor--pim    { border-color: #7c3aed; background: rgba(124, 58, 237, 0.08); }

/* Icon in a colored circle badge */
.solution-sellers-lp .cd-sol-pillar-anchor__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.solution-sellers-lp .cd-sol-pillar-anchor--stock  .cd-sol-pillar-anchor__icon { background: rgba(0, 113, 227, 0.15); color: #0071e3; }
.solution-sellers-lp .cd-sol-pillar-anchor--orders .cd-sol-pillar-anchor__icon { background: rgba(217, 119, 6, 0.15); color: #d97706; }
.solution-sellers-lp .cd-sol-pillar-anchor--pim    .cd-sol-pillar-anchor__icon { background: rgba(124, 58, 237, 0.15); color: #7c3aed; }

/* Label — larger and bolder */
.solution-sellers-lp .cd-sol-pillar-anchor__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.solution-sellers-lp .cd-sol-pillar-anchor--stock  .cd-sol-pillar-anchor__label { color: #0071e3; }
.solution-sellers-lp .cd-sol-pillar-anchor--orders .cd-sol-pillar-anchor__label { color: #d97706; }
.solution-sellers-lp .cd-sol-pillar-anchor--pim    .cd-sol-pillar-anchor__label { color: #7c3aed; }

/* Decorative section number — large muted numeral pushed to the right */
.solution-sellers-lp .cd-sol-pillar-anchor .container::after {
  content: "";
  margin-left: auto;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}
.solution-sellers-lp .cd-sol-pillar-anchor--stock  .container::after { content: "01"; color: #0071e3; }
.solution-sellers-lp .cd-sol-pillar-anchor--orders .container::after { content: "02"; color: #d97706; }
.solution-sellers-lp .cd-sol-pillar-anchor--pim    .container::after { content: "03"; color: #7c3aed; }

/* Dark mode — anchor bar */
body[data-theme=dark] .solution-sellers-lp .cd-sol-pillar-anchor--stock  { background: rgba(0, 113, 227, 0.13); }
body[data-theme=dark] .solution-sellers-lp .cd-sol-pillar-anchor--orders { background: rgba(217, 119, 6, 0.13); }
body[data-theme=dark] .solution-sellers-lp .cd-sol-pillar-anchor--pim    { background: rgba(124, 58, 237, 0.13); }
body[data-theme=dark] .solution-sellers-lp .cd-sol-pillar-anchor .container::after { opacity: 0.12; }

/* ── Zone background banding — KPI sections ────────────────────────────────── */
/* These sections already carry pillar-specific gradients; add a subtle uniform tint layer */
.solution-sellers-lp .cd-sol-kpi-section--stock  { box-shadow: inset 0 0 0 100vmax rgba(0, 113, 227, 0.018); }
.solution-sellers-lp .cd-sol-kpi-section--orders { box-shadow: inset 0 0 0 100vmax rgba(217, 119, 6, 0.018); }
.solution-sellers-lp .cd-sol-kpi-section--pim    { box-shadow: inset 0 0 0 100vmax rgba(124, 58, 237, 0.018); }

/* ── Zone background banding — feature sections ─────────────────────────────── */
/* Override default white + alt-grey so every feature block inside a zone shares its zone tint */
.solution-sellers-lp .cd-sol-feat-section[data-pillar="stock"],
.solution-sellers-lp .cd-sol-feat-section--alt[data-pillar="stock"]  { background: rgba(0, 113, 227, 0.03) !important; }
.solution-sellers-lp .cd-sol-feat-section[data-pillar="orders"],
.solution-sellers-lp .cd-sol-feat-section--alt[data-pillar="orders"] { background: rgba(217, 119, 6, 0.03) !important; }
.solution-sellers-lp .cd-sol-feat-section[data-pillar="pim"],
.solution-sellers-lp .cd-sol-feat-section--alt[data-pillar="pim"]    { background: rgba(124, 58, 237, 0.03) !important; }

/* Dark mode — feature section tints */
body[data-theme=dark] .solution-sellers-lp .cd-sol-feat-section[data-pillar="stock"],
body[data-theme=dark] .solution-sellers-lp .cd-sol-feat-section--alt[data-pillar="stock"]  { background: rgba(0, 113, 227, 0.06) !important; }
body[data-theme=dark] .solution-sellers-lp .cd-sol-feat-section[data-pillar="orders"],
body[data-theme=dark] .solution-sellers-lp .cd-sol-feat-section--alt[data-pillar="orders"] { background: rgba(217, 119, 6, 0.06) !important; }
body[data-theme=dark] .solution-sellers-lp .cd-sol-feat-section[data-pillar="pim"],
body[data-theme=dark] .solution-sellers-lp .cd-sol-feat-section--alt[data-pillar="pim"]    { background: rgba(124, 58, 237, 0.06) !important; }

/* ── Left border accent — thicker & stronger ────────────────────────────────── */
.solution-sellers-lp .cd-sol-feat-section[data-pillar="stock"]  { border-left: 4px solid rgba(0, 113, 227, 0.35); }
.solution-sellers-lp .cd-sol-feat-section[data-pillar="orders"] { border-left: 4px solid rgba(217, 119, 6, 0.35); }
.solution-sellers-lp .cd-sol-feat-section[data-pillar="pim"]    { border-left: 4px solid rgba(124, 58, 237, 0.35); }
