/* ============================================================
   Packagly — product/order-process.css
   Depends on: common.css (variables, reset, icon helpers)
   Responsive @media rules live in responsive.css
   ============================================================ */

/* ============================================================
   ORDER PROCESS + FEATURE CARDS (right column)
   ============================================================ */
.order-process {
  border: 1px solid #e7ebe7;
  border-radius: 14px;
  padding: 22px 20px;
  background: #fff;
}
.order-process-title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #15241b;
}
.order-process-title .accent {
  color: var(--green);
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
}
.step {
  flex: 1 1 0;
  text-align: center;
  max-width: 120px;
}
.step-ico {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  border: 2px solid rgba(112, 174, 19, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.step-ico svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.step-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #06160d;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-label {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  color: #16241c;
}
.step-arrow {
  align-self: center;
  width: 16px;
  height: 16px;
  margin-top: 18px;
  opacity: 0.45;
  flex: 0 0 16px;
}

/* feature cards 2-up */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid #e7ebe7;
  border-radius: 12px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 20px rgba(20, 36, 27, 0.08);
  transform: translateY(-2px);
}
.feature-card img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}
.feature-card span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #16241c;
}
