@charset "UTF-8";
/* ── order-processing ─────────────────────────────────────────────────
   Ported from the standalone mini-landing (mini-lands/order-processing).
   The whole sheet is scoped to #ml-order-processing: the source carried a
   global reset (*, html, body, a, button, img/svg, h1-h3) and page CSS is
   loaded last, so left global it would break the site header/footer here.
   :root vars live on the wrapper; @keyframes stay global (bottom).
   ──────────────────────────────────────────────────────────────────── */
#ml-order-processing {
  /* was :root{} */ 
  --c-black:#000;
  --c-near:#1a1e25;
  --c-gray1:#424245;
  --c-gray2:#5b5b63;
  --c-gray3:#86868b;
  --c-gray4:#d2d2d7;
  --c-gray5:#e8e8ed;
  --c-lightbg:#f6f6f9;
  --c-white:#fff;
  --c-blue:#6B8368;
  --c-amber:#ffb200;
  --c-amber-d:#e6a100;
  --c-green:#30d158;
  --font:Arial,Helvetica,"Helvetica Neue",sans-serif;
  --ease:cubic-bezier(.25,.1,.25,1);
  --ease-out:cubic-bezier(0,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
  --max:1055px;
  --max-wide:1316px;
  /* was body{} (+ -webkit-text-size-adjust from html{}; scroll-behavior dropped) */
  font-family: var(--font);
  color: var(--c-near);
  background: #fff;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* ── PRIMITIVES ── */
  /* reveal */
  /* ── HERO ── */
  /* hero background removed 2026-07-24 (backup in _hero-backup/); new one goes here */
  /* hero visual: scattered product collage (ported from sellvia.com/free-online-store-plus-instagram-and-tiktok-store).
     Cards fade in (CSS opacity) + slide down from above (JS rAF, staggered), then drift on scroll (parallax). */
  /* off on mobile / touch, same as the reference collage */
  /* left-to-right: TikTok icon (1), IG icon (2), big lifestyle shot (3), two shoppable-post cards (4,5) */
  /* ── SECTION: HIGH-MARGIN (3 features) ── */
  /* ── SECTION: WHAT'S INCLUDED ── */
  /* ── FINAL CTA ── */
  /* ── RESPONSIVE (ref breakpoints 1290 / 991 / 767 / 600 / 400) ── */
}
#ml-order-processing * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#ml-order-processing a {
  color: inherit;
  text-decoration: none;
}
#ml-order-processing button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
#ml-order-processing img, #ml-order-processing svg {
  display: block;
  max-width: 100%;
}
#ml-order-processing h1, #ml-order-processing h2, #ml-order-processing h3 {
  letter-spacing: normal;
  text-wrap: balance;
}
#ml-order-processing .sec-in {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 28px;
}
#ml-order-processing .sec-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#ml-order-processing .sec-body {
  font-size: 17px;
  color: var(--c-gray2);
  line-height: 1.6;
}
#ml-order-processing .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 15px 35px;
  background: var(--c-amber);
  color: #fff;
  transition: background-color 0.2s;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
}
#ml-order-processing .btn-filled {
  background: var(--c-amber);
  color: #fff;
}
#ml-order-processing .btn:hover, #ml-order-processing .btn-filled:hover {
  background: var(--c-amber-d);
}
#ml-order-processing .btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s;
}
#ml-order-processing .btn:hover svg {
  transform: translateX(3px);
}
#ml-order-processing.js .appear {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
#ml-order-processing .appear.is-visible {
  opacity: 1;
  transform: none;
}
#ml-order-processing .appear.d1 {
  transition-delay: 0.08s;
}
#ml-order-processing .appear.d2 {
  transition-delay: 0.16s;
}
#ml-order-processing .appear.d3 {
  transition-delay: 0.24s;
}
#ml-order-processing .appear.d4 {
  transition-delay: 0.32s;
}
#ml-order-processing .appear.d5 {
  transition-delay: 0.4s;
}
#ml-order-processing .appear.d6 {
  transition-delay: 0.48s;
}
@media (prefers-reduced-motion: reduce) {
  #ml-order-processing .appear {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  #ml-order-processing * {
    animation: none !important;
  }
}
#ml-order-processing .hero {
  --hp-ink:#fff;
  --hp-ink-2:rgba(255,255,255,.72);
  --hp-muted:rgba(255,255,255,.5);
  position: relative;
  color: var(--hp-ink);
  overflow: hidden;
  isolation: isolate;
  background: #0f0c09;
}
#ml-order-processing .hp-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: start;
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 95px 28px;
}
#ml-order-processing .hp-grid > * {
  min-width: 0;
}
#ml-order-processing .hp-shell {
  text-align: left;
}
#ml-order-processing .hp-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
#ml-order-processing .hp-headline {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.14;
  letter-spacing: normal;
  color: #fff;
  margin: 0 0 22px;
  max-width: 660px;
}
#ml-order-processing .hp-headline .accent {
  color: var(--c-amber);
}
#ml-order-processing .hp-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--hp-ink-2);
  max-width: 520px;
  margin: 0 0 30px;
  font-weight: 400;
}
#ml-order-processing .hp-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
#ml-order-processing .hp-cta-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--c-amber);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 40px;
  text-transform: uppercase;
  padding: 15px 35px;
  border-radius: 5px;
  transition: background-color 0.2s;
}
#ml-order-processing .hp-cta-primary:hover {
  background: var(--c-amber-d);
}
#ml-order-processing .hp-cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-140%);
  animation: hpShine 5s ease-in-out infinite;
  will-change: transform;
}
#ml-order-processing .hp-cta-primary svg {
  width: 17px;
  height: 17px;
  transition: transform 0.18s;
}
#ml-order-processing .hp-cta-primary:hover svg {
  transform: translateX(3px);
}
#ml-order-processing .hp-fine {
  font-size: 14px;
  color: var(--hp-muted);
  margin: 18px 0 0;
  display: flex;
  align-items: center;
}
#ml-order-processing .hp-visual {
  position: relative;
  z-index: 2;
}
#ml-order-processing .hp-collage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 100/106;
}
#ml-order-processing .hp-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: opacity 0.7s var(--ease-out);
  will-change: transform, opacity;
}
#ml-order-processing.js .hp-card {
  opacity: 0;
}
#ml-order-processing .hp-card.in {
  opacity: 1;
}
#ml-order-processing .hp-card img {
  width: 100%;
  height: auto;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  #ml-order-processing .hp-card {
    opacity: 1;
    transition: none;
  }
}
@media (max-width: 991px), (pointer: coarse) {
  #ml-order-processing .hp-visual {
    display: none;
  }
}
#ml-order-processing .hp-card-1 {
  left: 2%;
  top: 6%;
  width: 20%;
  z-index: 2;
}
#ml-order-processing .hp-card-2 {
  left: 5%;
  top: 58%;
  width: 23%;
  z-index: 4;
}
#ml-order-processing .hp-card-3 {
  left: 19%;
  top: 12%;
  width: 62.4%;
  z-index: 3;
}
#ml-order-processing .hp-card-4 {
  left: calc(50% + 80px);
  top: 55%;
  width: 27.9%;
  z-index: 5;
}
#ml-order-processing .hp-card-5 {
  left: calc(58% + 80px);
  top: 1%;
  width: 26.35%;
  z-index: 2;
}
@media (max-width: 991px) {
  #ml-order-processing .hp-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    text-align: center;
  }
  #ml-order-processing .hp-shell {
    text-align: center;
  }
  #ml-order-processing .hp-headline, #ml-order-processing .hp-sub {
    margin-left: auto;
    margin-right: auto;
  }
  #ml-order-processing .hp-cta-row, #ml-order-processing .hp-fine {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  #ml-order-processing .hp-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
