:root{
  --ink:#101010;
  --muted:#6d6d6b;
  --canvas:#f4f4f1;
  --surface:#ffffff;
  --accent:#ddff1f;
  --accent-soft:#eef5cc;
  --line:#d9d9d4;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  background:var(--canvas);
  color:var(--ink);
  font-family:Arial,"Helvetica Neue",sans-serif;
  line-height:1.6;
}
h1,h2,h3{
  font-family:Arial,"Helvetica Neue",sans-serif;
  letter-spacing:-0.045em;
  font-weight:800;
}
a{color:inherit;text-decoration:none;}

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 6vw;
  position:fixed;
  top:0;left:0;right:0;
  z-index:10;
  background:rgba(244,244,241,.94);
  border-bottom:1px solid rgba(16,16,16,.08);
  backdrop-filter:blur(12px);
}
.brand{
  font-size:22px;
  font-weight:900;
  letter-spacing:-.03em;
  color:var(--ink);
}
nav{display:flex;gap:32px;margin-left:auto;font-size:14px;font-weight:700;}
nav a{color:var(--muted);transition:color .2s;}
nav a:hover{color:var(--ink);}

.hero{
  position:relative;
  height:100vh;
  min-height:560px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  background:var(--canvas);
}
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to right,rgba(244,244,241,.72) 0%,rgba(244,244,241,.46) 44%,rgba(244,244,241,.06) 78%);
}
.hero-overlay{
  position:relative;
  z-index:1;
  padding:0 6vw 80px;
  max-width:900px;
}
.hero-overlay h1{
  font-size:clamp(64px,9vw,132px);
  line-height:.92;
  margin-bottom:28px;
  max-width:850px;
}
.hero-overlay p{
  font-size:20px;
  color:var(--muted);
  margin-bottom:32px;
  max-width:620px;
  font-weight:600;
}
.hero-overlay > a{
  display:inline-block;
  background:var(--ink);
  color:var(--surface);
  padding:16px 30px;
  font-size:15px;
  font-weight:800;
  border:2px solid var(--ink);
  transition:background .2s,color .2s;
}
.hero-overlay > a:hover{
  background:var(--accent);
  color:var(--ink);
}

.products{
  padding:100px 6vw;
  background:var(--canvas);
}
.products h2{
  font-size:clamp(42px,6vw,78px);
  margin-bottom:48px;
  border-bottom:1px solid var(--line);
  padding-bottom:24px;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}
.product-card{
  background:var(--surface);
  border:1px solid var(--line);
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform .2s,box-shadow .2s;
}
.product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(16,16,16,.08);
}
.product-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  object-position:center;
  display:block;
  background:var(--surface);
}
.product-card h3{
  font-size:24px;
  padding:24px 24px 6px;
}
.product-card p{
  font-size:14px;
  color:var(--muted);
  padding:0 24px 22px;
}
.product-card > p{
  min-height:68px;
}
.product-card .f30-pricing{
  flex:1;
}
.product-card > a{
  display:block;
  margin:0 24px 24px;
  border:2px solid var(--ink);
  background:var(--ink);
  color:var(--surface);
  text-align:center;
  padding:12px;
  font-size:14px;
  font-weight:800;
  transition:background .2s,color .2s;
}
.product-card > a:hover{
  background:var(--accent);
  color:var(--ink);
}

.about,.contact{
  padding:100px 6vw;
  max-width:900px;
}
.about h2,.contact h2{
  font-size:clamp(38px,5vw,64px);
  margin-bottom:22px;
}
.about p,.contact p{
  font-size:18px;
  color:var(--muted);
}
.contact{border-top:1px solid var(--line);}

footer{
  padding:34px 6vw;
  border-top:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
  text-align:center;
  background:var(--surface);
}

