/* V KOTE FOODS — Order Now Page */
.order-product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: all var(--transition-base);
  height: 100%;
}
.order-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,125,50,0.2);
}
.order-product-card.selected {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
.order-product-img {
  height: 180px;
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.order-product-img img { width: 100%; height: 100%; object-fit: cover; }
.order-product-body { padding: var(--space-md); }
.order-product-body h5 { font-size: var(--fs-h5); margin-bottom: 4px; }
.order-product-body p { font-size: var(--fs-small); color: var(--clr-text-muted); margin-bottom: var(--space-sm); }
.order-check { display: flex; align-items: center; gap: 8px; }
.order-check input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--clr-primary);
  cursor: pointer;
}
.order-form-wrapper {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.whatsapp-order-btn {
  font-family: var(--ff-button);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  background: #25D366;
  color: white;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-base);
}
.whatsapp-order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  color: white;
}
