/* V KOTE FOODS — Manufacturing Page */
.process-timeline {
  position: relative;
  padding: var(--space-lg) 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--clr-primary), var(--clr-accent), var(--clr-secondary));
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
}
.process-step {
  position: relative;
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
}
.process-step:nth-child(odd) { flex-direction: row; }
.process-step:nth-child(even) { flex-direction: row-reverse; }
.process-step-content {
  width: 42%;
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
}
.process-step-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.process-step-image {
  width: 42%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.process-step-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.process-step-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  border: 5px solid white;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.process-step-number {
  font-family: var(--ff-button);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}
.process-step-title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-xs);
}

@media (max-width: 768px) {
  .process-timeline::before { left: 28px; }
  .process-step,
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    flex-direction: column;
    padding-left: 70px;
    align-items: flex-start;
  }
  .process-step-content, .process-step-image { width: 100%; }
  .process-step-image { margin-top: var(--space-sm); }
  .process-step-dot { left: 28px; width: 44px; height: 44px; font-size: 0.9rem; }
}

/* ====== Videos inside Process Steps ====== */
.process-step-video {
  position: relative;
  background: #111;
}
.process-step-video video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

@media (max-width: 992px) {
  .process-step-video video {
    height: 220px;
  }
}
@media (max-width: 576px) {
  .process-step-video video {
    height: 200px;
  }
}