/* Product detail pages */
.product-card > a.product-image-link{
  display:block;
  margin:0;
  padding:0;
  border:0;
  background:var(--surface);
}
.product-detail-header{
  position:static;
  background:var(--canvas);
  border-bottom:1px solid var(--line);
  backdrop-filter:none;
}
.product-detail-header nav{align-items:center;}
.product-detail{
  min-height:calc(100vh - 150px);
  padding:70px 6vw 100px;
}
.back-link{
  display:inline-block;
  color:var(--muted);
  margin-bottom:34px;
  font-size:14px;
  font-weight:700;
  border-bottom:2px solid var(--accent);
}
.product-detail-grid{
  display:grid;
  grid-template-columns:minmax(280px,1fr) minmax(320px,1fr);
  gap:64px;
  align-items:start;
}
.product-detail-image{
  width:100%;
  max-height:620px;
  object-fit:contain;
  background:var(--surface);
  border:1px solid var(--line);
}
.product-detail h1{
  font-size:clamp(56px,7vw,96px);
  line-height:.95;
  margin-bottom:20px;
}
.product-intro{
  color:var(--muted);
  margin-bottom:34px;
  font-size:18px;
}
.specifications{
  width:100%;
  border-collapse:collapse;
  background:var(--surface);
  border:1px solid var(--line);
}
.specifications th,.specifications td{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:14px;
}
.specifications th{
  width:48%;
  color:var(--muted);
  font-weight:700;
}
.specifications td{font-weight:700;}
.specifications tr:nth-child(even){background:#fafaf8;}
.specifications tr:last-child th,.specifications tr:last-child td{border-bottom:0;}
.specs-coming-soon{
  padding:24px;
  color:var(--ink);
  font-weight:800;
  background:var(--accent-soft);
  border:1px solid var(--line);
}

@media(max-width:800px){
  nav{display:none;}
  .hero-overlay h1{font-size:58px;}
  .hero-overlay p{font-size:17px;}
  .hero::after{background:rgba(244,244,241,.58);}
  .products{padding:72px 6vw;}
  .product-detail{padding-top:42px;}
  .product-detail-grid{grid-template-columns:1fr;gap:34px;}
  .product-detail h1{font-size:52px;}
}


/* F30 image gallery */
.product-gallery{min-width:0;}
.gallery-stage{
  position:relative;
  background:var(--surface);
  border:1px solid var(--line);
  overflow:hidden;
}
.gallery-stage .product-detail-image{
  border:0;
  width:100%;
  height:420px;
  max-height:none;
  object-fit:contain;
}
.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:64px;
  border:0;
  background:rgba(16,16,16,.82);
  color:#fff;
  font-size:40px;
  line-height:1;
  cursor:pointer;
  transition:background .2s,color .2s;
}
.gallery-arrow:hover,.gallery-arrow:focus-visible{
  background:var(--accent);
  color:var(--ink);
}
.gallery-prev{left:14px;}
.gallery-next{right:14px;}
.gallery-counter{
  position:absolute;
  right:14px;
  bottom:14px;
  padding:7px 11px;
  background:rgba(16,16,16,.78);
  color:#fff;
  font-size:12px;
  font-weight:800;
}
.gallery-thumbnails{
  display:flex;
  gap:8px;
  margin-top:10px;
  padding-bottom:4px;
  overflow-x:auto;
  scrollbar-width:thin;
}
.gallery-thumbnail{
  flex:1 1 0;
  min-width:0;
  height:56px;
  padding:0;
  border:2px solid transparent;
  background:var(--surface);
  cursor:pointer;
  opacity:.62;
  transition:border-color .2s,opacity .2s;
}
.gallery-thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.gallery-thumbnail:hover,.gallery-thumbnail.active{
  border-color:var(--ink);
  opacity:1;
}
.gallery-thumbnail.active{box-shadow:inset 0 -4px 0 var(--accent);}
@media(max-width:800px){
  .gallery-stage .product-detail-image{height:400px;}
  .gallery-arrow{width:42px;height:56px;font-size:34px;}
  .gallery-prev{left:8px;}
  .gallery-next{right:8px;}
  .gallery-thumbnail{flex-basis:78px;height:60px;}
}