#ml-order-processing .feat-sec {
  background: var(--c-lightbg);
  padding: 95px 0;
}
#ml-order-processing .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
#ml-order-processing .feat-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 38px 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
#ml-order-processing .feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 133, 255, 0.5);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05), 0 16px 36px rgba(0, 0, 0, 0.1);
}
#ml-order-processing .feat-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 133, 255, 0.12);
  color: #0085ff;
  margin-bottom: 22px;
}
#ml-order-processing .feat-ic svg {
  width: 24px;
  height: 24px;
}
#ml-order-processing .feat-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--c-near);
  letter-spacing: normal;
  margin-bottom: 11px;
  line-height: 1.3;
}
#ml-order-processing .feat-card p {
  font-size: 17px;
  color: var(--c-gray2);
  line-height: 1.6;
}
#ml-order-processing .incl-sec {
  background: #fff;
}
#ml-order-processing .incl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
#ml-order-processing .incl-left {
  padding: 90px 56px 90px max(28px, 100% - 630px);
  text-align: left;
}
#ml-order-processing .incl-left .sec-label {
  margin-bottom: 16px;
}
#ml-order-processing .incl-left h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--c-near);
  letter-spacing: normal;
  line-height: 1.25;
  margin-bottom: 20px;
}
#ml-order-processing .incl-left h2 .accent {
  color: var(--c-amber);
}
#ml-order-processing .incl-lead {
  font-size: 19px;
  color: var(--c-gray2);
  line-height: 1.55;
  margin: 0 0 34px;
  max-width: 520px;
}
#ml-order-processing .incl-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
#ml-order-processing .incl-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 24px;
}
#ml-order-processing .incl-bullets li:last-child {
  margin-bottom: 0;
}
#ml-order-processing .incl-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b4bac4;
  transition: background 0.45s ease;
}
#ml-order-processing .incl-bullets li.is-active::before {
  background: #0085ff;
}
#ml-order-processing .incl-bullets h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--c-near);
  letter-spacing: normal;
  line-height: 1.3;
  margin-bottom: 5px;
  transition: color 0.45s ease;
}
#ml-order-processing .incl-bullets li.is-active h3 {
  color: #0085ff;
}
#ml-order-processing .incl-bullets p {
  font-size: 16px;
  color: var(--c-gray2);
  line-height: 1.55;
  margin: 0;
}
#ml-order-processing .incl-right {
  position: relative;
  overflow: hidden;
  background: #0f0c09;
}
#ml-order-processing .incl-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  opacity: 0;
  transition: opacity 0.9s ease;
}
@media (min-width: 992px) {
  #ml-order-processing .incl-right {
    min-height: 744px;
  }
  #ml-order-processing .incl-left h2 {
    font-size: 38px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  #ml-order-processing .incl-left h2 {
    font-size: 33px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #ml-order-processing .incl-left h2 {
    font-size: 26px;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  #ml-order-processing .incl-right {
    min-height: 793px;
  }
}
#ml-order-processing .incl-right img.is-active {
  opacity: 1;
}
#ml-order-processing .final-sec {
  background: #0f0c09;
  color: #fff;
  padding: 95px 0;
  position: relative;
  overflow: hidden;
}
#ml-order-processing .final-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform-origin: 50% 0%;
  background: radial-gradient(680px 580px at 50% 0%, rgba(43, 86, 166, 0.4), rgba(43, 86, 166, 0.16) 45%, transparent 72%);
  animation: ctaGlow 7s ease-in-out infinite;
}
#ml-order-processing .final-in {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
#ml-order-processing .final-in h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.15;
  margin-bottom: 22px;
}
#ml-order-processing .final-in h2 .accent {
  color: var(--c-amber);
}
#ml-order-processing .final-in p {
  font-size: 19px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 34px;
}
#ml-order-processing .final-in .final-fine {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  max-width: none;
}
@media (max-width: 1290px) {
  #ml-order-processing .hp-headline {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  #ml-order-processing .incl-split {
    grid-template-columns: 1fr;
  }
  #ml-order-processing .incl-left {
    padding: 64px 24px 0;
  }
  #ml-order-processing .incl-right {
    min-height: 280px;
    margin: 24px 24px 64px;
    border-radius: 16px;
  }
}
@media (max-width: 767px) {
  #ml-order-processing .hp-headline {
    font-size: 32px;
    line-height: 1.2;
  }
  #ml-order-processing .hp-sub {
    font-size: 17px;
  }
  #ml-order-processing .incl-left h2, #ml-order-processing .final-in h2 {
    font-size: 26px;
    line-height: 1.25;
  }
  #ml-order-processing .feat-card h3 {
    font-size: 19px;
  }
  #ml-order-processing .feat-sec, #ml-order-processing .final-sec {
    padding: 60px 0;
  }
  #ml-order-processing .hp-grid {
    padding: 60px 28px;
  }
  #ml-order-processing .feat-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  #ml-order-processing .incl-left {
    padding: 56px 16px 0;
  }
  #ml-order-processing .incl-right {
    min-height: 240px;
    margin: 24px 16px 56px;
  }
  #ml-order-processing .btn, #ml-order-processing .hp-cta-primary {
    width: 100%;
    max-width: 360px;
    font-size: 17px;
    line-height: 1.3;
    padding: 14px 24px;
  }
}
@media (max-width: 600px) {
  #ml-order-processing .sec-in {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 400px) {
  #ml-order-processing .hp-headline {
    font-size: 28px;
  }
  #ml-order-processing .incl-left h2, #ml-order-processing .final-in h2 {
    font-size: 22px;
  }
  #ml-order-processing .btn, #ml-order-processing .hp-cta-primary {
    font-size: 16px;
  }
}

/* @keyframes must stay at the top level */
@keyframes hpShine {
  0% {
    transform: translateX(-140%);
  }
  40% {
    transform: translateX(260%);
  }
  100% {
    transform: translateX(260%);
  }
}
@keyframes ctaGlow {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.18);
    filter: brightness(1.2);
  }
}

/*# sourceMappingURL=order-processing.css.map */