/* About PA E-Bike Warehouse */
.about{max-width:none;}
.section-kicker{
  display:inline-block;
  margin-bottom:18px;
  color:var(--ink)!important;
  font-size:13px!important;
  font-weight:900;
  letter-spacing:.18em;
  border-bottom:4px solid var(--accent);
}
.about h2{max-width:1000px;line-height:1.02;}
.about-lead{
  max-width:900px;
  margin-bottom:48px;
  font-size:19px!important;
  line-height:1.7;
}
.about-values{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.about-value{
  padding:30px 28px 34px 0;
  border-right:1px solid var(--line);
}
.about-value:not(:first-child){padding-left:28px;}
.about-value:last-child{border-right:0;}
.about-value span{
  display:inline-block;
  margin-bottom:28px;
  padding:4px 10px;
  background:var(--accent-soft);
  font-size:12px;
  font-weight:900;
}
.about-value h3{
  margin-bottom:12px;
  font-size:21px;
  letter-spacing:-.025em;
}
.about-value p{
  font-size:14px;
  line-height:1.65;
}
@media(max-width:950px){
  .about-values{grid-template-columns:repeat(2,1fr);}
  .about-value:nth-child(2){border-right:0;}
  .about-value:nth-child(-n+2){border-bottom:1px solid var(--line);}
  .about-value:nth-child(3){padding-left:0;}
}
@media(max-width:600px){
  .about-values{grid-template-columns:1fr;}
  .about-value,.about-value:not(:first-child){padding:24px 0;border-right:0;border-bottom:1px solid var(--line);}
  .about-value:last-child{border-bottom:0;}
  .about-value span{margin-bottom:16px;}
}


/* Trademark and brand credentials */
.credentials{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.55fr);
  gap:70px;
  align-items:center;
  padding:100px 6vw;
  background:var(--ink);
  color:var(--surface);
}
.credentials .section-kicker{
  color:var(--surface)!important;
  border-bottom-color:var(--accent);
}
.credentials h2{
  max-width:760px;
  margin-bottom:24px;
  font-size:clamp(42px,5vw,72px);
  line-height:1;
}
.credentials-copy > p:not(.section-kicker){
  max-width:760px;
  color:#b9b9b5;
  font-size:17px;
  line-height:1.7;
}
.credential-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin:38px 0;
  background:#343432;
  border:1px solid #343432;
}
.credential-facts div{
  display:flex;
  flex-direction:column;
  padding:20px;
  background:#181818;
}
.credential-facts strong{font-size:18px;color:var(--accent);}
.credential-facts span{margin-top:3px;color:#9c9c98;font-size:12px;}
.certificate-link{
  display:inline-block;
  padding:14px 20px;
  background:var(--accent);
  color:var(--ink);
  font-size:14px;
  font-weight:900;
}
.certificate-preview{
  position:relative;
  display:block;
  max-width:380px;
  justify-self:end;
  padding:12px;
  background:var(--surface);
  box-shadow:0 24px 60px rgba(0,0,0,.35);
  transition:transform .2s;
}
.certificate-preview:hover{transform:translateY(-5px);}
.certificate-preview img{
  display:block;
  width:100%;
  height:auto;
}
.certificate-preview span{
  position:absolute;
  right:20px;
  bottom:20px;
  padding:8px 11px;
  background:var(--ink);
  color:var(--surface);
  font-size:12px;
  font-weight:800;
}
@media(max-width:850px){
  .credentials{grid-template-columns:1fr;gap:42px;}
  .certificate-preview{justify-self:start;max-width:330px;}
}
@media(max-width:560px){
  .credential-facts{grid-template-columns:1fr;}
  .credentials{padding:72px 6vw;}
}


/* Language switch */
.language-switch{
  display:flex;
  align-items:center;
  gap:2px;
  margin-left:18px;
  padding-left:0;
  font-size:12px;
  font-weight:900;
}
.language-switch a,.language-switch span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:32px;
  height:30px;
  padding:0 8px;
  border:1px solid var(--line);
}
.language-switch a{color:var(--muted);background:var(--surface);}
.language-switch a:hover{color:var(--ink);border-color:var(--ink);}
.language-switch .active{color:var(--ink);background:var(--accent);border-color:var(--accent);}
@media(max-width:720px){
  header{gap:14px;}
  .language-switch{padding-left:0;margin-left:auto;}
}


/* F30 homepage pricing */
.product-card .f30-pricing{
  margin:0 24px 22px;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.product-card .f30-pricing p{padding:0;}
.product-card .pricing-label{
  margin-bottom:12px;
  color:var(--ink);
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
}
.f30-pricing ul{
  display:grid;
  gap:9px;
  list-style:none;
}
.f30-pricing li{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:2px 12px;
  align-items:baseline;
  padding-bottom:9px;
  border-bottom:1px solid var(--line);
  font-size:12px;
  line-height:1.4;
}
.f30-pricing strong{
  font-size:14px;
  white-space:nowrap;
}
.f30-pricing li:last-child{
  grid-template-columns:minmax(0,1fr) 132px;
  align-items:center;
  min-height:52px;
}
.pricing-quote-link{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:132px;
  min-height:36px;
  padding:7px 10px;
  border:2px solid var(--ink);
  background:var(--ink);
  color:var(--surface);
  font-size:11px;
  font-weight:900;
  line-height:1.2;
  white-space:nowrap;
  transition:background .2s,color .2s,border-color .2s;
}
.pricing-quote-link:hover{
  background:var(--accent);
  color:var(--ink);
  border-color:var(--ink);
}
.f30-pricing small{
  grid-column:1/-1;
  color:var(--muted);
  font-size:11px;
}
.product-card .pricing-note{
  margin-top:12px;
  color:var(--muted);
  font-size:11px;
  line-height:1.5;
}
@media(max-width:420px){
  .f30-pricing li{grid-template-columns:1fr;}
  .f30-pricing strong{grid-column:1;}
}


/* Contact section */
.contact{
  max-width:none;
  display:grid;
  grid-template-columns:minmax(280px,.8fr) minmax(520px,1.2fr);
  gap:70px;
  align-items:end;
  background:var(--surface);
}
.contact-heading h2{
  margin-bottom:20px;
  line-height:1;
}
.contact-heading > p:not(.section-kicker){
  max-width:620px;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}
.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}
.contact-item{
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  padding:24px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.contact-item span{
  color:var(--muted);
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.contact-item strong,.contact-item a,.contact-item address{
  color:var(--ink);
  font-size:17px;
  font-style:normal;
  font-weight:800;
  line-height:1.45;
  overflow-wrap:anywhere;
}
.contact-item a{
  text-decoration:underline;
  text-decoration-color:var(--accent);
  text-decoration-thickness:3px;
  text-underline-offset:5px;
}
.contact-item a:hover{background:var(--accent);}
@media(max-width:900px){
  .contact{grid-template-columns:1fr;gap:42px;}
}
@media(max-width:560px){
  .contact-grid{grid-template-columns:1fr;}
  .contact-item{min-height:120px;}
}

.contact .quote-button{
  display:inline-block;
  margin-top:28px;
  padding:14px 22px;
  border:2px solid var(--ink);
  background:var(--ink);
  color:var(--surface);
  font-size:14px;
  font-weight:900;
  transition:background .2s,color .2s;
}
.contact .quote-button:hover{
  background:var(--accent);
  color:var(--ink);
}

.warehouse-item{grid-column:1/-1;}
.warehouse-addresses{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.warehouse-addresses address{
  padding-left:16px;
  border-left:3px solid var(--accent);
}
.warehouse-addresses b{
  display:block;
  margin-bottom:5px;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
@media(max-width:700px){
  .product-card > p{min-height:0;}
  .warehouse-addresses{grid-template-columns:1fr;}
}


/* Horizontal product gallery */
.product-carousel{
  position:relative;
}
.product-carousel .product-grid{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  padding:4px 2px 22px;
}
.product-carousel .product-grid::-webkit-scrollbar{display:none;}
.product-carousel .product-card{
  flex:0 0 calc((100% - 48px)/3);
  min-width:0;
  scroll-snap-align:start;
}
.product-card > a:last-child{margin-top:auto;}
.product-carousel-arrow{
  position:absolute;
  top:220px;
  z-index:3;
  width:48px;
  height:48px;
  border:2px solid var(--ink);
  border-radius:50%;
  background:var(--ink);
  color:var(--surface);
  font-size:32px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(16,16,16,.18);
  transition:background .2s,color .2s,transform .2s;
}
.product-carousel-arrow:hover{
  background:var(--accent);
  color:var(--ink);
  transform:scale(1.05);
}
.product-carousel-prev{left:-22px;}
.product-carousel-next{right:-22px;}
@media(max-width:900px){
  .product-carousel .product-card{flex-basis:calc((100% - 24px)/2);}
}
@media(max-width:650px){
  .product-carousel .product-card{flex-basis:88%;}
  .product-carousel-arrow{top:210px;width:42px;height:42px;}
  .product-carousel-prev{left:-10px;}
  .product-carousel-next{right:-10px;}
}


/* Simple purchase and pickup process */
.purchase-process{
  padding:96px 8%;
  background:var(--surface);
  border-top:1px solid var(--line);
}
.purchase-process .process-heading{
  max-width:900px;
  margin-bottom:48px;
}
.purchase-process h2{
  max-width:800px;
  margin:12px 0 16px;
  font-size:clamp(42px,6vw,82px);
  line-height:.96;
  letter-spacing:-.055em;
}
.purchase-process .process-intro{
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.process-steps{
  display:grid;
  grid-template-columns:1fr 1fr 2fr 1fr 1fr;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.process-step{
  position:relative;
  min-height:230px;
  padding:28px 24px;
  border-right:1px solid var(--line);
}
.process-step:last-child{border-right:0}
.process-step .step-number{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  margin-bottom:54px;
  border-radius:50%;
  background:var(--accent);
  color:#111;
  font-weight:800;
}
.process-step h3{
  margin:0 0 10px;
  font-size:20px;
}
.process-step p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
@media (max-width:900px){
  .process-steps{grid-template-columns:1fr 1fr}
  .process-step{border-bottom:1px solid var(--line)}
  .process-step:nth-child(2n){border-right:0}
  .process-step:last-child{grid-column:1/-1;border-bottom:0}
}
@media (max-width:560px){
  .purchase-process{padding:72px 6%}
  .process-steps{grid-template-columns:1fr}
  .process-step{min-height:0;border-right:0}
  .process-step:last-child{grid-column:auto}
  .process-step .step-number{margin-bottom:28px}
}

.process-step.has-paths{padding-bottom:20px}
.delivery-paths{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.delivery-path{
  padding:14px;
  border:1px solid var(--line);
  background:#fff;
}
.delivery-path strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
}
.delivery-path p{font-size:13px;line-height:1.45}
.delivery-path.shipping{border-top:4px solid var(--accent)}
.delivery-path.pickup{border-top:4px solid #111}


/* Arrow-based purchase flow */
@media (min-width:901px){
  .purchase-process{overflow:hidden}
  .process-steps{
    position:relative;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:46px;
    margin-top:190px;
    border:0;
  }
  .process-step{
    min-height:250px;
    border:1px solid var(--line);
    background:#fff;
    overflow:visible;
  }
  .process-step:last-child{border-right:1px solid var(--line)}
  .process-step:not(:last-child)::after{
    content:"→";
    position:absolute;
    z-index:3;
    top:50%;
    right:-37px;
    width:28px;
    color:#111;
    font-size:32px;
    font-weight:800;
    line-height:1;
    text-align:center;
    transform:translateY(-50%);
  }
  .process-step.has-paths::before{
    content:"↑";
    position:absolute;
    top:-58px;
    left:50%;
    color:#111;
    font-size:34px;
    font-weight:800;
    line-height:1;
    transform:translateX(-50%);
  }
  .has-paths .delivery-paths{display:block;margin-top:18px}
  .has-paths .delivery-path.shipping{
    position:absolute;
    bottom:calc(100% + 78px);
    left:-22px;
    width:calc(100% + 44px);
    min-height:128px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
  }
  .has-paths .delivery-path.pickup{
    padding:14px;
  }
}
@media (max-width:900px){
  .process-steps{
    display:flex;
    flex-direction:column;
    gap:38px;
    border:0;
  }
  .process-step{
    min-height:0;
    border:1px solid var(--line);
    overflow:visible;
  }
  .process-step:nth-child(2n),
  .process-step:last-child{border-right:1px solid var(--line)}
  .process-step:not(:last-child)::after{
    content:"↓";
    position:absolute;
    left:50%;
    bottom:-32px;
    color:#111;
    font-size:26px;
    font-weight:800;
    transform:translateX(-50%);
  }
  .has-paths .delivery-path.shipping{position:relative}
  .has-paths .delivery-path.shipping::before{
    content:"↳";
    position:absolute;
    left:-25px;
    top:50%;
    font-size:22px;
    font-weight:800;
    transform:translateY(-50%);
  }
}


/* Minimal, unboxed purchase flow */
.process-steps{
  border:0;
  border-top:1px solid var(--line);
}
.process-step,
.process-step:last-child,
.process-step:nth-child(2n){
  min-height:190px;
  padding:32px 18px 18px;
  border:0;
  border-right:0;
  border-bottom:0;
  background:transparent;
}
.process-step .step-number{margin-bottom:34px}
.shipping-branch{
  color:#111;
}
.shipping-branch strong{
  display:block;
  margin-bottom:5px;
  font-size:15px;
}
.shipping-branch span{
  display:block;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
@media (min-width:901px){
  .process-steps{
    gap:54px;
    margin-top:150px;
  }
  .process-step,
  .process-step:last-child{border:0}
  .process-step:not(:last-child)::after{right:-41px}
  .process-step.has-paths::before{
    content:"↑";
    top:-53px;
  }
  .shipping-branch{
    position:absolute;
    bottom:calc(100% + 68px);
    left:50%;
    width:220px;
    text-align:center;
    transform:translateX(-50%);
  }
}
@media (max-width:900px){
  .process-steps{border-top:1px solid var(--line)}
  .process-step,
  .process-step:nth-child(2n),
  .process-step:last-child{border:0}
  .shipping-branch{
    margin:16px 0 0 28px;
    padding-left:16px;
    border-left:3px solid var(--accent);
  }
  .shipping-branch::before{
    content:"↳";
    position:absolute;
    margin-left:-38px;
    font-size:22px;
    font-weight:800;
  }
}


/* Parallel shipping path above steps 3–5 */
.shipping-flow{
  color:#111;
}
.shipping-flow-label{
  position:absolute;
  left:0;
  top:-30px;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
}
.shipping-flow-step{
  position:relative;
  min-width:0;
}
.shipping-flow-step strong{
  display:block;
  margin-bottom:6px;
  font-size:15px;
}
.shipping-flow-step p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
@media (min-width:901px){
  .process-steps{margin-top:190px}
  .process-step.has-paths::before{content:none}
  .shipping-flow{
    position:absolute;
    bottom:calc(100% + 58px);
    left:40%;
    width:60%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:54px;
  }
  .shipping-flow::before{
    content:"↑";
    position:absolute;
    left:16.66%;
    bottom:-50px;
    font-size:32px;
    font-weight:800;
    transform:translateX(-50%);
  }
  .shipping-flow-step:not(:last-child)::after{
    content:"→";
    position:absolute;
    top:22px;
    right:-41px;
    width:28px;
    font-size:28px;
    font-weight:800;
    text-align:center;
  }
}
@media (max-width:900px){
  .shipping-flow{
    position:relative;
    margin:8px 0 6px 28px;
    padding:40px 0 4px 18px;
    border-left:3px solid var(--accent);
  }
  .shipping-flow::before{
    content:"↳";
    position:absolute;
    left:-28px;
    top:4px;
    font-size:23px;
    font-weight:800;
  }
  .shipping-flow-label{top:10px;left:18px}
  .shipping-flow-step{padding:12px 0 24px}
  .shipping-flow-step:not(:last-child)::after{
    content:"↓";
    position:absolute;
    left:12px;
    bottom:-2px;
    font-size:20px;
    font-weight:800;
  }
}


/* Match shipping steps to the main numbered flow */
.shipping-flow-step .step-number{
  display:inline-flex;
  width:38px;
  height:38px;
  align-items:center;
  justify-content:center;
  margin-bottom:26px;
  border-radius:50%;
  background:var(--accent);
  color:#111;
  font-size:13px;
  font-weight:800;
}
.shipping-flow-step h3{
  margin:0 0 10px;
  font-size:20px;
}
.shipping-flow-step p{
  margin:0;
  color:var(--muted);
  font-size:inherit;
  line-height:1.55;
}
@media (min-width:901px){
  .shipping-flow-step:not(:last-child)::after{top:20px}
}


/* Shipping branch removed: restore compact main process spacing */
@media (min-width:901px){
  .process-steps{margin-top:0}
}


/* Visually align the five main process steps */
.process-step{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.process-step .step-number{
  flex:0 0 auto;
  margin-left:auto;
  margin-right:auto;
}
.process-step h3{
  width:100%;
  text-align:center;
}
.process-step p{
  width:100%;
  max-width:220px;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
@media (min-width:901px){
  .process-step h3{
    display:flex;
    min-height:52px;
    align-items:flex-start;
    justify-content:center;
  }
}
